/*M!999999\- enable the sandbox mode */ 
-- MariaDB dump 10.19-12.0.2-MariaDB, for osx10.20 (arm64)
--
-- Host: localhost    Database: brickwal_m1_ds
-- ------------------------------------------------------
-- Server version	12.0.2-MariaDB

/*!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 utf8mb4 */;
/*!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' */;
/*M!100616 SET @OLD_NOTE_VERBOSITY=@@NOTE_VERBOSITY, NOTE_VERBOSITY=0 */;

--
-- Table structure for table `_deprecated_client_activities`
--

DROP TABLE IF EXISTS `_deprecated_client_activities`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `_deprecated_client_activities` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `client_id` int(10) unsigned NOT NULL,
  `activity_type` enum('note','call','email','meeting','task') NOT NULL,
  `subject` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `activity_date` datetime NOT NULL,
  `due_date` datetime DEFAULT NULL,
  `status` enum('pending','completed','cancelled') DEFAULT 'pending',
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` datetime DEFAULT current_timestamp(),
  `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_client_id` (`client_id`),
  KEY `idx_activity_date` (`activity_date`),
  KEY `idx_status` (`status`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `_deprecated_client_activities_ibfk_2` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `_deprecated_client_activities`
--

LOCK TABLES `_deprecated_client_activities` WRITE;
/*!40000 ALTER TABLE `_deprecated_client_activities` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `_deprecated_client_activities` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `_deprecated_client_contacts`
--

DROP TABLE IF EXISTS `_deprecated_client_contacts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `_deprecated_client_contacts` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `client_id` int(10) unsigned NOT NULL,
  `first_name` varchar(100) NOT NULL,
  `last_name` varchar(100) NOT NULL,
  `title` varchar(100) DEFAULT NULL,
  `email` varchar(255) DEFAULT NULL,
  `phone` varchar(50) DEFAULT NULL,
  `mobile` varchar(50) DEFAULT NULL,
  `is_primary` tinyint(1) DEFAULT 0,
  `notes` text DEFAULT NULL,
  `created_at` datetime DEFAULT current_timestamp(),
  `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_client_id` (`client_id`),
  KEY `idx_email` (`email`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `_deprecated_client_contacts`
--

LOCK TABLES `_deprecated_client_contacts` WRITE;
/*!40000 ALTER TABLE `_deprecated_client_contacts` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `_deprecated_client_contacts` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `_deprecated_clients`
--

DROP TABLE IF EXISTS `_deprecated_clients`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `_deprecated_clients` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `client_type` enum('company','individual') DEFAULT 'company',
  `company_name` varchar(255) DEFAULT NULL,
  `first_name` varchar(100) DEFAULT NULL,
  `last_name` varchar(100) DEFAULT NULL,
  `email` varchar(255) NOT NULL,
  `secondary_email` varchar(255) DEFAULT NULL,
  `phone` varchar(50) DEFAULT NULL,
  `mobile` varchar(50) DEFAULT NULL,
  `website` varchar(255) DEFAULT NULL,
  `tax_id` varchar(100) DEFAULT NULL,
  `billing_address` text DEFAULT NULL,
  `billing_city` varchar(100) DEFAULT NULL,
  `billing_state` varchar(100) DEFAULT NULL,
  `billing_zip` varchar(20) DEFAULT NULL,
  `billing_country` varchar(100) DEFAULT NULL,
  `shipping_address` text DEFAULT NULL,
  `shipping_city` varchar(100) DEFAULT NULL,
  `shipping_state` varchar(100) DEFAULT NULL,
  `shipping_zip` varchar(20) DEFAULT NULL,
  `shipping_country` varchar(100) DEFAULT NULL,
  `industry` varchar(100) DEFAULT NULL,
  `annual_revenue` decimal(15,2) DEFAULT NULL,
  `employee_count` int(11) DEFAULT NULL,
  `payment_terms` varchar(50) DEFAULT NULL,
  `credit_limit` decimal(15,2) DEFAULT 0.00,
  `status` enum('active','inactive','on_hold') DEFAULT 'active',
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` datetime DEFAULT current_timestamp(),
  `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_status` (`status`),
  KEY `idx_company_name` (`company_name`),
  KEY `idx_email` (`email`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `_deprecated_clients_ibfk_1` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `_deprecated_clients`
--

LOCK TABLES `_deprecated_clients` WRITE;
/*!40000 ALTER TABLE `_deprecated_clients` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `_deprecated_clients` VALUES
(2,'company','Test Client','','','test@texclient.com','','','','','','','','','','','','','','','','',NULL,NULL,'',0.00,'active','',1,'2025-11-13 09:47:07','2025-11-13 09:47:07');
/*!40000 ALTER TABLE `_deprecated_clients` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `action_conditions`
--

DROP TABLE IF EXISTS `action_conditions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `action_conditions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `action_id` int(10) unsigned NOT NULL,
  `condition_type` enum('field_equals','field_not_equals','field_empty','field_not_empty','custom_function') NOT NULL,
  `field_name` varchar(100) DEFAULT NULL COMMENT 'Field to check in context object, e.g., status, public_token',
  `field_value` text DEFAULT NULL COMMENT 'Expected value for comparison',
  `custom_function` varchar(100) DEFAULT NULL COMMENT 'PHP function name for custom evaluation',
  `logic_operator` enum('AND','OR') NOT NULL DEFAULT 'AND' COMMENT 'How to combine with other conditions',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_action_id` (`action_id`),
  CONSTRAINT `action_conditions_ibfk_1` FOREIGN KEY (`action_id`) REFERENCES `page_actions` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=43 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `action_conditions`
--

LOCK TABLES `action_conditions` WRITE;
/*!40000 ALTER TABLE `action_conditions` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `action_conditions` VALUES
(1,1,'field_not_equals','status','converted',NULL,'AND','2025-11-16 15:34:57'),
(2,1,'field_empty','customer_response',NULL,NULL,'AND','2025-11-16 15:34:57'),
(3,2,'field_not_empty','public_token',NULL,NULL,'AND','2025-11-16 15:34:57'),
(4,3,'field_not_empty','public_token',NULL,NULL,'AND','2025-11-16 15:34:57'),
(5,4,'field_not_equals','status','converted',NULL,'AND','2025-11-16 15:34:57'),
(6,8,'field_not_equals','status','converted',NULL,'AND','2025-11-16 15:34:57'),
(7,18,'field_equals','status','pending',NULL,'OR','2025-11-16 15:43:35'),
(8,18,'field_equals','status','confirmed',NULL,'AND','2025-11-16 15:43:35'),
(9,35,'field_not_equals','status','in_progress',NULL,'AND','2025-11-16 16:04:37'),
(10,35,'field_not_equals','status','completed',NULL,'AND','2025-11-16 16:04:37'),
(11,35,'field_not_equals','status','cancelled',NULL,'AND','2025-11-16 16:04:37'),
(12,36,'field_not_equals','status','completed',NULL,'AND','2025-11-16 16:04:37'),
(13,36,'field_not_equals','status','cancelled',NULL,'AND','2025-11-16 16:04:37'),
(14,37,'field_not_equals','status','completed',NULL,'AND','2025-11-16 16:04:37'),
(15,37,'field_not_equals','status','cancelled',NULL,'AND','2025-11-16 16:04:37'),
(16,71,'field_equals','status','active',NULL,'AND','2025-11-16 16:20:48'),
(17,72,'field_equals','status','active',NULL,'AND','2025-11-16 16:20:48'),
(19,76,'field_equals','status','draft',NULL,'AND','2025-11-16 16:20:48'),
(20,81,'field_equals','status','draft',NULL,'AND','2025-11-16 16:34:53'),
(21,84,'field_equals','status','draft',NULL,'AND','2025-11-16 16:34:53'),
(22,85,'field_equals','status','draft',NULL,'AND','2025-11-16 16:34:53'),
(24,88,'field_equals','status','draft',NULL,'AND','2025-11-16 16:34:53'),
(25,89,'field_equals','status','draft',NULL,'AND','2025-11-16 16:34:53'),
(28,107,'field_not_empty','has_quotes',NULL,NULL,'AND','2025-11-16 18:09:07'),
(29,108,'field_equals','status','pending_approval',NULL,'AND','2025-11-16 18:28:39'),
(30,109,'field_equals','status','pending_approval',NULL,'AND','2025-11-16 18:28:39'),
(31,113,'field_equals','status','pending',NULL,'AND','2025-11-16 18:28:39'),
(32,114,'field_equals','status','pending',NULL,'AND','2025-11-16 18:28:39'),
(33,115,'field_equals','status','pending',NULL,'AND','2025-11-16 18:28:39'),
(34,116,'field_equals','status','approved',NULL,'OR','2025-11-16 18:28:39'),
(35,116,'field_equals','status','received',NULL,'OR','2025-11-16 18:28:39'),
(36,119,'field_equals','is_verified','0',NULL,'AND','2025-11-16 18:28:39'),
(37,154,'custom_function',NULL,NULL,'isDocumentOwner','AND','2025-11-16 19:09:22'),
(38,178,'field_equals','status','draft',NULL,'AND','2025-11-16 22:56:40'),
(39,179,'field_equals','status','draft',NULL,'AND','2025-11-16 22:56:40'),
(40,181,'field_equals','status','draft',NULL,'AND','2025-11-16 22:56:40'),
(41,182,'field_equals','status','partially_signed',NULL,'AND','2025-11-16 23:45:01'),
(42,183,'field_equals','status','fully_executed',NULL,'AND','2025-11-16 23:54:50');
/*!40000 ALTER TABLE `action_conditions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `agreement_documents`
--

DROP TABLE IF EXISTS `agreement_documents`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `agreement_documents` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `agreement_id` int(10) unsigned NOT NULL,
  `file_name` varchar(255) NOT NULL,
  `original_name` varchar(255) NOT NULL,
  `file_path` varchar(500) NOT NULL,
  `file_type` varchar(100) NOT NULL,
  `file_size` int(11) NOT NULL,
  `document_type` varchar(50) NOT NULL DEFAULT 'other',
  `description` text DEFAULT NULL,
  `uploaded_by` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_agreement_id` (`agreement_id`),
  KEY `uploaded_by` (`uploaded_by`),
  CONSTRAINT `agreement_documents_ibfk_1` FOREIGN KEY (`agreement_id`) REFERENCES `agreements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `agreement_documents_ibfk_2` FOREIGN KEY (`uploaded_by`) REFERENCES `users` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `agreement_documents`
--

LOCK TABLES `agreement_documents` WRITE;
/*!40000 ALTER TABLE `agreement_documents` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `agreement_documents` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `agreement_items`
--

DROP TABLE IF EXISTS `agreement_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `agreement_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `agreement_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned DEFAULT NULL,
  `description` text NOT NULL,
  `quantity` decimal(10,2) NOT NULL DEFAULT 1.00,
  `unit_price` decimal(15,2) NOT NULL DEFAULT 0.00,
  `tax_rate` decimal(5,2) NOT NULL DEFAULT 0.00,
  `discount_percent` decimal(5,2) NOT NULL DEFAULT 0.00,
  `line_total` decimal(15,2) NOT NULL DEFAULT 0.00,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_agreement_id` (`agreement_id`),
  KEY `product_id` (`product_id`),
  CONSTRAINT `agreement_items_ibfk_1` FOREIGN KEY (`agreement_id`) REFERENCES `agreements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `agreement_items_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `agreement_items`
--

LOCK TABLES `agreement_items` WRITE;
/*!40000 ALTER TABLE `agreement_items` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `agreement_items` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `agreement_signatures`
--

DROP TABLE IF EXISTS `agreement_signatures`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `agreement_signatures` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `agreement_id` int(10) unsigned NOT NULL,
  `signature_type` enum('acceptance','decline') NOT NULL,
  `signature_data` longtext DEFAULT NULL,
  `signed_by_name` varchar(255) NOT NULL,
  `signed_by_email` varchar(255) NOT NULL,
  `signed_by_title` varchar(255) DEFAULT NULL,
  `company_name` varchar(255) DEFAULT NULL,
  `ip_address` varchar(45) DEFAULT NULL,
  `user_agent` text DEFAULT NULL,
  `declined_reason` text DEFAULT NULL,
  `signed_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_agreement_id` (`agreement_id`),
  KEY `idx_signature_type` (`signature_type`),
  CONSTRAINT `agreement_signatures_ibfk_1` FOREIGN KEY (`agreement_id`) REFERENCES `agreements` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `agreement_signatures`
--

LOCK TABLES `agreement_signatures` WRITE;
/*!40000 ALTER TABLE `agreement_signatures` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `agreement_signatures` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `agreement_templates`
--

DROP TABLE IF EXISTS `agreement_templates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `agreement_templates` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `category` varchar(100) NOT NULL DEFAULT 'general',
  `description` text DEFAULT NULL,
  `header_content` text DEFAULT NULL,
  `body_content` text DEFAULT NULL,
  `footer_content` text DEFAULT NULL,
  `terms_conditions` text DEFAULT NULL,
  `is_default` tinyint(1) NOT NULL DEFAULT 0,
  `is_active` tinyint(1) NOT NULL DEFAULT 1,
  `created_by` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_category` (`category`),
  KEY `idx_is_default` (`is_default`),
  KEY `idx_is_active` (`is_active`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `agreement_templates_ibfk_1` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `agreement_templates`
--

LOCK TABLES `agreement_templates` WRITE;
/*!40000 ALTER TABLE `agreement_templates` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `agreement_templates` VALUES
(1,'Standard Service Agreement','service','Default template for service agreements','<h2 style=\"text-align: center;\">SERVICE AGREEMENT</h2>\n<p style=\"text-align: center;\"><strong>Agreement Number: {agreement_number}</strong></p>\n<p style=\"text-align: center;\">Date: {agreement_date}</p>','<h3>1. Parties</h3>\n<p>This Agreement is entered into between <strong>{company_name}</strong> (\"Provider\") and <strong>{customer_name}</strong> (\"Client\").</p>\n\n<h3>2. Services</h3>\n<p>The Provider agrees to provide the following services to the Client:</p>\n{line_items}\n\n<h3>3. Term</h3>\n<p>This Agreement shall commence on <strong>{start_date}</strong> and continue until <strong>{end_date}</strong>, unless terminated earlier in accordance with the terms herein.</p>\n\n<h3>4. Payment Terms</h3>\n<p>Total Amount: <strong>{total_amount}</strong></p>\n<p>Payment is due within 30 days of invoice date.</p>','<h3>Signatures</h3>\n<p>By signing below, both parties agree to the terms and conditions outlined in this Agreement.</p>\n<br>\n<p><strong>Provider:</strong> {company_name}</p>\n<p>Authorized Signature: _____________________</p>\n<br>\n<p><strong>Client:</strong> {customer_name}</p>\n<p>Signature: {signature}</p>\n<p>Date: {signed_date}</p>','<h3>Terms and Conditions</h3>\n<ol>\n<li><strong>Confidentiality:</strong> Both parties agree to maintain confidentiality of proprietary information.</li>\n<li><strong>Termination:</strong> Either party may terminate this agreement with 30 days written notice.</li>\n<li><strong>Liability:</strong> Provider\'s liability shall be limited to the amount paid under this agreement.</li>\n<li><strong>Governing Law:</strong> This agreement shall be governed by the laws of the jurisdiction.</li>\n<li><strong>Amendments:</strong> Any amendments must be made in writing and signed by both parties.</li>\n</ol>',1,1,1,'2025-11-25 23:26:11','2025-11-25 23:26:11'),
(2,'Standard Service Agreement','service','Default template for service agreements','<h2 style=\"text-align: center;\">SERVICE AGREEMENT</h2>\n<p style=\"text-align: center;\"><strong>Agreement Number: {agreement_number}</strong></p>\n<p style=\"text-align: center;\">Date: {agreement_date}</p>','<h3>1. Parties</h3>\n<p>This Agreement is entered into between <strong>{company_name}</strong> (\"Provider\") and <strong>{customer_name}</strong> (\"Client\").</p>\n\n<h3>2. Services</h3>\n<p>The Provider agrees to provide the following services to the Client:</p>\n{line_items}\n\n<h3>3. Term</h3>\n<p>This Agreement shall commence on <strong>{start_date}</strong> and continue until <strong>{end_date}</strong>, unless terminated earlier in accordance with the terms herein.</p>\n\n<h3>4. Payment Terms</h3>\n<p>Total Amount: <strong>{total_amount}</strong></p>\n<p>Payment is due within 30 days of invoice date.</p>','<h3>Signatures</h3>\n<p>By signing below, both parties agree to the terms and conditions outlined in this Agreement.</p>\n<br>\n<p><strong>Provider:</strong> {company_name}</p>\n<p>Authorized Signature: _____________________</p>\n<br>\n<p><strong>Client:</strong> {customer_name}</p>\n<p>Signature: {signature}</p>\n<p>Date: {signed_date}</p>','<h3>Terms and Conditions</h3>\n<ol>\n<li><strong>Confidentiality:</strong> Both parties agree to maintain confidentiality of proprietary information.</li>\n<li><strong>Termination:</strong> Either party may terminate this agreement with 30 days written notice.</li>\n<li><strong>Liability:</strong> Provider\'s liability shall be limited to the amount paid under this agreement.</li>\n<li><strong>Governing Law:</strong> This agreement shall be governed by the laws of the jurisdiction.</li>\n<li><strong>Amendments:</strong> Any amendments must be made in writing and signed by both parties.</li>\n</ol>',1,1,1,'2025-11-25 23:30:52','2025-11-25 23:30:52');
/*!40000 ALTER TABLE `agreement_templates` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `agreements`
--

DROP TABLE IF EXISTS `agreements`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `agreements` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `agreement_number` varchar(50) NOT NULL,
  `customer_id` int(10) unsigned NOT NULL,
  `quote_id` int(10) unsigned DEFAULT NULL,
  `agreement_date` date NOT NULL,
  `start_date` date NOT NULL,
  `end_date` date DEFAULT NULL,
  `template_id` int(10) unsigned DEFAULT NULL,
  `subtotal` decimal(15,2) NOT NULL DEFAULT 0.00,
  `tax_amount` decimal(15,2) NOT NULL DEFAULT 0.00,
  `discount_amount` decimal(15,2) NOT NULL DEFAULT 0.00,
  `total_amount` decimal(15,2) NOT NULL DEFAULT 0.00,
  `status` enum('draft','sent','signed','rejected','expired','converted') NOT NULL DEFAULT 'draft',
  `notes` text DEFAULT NULL,
  `terms` text DEFAULT NULL,
  `public_token` varchar(64) DEFAULT NULL,
  `token_expires_at` datetime DEFAULT NULL,
  `customer_response` enum('accepted','declined') DEFAULT NULL,
  `signed_at` datetime DEFAULT NULL,
  `signed_by_name` varchar(255) DEFAULT NULL,
  `signed_by_email` varchar(255) DEFAULT NULL,
  `signature_data` longtext DEFAULT NULL,
  `converted_to_sales_order_id` int(10) unsigned DEFAULT NULL,
  `created_by` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `agreement_number` (`agreement_number`),
  UNIQUE KEY `public_token` (`public_token`),
  KEY `idx_agreement_number` (`agreement_number`),
  KEY `idx_customer_id` (`customer_id`),
  KEY `idx_status` (`status`),
  KEY `idx_public_token` (`public_token`),
  KEY `idx_created_at` (`created_at`),
  KEY `idx_deleted_at` (`deleted_at`),
  KEY `quote_id` (`quote_id`),
  KEY `created_by` (`created_by`),
  KEY `converted_to_sales_order_id` (`converted_to_sales_order_id`),
  CONSTRAINT `agreements_ibfk_1` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`),
  CONSTRAINT `agreements_ibfk_2` FOREIGN KEY (`quote_id`) REFERENCES `quotes` (`id`) ON DELETE SET NULL,
  CONSTRAINT `agreements_ibfk_3` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`),
  CONSTRAINT `agreements_ibfk_4` FOREIGN KEY (`converted_to_sales_order_id`) REFERENCES `sales_orders` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `agreements`
--

LOCK TABLES `agreements` WRITE;
/*!40000 ALTER TABLE `agreements` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `agreements` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `announcement_reads`
--

DROP TABLE IF EXISTS `announcement_reads`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `announcement_reads` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `announcement_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `read_at` timestamp NULL DEFAULT current_timestamp(),
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `announcement_user` (`announcement_id`,`user_id`),
  KEY `user_id` (`user_id`),
  CONSTRAINT `announcement_reads_ibfk_1` FOREIGN KEY (`announcement_id`) REFERENCES `announcements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `announcement_reads_ibfk_2` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `announcement_reads`
--

LOCK TABLES `announcement_reads` WRITE;
/*!40000 ALTER TABLE `announcement_reads` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `announcement_reads` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `announcements`
--

DROP TABLE IF EXISTS `announcements`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `announcements` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `message` text NOT NULL,
  `link` varchar(500) DEFAULT NULL,
  `type` enum('info','warning','success','danger') DEFAULT 'info',
  `priority` enum('low','normal','high','urgent') DEFAULT 'normal',
  `target_audience` enum('all','role','specific') DEFAULT 'all',
  `target_roles` varchar(255) DEFAULT NULL COMMENT 'Comma-separated role names if target_audience=role',
  `target_users` text DEFAULT NULL COMMENT 'Comma-separated user IDs if target_audience=specific',
  `start_date` datetime NOT NULL,
  `end_date` datetime DEFAULT NULL,
  `status` enum('draft','active','expired','archived') DEFAULT 'draft',
  `created_by` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `status` (`status`),
  KEY `start_date` (`start_date`),
  KEY `end_date` (`end_date`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `announcements_ibfk_1` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=32 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `announcements`
--

LOCK TABLES `announcements` WRITE;
/*!40000 ALTER TABLE `announcements` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `announcements` VALUES
(5,'Upcoming Event: Test alert (in less than 5 minutes)','Event: Test alert\nthis is a message','/calendar','info','high','specific',NULL,'@all-staff @Admin User ','2025-11-14 13:48:17','2025-11-14 15:48:17','active',1,'2025-11-14 18:48:17','2025-11-14 18:48:17'),
(6,'Upcoming Event: Test again (in 10 minutes)','Event: Test again\n`Alert\'','/calendar','info','high','specific',NULL,'@Admin User ','2025-11-14 14:00:00','2025-11-14 16:00:00','active',1,'2025-11-14 19:00:00','2025-11-14 19:00:00'),
(9,'Product Expiring in 30 Days: Premium Widget A','Product expiring in 30 days\nProduct: Premium Widget A (SKU: PROD-001-TEST)\nLot/Serial: LOT-TEST-30D-6633\nQuantity: 50.00\nLocation: Garage\nPlan usage or disposal before expiration','/inventory/lot-serial/1','info','normal','all',NULL,NULL,'2025-11-14 15:01:26','2025-11-17 15:01:26','active',1,'2025-11-14 20:01:26','2025-11-14 20:01:26'),
(10,'⚠️ URGENT: Product Expiring in 7 Days - Premium Widget A','⚠️ Product expiring in 7 DAYS\nProduct: Premium Widget A (SKU: PROD-001-TEST)\nLot/Serial: LOT-TEST-7D-1241\nQuantity: 75.00\nLocation: Garage\n⚠️ URGENT: Use immediately or prepare for disposal','/inventory/lot-serial/2','warning','high','all',NULL,NULL,'2025-11-14 15:01:26','2025-11-17 15:01:26','active',1,'2025-11-14 20:01:26','2025-11-14 20:01:26'),
(11,'🚨 EXPIRED PRODUCT: Premium Widget A - QUARANTINE NOW','🚨 EXPIRED PRODUCT - IMMEDIATE ACTION REQUIRED\nProduct: Premium Widget A (SKU: PROD-001-TEST)\nLot/Serial: LOT-TEST-EXP-6307\nQuantity: 25.00\nLocation: Garage\n🚨 COMPLIANCE ALERT: Remove from inventory immediately\nAction: Quarantine and dispose per company policy\nRisk: Safety/regulatory violation if used','/inventory/lot-serial/3','danger','high','all',NULL,NULL,'2025-11-14 15:01:26','2025-11-21 15:01:26','active',1,'2025-11-14 20:01:26','2025-11-14 20:01:26'),
(12,'Payment Reminder: Invoice #INV-TEST-3D-984 due in 3 days','Invoice #INV-TEST-3D-984 due in 3 days\nCustomer: 4 Patriots\nAmount: $1,500.00\nBalance Due: $1,500.00','/invoices/19','info','normal','all',NULL,NULL,'2025-11-14 15:01:48','2025-11-15 15:01:48','active',1,'2025-11-14 20:01:48','2025-11-14 20:01:48'),
(13,'⚠️ URGENT: Invoice #INV-TEST-1D-324 due tomorrow','⚠️ Invoice #INV-TEST-1D-324 due TOMORROW\nCustomer: 4 Patriots\nAmount: $2,500.00\nBalance Due: $2,500.00','/invoices/20','warning','high','all',NULL,NULL,'2025-11-14 15:01:48','2025-11-16 15:01:48','active',1,'2025-11-14 20:01:48','2025-11-14 20:01:48'),
(14,'🔴 PAYMENT DUE: Invoice #INV-TEST-DUE-667 due today','🔴 Invoice #INV-TEST-DUE-667 is DUE TODAY\nCustomer: 4 Patriots\nAmount: $3,500.00\nBalance Due: $3,500.00','/invoices/21','warning','high','all',NULL,NULL,'2025-11-14 15:01:48','2025-11-17 15:01:48','active',1,'2025-11-14 20:01:48','2025-11-14 20:01:48'),
(15,'❌ OVERDUE: Invoice #INV-TEST-7D-364 - 7 days past due','❌ Invoice #INV-TEST-7D-364 is 7 DAYS OVERDUE\nCustomer: 4 Patriots\nAmount: $5,000.00\nBalance Due: $5,000.00\n⚠️ Immediate collection action required','/invoices/22','danger','high','all',NULL,NULL,'2025-11-14 15:01:48','2025-11-21 15:01:48','active',1,'2025-11-14 20:01:48','2025-11-14 20:01:48'),
(16,'Work Order Due Tomorrow: #WO-TEST-1D-10','Work Order #WO-TEST-1D-10 due TOMORROW\nProduct: Premium Widget A\nQuantity: 100\nStatus: planned\nEnsure production is on track for completion','/manufacturing/work-orders/1','info','normal','all',NULL,NULL,'2025-11-14 15:02:03','2025-11-15 15:02:03','active',1,'2025-11-14 20:02:03','2025-11-14 20:02:03'),
(17,'🔴 PRODUCTION DUE: Work Order #WO-TEST-DUE-219 due today','🔴 Work Order #WO-TEST-DUE-219 DUE TODAY\nProduct: Premium Widget A\nQuantity: 150\nStatus: planned\n🔴 Must be completed by end of day','/manufacturing/work-orders/2','warning','high','all',NULL,NULL,'2025-11-14 15:02:03','2025-11-15 15:02:03','active',1,'2025-11-14 20:02:03','2025-11-14 20:02:03'),
(18,'❌ OVERDUE: Work Order #WO-TEST-OVER-64 - 3 days late','❌ Work Order #WO-TEST-OVER-64 is 3 DAYS OVERDUE\nProduct: Premium Widget A\nQuantity: 200\nStatus: planned\n❌ Critical production delay - immediate action required\nImpact: Customer deliveries may be affected','/manufacturing/work-orders/3','danger','high','all',NULL,NULL,'2025-11-14 15:02:03','2025-11-15 15:02:03','active',1,'2025-11-14 20:02:03','2025-11-14 20:02:03'),
(19,'Quote Expiring Soon: #QUO-TEST-3D-822 - 3 days remaining','Quote #QUO-TEST-3D-822 expires in 3 days\nCustomer: 4 Patriots\nAmount: $4,500.00\nFollow up with customer to convert to sales order','/quotes/6','info','normal','all',NULL,NULL,'2025-11-14 15:02:16','2025-11-15 15:02:16','active',1,'2025-11-14 20:02:16','2025-11-14 20:02:16'),
(20,'⚠️ URGENT: Quote #QUO-TEST-1D-15 expires tomorrow','⚠️ Quote #QUO-TEST-1D-15 expires TOMORROW\nCustomer: 4 Patriots\nAmount: $6,000.00\n⚠️ Last chance to close this deal - contact customer urgently','/quotes/7','warning','high','all',NULL,NULL,'2025-11-14 15:02:16','2025-11-16 15:02:16','active',1,'2025-11-14 20:02:16','2025-11-14 20:02:16'),
(21,'❌ EXPIRED: Quote #QUO-TEST-EXP-611 - Review required','❌ Quote #QUO-TEST-EXP-611 EXPIRED TODAY\nCustomer: 4 Patriots\nAmount: $7,500.00\n❌ Lost opportunity - potential revenue $7,500.00\nConsider: Why did customer not convert? Follow up required','/quotes/8','danger','high','all',NULL,NULL,'2025-11-14 15:02:16','2025-11-17 15:02:16','active',1,'2025-11-14 20:02:16','2025-11-14 20:02:16'),
(22,'Upcoming Event: Deadline (at 12:00 AM)','Event: Deadline','/calendar','info','normal','all',NULL,NULL,'2025-11-20 23:00:01','2025-11-21 01:00:01','active',1,'2025-11-21 04:00:01','2025-11-21 04:00:01'),
(23,'Upcoming Event: Event Title Here (at 11:26 AM)','Event: Event Title Here\nDesc Test\nLocation: There','/calendar','info','normal','all',NULL,NULL,'2025-11-27 10:30:01','2025-11-27 12:30:01','active',1,'2025-11-27 15:30:01','2025-11-27 15:30:01'),
(24,'Upcoming Event: Event (at 12:00 PM)','Event: Event\nDesc\nLocation: Loca','/calendar','info','normal','all',NULL,NULL,'2025-11-27 11:00:01','2025-11-27 13:00:01','active',1,'2025-11-27 16:00:01','2025-11-27 16:00:01'),
(25,'Upcoming Event: test (in 10 minutes)','Event: test\ndesc\nLocation: lacotione','/calendar','info','high','all',NULL,NULL,'2025-11-27 15:50:00','2025-11-27 17:50:00','active',1,'2025-11-27 20:50:00','2025-11-27 20:50:00'),
(26,'Upcoming Event: Test (in 10 minutes)','Event: Test','/calendar','info','high','all',NULL,NULL,'2025-11-27 15:50:00','2025-11-27 17:50:02','active',1,'2025-11-27 20:50:02','2025-11-27 20:50:02'),
(27,'Upcoming Event: test (at 5:00 PM)','Event: test','/calendar','info','normal','all',NULL,NULL,'2025-11-27 16:10:00','2025-11-27 18:10:00','active',1,'2025-11-27 21:10:00','2025-11-27 21:10:00'),
(28,'Upcoming Event: test (at 5:00 PM)','Event: test','/calendar','info','normal','all',NULL,NULL,'2025-11-27 16:10:00','2025-11-27 18:10:00','active',1,'2025-11-27 21:10:00','2025-11-27 21:10:00'),
(29,'Upcoming Event: tester (at 5:00 PM)','Event: tester','/calendar','info','normal','all',NULL,NULL,'2025-11-27 16:10:00','2025-11-27 18:10:02','active',1,'2025-11-27 21:10:02','2025-11-27 21:10:02'),
(30,'Upcoming Event: tester (at 5:00 PM)','Event: tester','/calendar','info','normal','all',NULL,NULL,'2025-11-27 16:10:00','2025-11-27 18:10:03','active',1,'2025-11-27 21:10:03','2025-11-27 21:10:03'),
(31,'Upcoming Event: Demo (at 7:00 PM)','Event: Demo','/calendar','info','normal','all',NULL,NULL,'2025-12-04 18:00:01','2025-12-04 20:00:01','active',1,'2025-12-04 23:00:01','2025-12-04 23:00:01');
/*!40000 ALTER TABLE `announcements` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `api_rate_limit_violations`
--

DROP TABLE IF EXISTS `api_rate_limit_violations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `api_rate_limit_violations` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `identifier` varchar(255) NOT NULL COMMENT 'IP address or API key that violated limit',
  `endpoint` varchar(100) NOT NULL COMMENT 'Endpoint that was rate limited',
  `request_count` int(11) NOT NULL COMMENT 'Number of requests that triggered violation',
  `limit` int(11) NOT NULL COMMENT 'Rate limit that was exceeded',
  `user_agent` text DEFAULT NULL COMMENT 'User agent string',
  `request_uri` text DEFAULT NULL COMMENT 'Request URI',
  `created_at` datetime DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_identifier` (`identifier`),
  KEY `idx_endpoint` (`endpoint`),
  KEY `idx_created_at` (`created_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Logs rate limit violations for security monitoring';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `api_rate_limit_violations`
--

LOCK TABLES `api_rate_limit_violations` WRITE;
/*!40000 ALTER TABLE `api_rate_limit_violations` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `api_rate_limit_violations` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `api_rate_limits`
--

DROP TABLE IF EXISTS `api_rate_limits`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `api_rate_limits` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `identifier` varchar(255) NOT NULL COMMENT 'IP address or API key',
  `endpoint` varchar(100) NOT NULL COMMENT 'Endpoint identifier (e.g., api_machine, api_search)',
  `request_count` int(11) NOT NULL DEFAULT 0 COMMENT 'Number of requests in current window',
  `window_start` datetime NOT NULL COMMENT 'Start of rate limit window',
  `window_end` datetime NOT NULL COMMENT 'End of rate limit window',
  `last_request` datetime NOT NULL COMMENT 'Timestamp of last request',
  `created_at` datetime DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_identifier_endpoint` (`identifier`,`endpoint`),
  KEY `idx_window_end` (`window_end`),
  KEY `idx_last_request` (`last_request`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Tracks API rate limits per identifier and endpoint';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `api_rate_limits`
--

LOCK TABLES `api_rate_limits` WRITE;
/*!40000 ALTER TABLE `api_rate_limits` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `api_rate_limits` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `asset_categories`
--

DROP TABLE IF EXISTS `asset_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `asset_categories` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `category_name` varchar(100) NOT NULL,
  `useful_life_years` decimal(5,1) NOT NULL DEFAULT 10.0,
  `maintenance_capex_rate` decimal(5,2) NOT NULL DEFAULT 2.00 COMMENT 'Annual maintenance as % of asset value',
  `replacement_period_years` decimal(5,1) NOT NULL DEFAULT 10.0 COMMENT 'When to plan replacement',
  `capitalization_threshold` decimal(5,2) NOT NULL DEFAULT 15.00 COMMENT 'Min % to capitalize vs expense',
  `depreciation_method` enum('straight_line','declining_balance','units_of_production') DEFAULT 'straight_line',
  `salvage_value_percent` decimal(5,2) DEFAULT 10.00 COMMENT 'Expected salvage value as % of cost',
  `is_active` tinyint(1) NOT NULL DEFAULT 1,
  `sort_order` int(11) DEFAULT 0,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_active` (`is_active`),
  KEY `idx_sort` (`sort_order`)
) ENGINE=InnoDB AUTO_INCREMENT=37 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `asset_categories`
--

LOCK TABLES `asset_categories` WRITE;
/*!40000 ALTER TABLE `asset_categories` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `asset_categories` VALUES
(1,'Land / Property',20.0,6.20,10.0,15.00,'straight_line',10.00,1,1,'2025-11-01 11:01:06','2025-11-01 11:01:06'),
(2,'Plant / Building',18.0,6.20,10.0,15.00,'straight_line',10.00,1,2,'2025-11-01 11:01:06','2025-11-01 11:01:06'),
(3,'Manufacturing Equipment',15.0,2.00,10.0,15.00,'straight_line',10.00,1,3,'2025-11-01 11:01:06','2025-11-01 11:01:06'),
(4,'Tooling Machinery',15.0,2.00,10.0,15.00,'straight_line',10.00,1,4,'2025-11-01 11:01:06','2025-11-01 11:01:06'),
(5,'Office Furniture',10.0,6.20,10.0,15.00,'straight_line',10.00,1,5,'2025-11-01 11:01:06','2025-11-01 11:01:06'),
(6,'Office Fixtures',10.0,6.20,10.0,15.00,'straight_line',10.00,1,6,'2025-11-01 11:01:06','2025-11-01 11:01:06'),
(7,'Vehicles',10.0,6.20,10.0,15.00,'straight_line',10.00,1,7,'2025-11-01 11:01:06','2025-11-01 11:01:06'),
(8,'IT Equipment',5.0,6.20,10.0,15.00,'straight_line',10.00,1,8,'2025-11-01 11:01:06','2025-11-01 11:01:06'),
(9,'Construction Fees & Expenses',5.0,0.00,0.0,0.00,'straight_line',10.00,1,9,'2025-11-01 11:01:06','2025-11-01 11:01:06'),
(10,'Battery Module Assembly Equipment',10.0,5.00,7.0,0.00,'straight_line',10.00,1,10,'2025-11-01 11:01:06','2025-11-01 11:01:06'),
(11,'Battery Module T&A Equipment',12.0,2.00,10.0,0.00,'straight_line',10.00,1,11,'2025-11-01 11:01:06','2025-11-01 11:01:06'),
(12,'Physical Security',10.0,2.00,10.0,15.00,'straight_line',10.00,1,12,'2025-11-01 11:01:06','2025-11-01 11:01:06'),
(13,'Land / Property',20.0,6.20,10.0,15.00,'straight_line',10.00,1,1,'2025-11-01 11:21:16','2025-11-01 11:21:16'),
(14,'Plant / Building',18.0,6.20,10.0,15.00,'straight_line',10.00,1,2,'2025-11-01 11:21:16','2025-11-01 11:21:16'),
(15,'Manufacturing Equipment',15.0,2.00,10.0,15.00,'straight_line',10.00,1,3,'2025-11-01 11:21:16','2025-11-01 11:21:16'),
(16,'Tooling Machinery',15.0,2.00,10.0,15.00,'straight_line',10.00,1,4,'2025-11-01 11:21:16','2025-11-01 11:21:16'),
(17,'Office Furniture',10.0,6.20,10.0,15.00,'straight_line',10.00,1,5,'2025-11-01 11:21:16','2025-11-01 11:21:16'),
(18,'Office Fixtures',10.0,6.20,10.0,15.00,'straight_line',10.00,1,6,'2025-11-01 11:21:16','2025-11-01 11:21:16'),
(19,'Vehicles',10.0,6.20,10.0,15.00,'straight_line',10.00,1,7,'2025-11-01 11:21:16','2025-11-01 11:21:16'),
(20,'IT Equipment',5.0,6.20,10.0,15.00,'straight_line',10.00,1,8,'2025-11-01 11:21:16','2025-11-01 11:21:16'),
(21,'Construction Fees & Expenses',5.0,0.00,0.0,0.00,'straight_line',10.00,1,9,'2025-11-01 11:21:16','2025-11-01 11:21:16'),
(22,'Battery Module Assembly Equipment',10.0,5.00,7.0,0.00,'straight_line',10.00,1,10,'2025-11-01 11:21:16','2025-11-01 11:21:16'),
(23,'Battery Module T&A Equipment',12.0,2.00,10.0,0.00,'straight_line',10.00,1,11,'2025-11-01 11:21:16','2025-11-01 11:21:16'),
(24,'Physical Security',10.0,2.00,10.0,15.00,'straight_line',10.00,1,12,'2025-11-01 11:21:16','2025-11-01 11:21:16'),
(25,'Land / Property',20.0,6.20,10.0,15.00,'straight_line',10.00,1,1,'2025-11-01 11:27:52','2025-11-01 11:27:52'),
(26,'Plant / Building',18.0,6.20,10.0,15.00,'straight_line',10.00,1,2,'2025-11-01 11:27:52','2025-11-01 11:27:52'),
(27,'Manufacturing Equipment',15.0,2.00,10.0,15.00,'straight_line',10.00,1,3,'2025-11-01 11:27:52','2025-11-01 11:27:52'),
(28,'Tooling Machinery',15.0,2.00,10.0,15.00,'straight_line',10.00,1,4,'2025-11-01 11:27:52','2025-11-01 11:27:52'),
(29,'Office Furniture',10.0,6.20,10.0,15.00,'straight_line',10.00,1,5,'2025-11-01 11:27:52','2025-11-01 11:27:52'),
(30,'Office Fixtures',10.0,6.20,10.0,15.00,'straight_line',10.00,1,6,'2025-11-01 11:27:52','2025-11-01 11:27:52'),
(31,'Vehicles',10.0,6.20,10.0,15.00,'straight_line',10.00,1,7,'2025-11-01 11:27:52','2025-11-01 11:27:52'),
(32,'IT Equipment',5.0,6.20,10.0,15.00,'straight_line',10.00,1,8,'2025-11-01 11:27:52','2025-11-01 11:27:52'),
(33,'Construction Fees & Expenses',5.0,0.00,0.0,0.00,'straight_line',10.00,1,9,'2025-11-01 11:27:52','2025-11-01 11:27:52'),
(34,'Battery Module Assembly Equipment',10.0,5.00,7.0,0.00,'straight_line',10.00,1,10,'2025-11-01 11:27:52','2025-11-01 11:27:52'),
(35,'Battery Module T&A Equipment',12.0,2.00,10.0,0.00,'straight_line',10.00,1,11,'2025-11-01 11:27:52','2025-11-01 11:27:52'),
(36,'Physical Security',10.0,2.00,10.0,15.00,'straight_line',10.00,1,12,'2025-11-01 11:27:52','2025-11-01 11:27:52');
/*!40000 ALTER TABLE `asset_categories` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `attendance`
--

DROP TABLE IF EXISTS `attendance`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `attendance` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `employee_id` int(10) unsigned NOT NULL,
  `date` date NOT NULL,
  `clock_in` time DEFAULT NULL,
  `clock_out` time DEFAULT NULL,
  `hours_worked` decimal(5,2) DEFAULT NULL,
  `status` enum('present','absent','late','half_day','leave') DEFAULT 'present',
  `notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `employee_date` (`employee_id`,`date`),
  CONSTRAINT `attendance_ibfk_1` FOREIGN KEY (`employee_id`) REFERENCES `employees` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `attendance`
--

LOCK TABLES `attendance` WRITE;
/*!40000 ALTER TABLE `attendance` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `attendance` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Temporary table structure for view `audit_log_stats`
--

DROP TABLE IF EXISTS `audit_log_stats`;
/*!50001 DROP VIEW IF EXISTS `audit_log_stats`*/;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8mb4;
/*!50001 CREATE VIEW `audit_log_stats` AS SELECT
 1 AS `date`,
  1 AS `model`,
  1 AS `action`,
  1 AS `count`,
  1 AS `unique_users` */;
SET character_set_client = @saved_cs_client;

--
-- Table structure for table `audit_logs`
--

DROP TABLE IF EXISTS `audit_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `audit_logs` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) DEFAULT NULL,
  `user_name` varchar(255) DEFAULT NULL COMMENT 'Cached user name for historical records',
  `action` varchar(50) NOT NULL,
  `entity_type` varchar(100) NOT NULL,
  `entity_id` int(11) DEFAULT NULL,
  `description` varchar(500) DEFAULT NULL COMMENT 'Human-readable description',
  `old_values` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Previous values (for updates/deletes)' CHECK (json_valid(`old_values`)),
  `new_values` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'New values (for creates/updates)' CHECK (json_valid(`new_values`)),
  `changed_fields` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Array of field names that changed' CHECK (json_valid(`changed_fields`)),
  `url` varchar(500) DEFAULT NULL COMMENT 'Request URL',
  `method` varchar(10) DEFAULT NULL COMMENT 'HTTP method (GET, POST, etc.)',
  `tags` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Custom tags for filtering' CHECK (json_valid(`tags`)),
  `metadata` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Additional context data' CHECK (json_valid(`metadata`)),
  `ip_address` varchar(45) DEFAULT NULL,
  `user_agent` varchar(255) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_user_id` (`user_id`),
  KEY `idx_action` (`action`),
  KEY `idx_entity` (`entity_type`,`entity_id`),
  KEY `idx_created_at` (`created_at`),
  KEY `idx_user_name` (`user_name`),
  KEY `idx_description` (`description`(255))
) ENGINE=InnoDB AUTO_INCREMENT=788 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `audit_logs`
--

LOCK TABLES `audit_logs` WRITE;
/*!40000 ALTER TABLE `audit_logs` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `audit_logs` VALUES
(1,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-11 17:21:45'),
(2,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-11 17:21:52'),
(3,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-11 17:58:01'),
(4,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-11 17:58:20'),
(5,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-11 17:59:24'),
(6,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-11 17:59:33'),
(7,1,'Admin User','update','menu_items',256,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-11 18:10:38'),
(8,1,'Admin User','update','users',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-11 18:55:10'),
(9,1,'Admin User','update','users',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-11 18:55:28'),
(10,1,'Admin User','update','users',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-11 18:55:40'),
(11,NULL,NULL,'login_failed','auth',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-11 20:05:11'),
(12,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-11 20:05:25'),
(13,NULL,NULL,'login_failed','auth',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-11 23:26:28'),
(14,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-11 23:27:02'),
(15,NULL,NULL,'login_failed','auth',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 12:25:10'),
(16,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 12:25:20'),
(17,NULL,NULL,'login_failed','auth',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 14:21:13'),
(18,NULL,NULL,'login_failed','auth',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 14:21:24'),
(19,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 14:21:30'),
(20,NULL,NULL,'login_failed','auth',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 17:00:59'),
(21,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 17:01:42'),
(22,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 17:24:31'),
(23,1,'Admin User','update','menu_items',185,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 17:44:42'),
(24,1,'Admin User','update','menu_items',186,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 17:44:56'),
(25,1,'Admin User','update','menu_items',187,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 17:45:06'),
(26,1,'Admin User','delete','purchase_orders',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 17:57:33'),
(27,1,'Admin User','delete','purchase_orders',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 17:57:36'),
(28,1,'Admin User','delete','purchase_orders',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 17:57:40'),
(29,1,'Admin User','delete','purchase_orders',27,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 17:57:44'),
(30,1,'Admin User','delete','purchase_orders',13,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 17:57:52'),
(31,1,'Admin User','delete','purchase_orders',26,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 17:57:56'),
(32,1,'Admin User','delete','purchase_orders',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 17:57:58'),
(33,1,'Admin User','delete','purchase_orders',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 17:58:00'),
(34,1,'Admin User','delete','purchase_orders',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 17:58:03'),
(35,1,'Admin User','delete','purchase_orders',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 17:58:05'),
(36,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 19:36:37'),
(37,1,'Admin User','delete','invoices',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 19:40:24'),
(38,1,'Admin User','delete','invoices',16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 19:40:33'),
(39,1,'Admin User','delete','invoices',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 19:41:10'),
(40,1,'Admin User','delete','invoices',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 19:41:14'),
(41,1,'Admin User','delete','invoices',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 19:41:16'),
(42,1,'Admin User','delete','invoices',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 19:41:18'),
(43,1,'Admin User','delete','invoices',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 19:41:19'),
(44,1,'Admin User','delete','invoices',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 19:41:21'),
(45,1,'Admin User','delete','invoices',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 19:41:24'),
(46,1,'Admin User','delete','invoices',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 19:41:26'),
(47,1,'Admin User','delete','invoices',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 19:41:33'),
(48,1,'Admin User','delete','invoices',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 19:41:44'),
(49,1,'Admin User','delete','invoices',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 19:41:53'),
(50,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-12 22:37:20'),
(51,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-13 01:19:26'),
(52,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-13 11:43:04'),
(53,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-13 11:49:32'),
(54,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-13 14:22:11'),
(55,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-13 16:25:41'),
(56,1,'Admin User','update','employees',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-13 16:31:51'),
(57,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-13 18:26:01'),
(58,1,'Admin User','update','menu_items',257,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-13 18:26:56'),
(59,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-13 19:44:08'),
(60,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-13 21:46:41'),
(61,1,'Admin User','update','users',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-13 22:00:45'),
(62,1,'Admin User','update','menu_items',237,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-13 22:02:37'),
(63,1,'Admin User','update','menu_items',238,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-13 22:14:45'),
(64,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 00:02:53'),
(65,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 00:12:19'),
(66,1,'Admin User','update','menu_items',239,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 00:13:33'),
(67,1,'Admin User','update','menu_items',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 00:13:43'),
(68,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 11:38:37'),
(69,1,'Admin User','update','menu_items',258,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 12:42:48'),
(70,1,'Admin User','update','menu_items',258,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 12:43:16'),
(71,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 13:11:37'),
(72,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 13:12:36'),
(73,1,'Admin User','create','menu_items',259,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 13:14:30'),
(74,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 13:57:04'),
(75,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 14:42:01'),
(76,1,'Admin User','update','menu_items',199,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 16:31:04'),
(77,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 16:45:50'),
(78,1,'Admin User','update','menu_items',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 17:27:29'),
(79,1,'Admin User','update','menu_items',201,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 17:27:37'),
(80,1,'Admin User','update','menu_items',202,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 17:27:47'),
(81,1,'Admin User','update','menu_items',199,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 17:41:00'),
(82,1,'Admin User','update','menu_items',201,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 17:42:06'),
(83,1,'Admin User','update','menu_items',201,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 17:42:46'),
(84,1,'Admin User','update','menu_items',205,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 17:44:08'),
(85,1,'Admin User','update','menu_items',206,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 17:44:16'),
(86,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 18:09:19'),
(87,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 18:19:12'),
(88,1,'Admin User','update','menu_items',202,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 18:40:37'),
(89,1,'Admin User','update','menu_items',202,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 18:41:32'),
(90,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 20:48:13'),
(91,1,'Admin User','create','users',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 21:00:43'),
(92,1,'Admin User','create','users',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 21:01:16'),
(93,1,'Admin User','update','roles',81,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 21:02:51'),
(94,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 21:03:10'),
(95,8,'Tony A','login','auth',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 21:03:28'),
(96,8,'Tony A','logout','auth',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 22:40:28'),
(97,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 22:40:31'),
(98,1,'Admin User','update','menu_items',202,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 23:23:30'),
(99,1,'Admin User','update','menu_items',203,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 23:23:53'),
(100,1,'Admin User','update','menu_items',204,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-14 23:24:03'),
(101,1,'Admin User','update','users',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 00:18:54'),
(102,1,'Admin User','update','users',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 00:19:02'),
(103,1,'Admin User','update','users',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 00:19:11'),
(104,1,'Admin User','update','users',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 00:19:58'),
(105,1,'Admin User','update','users',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 00:21:12'),
(106,1,'Admin User','update','users',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 00:21:42'),
(107,1,'Admin User','update','users',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 00:22:18'),
(108,1,'Admin User','update','users',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 00:24:15'),
(109,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 11:16:16'),
(110,1,'Admin User','update','roles',81,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 12:12:06'),
(111,1,'Admin User','update','roles',88,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 12:12:38'),
(112,1,'Admin User','update','roles',76,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 12:15:39'),
(113,1,'Admin User','update','users',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 12:30:34'),
(114,1,'Admin User','update','users',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 12:56:08'),
(115,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 13:17:46'),
(116,1,'Admin User','delete','invoices',19,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 13:25:29'),
(117,1,'Admin User','delete','invoices',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 13:25:32'),
(118,1,'Admin User','delete','invoices',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 13:25:34'),
(119,1,'Admin User','delete','invoices',22,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 13:25:35'),
(120,1,'Admin User','delete','invoices',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 13:25:48'),
(121,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 13:53:08'),
(122,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 15:40:59'),
(123,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 15:41:02'),
(124,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 15:56:58'),
(125,8,'Tony A','login','auth',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 15:57:11'),
(126,8,'Tony A','logout','auth',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 15:58:01'),
(127,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 15:58:04'),
(128,1,'Admin User','update','roles',131,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 16:00:58'),
(129,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 16:01:08'),
(130,8,'Tony A','login','auth',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 16:01:16'),
(131,8,'Tony A','logout','auth',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 16:01:40'),
(132,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 16:01:45'),
(133,1,'Admin User','update','roles',81,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 16:02:16'),
(134,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 16:12:08'),
(135,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 16:33:42'),
(136,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 16:34:13'),
(137,1,'Admin User','update','roles',130,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 16:54:59'),
(138,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 16:55:05'),
(139,7,'Nathan S','login','auth',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 16:55:15'),
(140,7,'Nathan S','logout','auth',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 16:56:18'),
(141,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 16:56:21'),
(142,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 17:40:13'),
(143,1,'Admin User','update','menu_items',237,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 17:41:15'),
(144,1,'Admin User','update','menu_items',237,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 17:50:35'),
(145,1,'Admin User','update','employees',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 17:51:36'),
(146,1,'Admin User','update','employees',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 17:53:11'),
(147,1,'Admin User','update','employees',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 17:57:21'),
(148,1,'Admin User','update','employees',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:00:00'),
(149,1,'Admin User','update','employees',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:04:18'),
(150,1,'Admin User','update','employees',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:05:15'),
(151,1,'Admin User','update','employees',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:05:33'),
(152,1,'Admin User','update','employees',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:05:42'),
(153,1,'Admin User','update','employees',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:06:02'),
(154,1,'Admin User','update','employees',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:10:33'),
(155,1,'Admin User','update','employees',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:10:57'),
(156,1,'Admin User','update','employees',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:13:33'),
(157,1,'Admin User','update','employees',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:14:26'),
(158,1,'Admin User','update','employees',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:19:18'),
(159,1,'Admin User','update','employees',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:21:37'),
(160,1,'Admin User','update','employees',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:24:56'),
(161,1,'Admin User','update','users',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:28:16'),
(162,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:30:17'),
(163,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:30:51'),
(164,1,'Admin User','mfa_enabled','security',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:36:01'),
(165,1,'Admin User','mfa_enabled','security',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:36:06'),
(166,1,'Admin User','create','menu_items',260,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:41:08'),
(167,1,'Admin User','create','menu_items',261,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:44:37'),
(168,1,'Admin User','create','menu_items',262,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:45:53'),
(169,1,'Admin User','update','menu_items',269,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:54:45'),
(170,1,'Admin User','update','menu_items',269,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:55:44'),
(171,1,'Admin User','create','menu_items',270,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:56:26'),
(172,1,'Admin User','update','menu_items',265,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:58:32'),
(173,1,'Admin User','update','menu_items',264,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 18:59:32'),
(174,1,'Admin User','update','menu_items',264,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:15:58'),
(175,1,'Admin User','delete','menu_items',260,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:16:25'),
(176,1,'Admin User','delete','menu_items',263,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:16:30'),
(177,1,'Admin User','update','menu_items',261,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:16:41'),
(178,1,'Admin User','delete','menu_items',261,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:17:21'),
(179,1,'Admin User','update','menu_items',256,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:17:39'),
(180,1,'Admin User','update','menu_items',258,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:17:48'),
(181,1,'Admin User','update','menu_items',243,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:18:51'),
(182,1,'Admin User','update','menu_items',243,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:19:03'),
(183,1,'Admin User','update','menu_items',56,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:19:24'),
(184,1,'Admin User','update','menu_items',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:19:36'),
(185,1,'Admin User','update','menu_items',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:19:45'),
(186,1,'Admin User','update','menu_items',243,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:20:01'),
(187,1,'Admin User','update','menu_items',266,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:20:47'),
(188,1,'Admin User','update','menu_items',267,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:20:58'),
(189,1,'Admin User','update','menu_items',268,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:21:09'),
(190,1,'Admin User','delete','menu_items',262,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:21:51'),
(191,1,'Admin User','update','menu_items',59,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:22:15'),
(192,1,'Admin User','delete','menu_items',59,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:25:19'),
(193,1,'Admin User','update','employees',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:26:27'),
(194,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:30:32'),
(195,1,'Admin User','mfa_verified','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:41:56'),
(196,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:43:07'),
(197,1,'Admin User','mfa_verified','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:43:19'),
(198,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:43:39'),
(199,1,'Admin User','mfa_verified','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:43:58'),
(200,1,'Admin User','update','menu_items',264,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:54:36'),
(201,1,'Admin User','update','menu_items',272,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:54:53'),
(202,1,'Admin User','delete','menu_items',273,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:54:58'),
(203,1,'Admin User','delete','menu_items',271,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:55:02'),
(204,1,'Admin User','update','menu_items',272,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:55:22'),
(205,1,'Admin User','update','menu_items',272,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:55:34'),
(206,1,'Admin User','create','menu_items',274,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:56:44'),
(207,1,'Admin User','update','menu_items',272,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:57:01'),
(208,1,'Admin User','update','menu_items',264,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:57:14'),
(209,1,'Admin User','update','menu_items',274,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:57:51'),
(210,1,'Admin User','update','menu_items',274,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:58:02'),
(211,1,'Admin User','update','menu_items',53,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:58:34'),
(212,1,'Admin User','update','menu_items',61,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:59:05'),
(213,1,'Admin User','update','menu_items',265,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:59:12'),
(214,1,'Admin User','update','menu_items',274,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:59:23'),
(215,1,'Admin User','update','menu_items',53,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 19:59:33'),
(216,1,'Admin User','delete','menu_items',134,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 20:00:17'),
(217,1,'Admin User','mfa_verified','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 20:23:40'),
(218,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 20:33:31'),
(219,1,'Admin User','mfa_verified','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 20:33:39'),
(220,1,'Admin User','create','menu_items',276,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 21:52:32'),
(221,1,'Admin User','delete','menu_items',275,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 21:52:48'),
(222,1,'Admin User','update','menu_items',276,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 21:52:58'),
(223,1,'Admin User','mfa_verified','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 22:35:58'),
(224,1,'Admin User','create','users',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 23:53:17'),
(225,1,'Admin User','update','employees',19,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-15 23:53:48'),
(226,1,'Admin User','mfa_verified','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-16 11:21:15'),
(227,1,'Admin User','mfa_verified','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-16 13:22:00'),
(228,1,'Admin User','mfa_verified','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-16 13:57:26'),
(229,1,'Admin User','mfa_verified','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-16 16:00:11'),
(230,1,'Admin User','mfa_verified','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-16 18:11:29'),
(231,1,'Admin User','mfa_verified','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-16 20:14:56'),
(232,1,'Admin User','update','menu_items',277,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-16 21:06:15'),
(233,1,'Admin User','update','menu_items',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-16 21:07:01'),
(234,1,'Admin User','update','menu_items',43,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-16 21:07:51'),
(235,1,'Admin User','update','menu_items',196,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-16 21:19:07'),
(236,1,'Admin User','update','menu_items',194,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-16 21:19:23'),
(237,1,'Admin User','update','menu_items',196,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-16 21:19:50'),
(238,1,'Admin User','update','menu_items',195,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-16 21:20:03'),
(239,1,'Admin User','mfa_verified','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-16 22:23:49'),
(240,1,'Admin User','update','menu_items',279,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-16 22:30:00'),
(241,1,'Admin User','update','menu_items',279,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-16 22:30:22'),
(242,1,'Admin User','update','menu_items',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-16 22:30:32'),
(243,1,'Admin User','update','menu_items',278,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-16 23:58:53'),
(244,1,'Admin User','update','menu_items',278,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-16 23:59:15'),
(245,1,'Admin User','mfa_verified','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 11:07:18'),
(246,1,'Admin User','create','menu_items',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 11:21:31'),
(247,1,'Admin User','update','menu_items',36,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 11:21:59'),
(248,1,'Admin User','update','menu_items',255,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 11:22:24'),
(249,1,'Admin User','update','menu_items',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 11:22:38'),
(250,1,'Admin User','create','menu_items',281,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 11:23:09'),
(251,1,'Admin User','update','menu_items',281,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 11:23:40'),
(252,1,'Admin User','update','menu_items',36,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 11:23:54'),
(253,1,'Admin User','update','menu_items',255,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 11:24:13'),
(254,1,'Admin User','update','menu_items',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 11:24:25'),
(255,1,'Admin User','update','menu_items',32,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 11:25:11'),
(256,1,'Admin User','update','menu_items',32,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 11:25:45'),
(257,1,'Admin User','update','menu_items',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 11:26:22'),
(258,1,'Admin User','update','menu_items',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 11:26:40'),
(259,1,'Admin User','update','menu_items',22,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 11:27:01'),
(260,1,'Admin User','update','menu_items',193,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 11:27:14'),
(261,1,'Admin User','update','menu_items',22,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 11:27:51'),
(262,1,'Admin User','update','menu_items',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 11:28:18'),
(263,1,'Admin User','update','menu_items',28,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 11:28:30'),
(264,1,'Admin User','update','menu_items',35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 11:28:42'),
(265,1,'Admin User','update','menu_items',22,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 11:29:22'),
(266,1,'Admin User','update','menu_items',28,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 11:29:38'),
(267,1,'Admin User','mfa_verified','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 14:17:53'),
(268,1,'Admin User','create','menu_items',282,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 14:24:20'),
(269,1,'Admin User','mfa_verified','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 14:36:01'),
(270,1,'Admin User','mfa_verified','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 16:38:24'),
(271,1,'Admin User','mfa_verified','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 19:34:19'),
(272,1,'Admin User','mfa_verified','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-17 22:09:53'),
(273,1,'Admin User','mfa_verified','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 00:10:57'),
(274,1,'Admin User','create','menu_items',283,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 01:03:28'),
(275,1,'Admin User','update','menu_items',36,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 01:03:57'),
(276,1,'Admin User','update','menu_items',255,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 01:04:05'),
(277,1,'Admin User','update','menu_items',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 01:04:19'),
(278,1,'Admin User','update','menu_items',283,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 01:04:28'),
(279,1,'Admin User','update','menu_items',283,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 01:09:28'),
(280,1,'Admin User','update','menu_items',36,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 01:09:38'),
(281,1,'Admin User','update','menu_items',43,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 01:10:12'),
(282,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 02:36:36'),
(283,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 10:59:50'),
(284,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 11:31:09'),
(285,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 11:31:26'),
(286,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 11:32:44'),
(287,1,'Admin User','update','menu_items',290,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 11:33:35'),
(288,1,'Admin User','update','menu_items',291,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 11:34:09'),
(289,1,'Admin User','update','menu_items',292,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 11:34:21'),
(290,1,'Admin User','update','menu_items',239,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 11:34:38'),
(291,1,'Admin User','update','menu_items',238,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 11:34:48'),
(292,1,'Admin User','update','menu_items',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 11:34:58'),
(293,1,'Admin User','update','menu_items',239,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 11:35:22'),
(294,1,'Admin User','update','menu_items',289,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 11:42:07'),
(295,1,'Admin User','update','menu_items',293,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 11:42:28'),
(296,1,'Admin User','update','menu_items',208,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 11:43:24'),
(297,1,'Admin User','update','menu_items',209,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 11:43:37'),
(298,1,'Admin User','update','menu_items',289,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 11:46:52'),
(299,1,'Admin User','delete','menu_items',289,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 11:47:24'),
(300,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 11:57:56'),
(301,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 12:04:18'),
(302,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 12:27:33'),
(303,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 12:27:35'),
(304,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'127.0.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 12:41:37'),
(305,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'127.0.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 12:41:39'),
(306,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 12:45:41'),
(307,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 12:45:44'),
(308,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 12:54:47'),
(309,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 12:54:50'),
(310,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'127.0.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 13:10:32'),
(311,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'127.0.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 13:10:35'),
(312,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'127.0.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 13:18:55'),
(313,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 13:18:59'),
(314,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 13:49:17'),
(315,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 13:57:45'),
(316,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 13:57:55'),
(317,1,'Admin User','update','menu_items',291,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 14:53:30'),
(318,1,'Admin User','update','menu_items',290,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 14:53:40'),
(319,1,'Admin User','update','menu_items',292,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 14:53:51'),
(320,1,'Admin User','update','menu_items',296,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 15:34:04'),
(321,1,'Admin User','update','menu_items',297,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 15:34:12'),
(322,1,'Admin User','update','menu_items',298,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 15:34:20'),
(323,1,'Admin User','update','menu_items',299,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 15:34:24'),
(324,1,'Admin User','update','menu_items',299,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 15:34:38'),
(325,1,'Admin User','update','menu_items',296,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 15:34:58'),
(326,1,'Admin User','update','menu_items',297,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 15:35:09'),
(327,1,'Admin User','update','menu_items',298,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 15:35:16'),
(328,1,'Admin User','update','menu_items',235,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 15:35:54'),
(329,1,'Admin User','update','menu_items',299,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 15:36:28'),
(330,1,'Admin User','update','menu_items',296,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 15:36:50'),
(331,1,'Admin User','update','menu_items',296,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 15:37:56'),
(332,1,'Admin User','update','menu_items',297,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 15:38:12'),
(333,1,'Admin User','update','menu_items',298,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 15:38:26'),
(334,1,'Admin User','update','menu_items',298,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 15:39:00'),
(335,1,'Admin User','update','menu_items',298,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 15:40:11'),
(336,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 15:47:47'),
(337,1,'Admin User','login_failed','auth',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 15:49:44'),
(338,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 15:49:47'),
(339,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 15:49:54'),
(340,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 15:52:57'),
(341,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 18:40:11'),
(342,1,'Admin User','update','menu_items',235,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 18:40:52'),
(343,1,'Admin User','update','menu_items',210,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 18:42:15'),
(344,1,'Admin User','delete','menu_items',293,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 18:42:34'),
(345,1,'Admin User','update','menu_items',209,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 18:42:49'),
(346,1,'Admin User','update','menu_items',211,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 18:43:01'),
(347,1,'Admin User','update','menu_items',212,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 18:43:17'),
(348,1,'Admin User','update','menu_items',211,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-18 18:43:40'),
(349,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-19 11:54:13'),
(350,1,'Admin User','create','menu_items',301,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-19 12:52:34'),
(351,1,'Admin User','update','menu_items',301,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-19 12:52:59'),
(352,1,'Admin User','update','menu_items',301,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-19 12:53:25'),
(353,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-19 14:18:57'),
(354,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-19 16:21:24'),
(355,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-19 17:49:42'),
(356,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-19 17:53:50'),
(357,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-19 18:05:49'),
(358,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-19 18:06:59'),
(359,1,'Admin User','update','menu_items',303,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-19 19:53:05'),
(360,1,'Admin User','update','menu_items',304,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-19 19:53:29'),
(361,1,'Admin User','update','menu_items',304,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-19 19:54:03'),
(362,1,'Admin User','update','menu_items',303,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-19 19:54:39'),
(363,1,'Admin User','update','menu_items',300,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-19 19:55:05'),
(364,1,'Admin User','update','menu_items',302,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-19 19:55:15'),
(365,1,'Admin User','update','menu_items',302,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-19 19:55:23'),
(366,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-19 23:41:37'),
(367,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 03:02:18'),
(368,1,'Admin User','delete','menu_items',243,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 03:02:42'),
(369,1,'Admin User','update','menu_items',303,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 03:03:23'),
(370,1,'Admin User','update','menu_items',316,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 03:03:38'),
(371,1,'Admin User','update','menu_items',315,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 03:03:57'),
(372,1,'Admin User','update','menu_items',304,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 03:04:59'),
(373,1,'Admin User','update','menu_items',304,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 03:06:08'),
(374,1,'Admin User','update','menu_items',304,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 03:06:22'),
(375,1,'Admin User','update','menu_items',304,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 03:08:49'),
(376,1,'Admin User','update','menu_items',306,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 03:09:17'),
(377,1,'Admin User','update','menu_items',309,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 03:09:40'),
(378,1,'Admin User','update','menu_items',310,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 03:09:51'),
(379,1,'Admin User','update','menu_items',310,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 03:10:05'),
(380,1,'Admin User','update','menu_items',311,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 03:10:21'),
(381,1,'Admin User','update','menu_items',314,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 03:10:51'),
(382,1,'Admin User','update','menu_items',313,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 03:11:16'),
(383,1,'Admin User','update','menu_items',312,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 03:11:25'),
(384,1,'Admin User','update','menu_items',305,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 03:11:34'),
(385,1,'Admin User','update','menu_items',307,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 03:11:56'),
(386,1,'Admin User','update','menu_items',308,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 03:13:02'),
(387,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 12:04:21'),
(388,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 12:21:36'),
(389,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 12:57:35'),
(390,1,'Admin User','update','menu_items',309,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 13:03:51'),
(391,1,'Admin User','update','menu_items',311,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 13:04:16'),
(392,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 16:30:43'),
(393,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 20:03:11'),
(394,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 20:12:05'),
(395,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-20 21:40:10'),
(396,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-21 01:03:04'),
(397,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-21 01:04:29'),
(398,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-21 03:05:36'),
(399,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-21 12:01:30'),
(400,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-21 14:01:49'),
(401,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-21 14:30:12'),
(402,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-21 16:10:55'),
(403,1,'Admin User','update','menu_items',208,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-21 16:24:48'),
(404,1,'Admin User','update','menu_items',317,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-21 16:25:03'),
(405,1,'Admin User','update','menu_items',318,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-21 16:25:15'),
(406,1,'Admin User','update','menu_items',319,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-21 16:25:21'),
(407,1,'Admin User','update','menu_items',209,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-21 16:25:34'),
(408,1,'Admin User','update','menu_items',13,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-21 16:33:23'),
(409,1,'Admin User','update','menu_items',319,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-21 16:34:33'),
(410,1,'Admin User','update','menu_items',319,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-21 16:34:47'),
(411,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-21 19:06:25'),
(412,1,'Admin User','update','menu_items',320,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-21 19:07:54'),
(413,1,'Admin User','update','menu_items',209,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-21 19:08:06'),
(414,1,'Admin User','update','menu_items',210,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-21 19:08:19'),
(415,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-21 21:46:39'),
(416,1,'Admin User','update','menu_items',207,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-21 21:48:10'),
(417,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-22 11:04:46'),
(418,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-22 18:08:46'),
(419,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 13:08:47'),
(420,1,'Admin User','update','menu_items',130,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 14:52:12'),
(421,1,'Admin User','update','menu_items',131,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 14:52:22'),
(422,1,'Admin User','create','menu_items',326,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 14:53:28'),
(423,1,'Admin User','update','menu_items',131,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 14:53:52'),
(424,1,'Admin User','update','menu_items',326,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 14:54:04'),
(425,1,'Admin User','update','menu_items',132,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 14:54:27'),
(426,1,'Admin User','update','menu_items',133,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 14:54:37'),
(427,1,'Admin User','update','menu_items',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 14:57:15'),
(428,1,'Admin User','update','menu_items',248,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 14:57:28'),
(429,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 15:14:50'),
(430,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 15:39:45'),
(431,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 17:10:38'),
(432,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 17:10:40'),
(433,1,'Admin User','update','users',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 18:19:26'),
(434,1,'Admin User','update','roles',130,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 18:21:29'),
(435,1,'Admin User','logout','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 18:21:32'),
(436,7,'Nathan S','login','auth',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 18:21:37'),
(437,7,'Nathan S','logout','auth',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 18:21:52'),
(438,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 18:21:55'),
(439,1,'Admin User','update','menu_items',327,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 19:16:13'),
(440,1,'Admin User','update','menu_items',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 19:17:08'),
(441,1,'Admin User','update','menu_items',35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 19:17:20'),
(442,1,'Admin User','update','menu_items',35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 19:17:51'),
(443,1,'Admin User','update','menu_items',327,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 19:18:05'),
(444,1,'Admin User','create','menu_items',328,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 19:27:52'),
(445,1,'Admin User','create','invoices',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 19:36:41'),
(446,1,'Admin User','delete','invoices',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-24 19:37:05'),
(447,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-25 00:15:42'),
(448,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-25 12:36:32'),
(449,1,'Admin User','update','menu_items',327,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-25 12:55:37'),
(450,1,'Admin User','update','menu_items',300,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-25 12:56:16'),
(451,1,'Admin User','update','menu_items',300,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-25 12:56:45'),
(452,1,'Admin User','delete','menu_items',300,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-25 12:56:54'),
(453,1,'Admin User','delete','menu_items',302,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-25 12:57:28'),
(454,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-25 15:23:02'),
(455,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-25 17:52:23'),
(456,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-25 20:06:35'),
(457,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-25 22:37:09'),
(458,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-25 22:37:33'),
(459,1,'Admin User','update','menu_items',326,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-25 23:44:54'),
(460,1,'Admin User','delete','menu_items',329,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-25 23:45:06'),
(461,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-26 00:08:02'),
(462,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-26 01:36:54'),
(463,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-26 12:05:31'),
(464,1,'Admin User','login','auth',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-26 12:29:10'),
(465,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-26 14:49:43'),
(466,1,'Admin User','update','menu_items',335,'Admin User performed update on menu_items #335',NULL,NULL,NULL,'/menus/update/335','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-26 16:19:23'),
(467,1,'Admin User','update','menu_items',332,'Admin User performed update on menu_items #332',NULL,NULL,NULL,'/menus/update/332','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-26 16:19:30'),
(468,1,'Admin User','update','menu_items',333,'Admin User performed update on menu_items #333',NULL,NULL,NULL,'/menus/update/333','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-26 16:19:36'),
(469,1,'Admin User','update','menu_items',334,'Admin User performed update on menu_items #334',NULL,NULL,NULL,'/menus/update/334','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-26 16:19:44'),
(470,1,'Admin User','update','menu_items',332,'Admin User performed update on menu_items #332',NULL,NULL,NULL,'/menus/update/332','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-26 16:19:50'),
(471,1,'Admin User','update','menu_items',333,'Admin User performed update on menu_items #333',NULL,NULL,NULL,'/menus/update/333','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-26 16:20:03'),
(472,1,'Admin User','update','menu_items',337,'Admin User performed update on menu_items #337',NULL,NULL,NULL,'/menus/update/337','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-26 16:26:29'),
(473,1,'Admin User','delete','menu_items',336,'Admin User performed delete on menu_items #336',NULL,NULL,NULL,'/menus/delete/336','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-26 16:26:32'),
(474,1,'Admin User','update','menu_items',330,'Admin User performed update on menu_items #330',NULL,NULL,NULL,'/menus/update/330','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-26 16:26:55'),
(475,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-26 16:59:37'),
(476,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-26 18:41:57'),
(477,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-26 19:13:37'),
(478,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-26 19:14:12'),
(479,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-26 19:18:28'),
(480,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-26 21:19:01'),
(481,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-26 21:28:26'),
(482,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-26 21:28:29'),
(483,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 00:01:59'),
(484,1,'Admin User','delete','menu_items',337,'Admin User performed delete on menu_items #337',NULL,NULL,NULL,'/menus/delete/337','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 00:02:24'),
(485,1,'Admin User','update','users',1,'Admin User performed update on users #1',NULL,NULL,NULL,'/users/1/update','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 01:36:30'),
(486,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 02:04:42'),
(487,1,'Admin User','update','settings',NULL,'Admin User performed update on settings',NULL,NULL,NULL,'/settings/company','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 02:35:02'),
(488,1,'Admin User','update','settings',NULL,'Admin User performed update on settings',NULL,NULL,NULL,'/settings/company','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 02:51:45'),
(489,1,'Admin User','update','settings',NULL,'Admin User performed update on settings',NULL,NULL,NULL,'/settings/company','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 02:53:26'),
(490,1,'Admin User','update','settings',NULL,'Admin User performed update on settings',NULL,NULL,NULL,'/settings/company','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 02:56:24'),
(491,1,'Admin User','update','settings',NULL,'Admin User performed update on settings',NULL,NULL,NULL,'/settings/company','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 02:58:22'),
(492,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 03:24:04'),
(493,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 03:24:06'),
(494,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 12:06:21'),
(495,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 13:26:10'),
(496,1,'Admin User','delete','menu_items',338,'Admin User performed delete on menu_items #338',NULL,NULL,NULL,'/menus/delete/338','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 13:26:21'),
(497,1,'Admin User','delete','menu_items',333,'Admin User performed delete on menu_items #333',NULL,NULL,NULL,'/menus/delete/333','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 13:33:16'),
(498,1,'Admin User','update','menu_items',334,'Admin User performed update on menu_items #334',NULL,NULL,NULL,'/menus/update/334','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 13:33:45'),
(499,1,'Admin User','delete','menu_items',332,'Admin User performed delete on menu_items #332',NULL,NULL,NULL,'/menus/delete/332','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 13:34:38'),
(500,1,'Admin User','update','menu_items',342,'Admin User performed update on menu_items #342',NULL,NULL,NULL,'/menus/update/342','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 13:47:47'),
(501,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 15:26:35'),
(502,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 16:12:37'),
(503,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 18:16:09'),
(504,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 20:18:09'),
(505,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 22:25:02'),
(506,1,'Admin User','update','settings',NULL,'Admin User performed update on settings',NULL,NULL,NULL,'/settings/company','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 22:31:02'),
(507,1,'Admin User','update','settings',NULL,'Admin User performed update on settings',NULL,NULL,NULL,'/settings/company','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 22:33:08'),
(508,1,'Admin User','update','settings',NULL,'Admin User performed update on settings',NULL,NULL,NULL,'/settings/company','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 22:33:21'),
(509,1,'Admin User','update','settings',NULL,'Admin User performed update on settings',NULL,NULL,NULL,'/settings/company','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 22:35:44'),
(510,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 23:20:05'),
(511,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 23:20:13'),
(512,4,'Rick M','logout','auth',4,'Rick M performed logout on auth #4',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 23:20:31'),
(513,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 23:20:34'),
(514,1,'Admin User','update','roles',111,'Admin User performed update on roles #111',NULL,NULL,NULL,'/roles/111/update','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 23:21:20'),
(515,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 23:21:23'),
(516,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 23:21:31'),
(517,4,'Rick M','logout','auth',4,'Rick M performed logout on auth #4',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 23:21:42'),
(518,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-27 23:21:45'),
(519,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-28 12:32:43'),
(520,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-28 13:24:39'),
(521,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-28 13:24:57'),
(522,4,'Rick M','logout','auth',4,'Rick M performed logout on auth #4',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-28 13:26:05'),
(523,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-28 13:26:11'),
(524,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-28 14:23:13'),
(525,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-28 22:13:20'),
(526,1,'Admin User','update','roles',111,'Admin User performed update on roles #111',NULL,NULL,NULL,'/roles/111/update','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-28 22:14:04'),
(527,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-28 22:14:09'),
(528,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-28 22:14:13'),
(529,4,'Rick M','logout','auth',4,'Rick M performed logout on auth #4',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-28 22:30:46'),
(530,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-28 22:30:49'),
(531,4,'Rick M','logout','auth',4,'Rick M performed logout on auth #4',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-28 22:33:34'),
(532,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-28 22:33:37'),
(533,1,'Admin User','update','roles',111,'Admin User performed update on roles #111',NULL,NULL,NULL,'/roles/111/update','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-28 23:15:26'),
(534,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-28 23:15:29'),
(535,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-28 23:15:35'),
(536,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-28 23:17:38'),
(537,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 00:24:14'),
(538,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 00:24:19'),
(539,4,'Rick M','logout','auth',4,'Rick M performed logout on auth #4',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 00:24:58'),
(540,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 00:25:03'),
(541,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 00:35:11'),
(542,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 00:35:14'),
(543,4,'Rick M','logout','auth',4,'Rick M performed logout on auth #4',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 00:43:41'),
(544,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 00:43:48'),
(545,4,'Rick M','logout','auth',4,'Rick M performed logout on auth #4',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 00:45:13'),
(546,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 00:45:16'),
(547,4,'Rick M','logout','auth',4,'Rick M performed logout on auth #4',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 00:50:06'),
(548,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 00:50:08'),
(549,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 00:50:52'),
(550,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 00:50:55'),
(551,4,'Rick M','logout','auth',4,'Rick M performed logout on auth #4',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 00:53:27'),
(552,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 00:53:30'),
(553,4,'Rick M','logout','auth',4,'Rick M performed logout on auth #4',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 00:55:53'),
(554,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 00:55:56'),
(555,4,'Rick M','logout','auth',4,'Rick M performed logout on auth #4',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 00:57:23'),
(556,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 00:57:25'),
(557,4,'Rick M','logout','auth',4,'Rick M performed logout on auth #4',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 00:58:52'),
(558,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 00:58:55'),
(559,4,'Rick M','logout','auth',4,'Rick M performed logout on auth #4',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 01:00:59'),
(560,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 01:01:01'),
(561,4,'Rick M','logout','auth',4,'Rick M performed logout on auth #4',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 01:11:56'),
(562,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 01:12:12'),
(563,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 12:00:11'),
(564,1,'Admin User','update','menu_items',345,'Admin User performed update on menu_items #345',NULL,NULL,NULL,'/menus/update/345','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 12:03:32'),
(565,1,'Admin User','update','menu_items',32,'Admin User performed update on menu_items #32',NULL,NULL,NULL,'/menus/update/32','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 12:46:11'),
(566,1,'Admin User','update','menu_items',32,'Admin User performed update on menu_items #32',NULL,NULL,NULL,'/menus/update/32','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 12:46:27'),
(567,1,'Admin User','update','menu_items',33,'Admin User performed update on menu_items #33',NULL,NULL,NULL,'/menus/update/33','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 12:47:05'),
(568,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 13:26:39'),
(569,21,'Leslie S','login','auth',21,'Leslie S performed login on auth #21',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 13:26:51'),
(570,21,'Leslie S','login','auth',21,'Leslie S performed login on auth #21',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 13:31:35'),
(571,21,'Leslie S','logout','auth',21,'Leslie S performed logout on auth #21',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 13:37:19'),
(572,21,'Leslie S','login','auth',21,'Leslie S performed login on auth #21',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 13:37:29'),
(573,21,'Leslie S','logout','auth',21,'Leslie S performed logout on auth #21',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 13:40:13'),
(574,21,'Leslie S','login','auth',21,'Leslie S performed login on auth #21',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 13:40:22'),
(575,21,'Leslie S','logout','auth',21,'Leslie S performed logout on auth #21',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 13:44:32'),
(576,21,'Leslie S','login','auth',21,'Leslie S performed login on auth #21',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 13:44:43'),
(577,21,'Leslie S','logout','auth',21,'Leslie S performed logout on auth #21',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 13:46:44'),
(578,21,'Leslie S','login','auth',21,'Leslie S performed login on auth #21',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 13:46:57'),
(579,21,'Leslie S','logout','auth',21,'Leslie S performed logout on auth #21',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 13:49:48'),
(580,21,'Leslie S','login','auth',21,'Leslie S performed login on auth #21',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 13:49:58'),
(581,21,'Leslie S','logout','auth',21,'Leslie S performed logout on auth #21',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 13:50:42'),
(582,21,'Leslie S','login','auth',21,'Leslie S performed login on auth #21',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 13:50:55'),
(583,21,'Leslie S','logout','auth',21,'Leslie S performed logout on auth #21',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 13:52:57'),
(584,21,'Leslie S','login','auth',21,'Leslie S performed login on auth #21',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 13:53:13'),
(585,21,'Leslie S','logout','auth',21,'Leslie S performed logout on auth #21',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 13:58:08'),
(586,21,'Leslie S','login','auth',21,'Leslie S performed login on auth #21',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 13:58:16'),
(587,21,'Leslie S','logout','auth',21,'Leslie S performed logout on auth #21',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 14:07:13'),
(588,21,'Leslie S','login','auth',21,'Leslie S performed login on auth #21',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 14:07:18'),
(589,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 17:16:31'),
(590,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 17:53:21'),
(591,21,'Leslie S','login','auth',21,'Leslie S performed login on auth #21',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 17:53:26'),
(592,21,'Leslie S','logout','auth',21,'Leslie S performed logout on auth #21',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 17:54:50'),
(593,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 17:54:52'),
(594,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 19:21:49'),
(595,21,'Leslie S','login','auth',21,'Leslie S performed login on auth #21',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 19:21:58'),
(596,21,'Leslie S','logout','auth',21,'Leslie S performed logout on auth #21',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 19:22:17'),
(597,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 19:23:02'),
(598,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 20:17:51'),
(599,21,'Leslie S','login','auth',21,'Leslie S performed login on auth #21',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-29 20:17:54'),
(600,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 00:43:15'),
(601,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 00:47:55'),
(602,21,'Leslie S','login','auth',21,'Leslie S performed login on auth #21',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 00:48:02'),
(603,21,'Leslie S','logout','auth',21,'Leslie S performed logout on auth #21',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 00:49:39'),
(604,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 00:49:43'),
(605,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 00:57:40'),
(606,21,'Leslie S','login','auth',21,'Leslie S performed login on auth #21',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 00:57:45'),
(607,21,'Leslie S','logout','auth',21,'Leslie S performed logout on auth #21',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 00:58:13'),
(608,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 00:58:16'),
(609,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 01:11:16'),
(610,21,'Leslie S','login','auth',21,'Leslie S performed login on auth #21',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 01:11:23'),
(611,21,'Leslie S','logout','auth',21,'Leslie S performed logout on auth #21',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 01:16:55'),
(612,21,'Leslie S','login','auth',21,'Leslie S performed login on auth #21',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 01:16:58'),
(613,21,'Leslie S','logout','auth',21,'Leslie S performed logout on auth #21',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 01:17:04'),
(614,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 01:17:08'),
(615,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 01:18:57'),
(616,21,'Leslie S','login','auth',21,'Leslie S performed login on auth #21',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 01:19:01'),
(617,21,'Leslie S','logout','auth',21,'Leslie S performed logout on auth #21',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 01:21:27'),
(618,21,'Leslie S','login','auth',21,'Leslie S performed login on auth #21',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 01:21:30'),
(619,21,'Leslie S','login','auth',21,'Leslie S performed login on auth #21',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 01:24:13'),
(620,21,'Leslie S','logout','auth',21,'Leslie S performed logout on auth #21',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 01:25:06'),
(621,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 01:25:09'),
(622,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 01:25:21'),
(623,21,'Leslie S','login','auth',21,'Leslie S performed login on auth #21',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 01:25:23'),
(624,21,'Leslie S','logout','auth',21,'Leslie S performed logout on auth #21',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 01:27:36'),
(625,21,'Leslie S','login','auth',21,'Leslie S performed login on auth #21',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 01:27:40'),
(626,21,'Leslie S','logout','auth',21,'Leslie S performed logout on auth #21',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 01:37:01'),
(627,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 01:37:05'),
(628,1,'Admin User','update','menu_items',346,'Admin User performed update on menu_items #346',NULL,NULL,NULL,'/menus/update/346','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 01:38:23'),
(629,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 12:46:40'),
(630,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 13:18:49'),
(631,1,'Admin User','update','menu_items',347,'Admin User performed update on menu_items #347',NULL,NULL,NULL,'/menus/update/347','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 13:42:13'),
(632,1,'Admin User','update','menu_items',188,'Admin User performed update on menu_items #188',NULL,NULL,NULL,'/menus/update/188','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 13:42:36'),
(633,1,'Admin User','delete','menu_items',345,'Admin User performed delete on menu_items #345',NULL,NULL,NULL,'/menus/delete/345','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 13:42:48'),
(634,1,'Admin User','delete','menu_items',34,'Admin User performed delete on menu_items #34',NULL,NULL,NULL,'/menus/delete/34','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 13:42:58'),
(635,1,'Admin User','delete','menu_items',163,'Admin User performed delete on menu_items #163',NULL,NULL,NULL,'/menus/delete/163','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 13:43:08'),
(636,1,'Admin User','delete','menu_items',346,'Admin User performed delete on menu_items #346',NULL,NULL,NULL,'/menus/delete/346','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 13:44:27'),
(637,1,'Admin User','create','roles',134,'Admin User performed create on roles #134',NULL,NULL,NULL,'/security/roles/create','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 14:10:19'),
(638,1,'Admin User','update','users',5,'Admin User performed update on users #5',NULL,NULL,NULL,'/users/5/update','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 14:15:03'),
(639,1,'Admin User','update','users',5,'Admin User performed update on users #5',NULL,NULL,NULL,'/users/5/update','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 14:21:56'),
(640,1,'Admin User','update','roles',134,'Admin User performed update on roles #134',NULL,NULL,NULL,'/security/roles/update-info','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 14:25:20'),
(641,1,'Admin User','update','users',5,'Admin User performed update on users #5',NULL,NULL,NULL,'/users/5/update','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 14:35:44'),
(642,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 14:35:48'),
(643,5,'Test Manager','login','auth',5,'Test Manager performed login on auth #5',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 14:35:58'),
(644,5,'Test Manager','login','auth',5,'Test Manager performed login on auth #5',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 14:46:52'),
(645,5,'Test Manager','login','auth',5,'Test Manager performed login on auth #5',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 14:47:28'),
(646,5,'Test Manager','login','auth',5,'Test Manager performed login on auth #5',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-30 14:55:20'),
(647,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-01 01:42:06'),
(648,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-01 12:31:24'),
(649,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-01 14:36:36'),
(650,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-01 15:39:13'),
(651,5,'Test Manager','login','auth',5,'Test Manager performed login on auth #5',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-01 15:39:16'),
(652,5,'Test Manager','logout','auth',5,'Test Manager performed logout on auth #5',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-01 15:39:48'),
(653,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-01 15:39:51'),
(654,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-01 15:54:28'),
(655,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-01 18:11:10'),
(656,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 02:39:54'),
(657,1,'Admin User','update','menu_items',348,'Admin User performed update on menu_items #348',NULL,NULL,NULL,'/menus/update/348','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 03:11:54'),
(658,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 03:52:13'),
(659,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 03:52:16'),
(660,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 04:14:38'),
(661,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 04:14:40'),
(662,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 11:04:43'),
(663,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 13:08:37'),
(664,1,'Admin User','update','menu_items',349,'Admin User performed update on menu_items #349',NULL,NULL,NULL,'/menus/update/349','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 13:12:58'),
(665,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 13:42:06'),
(666,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 13:47:20'),
(667,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 13:51:52'),
(668,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 13:54:17'),
(669,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 14:00:25'),
(670,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 14:00:39'),
(671,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 14:05:19'),
(672,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 18:01:04'),
(673,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 18:16:06'),
(674,NULL,NULL,'login_failed','auth',NULL,NULL,NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 18:16:16'),
(675,NULL,NULL,'login_failed','auth',NULL,NULL,NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 18:16:19'),
(676,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 18:16:27'),
(677,1,'Admin User','update','users',2,'Admin User performed update on users #2',NULL,NULL,NULL,'/users/2/update','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 18:16:41'),
(678,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 18:16:44'),
(679,2,'Brian S','login','auth',2,'Brian S performed login on auth #2',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 18:16:51'),
(680,2,'Brian S','logout','auth',2,'Brian S performed logout on auth #2',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 18:20:02'),
(681,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 18:20:07'),
(682,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 18:20:11'),
(683,2,'Brian S','login','auth',2,'Brian S performed login on auth #2',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 18:20:14'),
(684,2,'Brian S','logout','auth',2,'Brian S performed logout on auth #2',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 18:21:30'),
(685,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 18:21:33'),
(686,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 18:21:35'),
(687,2,'Brian S','login','auth',2,'Brian S performed login on auth #2',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 18:21:39'),
(688,2,'Brian S','logout','auth',2,'Brian S performed logout on auth #2',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 18:25:44'),
(689,2,'Brian S','login','auth',2,'Brian S performed login on auth #2',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 18:25:49'),
(690,2,'Brian S','logout','auth',2,'Brian S performed logout on auth #2',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 18:39:03'),
(691,2,'Brian S','login','auth',2,'Brian S performed login on auth #2',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 18:39:06'),
(692,2,'Brian S','logout','auth',2,'Brian S performed logout on auth #2',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 18:42:32'),
(693,2,'Brian S','login','auth',2,'Brian S performed login on auth #2',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 18:42:43'),
(694,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 19:00:45'),
(695,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 19:24:24'),
(696,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 19:35:06'),
(697,1,'Admin User','update','menu_items',156,'Admin User performed update on menu_items #156',NULL,NULL,NULL,'/menus/update/156','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 19:36:11'),
(698,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 19:36:42'),
(699,1,'Admin User','create','supplier_contracts',1,'Admin User performed create on supplier_contracts #1',NULL,NULL,NULL,'/purchases/contracts/store','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 19:51:34'),
(700,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 19:52:35'),
(701,1,'Admin User','delete','supplier_contracts',1,'Admin User performed delete on supplier_contracts #1',NULL,NULL,NULL,'/purchases/contracts/1/delete','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 20:13:56'),
(702,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 20:15:42'),
(703,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 21:52:31'),
(704,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 21:56:47'),
(705,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 21:57:08'),
(706,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 21:58:04'),
(707,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 22:00:57'),
(708,5,'Test Manager','login','auth',5,'Test Manager performed login on auth #5',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 22:03:17'),
(709,5,'Test Manager','logout','auth',5,'Test Manager performed logout on auth #5',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 22:04:00'),
(710,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 22:04:03'),
(711,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-02 22:21:34'),
(712,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-03 00:06:40'),
(713,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-03 01:46:34'),
(714,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-03 01:58:51'),
(715,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-03 02:03:55'),
(716,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-03 02:05:45'),
(717,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-03 02:09:08'),
(718,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-03 02:09:26'),
(719,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-03 02:12:38'),
(720,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-03 02:12:49'),
(721,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-03 02:15:45'),
(722,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-03 02:17:42'),
(723,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-03 02:43:51'),
(724,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-03 12:31:04'),
(725,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-03 14:56:32'),
(726,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-03 16:20:27'),
(727,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-03 16:20:36'),
(728,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-03 19:30:07'),
(729,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-03 22:12:30'),
(730,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 09:57:05'),
(731,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 12:00:21'),
(732,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 13:55:34'),
(733,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 13:55:38'),
(734,4,'Rick M','logout','auth',4,'Rick M performed logout on auth #4',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 14:46:50'),
(735,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 14:46:52'),
(736,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 14:49:10'),
(737,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 14:49:13'),
(738,4,'Rick M','logout','auth',4,'Rick M performed logout on auth #4',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 14:49:37'),
(739,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 14:49:39'),
(740,1,'Admin User','update','menu_items',330,'Admin User performed update on menu_items #330',NULL,NULL,NULL,'/menus/update/330','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 14:58:40'),
(741,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 16:01:37'),
(742,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 16:01:40'),
(743,4,'Rick M','logout','auth',4,'Rick M performed logout on auth #4',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 16:13:20'),
(744,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 16:13:24'),
(745,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 16:19:03'),
(746,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 16:19:06'),
(747,4,'Rick M','logout','auth',4,'Rick M performed logout on auth #4',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 16:36:56'),
(748,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 16:36:58'),
(749,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 16:43:38'),
(750,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 16:43:41'),
(751,4,'Rick M','logout','auth',4,'Rick M performed logout on auth #4',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 17:42:56'),
(752,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 17:42:59'),
(753,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 18:08:24'),
(754,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 20:26:53'),
(755,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 22:27:06'),
(756,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 22:56:52'),
(757,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 23:04:31'),
(758,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 23:41:45'),
(759,4,'Rick M','login','auth',4,'Rick M performed login on auth #4',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 23:41:48'),
(760,4,'Rick M','logout','auth',4,'Rick M performed logout on auth #4',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 23:42:17'),
(761,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-04 23:42:20'),
(762,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-05 10:18:13'),
(763,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-05 11:36:34'),
(764,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-05 12:39:51'),
(765,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-05 17:43:40'),
(766,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-05 17:47:55'),
(767,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-05 18:00:43'),
(768,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-05 21:46:20'),
(769,1,'Admin User','delete','menu_items',363,'Admin User performed delete on menu_items #363',NULL,NULL,NULL,'/menus/delete/363','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-05 22:30:00'),
(770,1,'Admin User','delete','menu_items',361,'Admin User performed delete on menu_items #361',NULL,NULL,NULL,'/menus/delete/361','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-05 22:30:06'),
(771,1,'Admin User','update','menu_items',352,'Admin User performed update on menu_items #352',NULL,NULL,NULL,'/menus/update/352','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-05 22:30:22'),
(772,1,'Admin User','update','menu_items',360,'Admin User performed update on menu_items #360',NULL,NULL,NULL,'/menus/update/360','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-05 22:30:42'),
(773,1,'Admin User','update','menu_items',352,'Admin User performed update on menu_items #352',NULL,NULL,NULL,'/menus/update/352','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-05 22:31:05'),
(774,1,'Admin User','update','menu_items',360,'Admin User performed update on menu_items #360',NULL,NULL,NULL,'/menus/update/360','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-05 22:31:31'),
(775,1,'Admin User','update','menu_items',362,'Admin User performed update on menu_items #362',NULL,NULL,NULL,'/menus/update/362','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-05 22:31:43'),
(776,1,'Admin User','update','menu_items',353,'Admin User performed update on menu_items #353',NULL,NULL,NULL,'/menus/update/353','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-05 22:31:58'),
(777,1,'Admin User','update','menu_items',354,'Admin User performed update on menu_items #354',NULL,NULL,NULL,'/menus/update/354','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-05 22:32:06'),
(778,1,'Admin User','update','menu_items',355,'Admin User performed update on menu_items #355',NULL,NULL,NULL,'/menus/update/355','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-05 22:32:18'),
(779,1,'Admin User','update','menu_items',356,'Admin User performed update on menu_items #356',NULL,NULL,NULL,'/menus/update/356','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-05 22:32:22'),
(780,1,'Admin User','update','menu_items',357,'Admin User performed update on menu_items #357',NULL,NULL,NULL,'/menus/update/357','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-05 22:32:26'),
(781,1,'Admin User','update','menu_items',358,'Admin User performed update on menu_items #358',NULL,NULL,NULL,'/menus/update/358','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-05 22:32:29'),
(782,1,'Admin User','update','menu_items',359,'Admin User performed update on menu_items #359',NULL,NULL,NULL,'/menus/update/359','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-05 22:32:32'),
(783,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-07 01:59:34'),
(784,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-07 12:33:28'),
(785,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-07 12:34:53'),
(786,1,'Admin User','logout','auth',1,'Admin User performed logout on auth #1',NULL,NULL,NULL,'/logout','GET',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-07 13:03:08'),
(787,1,'Admin User','login','auth',1,'Admin User performed login on auth #1',NULL,NULL,NULL,'/login','POST',NULL,NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-12-07 13:03:11');
/*!40000 ALTER TABLE `audit_logs` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `audit_trail`
--

DROP TABLE IF EXISTS `audit_trail`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `audit_trail` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `table_name` varchar(100) NOT NULL,
  `record_id` int(10) unsigned NOT NULL,
  `action` enum('create','update','delete','void','post','approve') NOT NULL,
  `field_name` varchar(100) DEFAULT NULL,
  `old_value` text DEFAULT NULL,
  `new_value` text DEFAULT NULL,
  `description` varchar(500) DEFAULT NULL,
  `ip_address` varchar(45) DEFAULT NULL,
  `user_agent` varchar(500) DEFAULT NULL,
  `user_id` int(10) unsigned DEFAULT NULL,
  `user_name` varchar(200) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_table_record` (`table_name`,`record_id`),
  KEY `idx_user` (`user_id`),
  KEY `idx_action` (`action`),
  KEY `idx_created_at` (`created_at`),
  KEY `idx_table_action` (`table_name`,`action`),
  CONSTRAINT `audit_trail_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `audit_trail`
--

LOCK TABLES `audit_trail` WRITE;
/*!40000 ALTER TABLE `audit_trail` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `audit_trail` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `auth_rate_limits`
--

DROP TABLE IF EXISTS `auth_rate_limits`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `auth_rate_limits` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `identifier` varchar(255) NOT NULL COMMENT 'IP address or user email',
  `action_type` varchar(50) NOT NULL COMMENT 'login, otp_request, password_reset',
  `attempt_count` int(11) DEFAULT 1,
  `first_attempt` timestamp NULL DEFAULT current_timestamp(),
  `last_attempt` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `blocked_until` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_identifier_action` (`identifier`,`action_type`),
  KEY `idx_identifier` (`identifier`),
  KEY `idx_blocked_until` (`blocked_until`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `auth_rate_limits`
--

LOCK TABLES `auth_rate_limits` WRITE;
/*!40000 ALTER TABLE `auth_rate_limits` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `auth_rate_limits` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `backup_history`
--

DROP TABLE IF EXISTS `backup_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `backup_history` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `backup_type` enum('database','git','full') NOT NULL,
  `status` enum('success','failed','running') NOT NULL DEFAULT 'running',
  `message` text DEFAULT NULL,
  `file_size` bigint(20) DEFAULT NULL COMMENT 'File size in bytes',
  `file_path` varchar(500) DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_backup_type` (`backup_type`),
  KEY `idx_status` (`status`),
  KEY `idx_created_at` (`created_at`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `backup_history_ibfk_1` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=42 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `backup_history`
--

LOCK TABLES `backup_history` WRITE;
/*!40000 ALTER TABLE `backup_history` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `backup_history` VALUES
(1,'git','success','Checking git status...\nAdding changes...\nCommitting changes...\nPushing to GitHub...\nGit operations completed successfully\n\n=== Git Status ===\n M views/automation/email_templates/index.php\n\n=== Git Add ===\n(no output)\n\n=== Git Commit ===\n[main f95280a] Automated backup: 2025-11-17 06:31:25\n 1 file changed, 4 insertions(+), 4 deletions(-)\n\n=== Git Push ===\nTo https://github.com/merkuriddg/m1_erp/\n   588a5eb..f95280a  main -> main',NULL,NULL,1,'2025-11-17 06:31:25','2025-11-17 06:31:26'),
(2,'database','success','Database backup completed successfully.\n\nStarting database backup...\nDatabase: brickwal_m1_ds\nBackup file: /Users/rpmbbu/LocalPHPStorm/m1_erp_web/database/backups/backup_20251117_063137.sql\n✓ Backup completed successfully\n✓ Backup size: 4.2M\nCleaning up old backups (keeping last 7)...\n✓ Cleanup completed\n✓ All done!',NULL,NULL,1,'2025-11-17 06:31:37','2025-11-17 06:31:38'),
(3,'full','success','=== DATABASE BACKUP ===\n✓ Database backup: SUCCESS\n\n=== GIT COMMIT & PUSH ===\n✓ Git operations: SUCCESS\n\nStarting database backup...\nDatabase: brickwal_m1_ds\nBackup file: /Users/rpmbbu/LocalPHPStorm/m1_erp_web/database/backups/backup_20251117_063148.sql\n✓ Backup completed successfully\n✓ Backup size: 4.2M\nCleaning up old backups (keeping last 7)...\n✓ Cleanup completed\n✓ All done!\n\n=== Git Status ===\n',NULL,NULL,1,'2025-11-17 06:31:48','2025-11-17 06:31:49'),
(4,'database','success','Database backup completed successfully.\n\nStarting database backup...\nDatabase: brickwal_m1_ds\nBackup file: /Users/rpmbbu/LocalPHPStorm/m1_erp_web/database/backups/backup_20251117_063148.sql\n✓ Backup completed successfully\n✓ Backup size: 4.2M\nCleaning up old backups (keeping last 7)...\n✓ Cleanup completed\n✓ All done!',NULL,NULL,1,'2025-11-17 06:31:48','2025-11-17 06:31:49'),
(5,'git','success','Checking git status...\nNo changes to commit\n\n=== Git Status ===\n',NULL,NULL,1,'2025-11-17 06:31:49','2025-11-17 06:31:49'),
(6,'git','success','Checking git status...\nNo changes to commit\n\n=== Git Status ===\n',NULL,NULL,1,'2025-11-17 06:37:56','2025-11-17 06:37:57'),
(7,'git','success','Checking git status...\nAdding changes...\nCommitting changes...\nPushing to GitHub...\nGit operations completed successfully\n\n=== Git Status ===\n M views/backup/index.php\n\n=== Git Add ===\n(no output)\n\n=== Git Commit ===\n[main 450772a] Automated backup: 2025-11-17 06:40:33\n 1 file changed, 41 insertions(+), 12 deletions(-)\n\n=== Git Push ===\nTo https://github.com/merkuriddg/m1_erp/\n   40e9b9d..450772a  main -> main',NULL,NULL,1,'2025-11-17 06:40:33','2025-11-17 06:40:34'),
(8,'git','success','Checking git status...\nAdding changes...\nCommitting changes...\nPushing to GitHub...\nGit operations completed successfully\n\n=== Git Status ===\n M controllers/DocumentationController.php\n M views/roles/create.php\n M views/roles/edit.php\n?? docs/user-manual/04-accounting.md\n?? docs/user-manual/05-inventory.md\n?? docs/user-manual/06-manufacturing.md\n?? docs/user-manual/07-sales-purchases.md\n?? docs/user-manual/08-projects.md\n?? docs/user-manual/09-helpdesk.md\n?? docs/user-manual/10-messaging.md\n?? docs/user-manual/11-settings.md\n?? docs/user-manual/12-system-tools.md\n?? docs/user-manual/13-documents.md\n?? docs/user-manual/14-reports.md\n\n=== Git Add ===\n(no output)\n\n=== Git Commit ===\n[main 018f09a] Automated backup: 2025-11-17 10:47:15\n 14 files changed, 2073 insertions(+), 37 deletions(-)\n create mode 100644 docs/user-manual/04-accounting.md\n create mode 100644 docs/user-manual/05-inventory.md\n create mode 100644 docs/user-manual/06-manufacturing.md\n create mode 100644 docs/user-manual/07-sales-purchases.md\n create mode 100644 docs/user-manual/08-projects.md\n create mode 100644 docs/user-manual/09-helpdesk.md\n create mode 100644 docs/user-manual/10-messaging.md\n create mode 100644 docs/user-manual/11-settings.md\n create mode 100644 docs/user-manual/12-system-tools.md\n create mode 100644 docs/user-manual/13-documents.md\n create mode 100644 docs/user-manual/14-reports.md\n\n=== Git Push ===\nTo https://github.com/merkuriddg/m1_erp/\n   1f69962..018f09a  main -> main',NULL,NULL,1,'2025-11-17 10:47:15','2025-11-17 10:47:16'),
(9,'full','success','=== DATABASE BACKUP ===\n✓ Database backup: SUCCESS\n\n=== GIT COMMIT & PUSH ===\n✓ Git operations: SUCCESS\n\nStarting database backup...\nDatabase: brickwal_m1_ds\nBackup file: /Users/rpmbbu/LocalPHPStorm/m1_erp_web/database/backups/backup_20251117_104729.sql\n✓ Backup completed successfully\n✓ Backup size: 5.1M\nCleaning up old backups (keeping last 7)...\n✓ Cleanup completed\n✓ All done!\n\n=== Git Status ===\n',NULL,NULL,1,'2025-11-17 10:47:29','2025-11-17 10:47:31'),
(10,'database','success','Database backup completed successfully.\n\nStarting database backup...\nDatabase: brickwal_m1_ds\nBackup file: /Users/rpmbbu/LocalPHPStorm/m1_erp_web/database/backups/backup_20251117_104729.sql\n✓ Backup completed successfully\n✓ Backup size: 5.1M\nCleaning up old backups (keeping last 7)...\n✓ Cleanup completed\n✓ All done!',NULL,NULL,1,'2025-11-17 10:47:29','2025-11-17 10:47:31'),
(11,'git','success','Checking git status...\nNo changes to commit\n\n=== Git Status ===\n',NULL,NULL,1,'2025-11-17 10:47:31','2025-11-17 10:47:31'),
(12,'git','success','Checking git status...\nAdding changes...\nCommitting changes...\nPushing to GitHub...\nGit operations completed successfully\n\n=== Git Status ===\n M AIO/NextCloudAIO\n M NEXTCLOUD_INTEGRATION.md\n M controllers/DocumentsController.php\n M controllers/NextcloudController.php\n M models/NextcloudClient.php\n M public/index.php\n M views/accounting/assets/show.php\n M views/accounting/period/index.php\n M views/crm/documents/show.php\n M views/crm/opportunities_show.php\n M views/documents/upload.php\n M views/documents/view.php\n M views/employees/show.php\n M views/forecaster/forecast_show.php\n M views/invoices/show.php\n M views/nextcloud/documents_widget.php\n M views/projects/show.php\n M views/purchaseorders/show.php\n M views/quotes/battery/edit.php\n M views/quotes/battery/show.php\n M views/quotes/general/edit.php\n M views/quotes/general/show.php\n M views/sales/discounts/index.php\n M views/salesorders/show.php\n M views/suppliers/edit.php\n M views/workorders/show.php\n?? BACKUP_STRATEGY.md\n?? NEXTCLOUD_ADMIN_GUIDE.md\n?? NEXTCLOUD_DOCUMENT_EDITING.md\n?? NEXTCLOUD_EDITING_QUICK_START.md\n?? controllers/NextcloudAdminController.php\n?? \"dev_examples/LBC Sales Process.pdf\"\n?? scripts/clear_otp_session.php\n?? views/nextcloud/activity_log.php\n?? views/nextcloud/admin_dashboard.php\n?? views/nextcloud/storage_report.php\n?? views/nextcloud/user_activity.php\n?? views/nextcloud/users_overview.php\n\n=== Git Add ===\n(no output)\n\n=== Git Commit ===\n[main dd05ad8] Automated backup: 2025-11-17 22:42:25\n 38 files changed, 3562 insertions(+), 59 deletions(-)\n create mode 100644 BACKUP_STRATEGY.md\n create mode 100644 NEXTCLOUD_ADMIN_GUIDE.md\n create mode 100644 NEXTCLOUD_DOCUMENT_EDITING.md\n create mode 100644 NEXTCLOUD_EDITING_QUICK_START.md\n create mode 100644 controllers/NextcloudAdminController.php\n create mode 100644 dev_examples/LBC Sales Process.pdf\n create mode 100644 scripts/clear_otp_session.php\n create mode 100644 views/nextcloud/activity_log.php\n create mode 100644 views/nextcloud/admin_dashboard.php\n create mode 100644 views/nextcloud/storage_report.php\n create mode 100644 views/nextcloud/user_activity.php\n create mode 100644 views/nextcloud/users_overview.php\n\n=== Git Push ===\nTo https://github.com/merkuriddg/m1_erp/\n   018f09a..dd05ad8  main -> main',NULL,NULL,1,'2025-11-17 22:42:25','2025-11-17 22:42:27'),
(13,'full','success','=== DATABASE BACKUP ===\n✓ Database backup: SUCCESS\n\n=== GIT COMMIT & PUSH ===\n✓ Git operations: SUCCESS\n\nStarting database backup...\nDatabase: brickwal_m1_ds\nBackup file: /Users/rpmbbu/LocalPHPStorm/m1_erp_web/database/backups/backup_20251117_224235.sql\n✓ Backup completed successfully\n✓ Backup size: 4.4M\nCleaning up old backups (keeping last 7)...\n✓ Cleanup completed\n✓ All done!\n\n=== Git Status ===\n',NULL,NULL,1,'2025-11-17 22:42:34','2025-11-17 22:42:36'),
(14,'database','success','Database backup completed successfully.\n\nStarting database backup...\nDatabase: brickwal_m1_ds\nBackup file: /Users/rpmbbu/LocalPHPStorm/m1_erp_web/database/backups/backup_20251117_224235.sql\n✓ Backup completed successfully\n✓ Backup size: 4.4M\nCleaning up old backups (keeping last 7)...\n✓ Cleanup completed\n✓ All done!',NULL,NULL,1,'2025-11-17 22:42:34','2025-11-17 22:42:36'),
(15,'git','success','Checking git status...\nNo changes to commit\n\n=== Git Status ===\n',NULL,NULL,1,'2025-11-17 22:42:36','2025-11-17 22:42:36'),
(16,'full','success','=== DATABASE BACKUP ===\n✓ Database backup: SUCCESS\n\n=== GIT COMMIT & PUSH ===\n✓ Git operations: SUCCESS\n\nStarting database backup...\nDatabase: brickwal_m1_ds\nBackup file: /Users/rpmbbu/LocalPHPStorm/m1_erp_web/database/backups/backup_20251118_140835.sql\n✓ Backup completed successfully\n✓ Backup size: 5.2M\nCleaning up old backups (keeping last 7)...\n✓ Cleanup completed\n✓ All done!\n\n=== Git Status ===\n M AIO/NextCloudAIO\n M controllers/CustomerController.php\n M controllers/NextcloudController.php\n M controllers/UserController.php\n M models/NextcloudClient.php\n M public/index.php\n M views/accounting/period/index.php\n M views/announcements/create.php\n M views/announcements/edit.php\n M views/announcements/index.php\n M views/backup/index.php\n M views/backup/show.php\n M views/crm/documents/create.php\n M views/customers/create.php\n M views/customers/edit.php\n M views/customers/show.php\n M views/documentation/index.php\n M views/forecaster/compare.php\n M views/forecaster/index.php\n M views/hr/development/contracts/edit.php\n M views/hr/development/contracts/index.php\n M views/hr/development/contracts/view.php\n M views/hr/development/reviews/create.php\n M views/hr/development/reviews/edit.php\n M views/hr/development/reviews/index.php\n M views/hr/development/reviews/view.php\n M views/hr/development/training/create_assignment.php\n M views/hr/development/training/create_program.php\n M views/hr/development/training/edit_assignment.php\n M views/hr/development/training/edit_program.php\n M views/hr/development/training/index.php\n M views/hr/development/training/view_assignment.php\n M views/hr/development/training/view_program.php\n M views/hr/recruitment/assessments/index.php\n M views/hr/recruitment/interviews/create.php\n M views/hr/recruitment/interviews/edit.php\n M views/hr/recruitment/interviews/index.php\n M views/hr/recruitment/interviews/view.php\n M views/hr/recruitment/offers/create.php\n M views/hr/recruitment/offers/index.php\n M views/hr/relations/issues/create.php\n M views/hr/relations/issues/edit.php\n M views/hr/relations/issues/index.php\n M views/hr/relations/issues/view.php\n M views/hr/relations/separations/create.php\n M views/hr/relations/separations/edit.php\n M views/hr/relations/separations/index.php\n M views/hr/relations/separations/view.php\n M views/inventory/movements/create.php\n M views/inventory/movements/index.php\n M views/inventory/movements/show.php\n M views/inventory/transfers/create.php\n M views/inventory/transfers/index.php\n M views/inventory/transfers/show.php\n M views/journal/import.php\n M views/layouts/app.php\n M views/layouts/sidebar_dynamic.php\n M views/manufacturing/mrp/index.php\n M views/manufacturing/mrp/requisitions.php\n M views/manufacturing/mrp/safety_stock.php\n M views/manufacturing/quality/inspections.php\n M views/manufacturing/quality/ncr.php\n M views/manufacturing/quality/templates.php\n M views/manufacturing/shopfloor/index.php\n M views/manufacturing/shopfloor/work_order.php\n M views/nextcloud/documents_widget.php\n M views/nextcloud/my_documents.php\n M views/nextcloud/settings.php\n M views/pipedrive/import_dashboard.php\n M views/pipedrive/import_log.php\n M views/products/edit.php\n M views/products/show.php\n M views/projects/index.php\n M views/reports/index.php\n M views/reports/inventory.php\n M views/reports/sales.php\n M views/sales/reports/inventory.php\n M views/sales/reports/sales.php\n M views/tax/jurisdictions/index.php\n M views/tax/payments/index.php\n M views/workorders/show.php\n?? AI_README.md\n?? AI_SETUP_COMPLETE.md\n?? AI_USAGE_EXAMPLES.md\n?? controllers/AITestController.php\n?? core/AI.php\n?? public/assets/css/bootstrap-icons.css\n?? public/templates/\n?? scripts/sync_nextcloud_users.php\n?? views/customers/documents_widget.php\n?? views/nextcloud/embedded_editor.php\n\n=== Git Add ===\n(no output)\n\n=== Git Commit ===\n[main b473f5e] Automated backup: 2025-11-18 14:08:37\n 96 files changed, 2797 insertions(+), 417 deletions(-)\n create mode 100644 AI_README.md\n create mode 100644 AI_SETUP_COMPLETE.md\n create mode 100644 AI_USAGE_EXAMPLES.md\n create mode 100644 controllers/AITestController.php\n create mode 100644 core/AI.php\n create mode 100644 public/assets/css/bootstrap-icons.css\n create mode 100644 public/templates/blank.docx\n create mode 100644 public/templates/blank.odp\n create mode 100644 public/templates/blank.ods\n create mode 100644 public/templates/blank.odt\n create mode 100644 public/templates/blank.pptx\n create mode 100644 public/templates/blank.xlsx\n create mode 100644 scripts/sync_nextcloud_users.php\n create mode 100644 views/customers/documents_widget.php\n create mode 100644 views/nextcloud/embedded_editor.php\n\n=== Git Push ===\nTo https://github.com/merkuriddg/m1_erp/\n   ccd453f..b473f5e  main -> main',NULL,NULL,1,'2025-11-18 14:08:35','2025-11-18 14:08:38'),
(17,'database','success','Database backup completed successfully.\n\nStarting database backup...\nDatabase: brickwal_m1_ds\nBackup file: /Users/rpmbbu/LocalPHPStorm/m1_erp_web/database/backups/backup_20251118_140835.sql\n✓ Backup completed successfully\n✓ Backup size: 5.2M\nCleaning up old backups (keeping last 7)...\n✓ Cleanup completed\n✓ All done!',NULL,NULL,1,'2025-11-18 14:08:35','2025-11-18 14:08:37'),
(18,'git','success','Checking git status...\nAdding changes...\nCommitting changes...\nPushing to GitHub...\nGit operations completed successfully\n\n=== Git Status ===\n M AIO/NextCloudAIO\n M controllers/CustomerController.php\n M controllers/NextcloudController.php\n M controllers/UserController.php\n M models/NextcloudClient.php\n M public/index.php\n M views/accounting/period/index.php\n M views/announcements/create.php\n M views/announcements/edit.php\n M views/announcements/index.php\n M views/backup/index.php\n M views/backup/show.php\n M views/crm/documents/create.php\n M views/customers/create.php\n M views/customers/edit.php\n M views/customers/show.php\n M views/documentation/index.php\n M views/forecaster/compare.php\n M views/forecaster/index.php\n M views/hr/development/contracts/edit.php\n M views/hr/development/contracts/index.php\n M views/hr/development/contracts/view.php\n M views/hr/development/reviews/create.php\n M views/hr/development/reviews/edit.php\n M views/hr/development/reviews/index.php\n M views/hr/development/reviews/view.php\n M views/hr/development/training/create_assignment.php\n M views/hr/development/training/create_program.php\n M views/hr/development/training/edit_assignment.php\n M views/hr/development/training/edit_program.php\n M views/hr/development/training/index.php\n M views/hr/development/training/view_assignment.php\n M views/hr/development/training/view_program.php\n M views/hr/recruitment/assessments/index.php\n M views/hr/recruitment/interviews/create.php\n M views/hr/recruitment/interviews/edit.php\n M views/hr/recruitment/interviews/index.php\n M views/hr/recruitment/interviews/view.php\n M views/hr/recruitment/offers/create.php\n M views/hr/recruitment/offers/index.php\n M views/hr/relations/issues/create.php\n M views/hr/relations/issues/edit.php\n M views/hr/relations/issues/index.php\n M views/hr/relations/issues/view.php\n M views/hr/relations/separations/create.php\n M views/hr/relations/separations/edit.php\n M views/hr/relations/separations/index.php\n M views/hr/relations/separations/view.php\n M views/inventory/movements/create.php\n M views/inventory/movements/index.php\n M views/inventory/movements/show.php\n M views/inventory/transfers/create.php\n M views/inventory/transfers/index.php\n M views/inventory/transfers/show.php\n M views/journal/import.php\n M views/layouts/app.php\n M views/layouts/sidebar_dynamic.php\n M views/manufacturing/mrp/index.php\n M views/manufacturing/mrp/requisitions.php\n M views/manufacturing/mrp/safety_stock.php\n M views/manufacturing/quality/inspections.php\n M views/manufacturing/quality/ncr.php\n M views/manufacturing/quality/templates.php\n M views/manufacturing/shopfloor/index.php\n M views/manufacturing/shopfloor/work_order.php\n M views/nextcloud/documents_widget.php\n M views/nextcloud/my_documents.php\n M views/nextcloud/settings.php\n M views/pipedrive/import_dashboard.php\n M views/pipedrive/import_log.php\n M views/products/edit.php\n M views/products/show.php\n M views/projects/index.php\n M views/reports/index.php\n M views/reports/inventory.php\n M views/reports/sales.php\n M views/sales/reports/inventory.php\n M views/sales/reports/sales.php\n M views/tax/jurisdictions/index.php\n M views/tax/payments/index.php\n M views/workorders/show.php\n?? AI_README.md\n?? AI_SETUP_COMPLETE.md\n?? AI_USAGE_EXAMPLES.md\n?? controllers/AITestController.php\n?? core/AI.php\n?? public/assets/css/bootstrap-icons.css\n?? public/templates/\n?? scripts/sync_nextcloud_users.php\n?? views/customers/documents_widget.php\n?? views/nextcloud/embedded_editor.php\n\n=== Git Add ===\n(no output)\n\n=== Git Commit ===\n[main b473f5e] Automated backup: 2025-11-18 14:08:37\n 96 files changed, 2797 insertions(+), 417 deletions(-)\n create mode 100644 AI_README.md\n create mode 100644 AI_SETUP_COMPLETE.md\n create mode 100644 AI_USAGE_EXAMPLES.md\n create mode 100644 controllers/AITestController.php\n create mode 100644 core/AI.php\n create mode 100644 public/assets/css/bootstrap-icons.css\n create mode 100644 public/templates/blank.docx\n create mode 100644 public/templates/blank.odp\n create mode 100644 public/templates/blank.ods\n create mode 100644 public/templates/blank.odt\n create mode 100644 public/templates/blank.pptx\n create mode 100644 public/templates/blank.xlsx\n create mode 100644 scripts/sync_nextcloud_users.php\n create mode 100644 views/customers/documents_widget.php\n create mode 100644 views/nextcloud/embedded_editor.php\n\n=== Git Push ===\nTo https://github.com/merkuriddg/m1_erp/\n   ccd453f..b473f5e  main -> main',NULL,NULL,1,'2025-11-18 14:08:37','2025-11-18 14:08:38'),
(19,'full','success','=== DATABASE BACKUP ===\n✓ Database backup: SUCCESS\n\n=== GIT COMMIT & PUSH ===\n✓ Git operations: SUCCESS\n\nStarting database backup...\nDatabase: brickwal_m1_ds\nBackup file: /Users/rpmbbu/LocalPHPStorm/m1_erp_web/database/backups/backup_20251119_091905.sql\n✓ Backup completed successfully\n✓ Backup size: 4.2M\nCleaning up old backups (keeping last 7)...\n✓ Cleanup completed\n✓ All done!\n\n=== Git Status ===\n',NULL,NULL,1,'2025-11-19 09:19:05','2025-11-19 09:19:06'),
(20,'database','success','Database backup completed successfully.\n\nStarting database backup...\nDatabase: brickwal_m1_ds\nBackup file: /Users/rpmbbu/LocalPHPStorm/m1_erp_web/database/backups/backup_20251119_091905.sql\n✓ Backup completed successfully\n✓ Backup size: 4.2M\nCleaning up old backups (keeping last 7)...\n✓ Cleanup completed\n✓ All done!',NULL,NULL,1,'2025-11-19 09:19:05','2025-11-19 09:19:06'),
(21,'git','success','Checking git status...\nNo changes to commit\n\n=== Git Status ===\n',NULL,NULL,1,'2025-11-19 09:19:06','2025-11-19 09:19:06'),
(22,'full','success','=== DATABASE BACKUP ===\n✓ Database backup: SUCCESS\n\n=== GIT COMMIT & PUSH ===\n✓ Git operations: SUCCESS\n\nStarting database backup...\nDatabase: brickwal_m1_ds\nBackup file: /Users/rpmbbu/LocalPHPStorm/m1_erp_web/database/backups/backup_20251119_094122.sql\n✓ Backup completed successfully\n✓ Backup size: 4.2M\nCleaning up old backups (keeping last 7)...\n✓ Cleanup completed\n✓ All done!\n\n=== Git Status ===\n M core/AI.php\n M public/index.php\n M views/layouts/app.php\n?? NETWORK_MONITOR_README.md\n?? controllers/NetworkMonitorController.php\n?? core/NetworkMonitor.php\n?? views/network_monitor/\n\n=== Git Add ===\n(no output)\n\n=== Git Commit ===\n[main 5876626] Automated backup: 2025-11-19 09:41:22\n 7 files changed, 1446 insertions(+), 1 deletion(-)\n create mode 100644 NETWORK_MONITOR_README.md\n create mode 100644 controllers/NetworkMonitorController.php\n create mode 100644 core/NetworkMonitor.php\n create mode 100644 views/network_monitor/index.php\n\n=== Git Push ===\nTo https://github.com/merkuriddg/m1_erp/\n   b473f5e..5876626  main -> main',NULL,NULL,1,'2025-11-19 09:41:21','2025-11-19 09:41:23'),
(23,'database','success','Database backup completed successfully.\n\nStarting database backup...\nDatabase: brickwal_m1_ds\nBackup file: /Users/rpmbbu/LocalPHPStorm/m1_erp_web/database/backups/backup_20251119_094122.sql\n✓ Backup completed successfully\n✓ Backup size: 4.2M\nCleaning up old backups (keeping last 7)...\n✓ Cleanup completed\n✓ All done!',NULL,NULL,1,'2025-11-19 09:41:21','2025-11-19 09:41:22'),
(24,'git','success','Checking git status...\nAdding changes...\nCommitting changes...\nPushing to GitHub...\nGit operations completed successfully\n\n=== Git Status ===\n M core/AI.php\n M public/index.php\n M views/layouts/app.php\n?? NETWORK_MONITOR_README.md\n?? controllers/NetworkMonitorController.php\n?? core/NetworkMonitor.php\n?? views/network_monitor/\n\n=== Git Add ===\n(no output)\n\n=== Git Commit ===\n[main 5876626] Automated backup: 2025-11-19 09:41:22\n 7 files changed, 1446 insertions(+), 1 deletion(-)\n create mode 100644 NETWORK_MONITOR_README.md\n create mode 100644 controllers/NetworkMonitorController.php\n create mode 100644 core/NetworkMonitor.php\n create mode 100644 views/network_monitor/index.php\n\n=== Git Push ===\nTo https://github.com/merkuriddg/m1_erp/\n   b473f5e..5876626  main -> main',NULL,NULL,1,'2025-11-19 09:41:22','2025-11-19 09:41:23'),
(25,'full','success','=== DATABASE BACKUP ===\n✓ Database backup: SUCCESS\n\n=== GIT COMMIT & PUSH ===\n✓ Git operations: SUCCESS\n\nStarting database backup...\nDatabase: brickwal_m1_ds\nBackup file: /Users/rpmbbu/LocalPHPStorm/m1_erp_web/database/backups/backup_20251119_133018.sql\n✓ Backup completed successfully\n✓ Backup size: 4.3M\nCleaning up old backups (keeping last 7)...\n✓ Cleanup completed\n✓ All done!\n\n=== Git Status ===\n M controllers/AITestController.php\n M core/AI.php\n M public/index.php\n M views/accounting/reports/report-package.php\n M views/ai_test/index.php\n?? AI_MODEL_SELECTOR_IMPLEMENTATION.md\n?? DAILY_FORECASTING_SYSTEM.md\n?? PRODUCT_LINE_FORECASTING.md\n?? controllers/AssumptionsController.php\n?? controllers/ProductForecastController.php\n?? models/ForecastAssumptionManager.php\n?? models/ProductForecastManager.php\n?? public/debug_ai_sql.php\n?? public/test_ai_simple.php\n?? public/test_quotes_query.php\n?? test_ai_sql.php\n?? test_sql_cleaning.php\n?? views/assumptions/\n?? views/product_forecast/\n\n=== Git Add ===\n(no output)\n\n=== Git Commit ===\n[main eb42f7a] Automated backup: 2025-11-19 13:30:19\n 27 files changed, 5599 insertions(+), 279 deletions(-)\n create mode 100644 AI_MODEL_SELECTOR_IMPLEMENTATION.md\n create mode 100644 DAILY_FORECASTING_SYSTEM.md\n create mode 100644 PRODUCT_LINE_FORECASTING.md\n create mode 100644 controllers/AssumptionsController.php\n create mode 100644 controllers/ProductForecastController.php\n create mode 100644 models/ForecastAssumptionManager.php\n create mode 100644 models/ProductForecastManager.php\n create mode 100644 public/debug_ai_sql.php\n create mode 100644 public/test_ai_simple.php\n create mode 100644 public/test_quotes_query.php\n create mode 100644 test_ai_sql.php\n create mode 100644 test_sql_cleaning.php\n create mode 100644 views/assumptions/create_set.php\n create mode 100644 views/assumptions/daily_update.php\n create mode 100644 views/assumptions/edit.php\n create mode 100644 views/assumptions/sets.php\n create mode 100644 views/assumptions/variance.php\n create mode 100644 views/product_forecast/compare.php\n create mode 100644 views/product_forecast/compare_results.php\n create mode 100644 views/product_forecast/generate.php\n create mode 100644 views/product_forecast/index.php\n create mode 100644 views/product_forecast/proforma.php\n\n=== Git Push ===\nTo https://github.com/merkuriddg/m1_erp/\n   5876626..eb42f7a  main -> main',NULL,NULL,1,'2025-11-19 13:30:18','2025-11-19 13:30:20'),
(26,'database','success','Database backup completed successfully.\n\nStarting database backup...\nDatabase: brickwal_m1_ds\nBackup file: /Users/rpmbbu/LocalPHPStorm/m1_erp_web/database/backups/backup_20251119_133018.sql\n✓ Backup completed successfully\n✓ Backup size: 4.3M\nCleaning up old backups (keeping last 7)...\n✓ Cleanup completed\n✓ All done!',NULL,NULL,1,'2025-11-19 13:30:18','2025-11-19 13:30:19'),
(27,'git','success','Checking git status...\nAdding changes...\nCommitting changes...\nPushing to GitHub...\nGit operations completed successfully\n\n=== Git Status ===\n M controllers/AITestController.php\n M core/AI.php\n M public/index.php\n M views/accounting/reports/report-package.php\n M views/ai_test/index.php\n?? AI_MODEL_SELECTOR_IMPLEMENTATION.md\n?? DAILY_FORECASTING_SYSTEM.md\n?? PRODUCT_LINE_FORECASTING.md\n?? controllers/AssumptionsController.php\n?? controllers/ProductForecastController.php\n?? models/ForecastAssumptionManager.php\n?? models/ProductForecastManager.php\n?? public/debug_ai_sql.php\n?? public/test_ai_simple.php\n?? public/test_quotes_query.php\n?? test_ai_sql.php\n?? test_sql_cleaning.php\n?? views/assumptions/\n?? views/product_forecast/\n\n=== Git Add ===\n(no output)\n\n=== Git Commit ===\n[main eb42f7a] Automated backup: 2025-11-19 13:30:19\n 27 files changed, 5599 insertions(+), 279 deletions(-)\n create mode 100644 AI_MODEL_SELECTOR_IMPLEMENTATION.md\n create mode 100644 DAILY_FORECASTING_SYSTEM.md\n create mode 100644 PRODUCT_LINE_FORECASTING.md\n create mode 100644 controllers/AssumptionsController.php\n create mode 100644 controllers/ProductForecastController.php\n create mode 100644 models/ForecastAssumptionManager.php\n create mode 100644 models/ProductForecastManager.php\n create mode 100644 public/debug_ai_sql.php\n create mode 100644 public/test_ai_simple.php\n create mode 100644 public/test_quotes_query.php\n create mode 100644 test_ai_sql.php\n create mode 100644 test_sql_cleaning.php\n create mode 100644 views/assumptions/create_set.php\n create mode 100644 views/assumptions/daily_update.php\n create mode 100644 views/assumptions/edit.php\n create mode 100644 views/assumptions/sets.php\n create mode 100644 views/assumptions/variance.php\n create mode 100644 views/product_forecast/compare.php\n create mode 100644 views/product_forecast/compare_results.php\n create mode 100644 views/product_forecast/generate.php\n create mode 100644 views/product_forecast/index.php\n create mode 100644 views/product_forecast/proforma.php\n\n=== Git Push ===\nTo https://github.com/merkuriddg/m1_erp/\n   5876626..eb42f7a  main -> main',NULL,NULL,1,'2025-11-19 13:30:19','2025-11-19 13:30:20'),
(28,'full','success','=== DATABASE BACKUP ===\n✓ Database backup: SUCCESS\n\n=== GIT COMMIT & PUSH ===\n✓ Git operations: SUCCESS\n\nStarting database backup...\nDatabase: brickwal_m1_ds\nBackup file: /Users/rpmbbu/LocalPHPStorm/m1_erp_web/database/backups/backup_20251121_164651.sql\n✓ Backup completed successfully\n✓ Backup size: 4.8M\nCleaning up old backups (keeping last 7)...\n✓ Cleanup completed\n✓ All done!\n\n=== Git Status ===\n D docs/ACTION_MENU_PHASE2_PHASE3_COMPLETE.md\n D docs/ACTION_MENU_PHASE4_COMPLETE.md\n D docs/ACTION_MENU_SYSTEM_COMPLETE.md\n D docs/AI_INSTALLATION_SUCCESS.md\n D docs/AI_MODEL_SELECTOR_IMPLEMENTATION.md\n D docs/AI_QUICK_REFERENCE.md\n D docs/AI_README.md\n D docs/AI_SETUP_COMPLETE.md\n D docs/AI_TEST_PAGE.md\n D docs/AI_USAGE_EXAMPLES.md\n D docs/CALENDAR_FEATURE_COMPLETE.md\n D docs/CALENDAR_README.md\n D docs/DEPLOYMENT_CHECKLIST.md\n D docs/DEPLOYMENT_COMPLETE.md\n D docs/DEPLOYMENT_COMPLETE_SALES_PIPELINE.md\n D docs/DEPLOYMENT_GUIDE.md\n D docs/FILE_MANAGER_IMPLEMENTATION.md\n D docs/FILE_MANAGER_NEXT_STEPS.md\n D docs/FINANCIAL_MODELING_SUMMARY.md\n D docs/FINANCIAL_PLANNER_IMPLEMENTATION.md\n D docs/GANTT_AND_RESOURCE_PLANNING.md\n D docs/GANTT_MEDIUM_ENHANCEMENTS.md\n D docs/GANTT_QUICK_WINS.md\n D docs/MFA_CRITICAL_CONSIDERATIONS.md\n D docs/MFA_PASSWORD_RESET_IMPLEMENTATION_GUIDE.md\n D docs/MFA_QUICKSTART.md\n D docs/NEXTCLOUD_ADMIN_GUIDE.md\n D docs/NEXTCLOUD_APP_GRID_BUTTONS.md\n D docs/NEXTCLOUD_DOCUMENT_EDITING.md\n D docs/NEXTCLOUD_EDITING_QUICK_START.md\n D docs/NEXTCLOUD_INTEGRATION.md\n D docs/NEXTCLOUD_INTEGRATION_README.md\n D docs/NEXTCLOUD_MENU_PATHS.md\n D docs/NEXTCLOUD_QUICKSTART.md\n D docs/NOTIFICATION_FUTURE_ROADMAP.md\n D docs/NOTIFICATION_SYSTEM_PLAN.md\n D docs/OPPORTUNITIES_ENHANCEMENTS.md\n D docs/OPPORTUNITIES_TRACKING_FIELDS.md\n D docs/PERMISSIONS_IMPROVEMENTS_2025-11-17.md\n D docs/PERMISSIONS_OVERVIEW.md\n D docs/PROJECT_FINANCIALS_INTEGRATION.md\n D docs/PROJECT_GROUP_ASSIGNMENTS_FEATURE.md\n D docs/PROJECT_MANAGEMENT_SYSTEM.md\n D docs/PROJECT_TEAM_MEMBERS_FEATURE.md\n D docs/PROJECT_TO_GENERAL_LEDGER.md\n D docs/PURCHASE_MODULES_COMPLETE_SUMMARY.md\n D docs/PURCHASE_MODULES_IMPLEMENTATION.md\n D docs/QUICKBOOKS_QUICK_START.md\n D docs/QUICKBOOKS_README.md\n D docs/QUICKBOOKS_REPLACEMENT_ANALYSIS.md\n D docs/ROLES_PERMISSIONS_GUIDE.md\n D docs/ROLE_CONSOLIDATION.md\n D docs/ROLE_POSITION_AUDIT.md\n D docs/SECURITY_MODEL_CONSOLIDATION.md\n D docs/SECURITY_REFACTOR_TO_POSITIONS.md\n?? \"docs/AI Setup/\"\n?? docs/ActionMenu/\n?? docs/Calendar/\n?? docs/DeploymentGuide/\n?? \"docs/File Manager/\"\n?? docs/Financials/\n?? docs/GanttChart/\n?? docs/MFA/\n?? docs/NextCloud/\n?? docs/Notifications/\n?? docs/Opportunities/\n?? docs/Permissions/\n?? docs/Projects/\n?? docs/Purchases/\n?? docs/QuickBooks/\n?? docs/Roles/\n?? docs/Security/\n\n=== Git Add ===\n(no output)\n\n=== Git Commit ===\n[main 19df6f5] Automated backup: 2025-11-21 16:46:52\n 55 files changed, 0 insertions(+), 0 deletions(-)\n rename docs/{ => AI Setup}/AI_INSTALLATION_SUCCESS.md (100%)\n rename docs/{ => AI Setup}/AI_MODEL_SELECTOR_IMPLEMENTATION.md (100%)\n rename docs/{ => AI Setup}/AI_QUICK_REFERENCE.md (100%)\n rename docs/{ => AI Setup}/AI_README.md (100%)\n rename docs/{ => AI Setup}/AI_SETUP_COMPLETE.md (100%)\n rename docs/{ => AI Setup}/AI_TEST_PAGE.md (100%)\n rename docs/{ => AI Setup}/AI_USAGE_EXAMPLES.md (100%)\n rename docs/{ => ActionMenu}/ACTION_MENU_PHASE2_PHASE3_COMPLETE.md (100%)\n rename docs/{ => ActionMenu}/ACTION_MENU_PHASE4_COMPLETE.md (100%)\n rename docs/{ => ActionMenu}/ACTION_MENU_SYSTEM_COMPLETE.md (100%)\n rename docs/{ => Calendar}/CALENDAR_FEATURE_COMPLETE.md (100%)\n rename docs/{ => Calendar}/CALENDAR_README.md (100%)\n rename docs/{ => DeploymentGuide}/DEPLOYMENT_CHECKLIST.md (100%)\n rename docs/{ => DeploymentGuide}/DEPLOYMENT_COMPLETE.md (100%)\n rename docs/{ => DeploymentGuide}/DEPLOYMENT_COMPLETE_SALES_PIPELINE.md (100%)\n rename docs/{ => DeploymentGuide}/DEPLOYMENT_GUIDE.md (100%)\n rename docs/{ => File Manager}/FILE_MANAGER_IMPLEMENTATION.md (100%)\n rename docs/{ => File Manager}/FILE_MANAGER_NEXT_STEPS.md (100%)\n rename docs/{ => Financials}/FINANCIAL_MODELING_SUMMARY.md (100%)\n rename docs/{ => Financials}/FINANCIAL_PLANNER_IMPLEMENTATION.md (100%)\n rename docs/{ => GanttChart}/GANTT_AND_RESOURCE_PLANNING.md (100%)\n rename docs/{ => GanttChart}/GANTT_MEDIUM_ENHANCEMENTS.md (100%)\n rename docs/{ => GanttChart}/GANTT_QUICK_WINS.md (100%)\n rename docs/{ => MFA}/MFA_CRITICAL_CONSIDERATIONS.md (100%)\n rename docs/{ => MFA}/MFA_PASSWORD_RESET_IMPLEMENTATION_GUIDE.md (100%)\n rename docs/{ => MFA}/MFA_QUICKSTART.md (100%)\n rename docs/{ => NextCloud}/NEXTCLOUD_ADMIN_GUIDE.md (100%)\n rename docs/{ => NextCloud}/NEXTCLOUD_APP_GRID_BUTTONS.md (100%)\n rename docs/{ => NextCloud}/NEXTCLOUD_DOCUMENT_EDITING.md (100%)\n rename docs/{ => NextCloud}/NEXTCLOUD_EDITING_QUICK_START.md (100%)\n rename docs/{ => NextCloud}/NEXTCLOUD_INTEGRATION.md (100%)\n rename docs/{ => NextCloud}/NEXTCLOUD_INTEGRATION_README.md (100%)\n rename docs/{ => NextCloud}/NEXTCLOUD_MENU_PATHS.md (100%)\n rename docs/{ => NextCloud}/NEXTCLOUD_QUICKSTART.md (100%)\n rename docs/{ => Notifications}/NOTIFICATION_FUTURE_ROADMAP.md (100%)\n rename docs/{ => Notifications}/NOTIFICATION_SYSTEM_PLAN.md (100%)\n rename docs/{ => Opportunities}/OPPORTUNITIES_ENHANCEMENTS.md (100%)\n rename docs/{ => Opportunities}/OPPORTUNITIES_TRACKING_FIELDS.md (100%)\n rename docs/{ => Permissions}/PERMISSIONS_IMPROVEMENTS_2025-11-17.md (100%)\n rename docs/{ => Permissions}/PERMISSIONS_OVERVIEW.md (100%)\n rename docs/{ => Projects}/PROJECT_FINANCIALS_INTEGRATION.md (100%)\n rename docs/{ => Projects}/PROJECT_GROUP_ASSIGNMENTS_FEATURE.md (100%)\n rename docs/{ => Projects}/PROJECT_MANAGEMENT_SYSTEM.md (100%)\n rename docs/{ => Projects}/PROJECT_TEAM_MEMBERS_FEATURE.md (100%)\n rename docs/{ => Projects}/PROJECT_TO_GENERAL_LEDGER.md (100%)\n rename docs/{ => Purchases}/PURCHASE_MODULES_COMPLETE_SUMMARY.md (100%)\n rename docs/{ => Purchases}/PURCHASE_MODULES_IMPLEMENTATION.md (100%)\n rename docs/{ => QuickBooks}/QUICKBOOKS_QUICK_START.md (100%)\n rename docs/{ => QuickBooks}/QUICKBOOKS_README.md (100%)\n rename docs/{ => QuickBooks}/QUICKBOOKS_REPLACEMENT_ANALYSIS.md (100%)\n rename docs/{ => Roles}/ROLES_PERMISSIONS_GUIDE.md (100%)\n rename docs/{ => Roles}/ROLE_CONSOLIDATION.md (100%)\n rename docs/{ => Roles}/ROLE_POSITION_AUDIT.md (100%)\n rename docs/{ => Security}/SECURITY_MODEL_CONSOLIDATION.md (100%)\n rename docs/{ => Security}/SECURITY_REFACTOR_TO_POSITIONS.md (100%)\n\n=== Git Push ===\nTo https://github.com/merkuriddg/m1_erp/\n   c686715..19df6f5  main -> main',NULL,NULL,1,'2025-11-21 16:46:50','2025-11-21 16:46:54'),
(29,'database','success','Database backup completed successfully.\n\nStarting database backup...\nDatabase: brickwal_m1_ds\nBackup file: /Users/rpmbbu/LocalPHPStorm/m1_erp_web/database/backups/backup_20251121_164651.sql\n✓ Backup completed successfully\n✓ Backup size: 4.8M\nCleaning up old backups (keeping last 7)...\n✓ Cleanup completed\n✓ All done!',NULL,NULL,1,'2025-11-21 16:46:50','2025-11-21 16:46:52'),
(30,'git','success','Checking git status...\nAdding changes...\nCommitting changes...\nPushing to GitHub...\nGit operations completed successfully\n\n=== Git Status ===\n D docs/ACTION_MENU_PHASE2_PHASE3_COMPLETE.md\n D docs/ACTION_MENU_PHASE4_COMPLETE.md\n D docs/ACTION_MENU_SYSTEM_COMPLETE.md\n D docs/AI_INSTALLATION_SUCCESS.md\n D docs/AI_MODEL_SELECTOR_IMPLEMENTATION.md\n D docs/AI_QUICK_REFERENCE.md\n D docs/AI_README.md\n D docs/AI_SETUP_COMPLETE.md\n D docs/AI_TEST_PAGE.md\n D docs/AI_USAGE_EXAMPLES.md\n D docs/CALENDAR_FEATURE_COMPLETE.md\n D docs/CALENDAR_README.md\n D docs/DEPLOYMENT_CHECKLIST.md\n D docs/DEPLOYMENT_COMPLETE.md\n D docs/DEPLOYMENT_COMPLETE_SALES_PIPELINE.md\n D docs/DEPLOYMENT_GUIDE.md\n D docs/FILE_MANAGER_IMPLEMENTATION.md\n D docs/FILE_MANAGER_NEXT_STEPS.md\n D docs/FINANCIAL_MODELING_SUMMARY.md\n D docs/FINANCIAL_PLANNER_IMPLEMENTATION.md\n D docs/GANTT_AND_RESOURCE_PLANNING.md\n D docs/GANTT_MEDIUM_ENHANCEMENTS.md\n D docs/GANTT_QUICK_WINS.md\n D docs/MFA_CRITICAL_CONSIDERATIONS.md\n D docs/MFA_PASSWORD_RESET_IMPLEMENTATION_GUIDE.md\n D docs/MFA_QUICKSTART.md\n D docs/NEXTCLOUD_ADMIN_GUIDE.md\n D docs/NEXTCLOUD_APP_GRID_BUTTONS.md\n D docs/NEXTCLOUD_DOCUMENT_EDITING.md\n D docs/NEXTCLOUD_EDITING_QUICK_START.md\n D docs/NEXTCLOUD_INTEGRATION.md\n D docs/NEXTCLOUD_INTEGRATION_README.md\n D docs/NEXTCLOUD_MENU_PATHS.md\n D docs/NEXTCLOUD_QUICKSTART.md\n D docs/NOTIFICATION_FUTURE_ROADMAP.md\n D docs/NOTIFICATION_SYSTEM_PLAN.md\n D docs/OPPORTUNITIES_ENHANCEMENTS.md\n D docs/OPPORTUNITIES_TRACKING_FIELDS.md\n D docs/PERMISSIONS_IMPROVEMENTS_2025-11-17.md\n D docs/PERMISSIONS_OVERVIEW.md\n D docs/PROJECT_FINANCIALS_INTEGRATION.md\n D docs/PROJECT_GROUP_ASSIGNMENTS_FEATURE.md\n D docs/PROJECT_MANAGEMENT_SYSTEM.md\n D docs/PROJECT_TEAM_MEMBERS_FEATURE.md\n D docs/PROJECT_TO_GENERAL_LEDGER.md\n D docs/PURCHASE_MODULES_COMPLETE_SUMMARY.md\n D docs/PURCHASE_MODULES_IMPLEMENTATION.md\n D docs/QUICKBOOKS_QUICK_START.md\n D docs/QUICKBOOKS_README.md\n D docs/QUICKBOOKS_REPLACEMENT_ANALYSIS.md\n D docs/ROLES_PERMISSIONS_GUIDE.md\n D docs/ROLE_CONSOLIDATION.md\n D docs/ROLE_POSITION_AUDIT.md\n D docs/SECURITY_MODEL_CONSOLIDATION.md\n D docs/SECURITY_REFACTOR_TO_POSITIONS.md\n?? \"docs/AI Setup/\"\n?? docs/ActionMenu/\n?? docs/Calendar/\n?? docs/DeploymentGuide/\n?? \"docs/File Manager/\"\n?? docs/Financials/\n?? docs/GanttChart/\n?? docs/MFA/\n?? docs/NextCloud/\n?? docs/Notifications/\n?? docs/Opportunities/\n?? docs/Permissions/\n?? docs/Projects/\n?? docs/Purchases/\n?? docs/QuickBooks/\n?? docs/Roles/\n?? docs/Security/\n\n=== Git Add ===\n(no output)\n\n=== Git Commit ===\n[main 19df6f5] Automated backup: 2025-11-21 16:46:52\n 55 files changed, 0 insertions(+), 0 deletions(-)\n rename docs/{ => AI Setup}/AI_INSTALLATION_SUCCESS.md (100%)\n rename docs/{ => AI Setup}/AI_MODEL_SELECTOR_IMPLEMENTATION.md (100%)\n rename docs/{ => AI Setup}/AI_QUICK_REFERENCE.md (100%)\n rename docs/{ => AI Setup}/AI_README.md (100%)\n rename docs/{ => AI Setup}/AI_SETUP_COMPLETE.md (100%)\n rename docs/{ => AI Setup}/AI_TEST_PAGE.md (100%)\n rename docs/{ => AI Setup}/AI_USAGE_EXAMPLES.md (100%)\n rename docs/{ => ActionMenu}/ACTION_MENU_PHASE2_PHASE3_COMPLETE.md (100%)\n rename docs/{ => ActionMenu}/ACTION_MENU_PHASE4_COMPLETE.md (100%)\n rename docs/{ => ActionMenu}/ACTION_MENU_SYSTEM_COMPLETE.md (100%)\n rename docs/{ => Calendar}/CALENDAR_FEATURE_COMPLETE.md (100%)\n rename docs/{ => Calendar}/CALENDAR_README.md (100%)\n rename docs/{ => DeploymentGuide}/DEPLOYMENT_CHECKLIST.md (100%)\n rename docs/{ => DeploymentGuide}/DEPLOYMENT_COMPLETE.md (100%)\n rename docs/{ => DeploymentGuide}/DEPLOYMENT_COMPLETE_SALES_PIPELINE.md (100%)\n rename docs/{ => DeploymentGuide}/DEPLOYMENT_GUIDE.md (100%)\n rename docs/{ => File Manager}/FILE_MANAGER_IMPLEMENTATION.md (100%)\n rename docs/{ => File Manager}/FILE_MANAGER_NEXT_STEPS.md (100%)\n rename docs/{ => Financials}/FINANCIAL_MODELING_SUMMARY.md (100%)\n rename docs/{ => Financials}/FINANCIAL_PLANNER_IMPLEMENTATION.md (100%)\n rename docs/{ => GanttChart}/GANTT_AND_RESOURCE_PLANNING.md (100%)\n rename docs/{ => GanttChart}/GANTT_MEDIUM_ENHANCEMENTS.md (100%)\n rename docs/{ => GanttChart}/GANTT_QUICK_WINS.md (100%)\n rename docs/{ => MFA}/MFA_CRITICAL_CONSIDERATIONS.md (100%)\n rename docs/{ => MFA}/MFA_PASSWORD_RESET_IMPLEMENTATION_GUIDE.md (100%)\n rename docs/{ => MFA}/MFA_QUICKSTART.md (100%)\n rename docs/{ => NextCloud}/NEXTCLOUD_ADMIN_GUIDE.md (100%)\n rename docs/{ => NextCloud}/NEXTCLOUD_APP_GRID_BUTTONS.md (100%)\n rename docs/{ => NextCloud}/NEXTCLOUD_DOCUMENT_EDITING.md (100%)\n rename docs/{ => NextCloud}/NEXTCLOUD_EDITING_QUICK_START.md (100%)\n rename docs/{ => NextCloud}/NEXTCLOUD_INTEGRATION.md (100%)\n rename docs/{ => NextCloud}/NEXTCLOUD_INTEGRATION_README.md (100%)\n rename docs/{ => NextCloud}/NEXTCLOUD_MENU_PATHS.md (100%)\n rename docs/{ => NextCloud}/NEXTCLOUD_QUICKSTART.md (100%)\n rename docs/{ => Notifications}/NOTIFICATION_FUTURE_ROADMAP.md (100%)\n rename docs/{ => Notifications}/NOTIFICATION_SYSTEM_PLAN.md (100%)\n rename docs/{ => Opportunities}/OPPORTUNITIES_ENHANCEMENTS.md (100%)\n rename docs/{ => Opportunities}/OPPORTUNITIES_TRACKING_FIELDS.md (100%)\n rename docs/{ => Permissions}/PERMISSIONS_IMPROVEMENTS_2025-11-17.md (100%)\n rename docs/{ => Permissions}/PERMISSIONS_OVERVIEW.md (100%)\n rename docs/{ => Projects}/PROJECT_FINANCIALS_INTEGRATION.md (100%)\n rename docs/{ => Projects}/PROJECT_GROUP_ASSIGNMENTS_FEATURE.md (100%)\n rename docs/{ => Projects}/PROJECT_MANAGEMENT_SYSTEM.md (100%)\n rename docs/{ => Projects}/PROJECT_TEAM_MEMBERS_FEATURE.md (100%)\n rename docs/{ => Projects}/PROJECT_TO_GENERAL_LEDGER.md (100%)\n rename docs/{ => Purchases}/PURCHASE_MODULES_COMPLETE_SUMMARY.md (100%)\n rename docs/{ => Purchases}/PURCHASE_MODULES_IMPLEMENTATION.md (100%)\n rename docs/{ => QuickBooks}/QUICKBOOKS_QUICK_START.md (100%)\n rename docs/{ => QuickBooks}/QUICKBOOKS_README.md (100%)\n rename docs/{ => QuickBooks}/QUICKBOOKS_REPLACEMENT_ANALYSIS.md (100%)\n rename docs/{ => Roles}/ROLES_PERMISSIONS_GUIDE.md (100%)\n rename docs/{ => Roles}/ROLE_CONSOLIDATION.md (100%)\n rename docs/{ => Roles}/ROLE_POSITION_AUDIT.md (100%)\n rename docs/{ => Security}/SECURITY_MODEL_CONSOLIDATION.md (100%)\n rename docs/{ => Security}/SECURITY_REFACTOR_TO_POSITIONS.md (100%)\n\n=== Git Push ===\nTo https://github.com/merkuriddg/m1_erp/\n   c686715..19df6f5  main -> main',NULL,NULL,1,'2025-11-21 16:46:52','2025-11-21 16:46:54'),
(31,'full','success','=== DATABASE BACKUP ===\n✓ Database backup: SUCCESS\n\n=== GIT COMMIT & PUSH ===\n✓ Git operations: SUCCESS\n\nStarting database backup...\nDatabase: brickwal_m1_ds\nBackup file: /Users/rpmbbu/LocalPHPStorm/m1_erp_web/database/backups/backup_20251124_121405.sql\n✓ Backup completed successfully\n✓ Backup size: 4.3M\nCleaning up old backups (keeping last 7)...\n✓ Cleanup completed\n✓ All done!\n\n=== Git Status ===\nA  M1_ERP_FIX_PLAN.md\n M controllers/AccountingController.php\n M controllers/ContactController.php\n M controllers/CustomerController.php\n M controllers/FileManagerController.php\n M dev_examples/old/csv_to_sql.sh\n M dev_examples/old/fix_date_formats.php\n M models/Customer.php\n M models/DataTableGenerator.php\n M scripts/auto_git_push.sh\n M scripts/convert-all-buttons.sh\n M scripts/nightly_db_backup.sh\nAM test_file_manager.php\n M views/accounting/currency/form.php\n M views/accounting/currency/rates.php\n M views/accounting/currency/revaluation_form.php\n M views/ai_test/index.php\n M views/assumptions/sets.php\n M views/assumptions/variance.php\n M views/automation/email_templates/create.php\n M views/automation/email_templates/edit.php\n M views/automation/email_templates/preview.php\n M views/backup/index.php\n M views/backup/show.php\n M views/bank_import/index.php\n M views/bank_import/review.php\n M views/bank_import/rules.php\n M views/bank_import/upload.php\n M views/banking/reconciliation/show.php\n M views/calendar/index.php\n M views/camera_audit/capture.php\n M views/camera_audit/stations/create.php\n M views/camera_audit/stations/edit.php\n M views/crm/activities/create.php\n M views/crm/opportunities_show.php\n D views/customers/create.php\n D views/customers/documents_widget.php\n D views/customers/edit.php\n D views/customers/index.php\n D views/customers/show.php\nA  views/errors/403.php\nA  views/errors/500.php\nA  views/errors/503.php\n M views/file_manager/index.php\n M views/financial_planner/compare.php\n M views/financial_planner/forecast_edit.php\n M views/forecaster/compare.php\n M views/form1099/generate.php\n M views/form1099/summary.php\n M views/hr/recruitment/offers/print.php\n M views/journal/import.php\n M views/journal/index.php\n M views/manufacturing/scheduling/calendar.php\n M views/menus/index.php\n M views/messaging/index.php\n M views/ndas/countersign.php\n M views/ndas/create.php\n M views/ndas/index.php\n M views/ndas/preview.php\n M views/ndas/show.php\n M views/ndas/signature/sign.php\n M views/network_monitor/index.php\n M views/nextcloud/admin_dashboard.php\n M views/nextcloud/document_editor.php\n M views/nextcloud/documents_widget.php\n M views/nextcloud/edit_instructions.php\n M views/nextcloud/embedded_editor.php\n M views/nextcloud/quick_create.php\n M views/nextcloud/settings.php\n M views/pipedrive/import_dashboard.php\n M views/pipedrive/import_log.php\n M views/product_forecast/index.php\n M views/product_forecast/sensitivity.php\n M views/profile/index.php\n M views/profile/mfa_setup.php\n M views/projects/board.php\n M views/projects/edit.php\n M views/projects/financials.php\n M views/projects/gantt.php\n M views/projects/list.php\n M views/projects/migrate_transactions.php\n M views/projects/resources.php\n M views/projects/transaction_form.php\n M views/purchaserequisitions/show.php\n M views/quotes/general/show.php\n M views/quotes/signature/accept.php\n M views/quotes/signature/thank-you.php\n M views/recurring/create.php\n M views/recurring/edit.php\n M views/settings/nda_templates/edit.php\n M views/settings/nda_templates/show.php\n M views/settings/user_groups/show.php\n M views/tax/jurisdictions/create.php\n M views/tax/jurisdictions/edit.php\n M views/tax/jurisdictions/index.php\n M views/tax/jurisdictions/show.php\n M views/tax/payments/create.php\n M views/tax/payments/edit.php\n M views/tax/payments/index.php\n M views/tax/payments/show.php\n M views/tax/reports/liability.php\n M views/vendor_payments/show.php\n?? backups/buttons_all_20251124_104203/\n?? views/companies/\n\n=== Git Add ===\n(no output)\n\n=== Git Commit ===\n[main 166009c] Automated backup: 2025-11-24 12:14:06\n 671 files changed, 118763 insertions(+), 366 deletions(-)\n create mode 100644 M1_ERP_FIX_PLAN.md\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/assets/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/assets/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/assets/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/assets/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/budgets/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/budgets/form.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/budgets/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/budgets/show.php\n create mode 100644 backups/buttons_all_20251124_104203/views/accounting/currency/form.php\n create mode 100644 backups/buttons_all_20251124_104203/views/accounting/currency/list.php\n create mode 100644 backups/buttons_all_20251124_104203/views/accounting/currency/rates.php\n create mode 100644 backups/buttons_all_20251124_104203/views/accounting/currency/revaluation.php\n create mode 100644 backups/buttons_all_20251124_104203/views/accounting/currency/revaluation_form.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/dashboard.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/depreciation/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/depreciation/schedule.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/expenses/form.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/expenses/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/expenses/print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/expenses/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/ledger.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/period/close.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/period/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/period/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/aging-print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/aging.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/ap-aging-detail-print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/ap-aging-detail.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/ar-aging-detail-print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/ar-aging-detail.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/balance-sheet-print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/balance-sheet.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/cash-flow-statement-print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/cash-flow-statement.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/income-statement-print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/income-statement.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/payment-terms-list-print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/payment-terms-list.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/report-package-print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/report-package.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/trial-balance-print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/trial-balance.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/tax/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/tax/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/tax/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/tax/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounts/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounts/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/ai_test/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/announcements/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/announcements/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/announcements/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/approvals/dashboard.php\n create mode 100644 backups/buttons_all_20251124_104203/views/assumptions/create_set.php\n create mode 100644 backups/buttons_all_20251124_104203/views/assumptions/daily_update.php\n create mode 100644 backups/buttons_all_20251124_104203/views/assumptions/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/assumptions/sets.php\n create mode 100644 backups/buttons_all_20251124_104203/views/assumptions/variance.php\n create mode 100755 backups/buttons_all_20251124_104203/views/attendance/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/attendance/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/audit_logs/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/auth/forgot_password.php\n create mode 100755 backups/buttons_all_20251124_104203/views/auth/login.php\n create mode 100644 backups/buttons_all_20251124_104203/views/auth/reset_password.php\n create mode 100644 backups/buttons_all_20251124_104203/views/auth/verify_otp.php\n create mode 100644 backups/buttons_all_20251124_104203/views/automation/email_templates/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/automation/email_templates/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/automation/email_templates/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/automation/email_templates/preview.php\n create mode 100644 backups/buttons_all_20251124_104203/views/backup/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/backup/show.php\n create mode 100644 backups/buttons_all_20251124_104203/views/bank_import/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/bank_import/review.php\n create mode 100644 backups/buttons_all_20251124_104203/views/bank_import/rules.php\n create mode 100644 backups/buttons_all_20251124_104203/views/bank_import/upload.php\n create mode 100755 backups/buttons_all_20251124_104203/views/banking/accounts/form.php\n create mode 100755 backups/buttons_all_20251124_104203/views/banking/accounts/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/banking/accounts/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/banking/reconciliation/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/banking/reconciliation/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/banking/reconciliation/start.php\n create mode 100755 backups/buttons_all_20251124_104203/views/battery_quotes/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/battery_quotes/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/battery_quotes/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/battery_quotes/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/boms/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/boms/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/boms/low_stock_report.php\n create mode 100755 backups/buttons_all_20251124_104203/views/boms/view.php\n create mode 100644 backups/buttons_all_20251124_104203/views/calendar/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/camera_audit/capture.php\n create mode 100644 backups/buttons_all_20251124_104203/views/camera_audit/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/camera_audit/stations/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/camera_audit/stations/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/camera_audit/stations/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/camera_audit/view.php\n create mode 100755 backups/buttons_all_20251124_104203/views/clients/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/clients/edit.php\n rename {views/customers => backups/buttons_all_20251124_104203/views/clients}/index.php (61%)\n create mode 100755 backups/buttons_all_20251124_104203/views/clients/show.php\n rename {views/customers => backups/buttons_all_20251124_104203/views/companies}/create.php (93%)\n rename {views/customers => backups/buttons_all_20251124_104203/views/companies}/documents_widget.php (100%)\n rename {views/customers => backups/buttons_all_20251124_104203/views/companies}/edit.php (93%)\n create mode 100755 backups/buttons_all_20251124_104203/views/companies/index.php\n rename {views/customers => backups/buttons_all_20251124_104203/views/companies}/show.php (94%)\n create mode 100644 backups/buttons_all_20251124_104203/views/components/action_menu.php\n create mode 100755 backups/buttons_all_20251124_104203/views/components/internal_notes_modal.php\n create mode 100755 backups/buttons_all_20251124_104203/views/creditnotes/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/creditnotes/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/creditnotes/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/activities.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/activities/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/activities/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/contacts.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/contacts/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/contacts/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/dashboard.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/documents.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/documents/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/documents/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/documents/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/opportunities.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/opportunities_create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/crm/opportunities_edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/crm/opportunities_pipeline.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/opportunities_show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/reports.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/support.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/support/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/support/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/support/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/custom_reports/builder.php\n create mode 100755 backups/buttons_all_20251124_104203/views/custom_reports/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/custom_reports/my.php\n create mode 100755 backups/buttons_all_20251124_104203/views/custom_reports/scheduled.php\n create mode 100755 backups/buttons_all_20251124_104203/views/custom_reports/shared.php\n create mode 100755 backups/buttons_all_20251124_104203/views/customer_payments/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/customer_payments/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/customer_payments/print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/customize.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/widgets/component_shortages.php\n create mode 100644 backups/buttons_all_20251124_104203/views/dashboard/widgets/documentation_coverage.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/widgets/inventory_value.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/widgets/low_stock.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/widgets/outstanding_invoices.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/widgets/pending_orders.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/widgets/recent_orders.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/widgets/revenue_month.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/widgets/sales_today.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/widgets/sales_trend.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/widgets/top_customers.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/widgets/top_products.php\n create mode 100644 backups/buttons_all_20251124_104203/views/dashboard/widgets/upcoming_events.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/widgets/work_orders_status.php\n create mode 100755 backups/buttons_all_20251124_104203/views/data_access/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/data_access/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/debitnotes/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/debitnotes/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/debitnotes/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/debitnotes/show.php\n create mode 100644 backups/buttons_all_20251124_104203/views/documentation/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/documents/all.php\n create mode 100755 backups/buttons_all_20251124_104203/views/documents/my.php\n create mode 100755 backups/buttons_all_20251124_104203/views/documents/shared.php\n create mode 100755 backups/buttons_all_20251124_104203/views/documents/upload.php\n create mode 100755 backups/buttons_all_20251124_104203/views/documents/view.php\n create mode 100755 backups/buttons_all_20251124_104203/views/employees/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/employees/directory.php\n create mode 100755 backups/buttons_all_20251124_104203/views/employees/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/employees/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/employees/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/errors/404.php\n create mode 100644 backups/buttons_all_20251124_104203/views/file_manager/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/financial_planner/compare.php\n create mode 100644 backups/buttons_all_20251124_104203/views/financial_planner/compare_prototype.php\n create mode 100644 backups/buttons_all_20251124_104203/views/financial_planner/forecast_edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/financial_planner/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/financial_planner/partials/guide_panel.php\n create mode 100644 backups/buttons_all_20251124_104203/views/financial_planner/planner.php\n create mode 100755 backups/buttons_all_20251124_104203/views/financial_proforma/assumptions.php\n create mode 100755 backups/buttons_all_20251124_104203/views/financial_proforma/compare.php\n create mode 100755 backups/buttons_all_20251124_104203/views/financial_proforma/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/financial_proforma/report.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/compare.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/financing_create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/financing_edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/forecast_create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/forecast_edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/forecast_show.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/import_proforma.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/investment_create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/investment_edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/periods_edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/scenario_create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/scenario_edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/scenario_show.php\n create mode 100644 backups/buttons_all_20251124_104203/views/form1099/contractor_detail.php\n create mode 100644 backups/buttons_all_20251124_104203/views/form1099/generate.php\n create mode 100644 backups/buttons_all_20251124_104203/views/form1099/summary.php\n create mode 100755 backups/buttons_all_20251124_104203/views/goodsreceipts/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/goodsreceipts/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/goodsreceipts/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/helpdesk/chat.php\n create mode 100755 backups/buttons_all_20251124_104203/views/helpdesk/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/helpdesk/dashboard.php\n create mode 100755 backups/buttons_all_20251124_104203/views/helpdesk/kb.php\n create mode 100755 backups/buttons_all_20251124_104203/views/helpdesk/my-tickets.php\n create mode 100755 backups/buttons_all_20251124_104203/views/helpdesk/reports.php\n create mode 100755 backups/buttons_all_20251124_104203/views/helpdesk/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/helpdesk/sla.php\n create mode 100755 backups/buttons_all_20251124_104203/views/helpdesk/tickets.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/contracts/print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/dashboard.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/contracts/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/contracts/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/contracts/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/contracts/view.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/reviews/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/reviews/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/reviews/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/reviews/view.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/training/create_assignment.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/training/create_program.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/training/edit_assignment.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/training/edit_program.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/training/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/training/view_assignment.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/training/view_program.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/positions/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/positions/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/positions/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/applications/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/applications/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/applications/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/applications/view.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/assessments/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/hr/recruitment/assessments/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/assessments/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/hr/recruitment/assessments/view.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/dashboard.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/interviews/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/interviews/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/interviews/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/interviews/view.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/offer-letter.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/offers/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/offers/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/offers/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/offers/print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/offers/view.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/positions/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/positions/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/positions/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/positions/view.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/relations/issues/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/relations/issues/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/relations/issues/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/relations/issues/view.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/relations/separations/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/relations/separations/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/relations/separations/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/relations/separations/view.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/categories/form.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/categories/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/categories/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/dashboard.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/lots/expiration.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/lots/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/lots/traceability.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/movements/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/movements/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/movements/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/stock-levels/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/stock-levels/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/transfers/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/transfers/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/transfers/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/invoices/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/invoices/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/invoices/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/invoices/print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/invoices/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/journal/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/journal/import.php\n create mode 100644 backups/buttons_all_20251124_104203/views/journal/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/journal/index_old.php\n create mode 100755 backups/buttons_all_20251124_104203/views/journal/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/layouts/app.php\n create mode 100755 backups/buttons_all_20251124_104203/views/layouts/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/layouts/sidebar_dynamic.php\n create mode 100755 backups/buttons_all_20251124_104203/views/locations/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/locations/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/locations/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/analytics/dashboard.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/business-lines/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/business-lines/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/business-lines/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/capacity/analytics.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/capacity/availability.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/capacity/feasibility.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/capacity/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/capacity/machine_status.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/costing/jobs.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/costing/production.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/dashboard.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/equipment-lines/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/equipment-lines/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/equipment-lines/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/equipment-types/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/equipment-types/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/equipment-types/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/equipment/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/equipment/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/equipment/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/maintenance/create_downtime.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/maintenance/create_schedule.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/maintenance/create_work_order.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/maintenance/downtime.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/maintenance/schedules.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/maintenance/work_orders.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/mrp/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/mrp/requisitions.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/mrp/safety_stock.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/quality/create_inspection.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/quality/create_ncr.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/quality/create_template.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/quality/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/quality/inspections.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/quality/metrics.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/quality/ncr.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/quality/templates.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/reports/oee.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/reports/production.php\n create mode 100644 backups/buttons_all_20251124_104203/views/manufacturing/scheduling/calendar.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/scheduling/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/shopfloor/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/shopfloor/work_order.php\n create mode 100755 backups/buttons_all_20251124_104203/views/menus/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/menus/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/menus/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/menus/role_access.php\n create mode 100755 backups/buttons_all_20251124_104203/views/messaging/create_channel.php\n create mode 100755 backups/buttons_all_20251124_104203/views/messaging/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/ndas/countersign.php\n create mode 100644 backups/buttons_all_20251124_104203/views/ndas/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/ndas/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/ndas/preview.php\n create mode 100644 backups/buttons_all_20251124_104203/views/ndas/show.php\n create mode 120000 backups/buttons_all_20251124_104203/views/ndas/signature/error.php\n create mode 100644 backups/buttons_all_20251124_104203/views/ndas/signature/sign.php\n create mode 100644 backups/buttons_all_20251124_104203/views/network_monitor/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/activity_log.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/admin_dashboard.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/auto_login.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/document_editor.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/documents_widget.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/edit_instructions.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/editor.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/embedded_editor.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/my_documents.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/quick_create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/settings.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/sso_proxy.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/storage_report.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/user_activity.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/users_overview.php\n create mode 100755 backups/buttons_all_20251124_104203/views/notifications/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/partials/quick_add_company_modal.php\n create mode 100644 backups/buttons_all_20251124_104203/views/partials/quick_add_supplier_modal.php\n create mode 100755 backups/buttons_all_20251124_104203/views/partials/stat_card.php\n create mode 100755 backups/buttons_all_20251124_104203/views/payments/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/payments/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/payments/print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/payroll/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/payroll/dashboard.php\n create mode 100755 backups/buttons_all_20251124_104203/views/payroll/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/payroll/payslip.php\n create mode 100644 backups/buttons_all_20251124_104203/views/pipedrive/import_dashboard.php\n create mode 100644 backups/buttons_all_20251124_104203/views/pipedrive/import_log.php\n create mode 100644 backups/buttons_all_20251124_104203/views/product_forecast/command_center.php\n create mode 100644 backups/buttons_all_20251124_104203/views/product_forecast/compare.php\n create mode 100644 backups/buttons_all_20251124_104203/views/product_forecast/compare_results.php\n create mode 100644 backups/buttons_all_20251124_104203/views/product_forecast/generate.php\n create mode 100644 backups/buttons_all_20251124_104203/views/product_forecast/getting_started.php\n create mode 100644 backups/buttons_all_20251124_104203/views/product_forecast/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/product_forecast/proforma.php\n create mode 100644 backups/buttons_all_20251124_104203/views/product_forecast/sensitivity.php\n create mode 100644 backups/buttons_all_20251124_104203/views/product_forecast/variance.php\n create mode 100755 backups/buttons_all_20251124_104203/views/products/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/products/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/products/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/products/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/profile/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/profile/mfa_backup_codes.php\n create mode 100644 backups/buttons_all_20251124_104203/views/profile/mfa_setup.php\n create mode 100755 backups/buttons_all_20251124_104203/views/proforma/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/proforma/location.php\n create mode 100644 backups/buttons_all_20251124_104203/views/projects/board.php\n create mode 100755 backups/buttons_all_20251124_104203/views/projects/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/projects/dashboard.php\n create mode 100755 backups/buttons_all_20251124_104203/views/projects/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/projects/financials.php\n create mode 100644 backups/buttons_all_20251124_104203/views/projects/gantt.php\n create mode 100644 backups/buttons_all_20251124_104203/views/projects/gantt_export_pdf.php\n create mode 100755 backups/buttons_all_20251124_104203/views/projects/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/projects/list.php\n create mode 100644 backups/buttons_all_20251124_104203/views/projects/migrate_transactions.php\n create mode 100644 backups/buttons_all_20251124_104203/views/projects/my_tasks.php\n create mode 100644 backups/buttons_all_20251124_104203/views/projects/resources.php\n create mode 100755 backups/buttons_all_20251124_104203/views/projects/show.php\n create mode 100644 backups/buttons_all_20251124_104203/views/projects/transaction_form.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchasebills/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchasebills/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchasebills/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchasebills/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/purchaseorders/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/purchaseorders/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/purchaseorders/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/purchaseorders/show.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchasepayments/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchasepayments/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchasepayments/show.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchaserequisitions/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchaserequisitions/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchaserequisitions/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchaserequisitions/show.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchasereturns/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchasereturns/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchasereturns/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchasereturns/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/purchases/dashboard.php\n create mode 100755 backups/buttons_all_20251124_104203/views/purchases/goodsreceipts/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/purchases/goodsreceipts/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/purchases/goodsreceipts/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/purchases/payment-voucher.php\n create mode 100755 backups/buttons_all_20251124_104203/views/quickbooks/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/quotes/battery/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/quotes/battery/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/quotes/battery/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/quotes/battery/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/quotes/general/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/quotes/general/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/quotes/general/print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/quotes/general/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/quotes/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/quotes/signature/accept.php\n create mode 100644 backups/buttons_all_20251124_104203/views/quotes/signature/error.php\n create mode 100644 backups/buttons_all_20251124_104203/views/quotes/signature/thank-you.php\n create mode 100644 backups/buttons_all_20251124_104203/views/recurring/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/recurring/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/recurring/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/recurring/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/reports/customers.php\n create mode 100755 backups/buttons_all_20251124_104203/views/reports/financial.php\n create mode 100755 backups/buttons_all_20251124_104203/views/reports/hr.php\n create mode 100755 backups/buttons_all_20251124_104203/views/reports/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/reports/inventory.php\n create mode 100755 backups/buttons_all_20251124_104203/views/reports/purchases.php\n create mode 100755 backups/buttons_all_20251124_104203/views/reports/sales.php\n create mode 100644 backups/buttons_all_20251124_104203/views/rfqs/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/rfqs/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/rfqs/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/rfqs/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/roles/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/roles/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/roles/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/roles/print.php\n create mode 100644 backups/buttons_all_20251124_104203/views/roles/report.php\n create mode 100644 backups/buttons_all_20251124_104203/views/roles/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/dashboard.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/delivery-notes/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/delivery-notes/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/delivery-notes/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/discounts/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/pricing/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/pricing/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/pricing/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/promotions/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/promotions/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/promotions/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/reports.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/reports/customers.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/reports/financial.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/reports/hr.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/reports/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/reports/inventory.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/reports/purchases.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/reports/sales.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/returns/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/sales/returns/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/returns/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/returns/print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/returns/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/salesorders/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/salesorders/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/salesorders/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/salesorders/print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/salesorders/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/_business_params.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/_payroll_params.php\n create mode 100644 backups/buttons_all_20251124_104203/views/settings/action_menus/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/settings/action_menus/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/settings/action_menus/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/settings/action_menus/page_detail.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/business-parameters/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/business-parameters/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/company.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/cost-allocation.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/dropdown_editor.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/dropdowns-operations.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/dropdowns-sales.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/email.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/facilities/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/facilities/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/fiscal-year.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/index.php.accordion\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/index_2.php\n create mode 100644 backups/buttons_all_20251124_104203/views/settings/nda_templates/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/settings/nda_templates/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/settings/nda_templates/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/payment-terms.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/payroll/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/payroll/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/ppe-parameters.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/quote-templates/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/tax.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/terms-conditions/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/terms-conditions/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/terms-conditions/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/settings/user_groups/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/settings/user_groups/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/settings/user_groups/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/settings/user_groups/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/shipments/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/shipments/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/shipments/packing-slip.php\n create mode 100755 backups/buttons_all_20251124_104203/views/shipments/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/suppliers/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/suppliers/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/suppliers/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/tax/jurisdictions/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/tax/jurisdictions/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/tax/jurisdictions/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/tax/jurisdictions/show.php\n create mode 100644 backups/buttons_all_20251124_104203/views/tax/payments/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/tax/payments/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/tax/payments/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/tax/payments/show.php\n create mode 100644 backups/buttons_all_20251124_104203/views/tax/reports/liability.php\n create mode 100755 backups/buttons_all_20251124_104203/views/test/form_generator.php\n create mode 100755 backups/buttons_all_20251124_104203/views/users/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/users/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/users/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/users/show.php\n create mode 100644 backups/buttons_all_20251124_104203/views/vendor_payments/check_print.php\n create mode 100644 backups/buttons_all_20251124_104203/views/vendor_payments/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/vendor_payments/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/vendor_payments/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/vendor_payments/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/warehouses/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/warehouses/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/warehouses/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/workorders/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/workorders/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/workorders/show.php\n create mode 100644 test_file_manager.php\n create mode 100755 views/companies/create.php\n create mode 100644 views/companies/documents_widget.php\n create mode 100755 views/companies/edit.php\n create mode 100755 views/companies/index.php\n create mode 100755 views/companies/show.php\n create mode 100644 views/errors/403.php\n create mode 100644 views/errors/500.php\n create mode 100644 views/errors/503.php\n\n=== Git Push ===\nTo https://github.com/merkuriddg/m1_erp/\n   9c53246..166009c  main -> main',NULL,NULL,1,'2025-11-24 12:14:05','2025-11-24 12:14:08'),
(32,'database','success','Database backup completed successfully.\n\nStarting database backup...\nDatabase: brickwal_m1_ds\nBackup file: /Users/rpmbbu/LocalPHPStorm/m1_erp_web/database/backups/backup_20251124_121405.sql\n✓ Backup completed successfully\n✓ Backup size: 4.3M\nCleaning up old backups (keeping last 7)...\n✓ Cleanup completed\n✓ All done!',NULL,NULL,1,'2025-11-24 12:14:05','2025-11-24 12:14:06'),
(33,'git','success','Checking git status...\nAdding changes...\nCommitting changes...\nPushing to GitHub...\nGit operations completed successfully\n\n=== Git Status ===\nA  M1_ERP_FIX_PLAN.md\n M controllers/AccountingController.php\n M controllers/ContactController.php\n M controllers/CustomerController.php\n M controllers/FileManagerController.php\n M dev_examples/old/csv_to_sql.sh\n M dev_examples/old/fix_date_formats.php\n M models/Customer.php\n M models/DataTableGenerator.php\n M scripts/auto_git_push.sh\n M scripts/convert-all-buttons.sh\n M scripts/nightly_db_backup.sh\nAM test_file_manager.php\n M views/accounting/currency/form.php\n M views/accounting/currency/rates.php\n M views/accounting/currency/revaluation_form.php\n M views/ai_test/index.php\n M views/assumptions/sets.php\n M views/assumptions/variance.php\n M views/automation/email_templates/create.php\n M views/automation/email_templates/edit.php\n M views/automation/email_templates/preview.php\n M views/backup/index.php\n M views/backup/show.php\n M views/bank_import/index.php\n M views/bank_import/review.php\n M views/bank_import/rules.php\n M views/bank_import/upload.php\n M views/banking/reconciliation/show.php\n M views/calendar/index.php\n M views/camera_audit/capture.php\n M views/camera_audit/stations/create.php\n M views/camera_audit/stations/edit.php\n M views/crm/activities/create.php\n M views/crm/opportunities_show.php\n D views/customers/create.php\n D views/customers/documents_widget.php\n D views/customers/edit.php\n D views/customers/index.php\n D views/customers/show.php\nA  views/errors/403.php\nA  views/errors/500.php\nA  views/errors/503.php\n M views/file_manager/index.php\n M views/financial_planner/compare.php\n M views/financial_planner/forecast_edit.php\n M views/forecaster/compare.php\n M views/form1099/generate.php\n M views/form1099/summary.php\n M views/hr/recruitment/offers/print.php\n M views/journal/import.php\n M views/journal/index.php\n M views/manufacturing/scheduling/calendar.php\n M views/menus/index.php\n M views/messaging/index.php\n M views/ndas/countersign.php\n M views/ndas/create.php\n M views/ndas/index.php\n M views/ndas/preview.php\n M views/ndas/show.php\n M views/ndas/signature/sign.php\n M views/network_monitor/index.php\n M views/nextcloud/admin_dashboard.php\n M views/nextcloud/document_editor.php\n M views/nextcloud/documents_widget.php\n M views/nextcloud/edit_instructions.php\n M views/nextcloud/embedded_editor.php\n M views/nextcloud/quick_create.php\n M views/nextcloud/settings.php\n M views/pipedrive/import_dashboard.php\n M views/pipedrive/import_log.php\n M views/product_forecast/index.php\n M views/product_forecast/sensitivity.php\n M views/profile/index.php\n M views/profile/mfa_setup.php\n M views/projects/board.php\n M views/projects/edit.php\n M views/projects/financials.php\n M views/projects/gantt.php\n M views/projects/list.php\n M views/projects/migrate_transactions.php\n M views/projects/resources.php\n M views/projects/transaction_form.php\n M views/purchaserequisitions/show.php\n M views/quotes/general/show.php\n M views/quotes/signature/accept.php\n M views/quotes/signature/thank-you.php\n M views/recurring/create.php\n M views/recurring/edit.php\n M views/settings/nda_templates/edit.php\n M views/settings/nda_templates/show.php\n M views/settings/user_groups/show.php\n M views/tax/jurisdictions/create.php\n M views/tax/jurisdictions/edit.php\n M views/tax/jurisdictions/index.php\n M views/tax/jurisdictions/show.php\n M views/tax/payments/create.php\n M views/tax/payments/edit.php\n M views/tax/payments/index.php\n M views/tax/payments/show.php\n M views/tax/reports/liability.php\n M views/vendor_payments/show.php\n?? backups/buttons_all_20251124_104203/\n?? views/companies/\n\n=== Git Add ===\n(no output)\n\n=== Git Commit ===\n[main 166009c] Automated backup: 2025-11-24 12:14:06\n 671 files changed, 118763 insertions(+), 366 deletions(-)\n create mode 100644 M1_ERP_FIX_PLAN.md\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/assets/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/assets/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/assets/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/assets/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/budgets/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/budgets/form.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/budgets/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/budgets/show.php\n create mode 100644 backups/buttons_all_20251124_104203/views/accounting/currency/form.php\n create mode 100644 backups/buttons_all_20251124_104203/views/accounting/currency/list.php\n create mode 100644 backups/buttons_all_20251124_104203/views/accounting/currency/rates.php\n create mode 100644 backups/buttons_all_20251124_104203/views/accounting/currency/revaluation.php\n create mode 100644 backups/buttons_all_20251124_104203/views/accounting/currency/revaluation_form.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/dashboard.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/depreciation/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/depreciation/schedule.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/expenses/form.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/expenses/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/expenses/print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/expenses/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/ledger.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/period/close.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/period/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/period/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/aging-print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/aging.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/ap-aging-detail-print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/ap-aging-detail.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/ar-aging-detail-print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/ar-aging-detail.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/balance-sheet-print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/balance-sheet.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/cash-flow-statement-print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/cash-flow-statement.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/income-statement-print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/income-statement.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/payment-terms-list-print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/payment-terms-list.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/report-package-print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/report-package.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/trial-balance-print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/reports/trial-balance.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/tax/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/tax/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/tax/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounting/tax/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounts/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/accounts/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/ai_test/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/announcements/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/announcements/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/announcements/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/approvals/dashboard.php\n create mode 100644 backups/buttons_all_20251124_104203/views/assumptions/create_set.php\n create mode 100644 backups/buttons_all_20251124_104203/views/assumptions/daily_update.php\n create mode 100644 backups/buttons_all_20251124_104203/views/assumptions/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/assumptions/sets.php\n create mode 100644 backups/buttons_all_20251124_104203/views/assumptions/variance.php\n create mode 100755 backups/buttons_all_20251124_104203/views/attendance/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/attendance/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/audit_logs/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/auth/forgot_password.php\n create mode 100755 backups/buttons_all_20251124_104203/views/auth/login.php\n create mode 100644 backups/buttons_all_20251124_104203/views/auth/reset_password.php\n create mode 100644 backups/buttons_all_20251124_104203/views/auth/verify_otp.php\n create mode 100644 backups/buttons_all_20251124_104203/views/automation/email_templates/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/automation/email_templates/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/automation/email_templates/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/automation/email_templates/preview.php\n create mode 100644 backups/buttons_all_20251124_104203/views/backup/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/backup/show.php\n create mode 100644 backups/buttons_all_20251124_104203/views/bank_import/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/bank_import/review.php\n create mode 100644 backups/buttons_all_20251124_104203/views/bank_import/rules.php\n create mode 100644 backups/buttons_all_20251124_104203/views/bank_import/upload.php\n create mode 100755 backups/buttons_all_20251124_104203/views/banking/accounts/form.php\n create mode 100755 backups/buttons_all_20251124_104203/views/banking/accounts/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/banking/accounts/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/banking/reconciliation/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/banking/reconciliation/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/banking/reconciliation/start.php\n create mode 100755 backups/buttons_all_20251124_104203/views/battery_quotes/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/battery_quotes/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/battery_quotes/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/battery_quotes/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/boms/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/boms/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/boms/low_stock_report.php\n create mode 100755 backups/buttons_all_20251124_104203/views/boms/view.php\n create mode 100644 backups/buttons_all_20251124_104203/views/calendar/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/camera_audit/capture.php\n create mode 100644 backups/buttons_all_20251124_104203/views/camera_audit/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/camera_audit/stations/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/camera_audit/stations/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/camera_audit/stations/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/camera_audit/view.php\n create mode 100755 backups/buttons_all_20251124_104203/views/clients/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/clients/edit.php\n rename {views/customers => backups/buttons_all_20251124_104203/views/clients}/index.php (61%)\n create mode 100755 backups/buttons_all_20251124_104203/views/clients/show.php\n rename {views/customers => backups/buttons_all_20251124_104203/views/companies}/create.php (93%)\n rename {views/customers => backups/buttons_all_20251124_104203/views/companies}/documents_widget.php (100%)\n rename {views/customers => backups/buttons_all_20251124_104203/views/companies}/edit.php (93%)\n create mode 100755 backups/buttons_all_20251124_104203/views/companies/index.php\n rename {views/customers => backups/buttons_all_20251124_104203/views/companies}/show.php (94%)\n create mode 100644 backups/buttons_all_20251124_104203/views/components/action_menu.php\n create mode 100755 backups/buttons_all_20251124_104203/views/components/internal_notes_modal.php\n create mode 100755 backups/buttons_all_20251124_104203/views/creditnotes/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/creditnotes/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/creditnotes/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/activities.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/activities/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/activities/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/contacts.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/contacts/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/contacts/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/dashboard.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/documents.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/documents/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/documents/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/documents/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/opportunities.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/opportunities_create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/crm/opportunities_edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/crm/opportunities_pipeline.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/opportunities_show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/reports.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/support.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/support/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/support/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/crm/support/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/custom_reports/builder.php\n create mode 100755 backups/buttons_all_20251124_104203/views/custom_reports/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/custom_reports/my.php\n create mode 100755 backups/buttons_all_20251124_104203/views/custom_reports/scheduled.php\n create mode 100755 backups/buttons_all_20251124_104203/views/custom_reports/shared.php\n create mode 100755 backups/buttons_all_20251124_104203/views/customer_payments/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/customer_payments/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/customer_payments/print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/customize.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/widgets/component_shortages.php\n create mode 100644 backups/buttons_all_20251124_104203/views/dashboard/widgets/documentation_coverage.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/widgets/inventory_value.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/widgets/low_stock.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/widgets/outstanding_invoices.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/widgets/pending_orders.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/widgets/recent_orders.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/widgets/revenue_month.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/widgets/sales_today.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/widgets/sales_trend.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/widgets/top_customers.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/widgets/top_products.php\n create mode 100644 backups/buttons_all_20251124_104203/views/dashboard/widgets/upcoming_events.php\n create mode 100755 backups/buttons_all_20251124_104203/views/dashboard/widgets/work_orders_status.php\n create mode 100755 backups/buttons_all_20251124_104203/views/data_access/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/data_access/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/debitnotes/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/debitnotes/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/debitnotes/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/debitnotes/show.php\n create mode 100644 backups/buttons_all_20251124_104203/views/documentation/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/documents/all.php\n create mode 100755 backups/buttons_all_20251124_104203/views/documents/my.php\n create mode 100755 backups/buttons_all_20251124_104203/views/documents/shared.php\n create mode 100755 backups/buttons_all_20251124_104203/views/documents/upload.php\n create mode 100755 backups/buttons_all_20251124_104203/views/documents/view.php\n create mode 100755 backups/buttons_all_20251124_104203/views/employees/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/employees/directory.php\n create mode 100755 backups/buttons_all_20251124_104203/views/employees/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/employees/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/employees/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/errors/404.php\n create mode 100644 backups/buttons_all_20251124_104203/views/file_manager/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/financial_planner/compare.php\n create mode 100644 backups/buttons_all_20251124_104203/views/financial_planner/compare_prototype.php\n create mode 100644 backups/buttons_all_20251124_104203/views/financial_planner/forecast_edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/financial_planner/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/financial_planner/partials/guide_panel.php\n create mode 100644 backups/buttons_all_20251124_104203/views/financial_planner/planner.php\n create mode 100755 backups/buttons_all_20251124_104203/views/financial_proforma/assumptions.php\n create mode 100755 backups/buttons_all_20251124_104203/views/financial_proforma/compare.php\n create mode 100755 backups/buttons_all_20251124_104203/views/financial_proforma/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/financial_proforma/report.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/compare.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/financing_create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/financing_edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/forecast_create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/forecast_edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/forecast_show.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/import_proforma.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/investment_create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/investment_edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/periods_edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/scenario_create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/scenario_edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/forecaster/scenario_show.php\n create mode 100644 backups/buttons_all_20251124_104203/views/form1099/contractor_detail.php\n create mode 100644 backups/buttons_all_20251124_104203/views/form1099/generate.php\n create mode 100644 backups/buttons_all_20251124_104203/views/form1099/summary.php\n create mode 100755 backups/buttons_all_20251124_104203/views/goodsreceipts/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/goodsreceipts/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/goodsreceipts/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/helpdesk/chat.php\n create mode 100755 backups/buttons_all_20251124_104203/views/helpdesk/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/helpdesk/dashboard.php\n create mode 100755 backups/buttons_all_20251124_104203/views/helpdesk/kb.php\n create mode 100755 backups/buttons_all_20251124_104203/views/helpdesk/my-tickets.php\n create mode 100755 backups/buttons_all_20251124_104203/views/helpdesk/reports.php\n create mode 100755 backups/buttons_all_20251124_104203/views/helpdesk/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/helpdesk/sla.php\n create mode 100755 backups/buttons_all_20251124_104203/views/helpdesk/tickets.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/contracts/print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/dashboard.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/contracts/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/contracts/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/contracts/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/contracts/view.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/reviews/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/reviews/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/reviews/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/reviews/view.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/training/create_assignment.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/training/create_program.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/training/edit_assignment.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/training/edit_program.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/training/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/training/view_assignment.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/development/training/view_program.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/positions/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/positions/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/positions/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/applications/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/applications/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/applications/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/applications/view.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/assessments/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/hr/recruitment/assessments/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/assessments/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/hr/recruitment/assessments/view.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/dashboard.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/interviews/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/interviews/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/interviews/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/interviews/view.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/offer-letter.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/offers/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/offers/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/offers/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/offers/print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/offers/view.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/positions/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/positions/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/positions/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/recruitment/positions/view.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/relations/issues/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/relations/issues/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/relations/issues/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/relations/issues/view.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/relations/separations/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/relations/separations/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/relations/separations/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/hr/relations/separations/view.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/categories/form.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/categories/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/categories/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/dashboard.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/lots/expiration.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/lots/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/lots/traceability.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/movements/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/movements/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/movements/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/stock-levels/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/stock-levels/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/transfers/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/transfers/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/inventory/transfers/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/invoices/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/invoices/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/invoices/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/invoices/print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/invoices/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/journal/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/journal/import.php\n create mode 100644 backups/buttons_all_20251124_104203/views/journal/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/journal/index_old.php\n create mode 100755 backups/buttons_all_20251124_104203/views/journal/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/layouts/app.php\n create mode 100755 backups/buttons_all_20251124_104203/views/layouts/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/layouts/sidebar_dynamic.php\n create mode 100755 backups/buttons_all_20251124_104203/views/locations/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/locations/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/locations/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/analytics/dashboard.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/business-lines/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/business-lines/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/business-lines/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/capacity/analytics.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/capacity/availability.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/capacity/feasibility.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/capacity/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/capacity/machine_status.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/costing/jobs.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/costing/production.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/dashboard.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/equipment-lines/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/equipment-lines/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/equipment-lines/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/equipment-types/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/equipment-types/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/equipment-types/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/equipment/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/equipment/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/equipment/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/maintenance/create_downtime.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/maintenance/create_schedule.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/maintenance/create_work_order.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/maintenance/downtime.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/maintenance/schedules.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/maintenance/work_orders.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/mrp/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/mrp/requisitions.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/mrp/safety_stock.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/quality/create_inspection.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/quality/create_ncr.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/quality/create_template.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/quality/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/quality/inspections.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/quality/metrics.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/quality/ncr.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/quality/templates.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/reports/oee.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/reports/production.php\n create mode 100644 backups/buttons_all_20251124_104203/views/manufacturing/scheduling/calendar.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/scheduling/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/shopfloor/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/manufacturing/shopfloor/work_order.php\n create mode 100755 backups/buttons_all_20251124_104203/views/menus/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/menus/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/menus/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/menus/role_access.php\n create mode 100755 backups/buttons_all_20251124_104203/views/messaging/create_channel.php\n create mode 100755 backups/buttons_all_20251124_104203/views/messaging/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/ndas/countersign.php\n create mode 100644 backups/buttons_all_20251124_104203/views/ndas/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/ndas/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/ndas/preview.php\n create mode 100644 backups/buttons_all_20251124_104203/views/ndas/show.php\n create mode 120000 backups/buttons_all_20251124_104203/views/ndas/signature/error.php\n create mode 100644 backups/buttons_all_20251124_104203/views/ndas/signature/sign.php\n create mode 100644 backups/buttons_all_20251124_104203/views/network_monitor/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/activity_log.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/admin_dashboard.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/auto_login.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/document_editor.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/documents_widget.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/edit_instructions.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/editor.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/embedded_editor.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/my_documents.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/quick_create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/settings.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/sso_proxy.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/storage_report.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/user_activity.php\n create mode 100644 backups/buttons_all_20251124_104203/views/nextcloud/users_overview.php\n create mode 100755 backups/buttons_all_20251124_104203/views/notifications/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/partials/quick_add_company_modal.php\n create mode 100644 backups/buttons_all_20251124_104203/views/partials/quick_add_supplier_modal.php\n create mode 100755 backups/buttons_all_20251124_104203/views/partials/stat_card.php\n create mode 100755 backups/buttons_all_20251124_104203/views/payments/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/payments/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/payments/print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/payroll/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/payroll/dashboard.php\n create mode 100755 backups/buttons_all_20251124_104203/views/payroll/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/payroll/payslip.php\n create mode 100644 backups/buttons_all_20251124_104203/views/pipedrive/import_dashboard.php\n create mode 100644 backups/buttons_all_20251124_104203/views/pipedrive/import_log.php\n create mode 100644 backups/buttons_all_20251124_104203/views/product_forecast/command_center.php\n create mode 100644 backups/buttons_all_20251124_104203/views/product_forecast/compare.php\n create mode 100644 backups/buttons_all_20251124_104203/views/product_forecast/compare_results.php\n create mode 100644 backups/buttons_all_20251124_104203/views/product_forecast/generate.php\n create mode 100644 backups/buttons_all_20251124_104203/views/product_forecast/getting_started.php\n create mode 100644 backups/buttons_all_20251124_104203/views/product_forecast/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/product_forecast/proforma.php\n create mode 100644 backups/buttons_all_20251124_104203/views/product_forecast/sensitivity.php\n create mode 100644 backups/buttons_all_20251124_104203/views/product_forecast/variance.php\n create mode 100755 backups/buttons_all_20251124_104203/views/products/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/products/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/products/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/products/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/profile/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/profile/mfa_backup_codes.php\n create mode 100644 backups/buttons_all_20251124_104203/views/profile/mfa_setup.php\n create mode 100755 backups/buttons_all_20251124_104203/views/proforma/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/proforma/location.php\n create mode 100644 backups/buttons_all_20251124_104203/views/projects/board.php\n create mode 100755 backups/buttons_all_20251124_104203/views/projects/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/projects/dashboard.php\n create mode 100755 backups/buttons_all_20251124_104203/views/projects/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/projects/financials.php\n create mode 100644 backups/buttons_all_20251124_104203/views/projects/gantt.php\n create mode 100644 backups/buttons_all_20251124_104203/views/projects/gantt_export_pdf.php\n create mode 100755 backups/buttons_all_20251124_104203/views/projects/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/projects/list.php\n create mode 100644 backups/buttons_all_20251124_104203/views/projects/migrate_transactions.php\n create mode 100644 backups/buttons_all_20251124_104203/views/projects/my_tasks.php\n create mode 100644 backups/buttons_all_20251124_104203/views/projects/resources.php\n create mode 100755 backups/buttons_all_20251124_104203/views/projects/show.php\n create mode 100644 backups/buttons_all_20251124_104203/views/projects/transaction_form.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchasebills/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchasebills/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchasebills/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchasebills/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/purchaseorders/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/purchaseorders/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/purchaseorders/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/purchaseorders/show.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchasepayments/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchasepayments/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchasepayments/show.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchaserequisitions/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchaserequisitions/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchaserequisitions/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchaserequisitions/show.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchasereturns/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchasereturns/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchasereturns/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/purchasereturns/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/purchases/dashboard.php\n create mode 100755 backups/buttons_all_20251124_104203/views/purchases/goodsreceipts/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/purchases/goodsreceipts/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/purchases/goodsreceipts/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/purchases/payment-voucher.php\n create mode 100755 backups/buttons_all_20251124_104203/views/quickbooks/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/quotes/battery/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/quotes/battery/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/quotes/battery/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/quotes/battery/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/quotes/general/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/quotes/general/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/quotes/general/print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/quotes/general/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/quotes/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/quotes/signature/accept.php\n create mode 100644 backups/buttons_all_20251124_104203/views/quotes/signature/error.php\n create mode 100644 backups/buttons_all_20251124_104203/views/quotes/signature/thank-you.php\n create mode 100644 backups/buttons_all_20251124_104203/views/recurring/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/recurring/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/recurring/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/recurring/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/reports/customers.php\n create mode 100755 backups/buttons_all_20251124_104203/views/reports/financial.php\n create mode 100755 backups/buttons_all_20251124_104203/views/reports/hr.php\n create mode 100755 backups/buttons_all_20251124_104203/views/reports/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/reports/inventory.php\n create mode 100755 backups/buttons_all_20251124_104203/views/reports/purchases.php\n create mode 100755 backups/buttons_all_20251124_104203/views/reports/sales.php\n create mode 100644 backups/buttons_all_20251124_104203/views/rfqs/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/rfqs/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/rfqs/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/rfqs/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/roles/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/roles/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/roles/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/roles/print.php\n create mode 100644 backups/buttons_all_20251124_104203/views/roles/report.php\n create mode 100644 backups/buttons_all_20251124_104203/views/roles/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/dashboard.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/delivery-notes/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/delivery-notes/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/delivery-notes/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/discounts/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/pricing/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/pricing/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/pricing/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/promotions/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/promotions/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/promotions/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/reports.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/reports/customers.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/reports/financial.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/reports/hr.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/reports/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/reports/inventory.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/reports/purchases.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/reports/sales.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/returns/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/sales/returns/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/returns/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/returns/print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/sales/returns/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/salesorders/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/salesorders/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/salesorders/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/salesorders/print.php\n create mode 100755 backups/buttons_all_20251124_104203/views/salesorders/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/_business_params.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/_payroll_params.php\n create mode 100644 backups/buttons_all_20251124_104203/views/settings/action_menus/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/settings/action_menus/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/settings/action_menus/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/settings/action_menus/page_detail.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/business-parameters/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/business-parameters/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/company.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/cost-allocation.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/dropdown_editor.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/dropdowns-operations.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/dropdowns-sales.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/email.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/facilities/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/facilities/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/fiscal-year.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/index.php.accordion\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/index_2.php\n create mode 100644 backups/buttons_all_20251124_104203/views/settings/nda_templates/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/settings/nda_templates/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/settings/nda_templates/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/payment-terms.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/payroll/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/payroll/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/ppe-parameters.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/quote-templates/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/tax.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/terms-conditions/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/terms-conditions/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/settings/terms-conditions/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/settings/user_groups/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/settings/user_groups/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/settings/user_groups/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/settings/user_groups/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/shipments/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/shipments/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/shipments/packing-slip.php\n create mode 100755 backups/buttons_all_20251124_104203/views/shipments/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/suppliers/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/suppliers/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/suppliers/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/tax/jurisdictions/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/tax/jurisdictions/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/tax/jurisdictions/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/tax/jurisdictions/show.php\n create mode 100644 backups/buttons_all_20251124_104203/views/tax/payments/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/tax/payments/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/tax/payments/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/tax/payments/show.php\n create mode 100644 backups/buttons_all_20251124_104203/views/tax/reports/liability.php\n create mode 100755 backups/buttons_all_20251124_104203/views/test/form_generator.php\n create mode 100755 backups/buttons_all_20251124_104203/views/users/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/users/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/users/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/users/show.php\n create mode 100644 backups/buttons_all_20251124_104203/views/vendor_payments/check_print.php\n create mode 100644 backups/buttons_all_20251124_104203/views/vendor_payments/create.php\n create mode 100644 backups/buttons_all_20251124_104203/views/vendor_payments/edit.php\n create mode 100644 backups/buttons_all_20251124_104203/views/vendor_payments/index.php\n create mode 100644 backups/buttons_all_20251124_104203/views/vendor_payments/show.php\n create mode 100755 backups/buttons_all_20251124_104203/views/warehouses/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/warehouses/edit.php\n create mode 100755 backups/buttons_all_20251124_104203/views/warehouses/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/workorders/create.php\n create mode 100755 backups/buttons_all_20251124_104203/views/workorders/index.php\n create mode 100755 backups/buttons_all_20251124_104203/views/workorders/show.php\n create mode 100644 test_file_manager.php\n create mode 100755 views/companies/create.php\n create mode 100644 views/companies/documents_widget.php\n create mode 100755 views/companies/edit.php\n create mode 100755 views/companies/index.php\n create mode 100755 views/companies/show.php\n create mode 100644 views/errors/403.php\n create mode 100644 views/errors/500.php\n create mode 100644 views/errors/503.php\n\n=== Git Push ===\nTo https://github.com/merkuriddg/m1_erp/\n   9c53246..166009c  main -> main',NULL,NULL,1,'2025-11-24 12:14:06','2025-11-24 12:14:08'),
(34,'full','success','=== DATABASE BACKUP ===\n✓ Database backup: SUCCESS\n\n=== GIT COMMIT & PUSH ===\n✓ Git operations: SUCCESS\n\nStarting database backup...\nDatabase: brickwal_m1_ds\nBackup file: /Users/rpmbbu/LocalPHPStorm/m1_erp_web/database/backups/backup_20251127_162246.sql\n✓ Backup completed successfully\n✓ Backup size: 5.1M\nCleaning up old backups (keeping last 7)...\n✓ Cleanup completed\n✓ All done!\n\n=== Git Status ===\n M controllers/CalendarController.php\n M controllers/SystemScriptsController.php\n M core/Database.php\n M public/assets/js/calendar.js\n?? CSRF_AUDIT_README.md\n?? CSRF_QUICK_REFERENCE.md\n?? check_csrf_tokens.php\n?? csrf_audit_report.txt\n?? csrf_check.sh\n\n=== Git Add ===\n(no output)\n\n=== Git Commit ===\n[main 55a223e] Automated backup: 2025-11-27 16:22:49\n 9 files changed, 1087 insertions(+), 15 deletions(-)\n create mode 100644 CSRF_AUDIT_README.md\n create mode 100644 CSRF_QUICK_REFERENCE.md\n create mode 100755 check_csrf_tokens.php\n create mode 100644 csrf_audit_report.txt\n create mode 100755 csrf_check.sh\n\n=== Git Push ===\nTo https://github.com/merkuriddg/m1_erp/\n   13cf81d..55a223e  main -> main',NULL,NULL,1,'2025-11-27 16:22:46','2025-11-27 16:22:51'),
(35,'database','success','Database backup completed successfully.\n\nStarting database backup...\nDatabase: brickwal_m1_ds\nBackup file: /Users/rpmbbu/LocalPHPStorm/m1_erp_web/database/backups/backup_20251127_162246.sql\n✓ Backup completed successfully\n✓ Backup size: 5.1M\nCleaning up old backups (keeping last 7)...\n✓ Cleanup completed\n✓ All done!',NULL,NULL,1,'2025-11-27 16:22:46','2025-11-27 16:22:49'),
(36,'git','success','Checking git status...\nAdding changes...\nCommitting changes...\nPushing to GitHub...\nGit operations completed successfully\n\n=== Git Status ===\n M controllers/CalendarController.php\n M controllers/SystemScriptsController.php\n M core/Database.php\n M public/assets/js/calendar.js\n?? CSRF_AUDIT_README.md\n?? CSRF_QUICK_REFERENCE.md\n?? check_csrf_tokens.php\n?? csrf_audit_report.txt\n?? csrf_check.sh\n\n=== Git Add ===\n(no output)\n\n=== Git Commit ===\n[main 55a223e] Automated backup: 2025-11-27 16:22:49\n 9 files changed, 1087 insertions(+), 15 deletions(-)\n create mode 100644 CSRF_AUDIT_README.md\n create mode 100644 CSRF_QUICK_REFERENCE.md\n create mode 100755 check_csrf_tokens.php\n create mode 100644 csrf_audit_report.txt\n create mode 100755 csrf_check.sh\n\n=== Git Push ===\nTo https://github.com/merkuriddg/m1_erp/\n   13cf81d..55a223e  main -> main',NULL,NULL,1,'2025-11-27 16:22:49','2025-11-27 16:22:51'),
(37,'git','success','Checking git status...\nNo changes to commit\n\n=== Git Status ===\n',NULL,NULL,1,'2025-12-02 17:08:26','2025-12-02 17:08:27'),
(38,'git','success','Checking git status...\nAdding changes...\nCommitting changes...\nPushing to GitHub...\nGit operations completed successfully\n\n=== Git Status ===\n M public/index.php\n M views/crm/opportunities.php\n M views/product_forecast/index.php\n?? USER_AVATAR_COMPONENT.md\n?? controllers/DemoController.php\n?? views/components/user_avatar.php\n?? views/demo/\n\n=== Git Add ===\n(no output)\n\n=== Git Commit ===\n[main 4227d72] Automated backup: 2025-12-03 11:46:23\n 7 files changed, 485 insertions(+), 6 deletions(-)\n create mode 100644 USER_AVATAR_COMPONENT.md\n create mode 100644 controllers/DemoController.php\n create mode 100644 views/components/user_avatar.php\n create mode 100644 views/demo/avatar_demo.php\n\n=== Git Push ===\nTo https://github.com/merkuriddg/m1_erp/\n   e6ae891..4227d72  main -> main',NULL,NULL,1,'2025-12-03 11:46:23','2025-12-03 11:46:25'),
(39,'full','success','=== DATABASE BACKUP ===\n✓ Database backup: SUCCESS\n\n=== GIT COMMIT & PUSH ===\n✓ Git operations: SUCCESS\n\nStarting database backup...\nDatabase: brickwal_m1_ds\nBackup file: /Users/rpmbbu/LocalPHPStorm/m1_erp_web/database/backups/backup_20251205_124609.sql\n✓ Backup completed successfully\n✓ Backup size: 8.0M\nCleaning up old backups (keeping last 7)...\n✓ Cleanup completed\n✓ All done!\n\n=== Git Status ===\n M controllers/ProductForecastController.php\n M controllers/SalesOrderController.php\n M controllers/ShopFloorController.php\n M controllers/WorkOrderController.php\n M models/ProductForecastManager.php\n M models/SalesOrder.php\n M models/WorkOrder.php\n M public/index.php\n M views/layouts/app.php\n D views/workorders/create.php\n?? \"Equipment Capacity Planning & Utilization Features.md\"\n?? controllers/EquipmentResearchController.php\n?? controllers/ProfitOptimizerController.php\n?? models/EquipmentResearch.php\n?? models/ProfitOptimizer.php\n?? views/product_forecast/equipment_impact.php\n?? views/workorders/create_enhanced.php\n\n=== Git Add ===\n(no output)\n\n=== Git Commit ===\n[main 0b240e7] Automated backup: 2025-12-05 12:46:12\n 17 files changed, 4191 insertions(+), 34 deletions(-)\n create mode 100644 Equipment Capacity Planning & Utilization Features.md\n create mode 100644 controllers/EquipmentResearchController.php\n create mode 100644 controllers/ProfitOptimizerController.php\n create mode 100644 models/EquipmentResearch.php\n create mode 100644 models/ProfitOptimizer.php\n create mode 100644 views/product_forecast/equipment_impact.php\n delete mode 100755 views/workorders/create.php\n create mode 100644 views/workorders/create_enhanced.php\n\n=== Git Push ===\nTo https://github.com/merkuriddg/m1_erp/\n   c5ee35c..0b240e7  main -> main',NULL,NULL,1,'2025-12-05 12:46:09','2025-12-05 12:46:13'),
(40,'database','success','Database backup completed successfully.\n\nStarting database backup...\nDatabase: brickwal_m1_ds\nBackup file: /Users/rpmbbu/LocalPHPStorm/m1_erp_web/database/backups/backup_20251205_124609.sql\n✓ Backup completed successfully\n✓ Backup size: 8.0M\nCleaning up old backups (keeping last 7)...\n✓ Cleanup completed\n✓ All done!',NULL,NULL,1,'2025-12-05 12:46:09','2025-12-05 12:46:12'),
(41,'git','success','Checking git status...\nAdding changes...\nCommitting changes...\nPushing to GitHub...\nGit operations completed successfully\n\n=== Git Status ===\n M controllers/ProductForecastController.php\n M controllers/SalesOrderController.php\n M controllers/ShopFloorController.php\n M controllers/WorkOrderController.php\n M models/ProductForecastManager.php\n M models/SalesOrder.php\n M models/WorkOrder.php\n M public/index.php\n M views/layouts/app.php\n D views/workorders/create.php\n?? \"Equipment Capacity Planning & Utilization Features.md\"\n?? controllers/EquipmentResearchController.php\n?? controllers/ProfitOptimizerController.php\n?? models/EquipmentResearch.php\n?? models/ProfitOptimizer.php\n?? views/product_forecast/equipment_impact.php\n?? views/workorders/create_enhanced.php\n\n=== Git Add ===\n(no output)\n\n=== Git Commit ===\n[main 0b240e7] Automated backup: 2025-12-05 12:46:12\n 17 files changed, 4191 insertions(+), 34 deletions(-)\n create mode 100644 Equipment Capacity Planning & Utilization Features.md\n create mode 100644 controllers/EquipmentResearchController.php\n create mode 100644 controllers/ProfitOptimizerController.php\n create mode 100644 models/EquipmentResearch.php\n create mode 100644 models/ProfitOptimizer.php\n create mode 100644 views/product_forecast/equipment_impact.php\n delete mode 100755 views/workorders/create.php\n create mode 100644 views/workorders/create_enhanced.php\n\n=== Git Push ===\nTo https://github.com/merkuriddg/m1_erp/\n   c5ee35c..0b240e7  main -> main',NULL,NULL,1,'2025-12-05 12:46:12','2025-12-05 12:46:13');
/*!40000 ALTER TABLE `backup_history` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `bank_accounts`
--

DROP TABLE IF EXISTS `bank_accounts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bank_accounts` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `account_name` varchar(255) NOT NULL,
  `account_number` varchar(100) DEFAULT NULL,
  `bank_name` varchar(255) NOT NULL,
  `bank_branch` varchar(255) DEFAULT NULL,
  `account_type` enum('checking','savings','credit_card','money_market','other') DEFAULT 'checking',
  `currency` varchar(3) DEFAULT 'USD',
  `opening_balance` decimal(15,2) DEFAULT 0.00,
  `current_balance` decimal(15,2) DEFAULT 0.00,
  `gl_account_id` int(10) unsigned DEFAULT NULL COMMENT 'Link to chart of accounts',
  `routing_number` varchar(50) DEFAULT NULL,
  `swift_code` varchar(50) DEFAULT NULL,
  `iban` varchar(50) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `is_active` tinyint(1) DEFAULT 1,
  `is_default` tinyint(1) DEFAULT 0,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `gl_account_id` (`gl_account_id`),
  KEY `created_by` (`created_by`),
  KEY `is_active` (`is_active`),
  CONSTRAINT `bank_accounts_ibfk_1` FOREIGN KEY (`gl_account_id`) REFERENCES `chart_of_accounts` (`id`) ON DELETE SET NULL,
  CONSTRAINT `bank_accounts_ibfk_2` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bank_accounts`
--

LOCK TABLES `bank_accounts` WRITE;
/*!40000 ALTER TABLE `bank_accounts` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `bank_accounts` VALUES
(2,'Bank One','1234567890','Bank of One','Tampa','checking','USD',1000000.00,1000000.00,NULL,'0987654321','123','234','Main Account',1,1,1,'2025-11-05 11:38:57','2025-11-13 00:04:26');
/*!40000 ALTER TABLE `bank_accounts` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `bank_categorization_rules`
--

DROP TABLE IF EXISTS `bank_categorization_rules`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bank_categorization_rules` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `rule_name` varchar(200) NOT NULL,
  `match_type` enum('contains','equals','starts_with','ends_with','regex') DEFAULT 'contains',
  `match_field` enum('description','reference','check_number','amount') DEFAULT 'description',
  `match_value` varchar(500) NOT NULL,
  `min_amount` decimal(15,2) DEFAULT NULL,
  `max_amount` decimal(15,2) DEFAULT NULL,
  `transaction_type` enum('debit','credit','both') DEFAULT 'both',
  `account_id` int(10) unsigned NOT NULL COMMENT 'Assign to this GL account',
  `description_template` varchar(500) DEFAULT NULL COMMENT 'Optional description override',
  `priority` int(11) DEFAULT 100 COMMENT 'Lower number = higher priority',
  `is_active` tinyint(1) DEFAULT 1,
  `match_count` int(11) DEFAULT 0 COMMENT 'How many times this rule has matched',
  `last_matched_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `created_by` int(10) unsigned DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_active` (`is_active`),
  KEY `idx_priority` (`priority`),
  KEY `idx_match_field` (`match_field`),
  KEY `account_id` (`account_id`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `bank_categorization_rules_ibfk_1` FOREIGN KEY (`account_id`) REFERENCES `chart_of_accounts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `bank_categorization_rules_ibfk_2` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bank_categorization_rules`
--

LOCK TABLES `bank_categorization_rules` WRITE;
/*!40000 ALTER TABLE `bank_categorization_rules` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `bank_categorization_rules` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `bank_import_batches`
--

DROP TABLE IF EXISTS `bank_import_batches`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bank_import_batches` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `bank_account_id` int(10) unsigned NOT NULL,
  `file_name` varchar(500) NOT NULL,
  `file_type` enum('csv','ofx','qfx','qbo') NOT NULL,
  `file_path` varchar(500) DEFAULT NULL,
  `total_transactions` int(11) DEFAULT 0,
  `imported_count` int(11) DEFAULT 0,
  `duplicate_count` int(11) DEFAULT 0,
  `error_count` int(11) DEFAULT 0,
  `status` enum('pending','processing','completed','failed') DEFAULT 'pending',
  `error_message` text DEFAULT NULL,
  `transaction_date_start` date DEFAULT NULL,
  `transaction_date_end` date DEFAULT NULL,
  `imported_at` timestamp NULL DEFAULT current_timestamp(),
  `imported_by` int(10) unsigned DEFAULT NULL,
  `processed_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_bank_account` (`bank_account_id`),
  KEY `idx_status` (`status`),
  KEY `idx_imported_at` (`imported_at`),
  KEY `imported_by` (`imported_by`),
  CONSTRAINT `bank_import_batches_ibfk_1` FOREIGN KEY (`bank_account_id`) REFERENCES `bank_accounts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `bank_import_batches_ibfk_2` FOREIGN KEY (`imported_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bank_import_batches`
--

LOCK TABLES `bank_import_batches` WRITE;
/*!40000 ALTER TABLE `bank_import_batches` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `bank_import_batches` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `bank_import_transactions`
--

DROP TABLE IF EXISTS `bank_import_transactions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bank_import_transactions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `batch_id` int(10) unsigned NOT NULL,
  `bank_account_id` int(10) unsigned NOT NULL,
  `transaction_date` date NOT NULL,
  `post_date` date DEFAULT NULL,
  `description` varchar(500) NOT NULL,
  `reference_number` varchar(100) DEFAULT NULL,
  `check_number` varchar(50) DEFAULT NULL,
  `amount` decimal(15,2) NOT NULL,
  `transaction_type` enum('debit','credit') NOT NULL,
  `running_balance` decimal(15,2) DEFAULT NULL,
  `is_categorized` tinyint(1) DEFAULT 0,
  `account_id` int(10) unsigned DEFAULT NULL COMMENT 'Assigned chart of accounts',
  `category_rule_id` int(10) unsigned DEFAULT NULL COMMENT 'Rule that categorized this',
  `status` enum('pending','categorized','matched','imported','ignored') DEFAULT 'pending',
  `is_duplicate` tinyint(1) DEFAULT 0,
  `duplicate_of_id` int(10) unsigned DEFAULT NULL COMMENT 'Link to existing journal entry',
  `journal_entry_id` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_batch` (`batch_id`),
  KEY `idx_bank_account` (`bank_account_id`),
  KEY `idx_transaction_date` (`transaction_date`),
  KEY `idx_status` (`status`),
  KEY `idx_is_duplicate` (`is_duplicate`),
  KEY `idx_description` (`description`(255)),
  KEY `account_id` (`account_id`),
  KEY `category_rule_id` (`category_rule_id`),
  CONSTRAINT `bank_import_transactions_ibfk_1` FOREIGN KEY (`batch_id`) REFERENCES `bank_import_batches` (`id`) ON DELETE CASCADE,
  CONSTRAINT `bank_import_transactions_ibfk_2` FOREIGN KEY (`bank_account_id`) REFERENCES `bank_accounts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `bank_import_transactions_ibfk_3` FOREIGN KEY (`account_id`) REFERENCES `chart_of_accounts` (`id`) ON DELETE SET NULL,
  CONSTRAINT `bank_import_transactions_ibfk_4` FOREIGN KEY (`category_rule_id`) REFERENCES `bank_categorization_rules` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bank_import_transactions`
--

LOCK TABLES `bank_import_transactions` WRITE;
/*!40000 ALTER TABLE `bank_import_transactions` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `bank_import_transactions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `bank_reconciliations`
--

DROP TABLE IF EXISTS `bank_reconciliations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bank_reconciliations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `bank_account_id` int(10) unsigned NOT NULL,
  `reconciliation_date` date NOT NULL,
  `statement_date` date NOT NULL,
  `statement_balance` decimal(15,2) NOT NULL,
  `book_balance` decimal(15,2) NOT NULL,
  `difference` decimal(15,2) DEFAULT 0.00,
  `status` enum('in_progress','completed','cancelled') DEFAULT 'in_progress',
  `notes` text DEFAULT NULL,
  `completed_by` int(10) unsigned DEFAULT NULL,
  `completed_at` timestamp NULL DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `bank_account_id` (`bank_account_id`),
  KEY `reconciliation_date` (`reconciliation_date`),
  KEY `status` (`status`),
  KEY `completed_by` (`completed_by`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `bank_reconciliations_ibfk_1` FOREIGN KEY (`bank_account_id`) REFERENCES `bank_accounts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `bank_reconciliations_ibfk_2` FOREIGN KEY (`completed_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `bank_reconciliations_ibfk_3` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bank_reconciliations`
--

LOCK TABLES `bank_reconciliations` WRITE;
/*!40000 ALTER TABLE `bank_reconciliations` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `bank_reconciliations` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `bank_transactions`
--

DROP TABLE IF EXISTS `bank_transactions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bank_transactions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `bank_account_id` int(10) unsigned NOT NULL,
  `transaction_date` date NOT NULL,
  `transaction_type` enum('deposit','withdrawal','transfer','fee','interest','adjustment') NOT NULL,
  `amount` decimal(15,2) NOT NULL,
  `reference_number` varchar(100) DEFAULT NULL,
  `payee_payer` varchar(255) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `category` varchar(100) DEFAULT NULL,
  `journal_entry_id` int(10) unsigned DEFAULT NULL COMMENT 'Link to journal entry',
  `transfer_to_account_id` int(10) unsigned DEFAULT NULL COMMENT 'For transfers between bank accounts',
  `is_reconciled` tinyint(1) DEFAULT 0,
  `reconciliation_id` int(10) unsigned DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `bank_account_id` (`bank_account_id`),
  KEY `transaction_date` (`transaction_date`),
  KEY `is_reconciled` (`is_reconciled`),
  KEY `journal_entry_id` (`journal_entry_id`),
  KEY `transfer_to_account_id` (`transfer_to_account_id`),
  KEY `reconciliation_id` (`reconciliation_id`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `bank_transactions_ibfk_1` FOREIGN KEY (`bank_account_id`) REFERENCES `bank_accounts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `bank_transactions_ibfk_2` FOREIGN KEY (`journal_entry_id`) REFERENCES `journal_entries` (`id`) ON DELETE SET NULL,
  CONSTRAINT `bank_transactions_ibfk_3` FOREIGN KEY (`transfer_to_account_id`) REFERENCES `bank_accounts` (`id`) ON DELETE SET NULL,
  CONSTRAINT `bank_transactions_ibfk_4` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `fk_bank_transactions_reconciliation` FOREIGN KEY (`reconciliation_id`) REFERENCES `bank_reconciliations` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bank_transactions`
--

LOCK TABLES `bank_transactions` WRITE;
/*!40000 ALTER TABLE `bank_transactions` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `bank_transactions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `battery_quote_documents`
--

DROP TABLE IF EXISTS `battery_quote_documents`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `battery_quote_documents` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `battery_quote_id` int(11) NOT NULL,
  `file_name` varchar(255) NOT NULL,
  `original_name` varchar(255) NOT NULL,
  `file_path` varchar(500) NOT NULL,
  `file_type` varchar(100) DEFAULT NULL,
  `file_size` int(11) DEFAULT NULL COMMENT 'Size in bytes',
  `document_type` varchar(50) DEFAULT NULL COMMENT 'bom, sketch, specification, other',
  `description` text DEFAULT NULL,
  `uploaded_by` int(11) NOT NULL,
  `uploaded_at` datetime DEFAULT current_timestamp(),
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_battery_quote` (`battery_quote_id`),
  KEY `idx_uploaded_by` (`uploaded_by`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `battery_quote_documents`
--

LOCK TABLES `battery_quote_documents` WRITE;
/*!40000 ALTER TABLE `battery_quote_documents` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `battery_quote_documents` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `battery_quotes`
--

DROP TABLE IF EXISTS `battery_quotes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `battery_quotes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `quote_number` varchar(20) DEFAULT NULL,
  `customer_id` int(10) unsigned DEFAULT NULL,
  `location_id` int(10) unsigned NOT NULL,
  `quote_id` int(10) unsigned DEFAULT NULL,
  `customer_name` varchar(255) NOT NULL,
  `customer_type` enum('Government & Defense','OEM & Strategic Partners','Commercial & Industrial','Utilities & Grid-Energy Infrastructure','Consumer, Residential & Mobility') NOT NULL,
  `order_date` date NOT NULL,
  `start_month` int(11) DEFAULT NULL,
  `start_date` date DEFAULT NULL,
  `nominal_pack_voltage` decimal(10,2) NOT NULL COMMENT 'Voltage in V',
  `nominal_pack_capacity` decimal(10,2) NOT NULL COMMENT 'Capacity in Ah',
  `cell_type` varchar(100) NOT NULL COMMENT 'e.g., LFP 280Ah Prismatic',
  `requires_container_integration` enum('Yes','No') DEFAULT 'No',
  `cell_voltage` decimal(10,2) NOT NULL COMMENT 'V',
  `cell_capacity` decimal(10,2) NOT NULL COMMENT 'Ah',
  `cells_in_series` int(11) NOT NULL,
  `cells_in_parallel` int(11) NOT NULL,
  `battery_configuration` varchar(50) DEFAULT NULL COMMENT 'e.g., 8 S 1 P',
  `cells_per_pack` int(11) NOT NULL,
  `assembly_line` varchar(100) DEFAULT NULL COMMENT 'e.g., L. Prismatic, Small Cylindrical',
  `kwh_per_pack` decimal(15,6) DEFAULT NULL COMMENT 'Calculated kWh per pack',
  `packs_per_container` int(11) DEFAULT 0,
  `cells_container` int(11) DEFAULT 0,
  `kwh_per_container` decimal(15,6) DEFAULT 0.000000,
  `total_packs_beginning` int(11) NOT NULL COMMENT 'Initial pack quantity',
  `packs_per_hour` decimal(10,2) DEFAULT NULL COMMENT 'Production rate',
  `beginning_volume_kwh` decimal(15,2) DEFAULT NULL COMMENT 'kWh per year',
  `integration_hrs_per_container` decimal(10,2) DEFAULT NULL,
  `ta_cycle_per_pack` decimal(10,4) DEFAULT NULL COMMENT 'Test & Aging hours',
  `packs_tested_percent` decimal(5,4) DEFAULT NULL COMMENT 'Percentage as decimal',
  `modules_per_test` int(11) DEFAULT NULL,
  `test_equipment` varchar(100) DEFAULT NULL COMMENT 'e.g., 60V200A',
  `contract_duration` decimal(4,2) NOT NULL COMMENT 'Years',
  `yoy_growth_rate` decimal(5,4) DEFAULT NULL COMMENT 'Year over year growth as decimal',
  `renewal_probability` decimal(5,4) DEFAULT NULL COMMENT 'Probability as decimal (0.85 = 85%)',
  `renewal_volume_kwh` decimal(15,2) DEFAULT NULL,
  `post_renewal_growth` decimal(5,4) DEFAULT NULL,
  `extended_contract_duration` decimal(4,2) DEFAULT NULL,
  `total_contract_kwh` decimal(18,2) DEFAULT NULL,
  `total_contract_tested_packs` int(11) DEFAULT NULL,
  `total_contract_modules` decimal(15,2) DEFAULT NULL,
  `total_contract_containers` int(11) DEFAULT NULL,
  `peak_year` int(11) DEFAULT NULL,
  `contract_peak_kwh` decimal(15,2) DEFAULT NULL,
  `contract_peak_tested_packs` int(11) DEFAULT NULL,
  `test_cycles_needed` int(11) DEFAULT NULL,
  `total_ta_hours` int(11) DEFAULT NULL,
  `testing_channels_required` int(11) DEFAULT NULL,
  `contract_peak_modules` decimal(15,2) DEFAULT NULL,
  `contract_peak_containers` int(11) DEFAULT NULL,
  `contract_end_date` date DEFAULT NULL,
  `status` enum('draft','sent','approved','rejected','expired','converted') DEFAULT 'draft',
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `quote_number` (`quote_number`),
  KEY `created_by` (`created_by`),
  KEY `idx_customer_name` (`customer_name`),
  KEY `idx_order_date` (`order_date`),
  KEY `idx_status` (`status`),
  KEY `idx_customer_type` (`customer_type`),
  KEY `idx_quote_id` (`quote_id`),
  KEY `idx_location` (`location_id`),
  KEY `idx_customer` (`customer_id`),
  CONSTRAINT `battery_quotes_ibfk_1` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `battery_quotes_ibfk_2` FOREIGN KEY (`quote_id`) REFERENCES `quotes` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_battery_quotes_customer` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=49 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `battery_quotes`
--

LOCK TABLES `battery_quotes` WRITE;
/*!40000 ALTER TABLE `battery_quotes` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `battery_quotes` VALUES
(1,'Q-001-111325',68,1,NULL,'Lockheed Martin','Government & Defense','2025-11-13',NULL,NULL,25.90,280.00,'NMC 280Ah Prismatic','No',3.70,280.00,7,1,'7 S 1 P ',7,'L. Prismatic',7.252000,NULL,NULL,NULL,1000,171.43,NULL,NULL,5.0000,0.0050,NULL,'60V200A',7.00,0.1500,0.8500,NULL,0.1000,6.16,139854.82,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(2,'Q-002-111325',69,1,NULL,'Lockheed Martin 2','Government & Defense','2025-11-13',NULL,NULL,48.10,280.00,'NMC 280Ah Prismatic','No',3.70,280.00,13,1,'13 S 1 P ',13,'L. Prismatic',13.468000,NULL,NULL,NULL,1500,92.31,NULL,NULL,5.0000,0.0050,NULL,'400V400A',6.00,0.1000,0.7500,NULL,0.0700,4.50,231784.28,91,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(3,'Q-003-111325',74,1,NULL,'Northrop Grumman','Government & Defense','2025-11-13',NULL,NULL,473.60,1680.00,'LFP 280Ah Prismatic','Yes',3.20,280.00,148,6,'148 S 6 P ',888,'L. Prismatic',795.648000,NULL,NULL,NULL,2000,1.35,NULL,NULL,1.0000,0.0000,NULL,'1500V600A',1.00,0.0100,0.7500,NULL,0.0900,0.80,1591296.00,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(4,'Q-004-111325',51,1,NULL,'Boeing','Government & Defense','2025-11-13',NULL,NULL,48.00,12.00,'LFP 26650 (6Ah)','No',3.20,6.00,15,2,'15 S 2 P ',30,'Small Cylindrical',0.576000,NULL,NULL,NULL,599,200.00,NULL,NULL,3.0000,0.0050,NULL,'60V200A',7.00,0.1000,0.8500,NULL,0.0800,5.95,5031.94,48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(5,'Q-005-111325',52,1,NULL,'Boeing 2','Government & Defense','2025-11-13',NULL,NULL,440.30,840.00,'NMC 280Ah Prismatic','No',3.70,280.00,119,3,'119 S 3 P ',357,'L. Prismatic',369.852000,NULL,NULL,NULL,200,3.36,NULL,NULL,5.0000,0.0050,NULL,'1500V400A',7.00,0.0800,0.8500,NULL,0.0800,5.95,1000079.81,21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(6,'Q-006-111325',49,1,NULL,'BAE Systems','Government & Defense','2025-11-13',NULL,NULL,48.10,560.00,'NMC 280Ah Prismatic','No',3.70,280.00,13,2,'13 S 2 P ',26,'L. Prismatic',26.936000,NULL,NULL,NULL,3000,46.15,NULL,NULL,2.0000,0.0050,NULL,'400V400A',5.00,0.1500,0.7500,NULL,0.0700,3.75,783460.50,148,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(7,'Q-007-111325',64,1,NULL,'L3 Harris','Government & Defense','2025-11-13',NULL,NULL,12.80,12.00,'LFP 26650 (6Ah)','No',3.20,6.00,4,2,'4 S 2 P ',8,'Small Cylindrical',0.153600,NULL,NULL,NULL,20053,750.00,NULL,NULL,1.0000,0.0050,NULL,'60V200A',6.00,0.1400,0.8500,NULL,0.1000,5.28,53989.94,1764,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(8,'Q-008-111325',47,1,NULL,'AeroVironment','Government & Defense','2025-11-13',NULL,NULL,14.80,25.00,'NMC 21700 (5Ah)','No',3.70,5.00,4,5,'4 S 5 P ',20,'Small Cylindrical',0.370000,NULL,NULL,NULL,6000,300.00,NULL,NULL,1.0000,0.0050,NULL,'60V200A',7.00,0.1300,0.7500,NULL,0.0900,5.60,33404.34,457,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(9,'Q-009-111325',63,1,NULL,'General Dynamics','Government & Defense','2025-11-13',NULL,NULL,48.00,280.00,'LFP 280Ah Prismatic','No',3.20,280.00,15,1,'15 S 1 P ',15,'L. Prismatic',13.440000,NULL,NULL,NULL,300,80.00,NULL,NULL,5.0000,0.0050,NULL,'400V400A',6.00,0.1000,0.7500,NULL,0.0700,4.50,46354.56,22,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(10,'Q-010-111325',60,1,NULL,'Federal Bureau of Investigation','Government & Defense','2025-11-13',NULL,NULL,12.80,204.00,'LFP 26650 (6Ah)','No',3.20,6.00,4,34,'4 S 34 P ',136,'Small Cylindrical',2.611200,NULL,NULL,NULL,1000,44.12,NULL,NULL,4.0000,0.0050,NULL,'60V200A',5.00,0.2000,0.7500,NULL,0.0900,4.00,31509.35,65,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(11,'Q-011-111325',57,1,NULL,'Curtiss-Wright','Government & Defense','2025-11-13',NULL,NULL,751.10,280.00,'NMC 280Ah Prismatic','No',3.70,280.00,203,1,'203 S 1 P ',203,'L. Prismatic',210.308000,NULL,NULL,NULL,500,5.91,NULL,NULL,4.0000,0.0050,NULL,'400V600A',5.00,0.0800,0.8500,NULL,0.0800,4.25,1029457.66,29,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(12,'Q-012-111325',75,1,NULL,'Northrop Grumman 2','Government & Defense','2025-11-13',NULL,NULL,1500.80,5040.00,'LFP 280Ah Prismatic','Yes',3.20,280.00,469,18,'469 S 18 P ',8442,'L. Prismatic',7564.032000,NULL,NULL,NULL,2000,0.14,NULL,NULL,1.0000,0.0000,NULL,'1500V600A',1.00,0.0100,0.8500,NULL,0.1000,0.88,15128064.00,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(13,'Q-013-111325',48,1,NULL,'AirBus x AATLO','Government & Defense','2025-11-13',NULL,NULL,25.60,100.00,'LFP 50Ah Pouch','No',3.20,50.00,8,2,'8 S 2 P ',16,'Soft Pack / Pouch',2.560000,NULL,NULL,NULL,250,28.13,NULL,NULL,5.0000,0.0050,NULL,'60V200A',7.00,0.2100,0.7500,NULL,0.0900,5.60,13015.04,31,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(14,'Q-014-111325',53,1,NULL,'Boeing 3','Government & Defense','2025-11-13',NULL,NULL,25.60,12.00,'LFP 26650 (6Ah)','No',3.20,6.00,8,2,'8 S 2 P ',16,'Small Cylindrical',0.307200,NULL,NULL,NULL,89942,375.00,NULL,NULL,5.0000,0.0050,NULL,'60V200A',5.00,0.1300,0.8500,NULL,0.1000,4.40,338998.58,5522,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(15,'Q-015-111325',55,1,NULL,'Collins Aerospace','Government & Defense','2025-11-13',NULL,NULL,29.60,50.00,'NMC 21700 (5Ah)','No',3.70,5.00,8,10,'8 S 10 P ',80,'Small Cylindrical',1.480000,NULL,NULL,NULL,3000,75.00,NULL,NULL,3.0000,0.0050,NULL,'60V200A',5.00,0.2200,0.8500,NULL,0.0800,4.25,62629.16,216,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(16,'Q-016-111325',89,1,NULL,'Tenacious International','Government & Defense','2025-11-13',NULL,NULL,12.80,6.00,'LFP 26650 (6Ah)','No',3.20,6.00,4,1,'4 S 1 P ',4,'Small Cylindrical',0.076800,NULL,NULL,NULL,300,1500.00,NULL,NULL,4.0000,0.0050,NULL,'60V200A',6.00,0.1900,0.5500,NULL,0.0800,4.20,291.46,25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(17,'Q-017-111325',82,1,NULL,'Roush','Government & Defense','2025-11-13',NULL,NULL,48.00,280.00,'LFP 280Ah Prismatic','No',3.20,280.00,15,1,'15 S 1 P ',15,'L. Prismatic',13.440000,NULL,NULL,NULL,150,80.00,NULL,NULL,2.0000,0.0050,NULL,'400V400A',7.00,0.2100,0.7500,NULL,0.0700,5.25,41690.88,21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(18,'Q-018-111325',80,1,NULL,'Pratt / Miller','Government & Defense','2025-11-13',NULL,NULL,48.00,280.00,'LFP 280Ah Prismatic','No',3.20,280.00,15,1,'15 S 1 P ',15,'L. Prismatic',13.440000,NULL,NULL,NULL,300,80.00,NULL,NULL,1.0000,0.0050,NULL,'400V400A',7.00,0.1800,0.7500,NULL,0.0700,5.25,74376.96,34,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(19,'Q-019-111325',58,1,NULL,'Eagle Picher Technologies','Government & Defense','2025-11-13',NULL,NULL,25.60,72.00,'LFP 26650 (6Ah)','No',3.20,6.00,8,12,'8 S 12 P ',96,'Small Cylindrical',1.843200,NULL,NULL,NULL,2000,62.50,NULL,NULL,5.0000,0.0050,NULL,'60V200A',7.00,0.2300,0.7500,NULL,0.0900,5.60,80706.36,224,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(20,'Q-020-111325',78,1,NULL,'Power Sonic','Government & Defense','2025-11-13',NULL,NULL,12.80,18.00,'LFP 26650 (6Ah)','No',3.20,6.00,4,3,'4 S 3 P ',12,'Small Cylindrical',0.230400,NULL,NULL,NULL,29948,500.00,NULL,NULL,4.0000,0.0050,NULL,'60V200A',6.00,0.2300,0.7500,NULL,0.0700,4.50,119166.80,2591,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(21,'Q-021-111325',66,1,NULL,'LiiON Inc','Government & Defense','2025-11-13',NULL,NULL,1.00,1.00,'LFP 280Ah Prismatic','Yes',3.20,280.00,1,0,'1 S 0.00357142857142857 P ',0,'L. Prismatic',0.003200,NULL,NULL,NULL,1,336000.00,NULL,NULL,1.0000,0.0000,NULL,'60V200A',1.00,0.0100,0.7500,NULL,0.0700,0.75,0.00,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(22,'Q-022-111325',67,1,NULL,'Lithionics Battery','Government & Defense','2025-11-13',NULL,NULL,12.80,840.00,'LFP 280Ah Prismatic','No',3.20,280.00,4,3,'4 S 3 P ',12,'L. Prismatic',10.752000,NULL,NULL,NULL,2000,100.00,NULL,NULL,4.0000,0.0050,NULL,'60V200A',6.00,0.1700,0.7500,NULL,0.0900,4.80,303163.39,144,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(23,'Q-023-111325',54,1,NULL,'Booz Allen Hamilton Inc','Government & Defense','2025-11-13',NULL,NULL,12.80,30.00,'LFP 26650 (6Ah)','No',3.20,6.00,4,5,'4 S 5 P ',20,'Small Cylindrical',0.384000,NULL,NULL,NULL,803,300.00,NULL,NULL,5.0000,0.0050,NULL,'60V200A',7.00,0.2300,0.5500,NULL,0.0800,4.90,5695.10,80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(24,'Q-024-111325',90,1,NULL,'Universal Solutions International','Government & Defense','2025-11-13',NULL,NULL,38.40,100.00,'LFP 32650 (50Ah)','No',3.20,50.00,12,2,'12 S 2 P ',24,'L. Cylindrical',3.840000,NULL,NULL,NULL,2000,31.25,NULL,NULL,3.0000,0.0050,NULL,'60V200A',7.00,0.0900,0.8500,NULL,0.0800,5.95,107688.96,144,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(25,'Q-025-111325',79,1,NULL,'PowerPole','Government & Defense','2025-11-13',NULL,NULL,38.40,100.00,'LFP 32650 (50Ah)','No',3.20,50.00,12,2,'12 S 2 P ',24,'L. Cylindrical',3.840000,NULL,NULL,NULL,3000,31.25,NULL,NULL,1.0000,0.0050,NULL,'60V200A',5.00,0.1100,0.8500,NULL,0.0800,4.25,121996.80,162,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(26,'Q-026-111325',65,1,NULL,'LG Electronics','Government & Defense','2025-11-13',NULL,NULL,48.00,30.00,'LFP 26650 (6Ah)','No',3.20,6.00,15,5,'15 S 5 P ',75,'Small Cylindrical',1.440000,NULL,NULL,NULL,500,80.00,NULL,NULL,4.0000,0.0050,NULL,'60V200A',5.00,0.1800,0.8500,NULL,0.0800,4.25,9171.36,36,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(27,'Q-027-111325',46,1,NULL,'4 Patriots','Government & Defense','2025-11-13',NULL,NULL,48.00,54.00,'LFP 26650 (6Ah)','No',3.20,6.00,15,9,'15 S 9 P ',135,'Small Cylindrical',2.592000,NULL,NULL,NULL,6000,44.44,NULL,NULL,4.0000,0.0050,NULL,'60V200A',7.00,0.2300,0.7500,NULL,0.0900,5.60,340464.38,661,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(28,'Q-028-111325',73,1,NULL,'Nevados','Government & Defense','2025-11-13',NULL,NULL,16.00,9.60,'LFP 26650 (6Ah)','No',3.20,6.00,5,1,'5 S 1.6 P ',8,'Small Cylindrical',0.153600,NULL,NULL,NULL,40000,750.00,NULL,NULL,5.0000,0.0050,NULL,'60V200A',6.00,0.1700,0.7500,NULL,0.0900,4.80,86598.30,2822,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(29,'Q-029-111325',71,1,NULL,'MPINarada','Government & Defense','2025-11-13',NULL,NULL,48.00,560.00,'LFP 280Ah Prismatic','No',3.20,280.00,15,2,'15 S 2 P ',30,'L. Prismatic',26.880000,NULL,NULL,NULL,300,40.00,NULL,NULL,4.0000,0.0050,NULL,'400V400A',7.00,0.1500,0.8500,NULL,0.0800,5.95,142974.72,32,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(30,'Q-030-111325',86,1,NULL,'Solara Power','Government & Defense','2025-11-13',NULL,NULL,25.90,400.00,'NMC 21700 (50Ah)','No',3.70,50.00,7,8,'7 S 8 P ',56,'L. Cylindrical',10.360000,NULL,NULL,NULL,3000,13.39,NULL,NULL,5.0000,0.0050,NULL,'60V200A',6.00,0.0800,0.8500,NULL,0.1000,5.28,441387.80,218,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(31,'Q-031-111325',83,1,NULL,'Siemens Energy','Government & Defense','2025-11-13',NULL,NULL,1502.20,6160.00,'NMC 280Ah Prismatic','Yes',3.70,280.00,406,22,'406 S 22 P ',8932,'L. Prismatic',9253.552000,NULL,NULL,NULL,500,0.13,NULL,NULL,1.0000,0.0000,NULL,'1500V600A',1.00,0.0100,0.7500,NULL,0.0900,0.80,4626776.00,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(32,'Q-032-111325',85,1,NULL,'Sol-Ark','Government & Defense','2025-11-13',NULL,NULL,51.80,314.00,'LFP 314Ah Prismatic','No',3.20,314.00,17,1,'17 S 1 P ',17,'L. Prismatic',17.081600,NULL,NULL,NULL,223,70.59,NULL,NULL,5.0000,0.0050,NULL,'400V400A',9.00,0.1900,0.8500,NULL,0.0800,7.65,96306.06,34,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(33,'Q-033-111325',62,1,NULL,'Fortress Power','Government & Defense','2025-11-13',NULL,NULL,48.10,280.00,'NMC 280Ah Prismatic','No',3.70,280.00,13,1,'13 S 1 P ',13,'L. Prismatic',13.468000,NULL,NULL,NULL,25000,92.31,NULL,NULL,5.0000,0.0050,NULL,'400V400A',5.00,0.1200,0.8500,NULL,0.0800,4.25,3661006.44,1362,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(34,'Q-034-111325',76,1,NULL,'Our Next Energy (ONE)','Government & Defense','2025-11-13',NULL,NULL,48.00,560.00,'LFP 280Ah Prismatic','No',3.20,280.00,15,2,'15 S 2 P ',30,'L. Prismatic',26.880000,NULL,NULL,NULL,10000,40.00,NULL,NULL,5.0000,0.0050,NULL,'400V400A',5.00,0.1600,0.7500,NULL,0.0700,3.75,2670124.80,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(35,'Q-035-111325',91,1,NULL,'Vector Climate','Government & Defense','2025-11-13',NULL,NULL,14.80,20.00,'NMC 21700 (5Ah)','No',3.70,5.00,4,4,'4 S 4 P ',16,'Small Cylindrical',0.296000,NULL,NULL,NULL,1000,375.00,NULL,NULL,1.0000,0.0050,NULL,'60V200A',8.00,0.1800,0.8500,NULL,0.1000,7.04,6925.51,121,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(36,'Q-036-111325',59,1,NULL,'Enphase Energy','Government & Defense','2025-11-13',NULL,NULL,240.00,280.00,'LFP 280Ah Prismatic','No',3.20,280.00,75,1,'75 S 1 P ',75,'L. Prismatic',67.200000,NULL,NULL,NULL,10000,16.00,NULL,NULL,1.0000,0.0050,NULL,'400V400A',8.00,0.1200,0.7500,NULL,0.0900,6.40,10639843.20,796,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(37,'Q-037-111325',84,1,NULL,'Siemens Energy 2','Government & Defense','2025-11-13',NULL,NULL,400.00,560.00,'LFP 280Ah Prismatic','No',3.20,280.00,125,2,'125 S 2 P ',250,'L. Prismatic',224.000000,NULL,NULL,NULL,10000,4.80,NULL,NULL,1.0000,0.0000,NULL,'400V600A',1.00,0.0100,0.8500,NULL,0.0800,0.85,2240000.00,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(38,'Q-038-111325',81,1,NULL,'Prevalon Energy','Government & Defense','2025-11-13',NULL,NULL,800.00,3360.00,'LFP 280Ah Prismatic','Yes',3.20,280.00,250,12,'250 S 12 P ',3000,'L. Prismatic',2688.000000,NULL,NULL,NULL,13500,0.40,NULL,NULL,1.0000,0.0000,NULL,'1500V600A',1.00,0.0100,0.8500,NULL,0.1000,0.88,36288000.00,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(39,'Q-039-111325',72,1,NULL,'NeoVolta','Government & Defense','2025-11-13',NULL,NULL,48.00,560.00,'LFP 280Ah Prismatic','No',3.20,280.00,15,2,'15 S 2 P ',30,'L. Prismatic',26.880000,NULL,NULL,NULL,10000,40.00,NULL,NULL,3.0000,0.0050,NULL,'400V400A',10.00,0.1900,0.8500,NULL,0.1000,8.80,7625909.76,1424,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(40,'Q-040-111325',87,1,NULL,'Sonnen Inc','Government & Defense','2025-11-13',NULL,NULL,102.40,280.00,'LFP 280Ah Prismatic','No',3.20,280.00,32,1,'32 S 1 P ',32,'L. Prismatic',28.672000,NULL,NULL,NULL,12000,37.50,NULL,NULL,3.0000,0.0050,NULL,'400V400A',10.00,0.1100,0.8500,NULL,0.1000,8.80,6426828.80,1127,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(41,'Q-041-111325',50,1,NULL,'Bluetti','Government & Defense','2025-11-13',NULL,NULL,48.00,60.00,'LFP 26650 (6Ah)','No',3.20,6.00,15,10,'15 S 10 P ',150,'Small Cylindrical',2.880000,NULL,NULL,NULL,10000,40.00,NULL,NULL,3.0000,0.0050,NULL,'60V200A',8.00,0.1300,0.7500,NULL,0.0900,6.40,475698.24,832,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(42,'Q-042-111325',93,1,NULL,'Yotta Energy ','Government & Defense','2025-11-13',NULL,NULL,38.40,500.00,'LFP 32650 (50Ah)','No',3.20,50.00,12,10,'12 S 10 P ',120,'L. Cylindrical',19.200000,NULL,NULL,NULL,10000,6.25,NULL,NULL,5.0000,0.0050,NULL,'400V400A',8.00,0.1900,0.8500,NULL,0.1000,7.04,4696204.80,1228,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(43,'Q-043-111325',77,1,NULL,'Peppermint Robotics ','Government & Defense','2025-11-13',NULL,NULL,48.00,50.00,'LFP 32650 (50Ah)','No',3.20,50.00,15,1,'15 S 1 P ',15,'L. Cylindrical',2.400000,NULL,NULL,NULL,1000,50.00,NULL,NULL,4.0000,0.0050,NULL,'60V200A',10.00,0.2000,0.7500,NULL,0.0900,8.00,68344.80,146,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(44,'Q-044-111325',61,1,NULL,'Figure AI','Government & Defense','2025-11-13',NULL,NULL,25.90,30.00,'NMC 21700 (5Ah)','No',3.70,5.00,7,6,'7 S 6 P ',42,'Small Cylindrical',0.777000,NULL,NULL,NULL,501,142.86,NULL,NULL,4.0000,0.0050,NULL,'60V200A',10.00,0.1500,0.8500,NULL,0.1000,8.80,8954.93,62,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(45,'Q-045-111325',88,1,NULL,'Swarmbotics','Government & Defense','2025-11-13',NULL,NULL,25.90,25.00,'NMC 21700 (5Ah)','No',3.70,5.00,7,5,'7 S 5 P ',35,'Small Cylindrical',0.647500,NULL,NULL,NULL,501,171.43,NULL,NULL,4.0000,0.0050,NULL,'60V200A',9.00,0.1500,0.7500,NULL,0.0900,7.20,6460.11,55,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(46,'Q-046-111325',92,1,NULL,'Velocity Technology Solutions','Government & Defense','2025-11-13',NULL,NULL,37.00,100.00,'NMC 21700 (50Ah)','No',3.70,50.00,10,2,'10 S 2 P ',20,'L. Cylindrical',3.700000,NULL,NULL,NULL,300,37.50,NULL,NULL,5.0000,0.0050,NULL,'60V200A',8.00,0.1700,0.5500,NULL,0.0800,5.60,19395.40,32,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(47,'Q-047-111325',70,1,NULL,'Mistral Inc','Government & Defense','2025-11-13',NULL,NULL,48.00,280.00,'LFP 280Ah Prismatic','No',3.20,280.00,15,1,'15 S 1 P ',15,'L. Prismatic',13.440000,NULL,NULL,NULL,250,80.00,NULL,NULL,4.0000,0.0050,NULL,'400V400A',8.00,0.1600,0.8500,NULL,0.1000,7.04,71971.20,32,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22'),
(48,'Q-048-111325',56,1,NULL,'Cubic Corporation','Government & Defense','2025-11-13',NULL,NULL,25.60,60.00,'LFP 26650 (6Ah)','No',3.20,6.00,8,10,'8 S 10 P ',80,'Small Cylindrical',1.536000,NULL,NULL,NULL,500,75.00,NULL,NULL,3.0000,0.0050,NULL,'60V200A',9.00,0.2300,0.5500,NULL,0.0800,6.30,20487.17,72,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'draft',NULL,1,'2025-11-13 11:47:26','2025-11-13 15:30:22');
/*!40000 ALTER TABLE `battery_quotes` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `bill_of_materials`
--

DROP TABLE IF EXISTS `bill_of_materials`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bill_of_materials` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `product_id` int(10) unsigned NOT NULL,
  `name` varchar(255) NOT NULL,
  `version` varchar(50) DEFAULT NULL,
  `quantity_to_produce` int(11) DEFAULT 1,
  `status` enum('draft','active','inactive') DEFAULT 'draft',
  `notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `product_id` (`product_id`),
  CONSTRAINT `bill_of_materials_ibfk_1` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bill_of_materials`
--

LOCK TABLES `bill_of_materials` WRITE;
/*!40000 ALTER TABLE `bill_of_materials` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `bill_of_materials` VALUES
(2,70,'16KwH Battery Assembly','1.0',1,'draft','','2025-12-04 22:06:18','2025-12-04 22:14:20','2025-12-04 22:14:20'),
(3,70,'16 KwH Battery Pack','1.0',1,'draft','','2025-12-04 22:19:21','2025-12-04 22:42:12',NULL);
/*!40000 ALTER TABLE `bill_of_materials` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `bom_items`
--

DROP TABLE IF EXISTS `bom_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bom_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `bom_id` int(10) unsigned NOT NULL,
  `component_id` int(10) unsigned NOT NULL,
  `quantity` decimal(10,4) NOT NULL,
  `unit_cost` decimal(15,2) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `bom_id` (`bom_id`),
  KEY `component_id` (`component_id`),
  CONSTRAINT `bom_items_ibfk_1` FOREIGN KEY (`bom_id`) REFERENCES `bill_of_materials` (`id`) ON DELETE CASCADE,
  CONSTRAINT `bom_items_ibfk_2` FOREIGN KEY (`component_id`) REFERENCES `products` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bom_items`
--

LOCK TABLES `bom_items` WRITE;
/*!40000 ALTER TABLE `bom_items` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `bom_items` VALUES
(1,3,71,16.0000,0.00,'2025-12-04 22:47:24','2025-12-04 22:47:24'),
(2,3,72,1.0000,0.00,'2025-12-04 22:49:36','2025-12-04 22:49:36'),
(3,3,73,1.0000,0.00,'2025-12-04 22:49:44','2025-12-04 22:49:44'),
(5,3,75,1.0000,0.00,'2025-12-04 22:49:59','2025-12-04 22:49:59'),
(6,3,74,15.0000,0.00,'2025-12-04 22:50:41','2025-12-04 22:50:41'),
(7,3,76,17.0000,0.00,'2025-12-04 22:50:52','2025-12-04 22:50:52'),
(8,3,77,1.0000,0.00,'2025-12-04 22:51:00','2025-12-04 22:51:00'),
(9,3,78,1.0000,0.00,'2025-12-04 22:51:07','2025-12-04 22:51:07'),
(10,3,79,1.0000,0.00,'2025-12-04 22:51:13','2025-12-04 22:51:13'),
(11,3,80,1.0000,0.00,'2025-12-04 22:51:19','2025-12-04 22:51:19'),
(12,3,81,1.0000,0.00,'2025-12-04 22:51:25','2025-12-04 22:51:25'),
(13,3,82,1.0000,0.00,'2025-12-04 22:51:28','2025-12-04 22:51:28'),
(14,3,83,1.0000,0.00,'2025-12-04 22:51:33','2025-12-04 22:51:33'),
(15,3,84,128.0000,0.00,'2025-12-04 22:51:46','2025-12-04 22:51:46'),
(16,3,85,1.0000,0.00,'2025-12-04 22:51:51','2025-12-04 22:51:51');
/*!40000 ALTER TABLE `bom_items` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `budget_lines`
--

DROP TABLE IF EXISTS `budget_lines`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `budget_lines` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `budget_id` int(10) unsigned NOT NULL,
  `line_type` enum('category','account','department','project') DEFAULT 'category',
  `category` varchar(100) DEFAULT NULL COMMENT 'Expense category',
  `gl_account_id` int(10) unsigned DEFAULT NULL COMMENT 'Link to chart of accounts',
  `department` varchar(100) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `budgeted_amount` decimal(15,2) NOT NULL,
  `period_type` enum('total','monthly','quarterly') DEFAULT 'total',
  `notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `budget_id` (`budget_id`),
  KEY `gl_account_id` (`gl_account_id`),
  CONSTRAINT `budget_lines_ibfk_1` FOREIGN KEY (`budget_id`) REFERENCES `budgets` (`id`) ON DELETE CASCADE,
  CONSTRAINT `budget_lines_ibfk_2` FOREIGN KEY (`gl_account_id`) REFERENCES `chart_of_accounts` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `budget_lines`
--

LOCK TABLES `budget_lines` WRITE;
/*!40000 ALTER TABLE `budget_lines` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `budget_lines` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `budget_periods`
--

DROP TABLE IF EXISTS `budget_periods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `budget_periods` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `budget_line_id` int(10) unsigned NOT NULL,
  `period_start` date NOT NULL,
  `period_end` date NOT NULL,
  `period_name` varchar(50) DEFAULT NULL COMMENT 'e.g., Q1 2024, January 2024',
  `budgeted_amount` decimal(15,2) NOT NULL,
  `actual_amount` decimal(15,2) DEFAULT 0.00,
  `variance` decimal(15,2) DEFAULT 0.00,
  `variance_percent` decimal(5,2) DEFAULT 0.00,
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `budget_line_id` (`budget_line_id`),
  KEY `period_start` (`period_start`),
  CONSTRAINT `budget_periods_ibfk_1` FOREIGN KEY (`budget_line_id`) REFERENCES `budget_lines` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `budget_periods`
--

LOCK TABLES `budget_periods` WRITE;
/*!40000 ALTER TABLE `budget_periods` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `budget_periods` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `budgets`
--

DROP TABLE IF EXISTS `budgets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `budgets` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `budget_name` varchar(255) NOT NULL,
  `budget_type` enum('annual','quarterly','monthly','project') DEFAULT 'annual',
  `fiscal_year` int(11) NOT NULL,
  `start_date` date NOT NULL,
  `end_date` date NOT NULL,
  `total_amount` decimal(15,2) NOT NULL,
  `currency` varchar(3) DEFAULT 'USD',
  `department` varchar(100) DEFAULT NULL,
  `project_id` int(10) unsigned DEFAULT NULL,
  `description` text DEFAULT NULL,
  `status` enum('draft','active','closed','archived') DEFAULT 'draft',
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `fiscal_year` (`fiscal_year`),
  KEY `budget_type` (`budget_type`),
  KEY `status` (`status`),
  KEY `start_date` (`start_date`),
  KEY `end_date` (`end_date`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `budgets_ibfk_1` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `budgets`
--

LOCK TABLES `budgets` WRITE;
/*!40000 ALTER TABLE `budgets` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `budgets` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Temporary table structure for view `business_line_capacity_summary`
--

DROP TABLE IF EXISTS `business_line_capacity_summary`;
/*!50001 DROP VIEW IF EXISTS `business_line_capacity_summary`*/;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8mb4;
/*!50001 CREATE VIEW `business_line_capacity_summary` AS SELECT
 1 AS `business_line_id`,
  1 AS `business_line_name`,
  1 AS `business_line_code`,
  1 AS `total_equipment_lines`,
  1 AS `total_equipment`,
  1 AS `operational_equipment`,
  1 AS `avg_utilization_rate`,
  1 AS `total_daily_capacity`,
  1 AS `available_daily_capacity` */;
SET character_set_client = @saved_cs_client;

--
-- Table structure for table `business_lines`
--

DROP TABLE IF EXISTS `business_lines`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `business_lines` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `location_id` int(10) unsigned NOT NULL,
  `name` varchar(100) NOT NULL,
  `code` varchar(50) NOT NULL,
  `description` text DEFAULT NULL,
  `square_footage` decimal(10,2) DEFAULT NULL,
  `status` enum('active','inactive') DEFAULT 'active',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `code` (`code`),
  KEY `location_id` (`location_id`),
  KEY `status` (`status`),
  CONSTRAINT `business_lines_ibfk_1` FOREIGN KEY (`location_id`) REFERENCES `locations` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Business lines or production lines within a location';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `business_lines`
--

LOCK TABLES `business_lines` WRITE;
/*!40000 ALTER TABLE `business_lines` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `business_lines` VALUES
(1,2,'Battery Pack Assembly','BPA','',NULL,'active','2025-10-27 18:25:30','2025-10-27 18:25:30'),
(2,2,'Motors and Actuators','MA','',NULL,'active','2025-10-27 19:16:04','2025-10-27 19:16:19'),
(3,2,'Fabrication and Assembly','FA','',NULL,'active','2025-10-27 19:16:37','2025-10-27 19:16:37'),
(4,2,'Mold and Injection Molding','MIM','',NULL,'active','2025-10-27 19:16:53','2025-10-27 19:16:53'),
(5,3,'Electronics and SMT','ESMT','',NULL,'active','2025-10-27 19:17:16','2025-12-05 10:53:46'),
(6,2,'Research and Desgin','RND','',NULL,'active','2025-12-05 10:54:35','2025-12-05 10:54:44');
/*!40000 ALTER TABLE `business_lines` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `calendar_events`
--

DROP TABLE IF EXISTS `calendar_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `calendar_events` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `event_type` enum('custom','quote','invoice','sales_order','work_order','project','hr_event','meeting','deadline','other') NOT NULL DEFAULT 'custom',
  `start_date` datetime NOT NULL,
  `end_date` datetime DEFAULT NULL,
  `all_day` tinyint(1) DEFAULT 0,
  `color` varchar(20) DEFAULT '#0cd096',
  `location` varchar(255) DEFAULT NULL,
  `event_url` varchar(500) DEFAULT NULL COMMENT 'Optional URL link for event (Zoom, docs, etc.)',
  `entity_type` varchar(50) DEFAULT NULL,
  `entity_id` int(11) DEFAULT NULL,
  `is_public` tinyint(1) DEFAULT 1 COMMENT '1 = visible to all users, 0 = private',
  `created_by` int(11) NOT NULL,
  `assigned_to` int(11) DEFAULT NULL COMMENT 'If event is assigned to specific user',
  `attendees` text DEFAULT NULL COMMENT 'JSON array of user IDs',
  `is_recurring` tinyint(1) DEFAULT 0,
  `recurrence_rule` varchar(255) DEFAULT NULL COMMENT 'RRULE format for recurring events',
  `status` enum('scheduled','completed','cancelled') DEFAULT 'scheduled',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `notified_at` datetime DEFAULT NULL COMMENT 'When notification was sent',
  `send_reminder` tinyint(1) DEFAULT 0 COMMENT 'Whether to send email reminders',
  `reminder_minutes` int(11) DEFAULT 15 COMMENT 'Minutes before event to send reminder',
  PRIMARY KEY (`id`),
  KEY `idx_start_date` (`start_date`),
  KEY `idx_end_date` (`end_date`),
  KEY `idx_created_by` (`created_by`),
  KEY `idx_assigned_to` (`assigned_to`),
  KEY `idx_entity` (`entity_type`,`entity_id`),
  KEY `idx_event_type` (`event_type`),
  KEY `idx_status` (`status`),
  KEY `idx_calendar_events_notification` (`start_date`,`status`,`all_day`,`notified_at`)
) ENGINE=InnoDB AUTO_INCREMENT=33 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `calendar_events`
--

LOCK TABLES `calendar_events` WRITE;
/*!40000 ALTER TABLE `calendar_events` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `calendar_events` VALUES
(3,'Holiday - Company Closed','Office closed','other','2025-11-27 00:00:00','2025-11-27 00:00:00',1,'#1ABD36',NULL,NULL,NULL,NULL,1,1,NULL,NULL,0,NULL,'scheduled','2025-11-13 23:20:04','2025-11-13 23:20:04',NULL,0,15),
(4,'Test5','','custom','2025-11-27 16:00:00','2025-11-27 16:30:00',0,'#0cd096','','',NULL,NULL,1,1,NULL,'@Rick M ',0,NULL,'scheduled','2025-11-14 00:30:27','2025-11-27 20:53:26','2025-11-27 15:50:00',1,15),
(14,'Test',NULL,'custom','2025-11-27 16:00:00','2025-11-27 16:30:00',0,'#0cd096',NULL,NULL,NULL,NULL,1,1,NULL,'@Rick M',0,NULL,'scheduled','2025-11-27 20:45:43','2025-11-27 20:50:02','2025-11-27 15:50:00',1,15),
(15,'Test6',NULL,'custom','2025-11-27 16:00:00','2025-11-27 16:30:00',0,'#0cd096',NULL,NULL,NULL,NULL,1,1,NULL,'@Rick M ',0,NULL,'scheduled','2025-11-27 20:53:37','2025-11-27 20:53:37',NULL,1,15),
(16,'Test6',NULL,'custom','2025-11-27 16:00:00','2025-11-27 16:30:00',0,'#0cd096',NULL,NULL,NULL,NULL,1,1,NULL,'@Rick M ',0,NULL,'scheduled','2025-11-27 20:53:40','2025-11-27 20:53:40',NULL,1,15),
(17,'Test6',NULL,'custom','2025-11-27 16:00:00','2025-11-27 16:30:00',0,'#0cd096',NULL,NULL,NULL,NULL,1,1,NULL,'@Rick M ',0,NULL,'scheduled','2025-11-27 20:53:46','2025-11-27 20:53:46',NULL,1,15),
(18,'Test6',NULL,'custom','2025-11-27 16:00:00','2025-11-27 16:30:00',0,'#0cd096',NULL,NULL,NULL,NULL,0,1,NULL,'@Rick M ',0,NULL,'scheduled','2025-11-27 20:53:49','2025-11-27 20:53:49',NULL,1,15),
(21,'ricks mtg','test','custom','2025-11-27 16:00:00','2025-11-27 16:30:00',0,'#0cd096',NULL,NULL,NULL,NULL,1,1,NULL,'@Rick M ',0,NULL,'scheduled','2025-11-27 20:57:42','2025-11-27 20:57:42',NULL,1,15),
(22,'test7',NULL,'custom','2025-11-27 16:00:00','2025-11-27 16:30:00',0,'#0cd096',NULL,NULL,NULL,NULL,1,1,NULL,'@Rick M ',0,NULL,'scheduled','2025-11-27 20:58:28','2025-11-27 20:58:28',NULL,1,15),
(23,'test7',NULL,'custom','2025-11-27 16:00:00','2025-11-27 16:30:00',0,'#0cd096',NULL,NULL,NULL,NULL,1,1,NULL,'@Rick M ',0,NULL,'scheduled','2025-11-27 20:59:40','2025-11-27 20:59:40',NULL,1,15),
(24,'test',NULL,'custom','2025-11-27 17:00:00','2025-11-27 17:30:00',0,'#0cd096',NULL,NULL,NULL,NULL,1,1,NULL,'@Rick M ',0,NULL,'scheduled','2025-11-27 21:00:33','2025-11-27 21:10:00','2025-11-27 16:10:00',0,15),
(26,'test',NULL,'custom','2025-11-27 17:00:00','2025-11-27 17:30:00',0,'#0cd096',NULL,NULL,NULL,NULL,1,1,NULL,'@Rick M ',0,NULL,'scheduled','2025-11-27 21:02:07','2025-11-27 21:10:00','2025-11-27 16:10:00',1,15),
(27,'tester',NULL,'custom','2025-11-27 17:00:00','2025-11-27 17:30:00',0,'#0cd096',NULL,NULL,NULL,NULL,1,1,NULL,'@Rick M ',0,NULL,'scheduled','2025-11-27 21:03:26','2025-11-27 21:10:02','2025-11-27 16:10:00',1,15),
(28,'tester',NULL,'custom','2025-11-27 17:00:00','2025-11-27 17:30:00',0,'#0cd096',NULL,NULL,NULL,NULL,1,1,NULL,'@Rick M ',0,NULL,'scheduled','2025-11-27 21:04:36','2025-11-27 21:10:03','2025-11-27 16:10:00',1,15),
(31,'Demo','','custom','2025-12-04 19:00:00','2025-12-04 19:30:00',0,'#0cd096','','',NULL,NULL,1,1,NULL,'@Rick M @Admin User ',0,NULL,'scheduled','2025-12-04 18:07:27','2025-12-04 23:00:01','2025-12-04 18:00:01',1,15),
(32,'Rick Mtg',NULL,'meeting','2025-12-10 17:00:00','2025-12-10 17:30:00',0,'#FF9500',NULL,NULL,NULL,NULL,1,1,NULL,'@Rick M @all-staff @Admin User ',0,NULL,'scheduled','2025-12-04 23:15:38','2025-12-04 23:15:38',NULL,1,15);
/*!40000 ALTER TABLE `calendar_events` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `camera_audit_annotations`
--

DROP TABLE IF EXISTS `camera_audit_annotations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `camera_audit_annotations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `camera_audit_log_id` bigint(20) unsigned NOT NULL,
  `annotation_type` enum('note','issue','highlight','measurement','count') NOT NULL,
  `annotation_data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL COMMENT 'Coordinates, text, measurements, etc.' CHECK (json_valid(`annotation_data`)),
  `description` text DEFAULT NULL,
  `created_by` int(10) unsigned NOT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_audit_log` (`camera_audit_log_id`),
  KEY `idx_type` (`annotation_type`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `camera_audit_annotations_ibfk_1` FOREIGN KEY (`camera_audit_log_id`) REFERENCES `camera_audit_logs` (`id`) ON DELETE CASCADE,
  CONSTRAINT `camera_audit_annotations_ibfk_2` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `camera_audit_annotations`
--

LOCK TABLES `camera_audit_annotations` WRITE;
/*!40000 ALTER TABLE `camera_audit_annotations` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `camera_audit_annotations` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `camera_audit_events`
--

DROP TABLE IF EXISTS `camera_audit_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `camera_audit_events` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `camera_audit_log_id` bigint(20) unsigned NOT NULL,
  `event_type` varchar(100) NOT NULL COMMENT 'anomaly_detected, quality_issue, unauthorized_access, damage_found, etc.',
  `severity` enum('info','warning','critical') NOT NULL DEFAULT 'info',
  `event_data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Detailed event information' CHECK (json_valid(`event_data`)),
  `is_resolved` tinyint(1) NOT NULL DEFAULT 0,
  `resolved_by` int(10) unsigned DEFAULT NULL,
  `resolved_at` datetime DEFAULT NULL,
  `resolution_notes` text DEFAULT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_audit_log` (`camera_audit_log_id`),
  KEY `idx_event_type` (`event_type`),
  KEY `idx_severity` (`severity`),
  KEY `idx_resolved` (`is_resolved`),
  KEY `resolved_by` (`resolved_by`),
  CONSTRAINT `camera_audit_events_ibfk_1` FOREIGN KEY (`camera_audit_log_id`) REFERENCES `camera_audit_logs` (`id`) ON DELETE CASCADE,
  CONSTRAINT `camera_audit_events_ibfk_2` FOREIGN KEY (`resolved_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `camera_audit_events`
--

LOCK TABLES `camera_audit_events` WRITE;
/*!40000 ALTER TABLE `camera_audit_events` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `camera_audit_events` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `camera_audit_logs`
--

DROP TABLE IF EXISTS `camera_audit_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `camera_audit_logs` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `camera_station_id` int(10) unsigned NOT NULL,
  `activity_type` varchar(100) NOT NULL COMMENT 'stock_movement, receiving, picking, cycle_count, inspection, loading, unloading, etc.',
  `activity_subtype` varchar(100) DEFAULT NULL COMMENT 'Additional classification',
  `reference_type` varchar(100) DEFAULT NULL COMMENT 'Entity type: stock_movement, work_order, purchase_order, sales_order, etc.',
  `reference_id` int(10) unsigned DEFAULT NULL COMMENT 'ID of related entity',
  `location_id` int(10) unsigned DEFAULT NULL COMMENT 'Location where activity occurred',
  `machine_id` int(10) unsigned DEFAULT NULL COMMENT 'Machine/equipment involved',
  `zone` varchar(100) DEFAULT NULL COMMENT 'Specific zone/area within location',
  `product_id` int(10) unsigned DEFAULT NULL COMMENT 'Product being handled',
  `lot_number` varchar(100) DEFAULT NULL COMMENT 'Lot/batch number if applicable',
  `serial_number` varchar(100) DEFAULT NULL COMMENT 'Serial number if applicable',
  `quantity` decimal(15,3) DEFAULT NULL COMMENT 'Quantity involved in activity',
  `user_id` int(10) unsigned DEFAULT NULL COMMENT 'User performing the activity',
  `operator_badge` varchar(50) DEFAULT NULL COMMENT 'Operator badge/ID if different from user',
  `image_path` varchar(500) NOT NULL COMMENT 'Relative path to stored image',
  `image_filename` varchar(255) NOT NULL,
  `image_size_bytes` int(10) unsigned DEFAULT NULL COMMENT 'File size in bytes',
  `image_format` varchar(20) DEFAULT NULL COMMENT 'jpg, png, etc.',
  `thumbnail_path` varchar(500) DEFAULT NULL COMMENT 'Path to thumbnail if generated',
  `captured_at` datetime NOT NULL COMMENT 'Actual timestamp when image was captured',
  `capture_mode` enum('manual','automatic','triggered','scheduled') NOT NULL DEFAULT 'manual',
  `trigger_event` varchar(100) DEFAULT NULL COMMENT 'What triggered the capture (barcode_scan, button_press, motion, timer, etc.)',
  `has_analysis` tinyint(1) NOT NULL DEFAULT 0,
  `analysis_data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Object detection, OCR results, anomalies detected, etc.' CHECK (json_valid(`analysis_data`)),
  `confidence_score` decimal(5,4) DEFAULT NULL COMMENT 'AI confidence score if analyzed',
  `image_quality` enum('excellent','good','acceptable','poor') DEFAULT NULL,
  `is_verified` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Has been reviewed/verified by user',
  `verified_by` int(10) unsigned DEFAULT NULL,
  `verified_at` datetime DEFAULT NULL,
  `notes` text DEFAULT NULL COMMENT 'User notes or additional context',
  `metadata` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Additional flexible metadata' CHECK (json_valid(`metadata`)),
  `tags` varchar(500) DEFAULT NULL COMMENT 'Comma-separated searchable tags',
  `ip_address` varchar(45) DEFAULT NULL COMMENT 'IP of device that initiated capture',
  `device_info` varchar(255) DEFAULT NULL COMMENT 'Device/browser info',
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_camera_station` (`camera_station_id`),
  KEY `idx_activity_type` (`activity_type`),
  KEY `idx_reference` (`reference_type`,`reference_id`),
  KEY `idx_location` (`location_id`),
  KEY `idx_machine` (`machine_id`),
  KEY `idx_product` (`product_id`),
  KEY `idx_user` (`user_id`),
  KEY `idx_captured_at` (`captured_at`),
  KEY `idx_capture_mode` (`capture_mode`),
  KEY `idx_lot_number` (`lot_number`),
  KEY `idx_serial_number` (`serial_number`),
  KEY `idx_verified` (`is_verified`),
  KEY `idx_has_analysis` (`has_analysis`),
  KEY `verified_by` (`verified_by`),
  CONSTRAINT `camera_audit_logs_ibfk_1` FOREIGN KEY (`camera_station_id`) REFERENCES `camera_stations` (`id`) ON DELETE CASCADE,
  CONSTRAINT `camera_audit_logs_ibfk_2` FOREIGN KEY (`location_id`) REFERENCES `locations` (`id`) ON DELETE SET NULL,
  CONSTRAINT `camera_audit_logs_ibfk_3` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE SET NULL,
  CONSTRAINT `camera_audit_logs_ibfk_4` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `camera_audit_logs_ibfk_5` FOREIGN KEY (`verified_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `camera_audit_logs`
--

LOCK TABLES `camera_audit_logs` WRITE;
/*!40000 ALTER TABLE `camera_audit_logs` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `camera_audit_logs` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `camera_stations`
--

DROP TABLE IF EXISTS `camera_stations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `camera_stations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `station_code` varchar(50) NOT NULL COMMENT 'Unique identifier for camera station',
  `name` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `location_id` int(10) unsigned DEFAULT NULL COMMENT 'Physical location where camera is installed',
  `machine_id` int(10) unsigned DEFAULT NULL COMMENT 'Equipment/machine this camera monitors',
  `camera_type` enum('fixed','mobile','handheld','drone','automated') NOT NULL DEFAULT 'fixed',
  `resolution` varchar(20) DEFAULT NULL COMMENT 'e.g. 1920x1080, 4K',
  `field_of_view` varchar(100) DEFAULT NULL COMMENT 'Description of what camera captures',
  `ip_address` varchar(45) DEFAULT NULL COMMENT 'Camera IP for network cameras',
  `api_endpoint` varchar(255) DEFAULT NULL COMMENT 'API endpoint for automated capture',
  `is_active` tinyint(1) NOT NULL DEFAULT 1,
  `last_capture_at` datetime DEFAULT NULL COMMENT 'Timestamp of last image capture',
  `capture_count` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Total images captured',
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `auto_capture_enabled` tinyint(1) DEFAULT 0 COMMENT 'Enable automatic captures',
  `capture_interval_minutes` int(11) DEFAULT 15 COMMENT 'Capture interval in minutes',
  `capture_start_time` time DEFAULT '00:00:00' COMMENT 'Start capturing at this time',
  `capture_end_time` time DEFAULT '23:59:59' COMMENT 'Stop capturing at this time',
  `auto_activity_type` varchar(100) DEFAULT 'automated_surveillance' COMMENT 'Activity type for auto captures',
  PRIMARY KEY (`id`),
  UNIQUE KEY `station_code` (`station_code`),
  KEY `idx_location` (`location_id`),
  KEY `idx_machine` (`machine_id`),
  KEY `idx_active` (`is_active`),
  KEY `idx_station_code` (`station_code`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `camera_stations_ibfk_1` FOREIGN KEY (`location_id`) REFERENCES `locations` (`id`) ON DELETE SET NULL,
  CONSTRAINT `camera_stations_ibfk_2` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `camera_stations`
--

LOCK TABLES `camera_stations` WRITE;
/*!40000 ALTER TABLE `camera_stations` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `camera_stations` VALUES
(1,'Dock-Cam-001','Loading Dock A ','Loading Dock cam ',2,NULL,'fixed','1920x1080','full view','192.168.1.100',NULL,1,NULL,0,1,'2025-11-13 16:29:17','2025-11-13 16:36:05',0,15,'00:00:00','23:59:59','automated_surveillance');
/*!40000 ALTER TABLE `camera_stations` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `category_forecast_summary`
--

DROP TABLE IF EXISTS `category_forecast_summary`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `category_forecast_summary` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `assumption_set_id` int(11) NOT NULL,
  `category_id` int(10) unsigned NOT NULL,
  `projection_date` date NOT NULL,
  `period_type` enum('monthly','quarterly','annual') DEFAULT 'monthly',
  `total_units` decimal(15,2) NOT NULL DEFAULT 0.00,
  `total_revenue` decimal(15,2) NOT NULL DEFAULT 0.00,
  `total_cogs` decimal(15,2) NOT NULL DEFAULT 0.00,
  `gross_profit` decimal(15,2) NOT NULL DEFAULT 0.00,
  `gross_margin_pct` decimal(5,2) NOT NULL DEFAULT 0.00,
  `product_count` int(11) NOT NULL DEFAULT 0 COMMENT 'Number of products in this category',
  `generated_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `uk_set_cat_date` (`assumption_set_id`,`category_id`,`projection_date`,`period_type`),
  KEY `idx_set` (`assumption_set_id`),
  KEY `idx_category` (`category_id`),
  KEY `idx_date` (`projection_date`),
  CONSTRAINT `category_forecast_summary_ibfk_1` FOREIGN KEY (`assumption_set_id`) REFERENCES `forecast_assumption_sets` (`id`) ON DELETE CASCADE,
  CONSTRAINT `category_forecast_summary_ibfk_2` FOREIGN KEY (`category_id`) REFERENCES `product_categories` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `category_forecast_summary`
--

LOCK TABLES `category_forecast_summary` WRITE;
/*!40000 ALTER TABLE `category_forecast_summary` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `category_forecast_summary` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `certificates_of_analysis`
--

DROP TABLE IF EXISTS `certificates_of_analysis`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `certificates_of_analysis` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `certificate_number` varchar(50) NOT NULL,
  `product_id` int(10) unsigned NOT NULL,
  `batch_number` varchar(100) DEFAULT NULL,
  `inspection_id` int(10) unsigned DEFAULT NULL,
  `manufacturing_date` date DEFAULT NULL,
  `expiry_date` date DEFAULT NULL,
  `test_results` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`test_results`)),
  `specifications_met` tinyint(1) DEFAULT 1,
  `issued_by` int(10) unsigned NOT NULL,
  `issued_at` datetime DEFAULT current_timestamp(),
  `pdf_path` varchar(255) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `certificate_number` (`certificate_number`),
  KEY `idx_product` (`product_id`),
  KEY `idx_batch` (`batch_number`),
  KEY `inspection_id` (`inspection_id`),
  KEY `issued_by` (`issued_by`),
  CONSTRAINT `certificates_of_analysis_ibfk_1` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE,
  CONSTRAINT `certificates_of_analysis_ibfk_2` FOREIGN KEY (`inspection_id`) REFERENCES `quality_inspections` (`id`) ON DELETE SET NULL,
  CONSTRAINT `certificates_of_analysis_ibfk_3` FOREIGN KEY (`issued_by`) REFERENCES `users` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `certificates_of_analysis`
--

LOCK TABLES `certificates_of_analysis` WRITE;
/*!40000 ALTER TABLE `certificates_of_analysis` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `certificates_of_analysis` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `channel_members`
--

DROP TABLE IF EXISTS `channel_members`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `channel_members` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `channel_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `role` enum('member','admin') DEFAULT 'member',
  `last_read_at` timestamp NULL DEFAULT NULL,
  `joined_at` timestamp NULL DEFAULT current_timestamp(),
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `channel_user` (`channel_id`,`user_id`),
  KEY `idx_user_id` (`user_id`),
  CONSTRAINT `channel_members_ibfk_1` FOREIGN KEY (`channel_id`) REFERENCES `channels` (`id`) ON DELETE CASCADE,
  CONSTRAINT `channel_members_ibfk_2` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `channel_members`
--

LOCK TABLES `channel_members` WRITE;
/*!40000 ALTER TABLE `channel_members` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `channel_members` VALUES
(1,1,1,'member','2025-12-05 17:45:05','2025-10-26 20:16:06','2025-11-11 00:36:43','2025-12-05 17:45:05'),
(2,1,2,'member',NULL,'2025-10-26 20:16:06','2025-11-11 00:36:43','2025-11-11 00:36:43'),
(14,1,13,'member',NULL,'2025-10-27 15:26:38','2025-11-11 00:36:43','2025-11-11 00:36:43'),
(15,1,14,'member',NULL,'2025-10-27 21:16:37','2025-11-11 00:36:43','2025-11-11 00:36:43'),
(16,1,15,'member','2025-10-28 16:28:49','2025-10-27 22:51:32','2025-11-11 00:36:43','2025-11-11 00:36:43'),
(17,1,16,'member','2025-10-29 01:55:16','2025-10-29 01:35:17','2025-11-11 00:36:43','2025-11-11 00:36:43'),
(18,1,17,'member','2025-10-30 19:31:21','2025-10-30 00:21:16','2025-11-11 00:36:43','2025-11-11 00:36:43'),
(19,1,18,'member','2025-11-11 11:57:19','2025-10-30 00:21:59','2025-11-11 00:36:43','2025-11-11 11:57:19'),
(20,1,19,'member',NULL,'2025-10-30 00:23:05','2025-11-11 00:36:43','2025-11-11 00:36:43'),
(24,7,1,'admin','2025-12-04 23:22:54','2025-10-31 17:27:40','2025-11-11 00:36:43','2025-12-04 23:22:54'),
(26,1,7,'member','2025-11-24 18:21:48','2025-11-14 21:00:43','2025-11-14 21:00:43','2025-11-24 18:21:49'),
(27,1,8,'member','2025-11-14 22:16:08','2025-11-14 21:01:16','2025-11-14 21:01:16','2025-11-14 22:16:08'),
(28,1,21,'member','2025-11-29 14:08:22','2025-11-15 23:53:17','2025-11-15 23:53:17','2025-11-29 14:08:22'),
(29,7,3,'member',NULL,'2025-11-19 18:24:46','2025-11-19 18:24:46','2025-11-19 18:24:46'),
(30,7,5,'member',NULL,'2025-12-04 13:34:44','2025-12-04 13:34:44','2025-12-04 13:34:44');
/*!40000 ALTER TABLE `channel_members` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `channels`
--

DROP TABLE IF EXISTS `channels`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `channels` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(100) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `type` enum('channel','direct') DEFAULT 'channel',
  `is_private` tinyint(4) DEFAULT 0,
  `created_by` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_type` (`type`),
  KEY `idx_created_by` (`created_by`),
  CONSTRAINT `channels_ibfk_1` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `channels`
--

LOCK TABLES `channels` WRITE;
/*!40000 ALTER TABLE `channels` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `channels` VALUES
(1,'general','General discussion for everyone','channel',0,1,'2025-10-26 20:13:47','2025-10-26 20:13:47'),
(7,'test','','channel',0,1,'2025-10-31 17:27:40','2025-10-31 17:27:40');
/*!40000 ALTER TABLE `channels` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `chart_of_accounts`
--

DROP TABLE IF EXISTS `chart_of_accounts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `chart_of_accounts` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `account_code` varchar(50) NOT NULL,
  `account_name` varchar(200) NOT NULL,
  `account_type` enum('asset','liability','equity','revenue','expense') NOT NULL,
  `parent_id` int(10) unsigned DEFAULT NULL,
  `description` text DEFAULT NULL,
  `status` enum('active','inactive') DEFAULT 'active',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `account_code` (`account_code`),
  KEY `parent_id` (`parent_id`),
  CONSTRAINT `chart_of_accounts_ibfk_1` FOREIGN KEY (`parent_id`) REFERENCES `chart_of_accounts` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=69 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `chart_of_accounts`
--

LOCK TABLES `chart_of_accounts` WRITE;
/*!40000 ALTER TABLE `chart_of_accounts` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `chart_of_accounts` VALUES
(1,'1000','Assets','asset',NULL,'Main asset account','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(2,'1010','Business Checking Preferred #3083','asset',NULL,'Deleted prior checking account.','inactive','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(3,'1011','PNC Checking #8804','asset',NULL,'Old PNC checking account, now inactive.','inactive','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(4,'1012','PNC Checking #8812','asset',NULL,'Old PNC checking account, now inactive.','inactive','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(5,'1020','Business Checking Preferred #3091','asset',NULL,'Deleted prior checking account.','inactive','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(6,'1030','Chase Bank #2560','asset',NULL,'Active Chase Bank account for operations.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(7,'1040','Chase Wire #7932','asset',NULL,'Chase account used for wire transfers.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(8,'1200','Accounts Receivable','asset',NULL,'Outstanding invoices owed to the company.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(9,'1350','Inventory','asset',NULL,'Value of goods held for sale.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(10,'1360','Inventory Asset','asset',NULL,'Capitalized inventory value as an asset.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(11,'1370','Loan to Shareholder','asset',NULL,'Loan previously issued to shareholder (inactive).','inactive','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(12,'1390','Security Deposit','asset',NULL,'Deposits held with landlords or vendors.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(13,'1400','Uncategorized Asset','asset',NULL,'Assets not yet categorized properly.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(14,'1410','Undeposited Funds','asset',NULL,'Checks or payments received but not yet deposited.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(15,'1500','Furniture and Equipment','asset',NULL,'Office furniture and equipment assets.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(16,'1580','Accumulated Depreciation','asset',NULL,'Total depreciation on fixed assets.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(17,'1640','Vehicles','asset',NULL,'Company-owned vehicles.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(18,'1641','Escalade 2023','asset',NULL,'Vehicle asset—Cadillac Escalade (2023).','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(19,'1642','Escalade 2025','asset',NULL,'Vehicle asset—Cadillac Escalade (2025).','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(20,'1643','Golf Cart','asset',NULL,'Company-owned golf cart asset.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(21,'1700','Fixed Asset Computers','asset',NULL,'Company-owned computer equipment.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(22,'1800','LBC Boats','asset',NULL,'Company boats or marine assets.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(23,'1900','Leashold Improvements','asset',NULL,'Improvements to leased property.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(24,'1950','Projector','asset',NULL,'Audio/visual equipment asset.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(25,'1970','Plant Machinery & Equipment','asset',NULL,'Manufacturing machinery and tools.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(26,'2000','Accounts Payable (A/P)','liability',NULL,'Outstanding bills owed to vendors.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(27,'2010','American Express #4007','liability',NULL,'Active American Express business card.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(28,'2020','American Express #2005','liability',NULL,'Alternate American Express business card.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(29,'2030','American Express #2008/#3006/#4004 Nathan Staron','liability',NULL,'Deleted AMEX card accounts.','inactive','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(30,'2040','American Express #1018 Ronald Staron','liability',NULL,'Deleted AMEX card account.','inactive','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(31,'2100','Payroll Liabilities with sub-accounts','liability',NULL,'Group account for payroll-related liabilities.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(32,'2110','Federal Taxes #941/#944','liability',NULL,'Employer federal payroll taxes payable.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(33,'2120','Federal Unemployment #940','liability',NULL,'Federal unemployment tax payable.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(34,'2130','Florida Unemployment Tax','liability',NULL,'Florida unemployment tax payable.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(35,'2140','Pennsylvania Income Tax','liability',NULL,'Pennsylvania state withholding payable.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(36,'2170','Quickbooks Tax Holding Account','liability',NULL,'Holding account for payroll or sales tax before remittance.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(37,'2210','Direct Deposit Payable ','liability',NULL,'Funds pending direct deposit for payroll.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(38,'2220','FBI Loan','liability',NULL,'Deleted loan record.','inactive','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(39,'2230','General Dynamics Loan','liability',NULL,'Deleted loan record.','inactive','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(40,'2240','Loan from Father','liability',NULL,'Deleted personal loan record.','inactive','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(41,'2250','Loan Payable','liability',NULL,'Deleted general loan payable.','inactive','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(42,'2260','Out of Scope Agency Payable','liability',NULL,'Payable account for external agency obligations.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(43,'2270','Sales Tax Payable','liability',NULL,'Sales tax collected but not yet remitted.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(44,'2280','EIDL Loan','liability',NULL,'SBA Economic Injury Disaster Loan.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(45,'2290','Staron Inventory Loan','liability',NULL,'Inventory financing loan.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(46,'2310','Shareholder Loan','liability',NULL,'Funds borrowed from a shareholder.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(47,'2320','N/P Jeep Cherokee 2023','liability',NULL,'Note payable on Jeep Cherokee 2023.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(48,'2321','Escalade 2023','liability',NULL,'Note payable on Escalade 2023.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(49,'2322','Escalade 2025','liability',NULL,'Note payable on Escalade 2025.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(50,'2323','Golf Cart','liability',NULL,'Note payable on company golf cart.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(51,'2330','Note Payable - 2023 Cadillac','liability',NULL,'Note payable on Cadillac 2023.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(52,'2340','Note Payable - Shopify Capital','liability',NULL,'Deleted Shopify financing note.','inactive','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(53,'2350','Notes Payable - Cadillac ','liability',NULL,'Deleted vehicle loan.','inactive','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(54,'2360','Loan','liability',NULL,'Generic loan payable.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(55,'2365','Climate First Bank - SBA Loan','liability',NULL,'SBA-backed loan through Climate First Bank.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(56,'2470','Customer Deposits','liability',NULL,'Advance payments from customers.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(57,'2500','Capital Stock','liability',NULL,'Issued shares of company stock.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(58,'2510','Shareholder Distributions','liability',NULL,'Payments made to shareholders.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(59,'2520','Opening Balance Equity','liability',NULL,'Balancing account used when setting up books.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(60,'2530','Owner\'s Drawing','liability',NULL,'Withdrawals by the owner.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(61,'2540','Owner\'s Investment','liability',NULL,'Capital contributions by the owner.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(62,'2550','Retained Earnings','liability',NULL,'Cumulative retained profits.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(63,'2560','Shareholder - Nathan Staron','liability',NULL,'Shareholder equity—Nathon Staron.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(64,'2570','Shareholder - Jarrett Brownfield','liability',NULL,'Shareholder equity—JB.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(65,'3000','Equity','equity',NULL,'Owner’s equity representing ownership in the company.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(66,'3500','Retained Earnings','equity',NULL,'Cumulative profits retained in the business.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(67,'3900','Net Income','equity',NULL,'Profit or loss for the accounting period.','active','2025-11-11 23:27:26','2025-11-11 23:27:26'),
(68,'4440','Climate First Bank - Business Checking','equity',NULL,'Primary business checking account used for company transactions.','active','2025-11-11 23:27:26','2025-11-11 23:27:26');
/*!40000 ALTER TABLE `chart_of_accounts` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `chart_of_accounts_backup_20250111`
--

DROP TABLE IF EXISTS `chart_of_accounts_backup_20250111`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `chart_of_accounts_backup_20250111` (
  `id` int(10) unsigned NOT NULL DEFAULT 0,
  `account_code` varchar(50) NOT NULL,
  `account_name` varchar(200) NOT NULL,
  `account_type` enum('asset','liability','equity','revenue','expense') NOT NULL,
  `parent_id` int(10) unsigned DEFAULT NULL,
  `description` text DEFAULT NULL,
  `status` enum('active','inactive') DEFAULT 'active',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `chart_of_accounts_backup_20250111`
--

LOCK TABLES `chart_of_accounts_backup_20250111` WRITE;
/*!40000 ALTER TABLE `chart_of_accounts_backup_20250111` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `chart_of_accounts_backup_20250111` VALUES
(2,'1100','Cash & Bank','asset',NULL,'Main cash and bank account','active','2025-10-26 14:24:24','2025-11-11 00:36:44'),
(3,'1110','Cash','asset',NULL,'Cash on hand and in bank','active','2025-10-26 14:24:24','2025-11-11 00:36:44'),
(4,'1120','Accounts Receivable','asset',NULL,'Money owed by customers','active','2025-10-26 14:24:24','2025-11-11 00:36:44'),
(5,'1130','Inventory','asset',NULL,'Products in stock','active','2025-10-26 14:24:24','2025-11-11 00:36:44'),
(6,'2000','Accounts Payable','liability',NULL,'Supplier bills outstanding - amounts we owe','active','2025-10-26 14:24:24','2025-11-11 00:36:44'),
(7,'2100','Sales Tax Payable','liability',NULL,'Taxes collected from customers to be remitted','active','2025-10-26 14:24:24','2025-11-11 00:36:44'),
(8,'2110','Accounts Payable','liability',NULL,'Money owed to suppliers','active','2025-10-26 14:24:24','2025-11-11 00:36:44'),
(9,'2120','Salaries Payable','liability',NULL,'Unpaid employee salaries','active','2025-10-26 14:24:24','2025-11-11 00:36:44'),
(10,'3000','Owner\'s Equity','equity',NULL,'Owner\'s capital investment','active','2025-10-26 14:24:24','2025-11-11 00:36:44'),
(11,'3100','Retained Earnings','equity',NULL,'Accumulated profits retained in business','active','2025-10-26 14:24:24','2025-11-11 00:36:44'),
(12,'4000','Sales Revenue','revenue',NULL,'Product and service sales income','active','2025-10-26 14:24:24','2025-11-11 00:36:44'),
(13,'4100','Service Revenue','revenue',NULL,'Income from services provided','active','2025-10-26 14:24:24','2025-11-11 00:36:44'),
(14,'4200','Other Income','revenue',NULL,'Miscellaneous income','active','2025-10-26 14:24:24','2025-11-11 00:36:44'),
(15,'5000','Cost of Goods Sold','expense',NULL,'Direct costs of products sold','active','2025-10-26 14:24:24','2025-11-11 00:36:44'),
(16,'5100','Purchase Discounts','expense',NULL,'Discounts received on purchases (contra-expense)','active','2025-10-26 14:24:24','2025-11-11 00:36:44'),
(17,'5200','Freight & Shipping In','expense',NULL,'Shipping costs for inventory purchases','active','2025-10-26 14:24:24','2025-11-11 00:36:44'),
(18,'5210','Salaries Expense','expense',NULL,'Employee compensation','active','2025-10-26 14:24:24','2025-11-11 00:36:44'),
(19,'5220','Rent Expense','expense',NULL,'Facility rental costs','active','2025-10-26 14:24:24','2025-11-11 00:36:44'),
(20,'5230','Utilities Expense','expense',NULL,'Utility bills','active','2025-10-26 14:24:24','2025-11-11 00:36:44'),
(21,'1200','Accounts Receivable','asset',NULL,'Customer invoices outstanding - amounts owed to us','active','2025-10-31 23:27:12','2025-11-11 00:36:44'),
(22,'1300','Inventory','asset',NULL,'Product inventory on hand','active','2025-10-31 23:27:12','2025-11-11 00:36:44'),
(23,'1400','Prepaid Expenses','asset',NULL,'Expenses paid in advance','active','2025-10-31 23:27:12','2025-11-11 00:36:44'),
(24,'1500','Fixed Assets','asset',NULL,'Property, plant, and equipment','active','2025-10-31 23:27:12','2025-11-11 00:36:44'),
(25,'1600','Accumulated Depreciation','asset',NULL,'Contra-asset: Accumulated depreciation on fixed assets','active','2025-10-31 23:27:12','2025-11-11 00:36:44'),
(26,'2200','Payroll Liabilities','liability',NULL,'Employee wages and payroll taxes payable','active','2025-10-31 23:27:12','2025-11-11 00:36:44'),
(27,'2300','Loans Payable','liability',NULL,'Business loans and notes payable','active','2025-10-31 23:27:12','2025-11-11 00:36:44'),
(28,'2400','Accrued Expenses','liability',NULL,'Expenses incurred but not yet paid','active','2025-10-31 23:27:12','2025-11-11 00:36:44'),
(29,'3200','Dividends','equity',NULL,'Distributions to owners/shareholders','active','2025-10-31 23:27:12','2025-11-11 00:36:44'),
(30,'4300','Interest Income','revenue',NULL,'Interest earned on investments','active','2025-10-31 23:27:12','2025-11-11 00:36:44'),
(31,'5500','Salaries & Wages','expense',NULL,'Employee compensation','active','2025-10-31 23:27:12','2025-11-11 00:36:44'),
(32,'5600','Rent Expense','expense',NULL,'Facility rental costs','active','2025-10-31 23:27:12','2025-11-11 00:36:44'),
(33,'5700','Utilities','expense',NULL,'Electricity, water, gas, internet','active','2025-10-31 23:27:12','2025-11-11 00:36:44'),
(34,'5800','Insurance Expense','expense',NULL,'Business insurance premiums','active','2025-10-31 23:27:12','2025-11-11 00:36:44'),
(35,'5900','Office Supplies','expense',NULL,'General office supplies and materials','active','2025-10-31 23:27:12','2025-11-11 00:36:44'),
(36,'6000','Marketing & Advertising','expense',NULL,'Marketing and advertising costs','active','2025-10-31 23:27:12','2025-11-11 00:36:44'),
(37,'6100','Professional Fees','expense',NULL,'Legal, accounting, consulting fees','active','2025-10-31 23:27:12','2025-11-11 00:36:44'),
(38,'6200','Depreciation Expense','expense',NULL,'Depreciation of fixed assets','active','2025-10-31 23:27:12','2025-11-11 00:36:44'),
(39,'6300','Interest Expense','expense',NULL,'Interest paid on loans and debt','active','2025-10-31 23:27:12','2025-11-11 00:36:44'),
(40,'6400','Bad Debt Expense','expense',NULL,'Uncollectible customer receivables','active','2025-10-31 23:27:12','2025-11-11 00:36:44'),
(41,'6500','Repairs & Maintenance','expense',NULL,'Equipment and facility maintenance','active','2025-10-31 23:27:12','2025-11-11 00:36:44'),
(42,'6600','Travel & Entertainment','expense',NULL,'Business travel and client entertainment','active','2025-10-31 23:27:12','2025-11-11 00:36:44'),
(43,'6700','Miscellaneous Expense','expense',NULL,'Other operating expenses','active','2025-10-31 23:27:12','2025-11-11 00:36:44'),
(92,'1111','Cash - Operating Account','asset',3,'Main checking account','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(93,'1112','Cash - Payroll Account','asset',3,'Payroll checking','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(94,'1113','Cash - Savings Account','asset',3,'Business savings','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(95,'1114','Petty Cash','asset',3,'Cash on hand','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(96,'1140','Prepaid Expenses','asset',2,'Expenses paid in advance','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(97,'1141','Prepaid Insurance','asset',10,'Insurance paid in advance','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(98,'1142','Prepaid Rent','asset',10,'Rent paid in advance','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(99,'1210','Property','asset',13,'Real estate','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(100,'1211','Land','asset',14,'Property land','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(101,'1212','Buildings','asset',14,'Building structures','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(102,'1220','Equipment','asset',13,'Machinery and equipment','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(103,'1221','Manufacturing Equipment','asset',17,'Production machinery','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(104,'1222','Office Equipment','asset',17,'Computers, printers, etc','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(105,'1223','Vehicles','asset',17,'Company vehicles','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(106,'1230','Accumulated Depreciation','asset',13,'Cumulative depreciation (contra)','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(107,'1231','Accum Depr - Buildings','asset',21,'Building depreciation','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(108,'1232','Accum Depr - Equipment','asset',21,'Equipment depreciation','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(109,'1233','Accum Depr - Vehicles','asset',21,'Vehicle depreciation','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(110,'2130','Payroll Liabilities','liability',26,'Employee payables','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(111,'2131','Wages Payable','liability',29,'Unpaid wages','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(112,'2132','Payroll Tax Payable','liability',29,'Employer taxes','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(113,'2140','Current Portion - LT Debt','liability',26,'Debt due within 1 year','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(114,'2150','Unearned Revenue','liability',26,'Payments received in advance','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(115,'2210','Notes Payable - Long Term','liability',34,'Long-term notes','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(116,'2220','Mortgage Payable','liability',34,'Real estate mortgage','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(117,'3300','Current Year Earnings','equity',37,'Year-to-date profit/loss','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(118,'3400','Dividends','equity',37,'Owner distributions','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(119,'4110','Product Sales','revenue',43,'Physical product sales','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(120,'4120','Service Revenue','revenue',43,'Service income','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(121,'4130','Installation Revenue','revenue',43,'Installation services','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(122,'4140','Maintenance Contracts','revenue',43,'Recurring maintenance','active','2025-11-04 20:16:40','2025-11-11 00:36:44'),
(123,'4900','Sales Returns & Allowances','revenue',42,'Refunds and discounts (contra)','active','2025-11-04 20:16:40','2025-11-11 00:36:44');
/*!40000 ALTER TABLE `chart_of_accounts_backup_20250111` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `chat_messages`
--

DROP TABLE IF EXISTS `chat_messages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `chat_messages` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `session_id` int(11) NOT NULL,
  `sender_type` enum('customer','agent','system') NOT NULL,
  `sender_id` int(10) unsigned DEFAULT NULL,
  `sender_name` varchar(100) NOT NULL,
  `message` text NOT NULL,
  `is_read` tinyint(1) DEFAULT 0,
  `created_at` datetime DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `sender_id` (`sender_id`),
  KEY `idx_session` (`session_id`),
  KEY `idx_created` (`created_at`),
  KEY `idx_read` (`is_read`),
  CONSTRAINT `chat_messages_ibfk_1` FOREIGN KEY (`session_id`) REFERENCES `chat_sessions` (`id`) ON DELETE CASCADE,
  CONSTRAINT `chat_messages_ibfk_2` FOREIGN KEY (`sender_id`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `chat_messages`
--

LOCK TABLES `chat_messages` WRITE;
/*!40000 ALTER TABLE `chat_messages` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `chat_messages` VALUES
(1,1,'system',NULL,'System','Live chat system initialized successfully.',1,'2025-11-17 10:57:17'),
(2,3,'system',NULL,'System','Chat session started. An agent will be with you shortly.',0,'2025-11-17 10:58:41'),
(3,4,'system',NULL,'System','Chat session started. An agent will be with you shortly.',0,'2025-11-17 11:40:29'),
(4,5,'system',NULL,'System','Chat session started. An agent will be with you shortly.',0,'2025-11-17 11:40:36'),
(5,6,'system',NULL,'System','Chat session started. An agent will be with you shortly.',0,'2025-11-17 11:56:51'),
(6,5,'system',NULL,'System','Admin User has joined the chat.',0,'2025-11-17 12:05:31'),
(7,5,'agent',1,'Admin User','Testing',0,'2025-11-17 12:05:31'),
(8,5,'agent',1,'Admin User','Can you see this',0,'2025-11-17 12:05:35'),
(9,5,'agent',1,'Admin User','Can I share an image?',0,'2025-11-17 12:05:44'),
(10,6,'system',NULL,'System','Chat session has ended.',0,'2025-11-17 12:06:21'),
(11,4,'system',NULL,'System','Chat session has ended.',0,'2025-11-17 12:06:24'),
(12,3,'system',NULL,'System','Chat session has ended.',0,'2025-11-17 12:06:27'),
(13,5,'system',NULL,'System','Chat session has ended.',0,'2025-11-17 12:06:31'),
(14,7,'system',NULL,'System','Chat session started. An agent will be with you shortly.',0,'2025-11-17 14:46:10'),
(15,7,'system',NULL,'System','Chat session has ended.',0,'2025-11-18 14:01:34'),
(16,8,'system',NULL,'System','Chat session started. An agent will be with you shortly.',0,'2025-11-19 13:20:34'),
(17,8,'system',NULL,'System','Admin User has joined the chat.',0,'2025-11-19 13:20:40'),
(18,8,'agent',1,'Admin User','Hey whats up',0,'2025-11-19 13:20:40');
/*!40000 ALTER TABLE `chat_messages` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `chat_sessions`
--

DROP TABLE IF EXISTS `chat_sessions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `chat_sessions` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `session_token` varchar(64) NOT NULL,
  `customer_name` varchar(100) NOT NULL,
  `customer_email` varchar(100) DEFAULT NULL,
  `customer_id` int(11) DEFAULT NULL,
  `assigned_user_id` int(10) unsigned DEFAULT NULL,
  `status` enum('waiting','active','ended') DEFAULT 'waiting',
  `subject` varchar(255) DEFAULT NULL,
  `ticket_id` int(11) DEFAULT NULL,
  `started_at` datetime DEFAULT current_timestamp(),
  `ended_at` datetime DEFAULT NULL,
  `last_message_at` datetime DEFAULT NULL,
  `unread_count_customer` int(11) DEFAULT 0,
  `unread_count_agent` int(11) DEFAULT 0,
  `created_at` datetime DEFAULT current_timestamp(),
  `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `session_token` (`session_token`),
  KEY `idx_status` (`status`),
  KEY `idx_assigned_user` (`assigned_user_id`),
  KEY `idx_session_token` (`session_token`),
  KEY `idx_last_message` (`last_message_at`),
  CONSTRAINT `chat_sessions_ibfk_1` FOREIGN KEY (`assigned_user_id`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `chat_sessions`
--

LOCK TABLES `chat_sessions` WRITE;
/*!40000 ALTER TABLE `chat_sessions` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `chat_sessions` VALUES
(1,'demo-session-001','Demo User',NULL,NULL,NULL,'ended','Demo Chat Session',NULL,'2025-11-17 10:56:59','2025-11-17 10:56:59',NULL,0,0,'2025-11-17 10:56:59','2025-11-17 10:56:59'),
(3,'eed3c29fa66cd4a4615f098a8d8c8124b5953e9fc37f54a5ea774e2b3f5c939d','Test Customer 337','test@example.com',NULL,NULL,'ended','Test Chat Session',NULL,'2025-11-17 10:58:41','2025-11-17 12:06:27','2025-11-17 12:06:27',0,0,'2025-11-17 10:58:41','2025-11-17 12:06:27'),
(4,'ea43012a3a7d34cb70e3b1951024e6129eae29c7c6a7e9bb2b721b7639759b20','Test Customer 707','test@example.com',NULL,NULL,'ended','Test Chat Session',NULL,'2025-11-17 11:40:29','2025-11-17 12:06:24','2025-11-17 12:06:24',0,0,'2025-11-17 11:40:29','2025-11-17 12:06:24'),
(5,'e7333863f8fadc264d9f7f9a97c5506f635e31377345b9fc6ad07aaf929abb2d','Test Customer 441','test@example.com',NULL,1,'ended','Test Chat Session',NULL,'2025-11-17 11:40:36','2025-11-17 12:06:31','2025-11-17 12:06:31',3,0,'2025-11-17 11:40:36','2025-11-17 12:06:31'),
(6,'8ee8323e8f05ca1afa942fe53fed9f1155afedc501d1d3d87080bc5722f119bd','Test Customer 711','test@example.com',NULL,NULL,'ended','Test Chat Session',NULL,'2025-11-17 11:56:51','2025-11-17 12:06:21','2025-11-17 12:06:21',0,0,'2025-11-17 11:56:51','2025-11-17 12:06:21'),
(7,'dc69ed00c6cd3fa0a995326b7944ff535684c52f4eded63160e0b677922acc98','Test Customer 204','test@example.com',NULL,NULL,'ended','Test Chat Session',NULL,'2025-11-17 14:46:10','2025-11-18 14:01:34','2025-11-18 14:01:34',0,0,'2025-11-17 14:46:10','2025-11-18 14:01:34'),
(8,'26a83f3110ac630cc50598080c734b9f56c0107a1ec1d164c6e3d30535f0a73b','Test Customer 18','test@example.com',NULL,1,'active','Test Chat Session',NULL,'2025-11-19 13:20:34',NULL,'2025-11-19 13:20:40',1,0,'2025-11-19 13:20:34','2025-11-19 13:20:40');
/*!40000 ALTER TABLE `chat_sessions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `check_templates`
--

DROP TABLE IF EXISTS `check_templates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `check_templates` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `template_name` varchar(100) NOT NULL,
  `template_type` enum('standard','voucher','stub_top','stub_bottom') DEFAULT 'standard',
  `is_default` tinyint(1) DEFAULT 0,
  `company_name` varchar(200) DEFAULT NULL,
  `company_address` text DEFAULT NULL,
  `bank_name` varchar(200) DEFAULT NULL,
  `routing_number` varchar(50) DEFAULT NULL,
  `account_number` varchar(50) DEFAULT NULL,
  `check_start_y` int(11) DEFAULT 100 COMMENT 'Y position in pixels',
  `check_start_x` int(11) DEFAULT 50 COMMENT 'X position in pixels',
  `amount_x` int(11) DEFAULT 500,
  `amount_y` int(11) DEFAULT 120,
  `date_x` int(11) DEFAULT 500,
  `date_y` int(11) DEFAULT 80,
  `payee_x` int(11) DEFAULT 100,
  `payee_y` int(11) DEFAULT 140,
  `memo_x` int(11) DEFAULT 100,
  `memo_y` int(11) DEFAULT 180,
  `signature_line_y` int(11) DEFAULT 220,
  `template_json` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Full template configuration' CHECK (json_valid(`template_json`)),
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `created_by` int(10) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `check_templates_ibfk_1` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `check_templates`
--

LOCK TABLES `check_templates` WRITE;
/*!40000 ALTER TABLE `check_templates` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `check_templates` VALUES
(1,'Standard Check','standard',1,'Your Company Name','123 Business Street\nCity, State 12345',NULL,NULL,NULL,100,50,500,120,500,80,100,140,100,180,220,NULL,'2025-11-15 16:20:07','2025-11-15 16:20:07',NULL);
/*!40000 ALTER TABLE `check_templates` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `closing_periods`
--

DROP TABLE IF EXISTS `closing_periods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `closing_periods` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `period_type` enum('month','quarter','year') NOT NULL,
  `period_start` date NOT NULL,
  `period_end` date NOT NULL,
  `fiscal_year` int(11) NOT NULL,
  `status` enum('open','closing','closed','reopened') DEFAULT 'open',
  `closed_by` int(10) unsigned DEFAULT NULL,
  `closed_at` datetime DEFAULT NULL,
  `reopened_by` int(10) unsigned DEFAULT NULL,
  `reopened_at` datetime DEFAULT NULL,
  `reopen_reason` text DEFAULT NULL,
  `total_revenue` decimal(15,2) DEFAULT NULL,
  `total_expenses` decimal(15,2) DEFAULT NULL,
  `net_income` decimal(15,2) DEFAULT NULL,
  `closing_journal_entry_id` int(10) unsigned DEFAULT NULL COMMENT 'Link to closing journal entry',
  `notes` text DEFAULT NULL,
  `checklist` text DEFAULT NULL COMMENT 'JSON array of closing checklist items',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_period` (`period_type`,`period_start`,`period_end`),
  KEY `idx_period` (`period_start`,`period_end`),
  KEY `idx_fiscal_year` (`fiscal_year`),
  KEY `idx_status` (`status`),
  KEY `closed_by` (`closed_by`),
  KEY `reopened_by` (`reopened_by`),
  CONSTRAINT `closing_periods_ibfk_1` FOREIGN KEY (`closed_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `closing_periods_ibfk_2` FOREIGN KEY (`reopened_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `closing_periods`
--

LOCK TABLES `closing_periods` WRITE;
/*!40000 ALTER TABLE `closing_periods` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `closing_periods` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `competitive_equipment_snapshots`
--

DROP TABLE IF EXISTS `competitive_equipment_snapshots`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `competitive_equipment_snapshots` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `competitor_name` varchar(255) NOT NULL,
  `equipment_observed` text DEFAULT NULL COMMENT 'What equipment they have',
  `capacity_estimate` decimal(12,2) DEFAULT NULL,
  `technology_level` enum('cutting_edge','modern','standard','outdated') DEFAULT 'standard',
  `observation_date` date DEFAULT NULL,
  `observation_method` varchar(100) DEFAULT NULL COMMENT 'Site visit, trade show, public filing, etc',
  `observed_by` int(10) unsigned DEFAULT NULL,
  `competitive_advantages` text DEFAULT NULL,
  `competitive_disadvantages` text DEFAULT NULL,
  `strategic_implications` text DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `observed_by` (`observed_by`),
  KEY `idx_competitor` (`competitor_name`),
  KEY `idx_observation_date` (`observation_date`),
  CONSTRAINT `competitive_equipment_snapshots_ibfk_1` FOREIGN KEY (`observed_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `competitive_equipment_snapshots`
--

LOCK TABLES `competitive_equipment_snapshots` WRITE;
/*!40000 ALTER TABLE `competitive_equipment_snapshots` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `competitive_equipment_snapshots` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `consolidated_proforma`
--

DROP TABLE IF EXISTS `consolidated_proforma`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `consolidated_proforma` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `assumption_set_id` int(11) NOT NULL,
  `projection_date` date NOT NULL,
  `period_type` enum('monthly','quarterly','annual') DEFAULT 'monthly',
  `total_revenue` decimal(15,2) NOT NULL DEFAULT 0.00,
  `total_cogs` decimal(15,2) NOT NULL DEFAULT 0.00,
  `labor_costs` decimal(15,2) DEFAULT 0.00 COMMENT 'Total labor costs from equipment',
  `energy_costs` decimal(15,2) DEFAULT 0.00 COMMENT 'Total energy costs',
  `equipment_operating_costs` decimal(15,2) DEFAULT 0.00 COMMENT 'Total equipment operating costs',
  `gross_profit` decimal(15,2) NOT NULL DEFAULT 0.00,
  `gross_margin_pct` decimal(5,2) NOT NULL DEFAULT 0.00,
  `total_opex` decimal(15,2) NOT NULL DEFAULT 0.00,
  `ebitda` decimal(15,2) NOT NULL DEFAULT 0.00,
  `depreciation` decimal(15,2) NOT NULL DEFAULT 0.00,
  `equipment_depreciation` decimal(15,2) DEFAULT 0.00 COMMENT 'Equipment depreciation',
  `ebit` decimal(15,2) NOT NULL DEFAULT 0.00,
  `interest_expense` decimal(15,2) NOT NULL DEFAULT 0.00,
  `tax_expense` decimal(15,2) NOT NULL DEFAULT 0.00,
  `net_income` decimal(15,2) NOT NULL DEFAULT 0.00,
  `operating_cash_flow` decimal(15,2) NOT NULL DEFAULT 0.00,
  `capex` decimal(15,2) NOT NULL DEFAULT 0.00,
  `free_cash_flow` decimal(15,2) NOT NULL DEFAULT 0.00,
  `cash` decimal(15,2) NOT NULL DEFAULT 0.00,
  `accounts_receivable` decimal(15,2) NOT NULL DEFAULT 0.00,
  `inventory` decimal(15,2) NOT NULL DEFAULT 0.00,
  `total_current_assets` decimal(15,2) NOT NULL DEFAULT 0.00,
  `net_ppe` decimal(15,2) NOT NULL DEFAULT 0.00,
  `total_assets` decimal(15,2) NOT NULL DEFAULT 0.00,
  `accounts_payable` decimal(15,2) NOT NULL DEFAULT 0.00,
  `debt_balance` decimal(15,2) NOT NULL DEFAULT 0.00,
  `total_liabilities` decimal(15,2) NOT NULL DEFAULT 0.00,
  `equity` decimal(15,2) NOT NULL DEFAULT 0.00,
  `total_capacity_hours` decimal(12,2) NOT NULL DEFAULT 0.00,
  `utilized_capacity_hours` decimal(12,2) NOT NULL DEFAULT 0.00,
  `available_capacity_hours` decimal(12,2) DEFAULT 0.00 COMMENT 'Available capacity hours',
  `capacity_gap_hours` decimal(12,2) DEFAULT 0.00 COMMENT 'Capacity shortfall hours',
  `recommended_machines` decimal(6,2) DEFAULT 0.00 COMMENT 'Additional machines recommended',
  `lost_revenue_from_capacity` decimal(15,2) DEFAULT 0.00 COMMENT 'Revenue lost due to capacity constraints',
  `capacity_utilization_pct` decimal(5,2) NOT NULL DEFAULT 0.00,
  `capacity_constrained` tinyint(1) DEFAULT 0 COMMENT 'Is this period capacity constrained',
  `generated_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `uk_set_date_period` (`assumption_set_id`,`projection_date`,`period_type`),
  KEY `idx_set` (`assumption_set_id`),
  KEY `idx_date` (`projection_date`),
  KEY `idx_period` (`period_type`),
  KEY `idx_proforma_capacity` (`assumption_set_id`,`capacity_constrained`),
  KEY `idx_proforma_date` (`projection_date`,`period_type`),
  CONSTRAINT `consolidated_proforma_ibfk_1` FOREIGN KEY (`assumption_set_id`) REFERENCES `forecast_assumption_sets` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `consolidated_proforma`
--

LOCK TABLES `consolidated_proforma` WRITE;
/*!40000 ALTER TABLE `consolidated_proforma` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `consolidated_proforma` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `contract_items`
--

DROP TABLE IF EXISTS `contract_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `contract_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `contract_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned DEFAULT NULL,
  `description` text NOT NULL,
  `agreed_price` decimal(15,2) DEFAULT NULL,
  `minimum_quantity` int(11) DEFAULT NULL,
  `maximum_quantity` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `contract_id` (`contract_id`),
  KEY `product_id` (`product_id`),
  CONSTRAINT `contract_items_ibfk_1` FOREIGN KEY (`contract_id`) REFERENCES `supplier_contracts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `contract_items_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `contract_items`
--

LOCK TABLES `contract_items` WRITE;
/*!40000 ALTER TABLE `contract_items` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `contract_items` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `cost_allocation_rules`
--

DROP TABLE IF EXISTS `cost_allocation_rules`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `cost_allocation_rules` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `rule_name` varchar(100) NOT NULL COMMENT 'Name of allocation rule',
  `rule_type` enum('overhead','indirect_labor','utilities','rent','other') DEFAULT 'overhead',
  `allocation_method` enum('square_footage','labor_hours','machine_hours','revenue','units_produced','equal','manual') NOT NULL,
  `cost_pool_account_id` int(11) DEFAULT NULL COMMENT 'GL account for cost pool',
  `apply_to_products` tinyint(1) DEFAULT 1 COMMENT 'Apply to product costs',
  `apply_to_work_orders` tinyint(1) DEFAULT 1 COMMENT 'Apply to work orders',
  `is_active` tinyint(1) DEFAULT 1,
  `notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_rule_type` (`rule_type`),
  KEY `idx_active` (`is_active`),
  KEY `idx_allocation_method` (`allocation_method`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Rules for allocating overhead and indirect costs';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cost_allocation_rules`
--

LOCK TABLES `cost_allocation_rules` WRITE;
/*!40000 ALTER TABLE `cost_allocation_rules` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `cost_allocation_rules` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `credit_note_applications`
--

DROP TABLE IF EXISTS `credit_note_applications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `credit_note_applications` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `credit_note_id` int(10) unsigned NOT NULL,
  `invoice_id` int(10) unsigned NOT NULL,
  `amount_applied` decimal(15,2) NOT NULL,
  `application_date` date NOT NULL,
  `journal_entry_id` int(10) unsigned DEFAULT NULL COMMENT 'GL entry for this application',
  `is_reversed` tinyint(1) DEFAULT 0,
  `reversed_date` date DEFAULT NULL,
  `reversal_reason` text DEFAULT NULL,
  `reversed_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `created_by` int(10) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_credit_note` (`credit_note_id`),
  KEY `idx_invoice` (`invoice_id`),
  KEY `idx_application_date` (`application_date`),
  KEY `idx_reversed` (`is_reversed`),
  KEY `journal_entry_id` (`journal_entry_id`),
  KEY `created_by` (`created_by`),
  KEY `reversed_by` (`reversed_by`),
  CONSTRAINT `credit_note_applications_ibfk_1` FOREIGN KEY (`credit_note_id`) REFERENCES `credit_notes` (`id`) ON DELETE CASCADE,
  CONSTRAINT `credit_note_applications_ibfk_2` FOREIGN KEY (`invoice_id`) REFERENCES `invoices` (`id`) ON DELETE CASCADE,
  CONSTRAINT `credit_note_applications_ibfk_3` FOREIGN KEY (`journal_entry_id`) REFERENCES `journal_entries` (`id`) ON DELETE SET NULL,
  CONSTRAINT `credit_note_applications_ibfk_4` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `credit_note_applications_ibfk_5` FOREIGN KEY (`reversed_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `credit_note_applications`
--

LOCK TABLES `credit_note_applications` WRITE;
/*!40000 ALTER TABLE `credit_note_applications` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `credit_note_applications` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `credit_note_items`
--

DROP TABLE IF EXISTS `credit_note_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `credit_note_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `credit_note_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned DEFAULT NULL,
  `description` text NOT NULL,
  `quantity` decimal(10,2) NOT NULL,
  `unit_price` decimal(15,2) NOT NULL,
  `tax_rate` decimal(5,2) DEFAULT 0.00,
  `line_total` decimal(15,2) NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `credit_note_id` (`credit_note_id`),
  KEY `product_id` (`product_id`),
  CONSTRAINT `credit_note_items_ibfk_1` FOREIGN KEY (`credit_note_id`) REFERENCES `credit_notes` (`id`) ON DELETE CASCADE,
  CONSTRAINT `credit_note_items_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `credit_note_items`
--

LOCK TABLES `credit_note_items` WRITE;
/*!40000 ALTER TABLE `credit_note_items` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `credit_note_items` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `credit_notes`
--

DROP TABLE IF EXISTS `credit_notes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `credit_notes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `credit_note_number` varchar(50) NOT NULL,
  `invoice_id` int(10) unsigned NOT NULL,
  `customer_id` int(10) unsigned NOT NULL,
  `issue_date` date NOT NULL,
  `reason` varchar(255) DEFAULT NULL,
  `subtotal` decimal(15,2) DEFAULT 0.00,
  `tax_amount` decimal(15,2) DEFAULT 0.00,
  `total_amount` decimal(15,2) DEFAULT 0.00,
  `applied_amount` decimal(15,2) DEFAULT 0.00,
  `status` enum('draft','issued','applied','void') DEFAULT 'draft',
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `credit_note_number` (`credit_note_number`),
  KEY `invoice_id` (`invoice_id`),
  KEY `customer_id` (`customer_id`),
  KEY `created_by` (`created_by`),
  KEY `idx_credit_notes_deleted_at` (`deleted_at`),
  CONSTRAINT `credit_notes_ibfk_1` FOREIGN KEY (`invoice_id`) REFERENCES `invoices` (`id`),
  CONSTRAINT `credit_notes_ibfk_2` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`),
  CONSTRAINT `credit_notes_ibfk_3` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `credit_notes`
--

LOCK TABLES `credit_notes` WRITE;
/*!40000 ALTER TABLE `credit_notes` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `credit_notes` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `crm_customer_notes`
--

DROP TABLE IF EXISTS `crm_customer_notes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `crm_customer_notes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `customer_id` int(10) unsigned NOT NULL,
  `note_text` text NOT NULL,
  `is_important` tinyint(1) DEFAULT 0,
  `user_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `customer_id` (`customer_id`),
  KEY `user_id` (`user_id`),
  CONSTRAINT `crm_customer_notes_ibfk_1` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE,
  CONSTRAINT `crm_customer_notes_ibfk_2` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `crm_customer_notes`
--

LOCK TABLES `crm_customer_notes` WRITE;
/*!40000 ALTER TABLE `crm_customer_notes` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `crm_customer_notes` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `crm_customer_tags`
--

DROP TABLE IF EXISTS `crm_customer_tags`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `crm_customer_tags` (
  `customer_id` int(10) unsigned NOT NULL,
  `tag_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`customer_id`,`tag_id`),
  KEY `tag_id` (`tag_id`),
  CONSTRAINT `crm_customer_tags_ibfk_1` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE,
  CONSTRAINT `crm_customer_tags_ibfk_2` FOREIGN KEY (`tag_id`) REFERENCES `crm_tags` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `crm_customer_tags`
--

LOCK TABLES `crm_customer_tags` WRITE;
/*!40000 ALTER TABLE `crm_customer_tags` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `crm_customer_tags` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `crm_documents`
--

DROP TABLE IF EXISTS `crm_documents`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `crm_documents` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `customer_id` int(10) unsigned NOT NULL,
  `document_name` varchar(255) NOT NULL,
  `document_type` enum('contract','proposal','invoice','agreement','nda','other') DEFAULT 'other',
  `file_path` varchar(500) NOT NULL,
  `file_size` int(10) unsigned DEFAULT NULL COMMENT 'Size in bytes',
  `mime_type` varchar(100) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `version` varchar(20) DEFAULT '1.0',
  `is_signed` tinyint(1) DEFAULT 0,
  `signed_date` date DEFAULT NULL,
  `expiry_date` date DEFAULT NULL,
  `is_confidential` tinyint(1) DEFAULT 0,
  `uploaded_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `customer_id` (`customer_id`),
  KEY `uploaded_by` (`uploaded_by`),
  KEY `document_type` (`document_type`),
  CONSTRAINT `crm_documents_ibfk_1` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE,
  CONSTRAINT `crm_documents_ibfk_2` FOREIGN KEY (`uploaded_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `crm_documents`
--

LOCK TABLES `crm_documents` WRITE;
/*!40000 ALTER TABLE `crm_documents` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `crm_documents` VALUES
(3,46,'test','proposal','uploads/crm/documents/1763696109_NDA2025.pdf',187512,'application/pdf','','1.0',0,NULL,NULL,0,1,'2025-11-21 03:35:09','2025-11-21 03:35:09');
/*!40000 ALTER TABLE `crm_documents` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `crm_opportunities`
--

DROP TABLE IF EXISTS `crm_opportunities`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `crm_opportunities` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `customer_id` int(10) unsigned NOT NULL,
  `primary_contact_id` int(10) unsigned DEFAULT NULL COMMENT 'Primary contact person for this opportunity',
  `related_to` int(10) unsigned DEFAULT NULL COMMENT 'Link to parent opportunity for cross-sell/upsell',
  `opportunity_name` varchar(255) NOT NULL,
  `opportunity_value` decimal(15,2) DEFAULT 0.00,
  `stage` enum('lead','qualified','proposal','negotiation','closed_won','closed_lost') DEFAULT 'lead',
  `requires_nda` tinyint(1) DEFAULT 0,
  `nda_status` enum('not_required','pending','sent','signed','declined','expired') DEFAULT 'not_required',
  `block_quote_without_nda` tinyint(1) DEFAULT 1,
  `last_stage_change_at` timestamp NULL DEFAULT NULL COMMENT 'When the stage was last changed',
  `probability` int(11) DEFAULT 0 COMMENT 'Percentage 0-100',
  `expected_close_date` date DEFAULT NULL,
  `next_activity_date` date DEFAULT NULL COMMENT 'Date of next scheduled activity',
  `last_activity_date` datetime DEFAULT NULL COMMENT 'When the last activity occurred',
  `actual_close_date` date DEFAULT NULL,
  `won_time` timestamp NULL DEFAULT NULL COMMENT 'When the deal was won',
  `lost_time` timestamp NULL DEFAULT NULL COMMENT 'When the deal was lost',
  `closed_at` timestamp NULL DEFAULT NULL COMMENT 'When the deal was closed (won or lost)',
  `last_email_sent_at` timestamp NULL DEFAULT NULL COMMENT 'Last outgoing email timestamp',
  `last_email_received_at` timestamp NULL DEFAULT NULL COMMENT 'Last incoming email timestamp',
  `win_reason` text DEFAULT NULL COMMENT 'Why the deal was won',
  `loss_reason` text DEFAULT NULL COMMENT 'Why the deal was lost',
  `source` varchar(100) DEFAULT NULL COMMENT 'Lead source: Website, Referral, Cold Call, etc.',
  `assigned_to` int(10) unsigned DEFAULT NULL COMMENT 'Primary owner (for backward compatibility, use opportunity_assignments for full list)',
  `description` text DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `status` enum('active','won','lost','cancelled') DEFAULT 'active',
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `battery_application` varchar(255) DEFAULT NULL COMMENT 'Battery use case/application',
  `voltage` varchar(50) DEFAULT NULL COMMENT 'Voltage requirement (e.g., 14.8V)',
  `desired_capacity` varchar(50) DEFAULT NULL COMMENT 'Capacity requirement (e.g., 20AH)',
  `chemistry` varchar(100) DEFAULT NULL COMMENT 'Battery chemistry type (e.g., LiFePO4, NCM)',
  `battery_length` decimal(10,2) DEFAULT NULL COMMENT 'Length in inches',
  `battery_width` decimal(10,2) DEFAULT NULL COMMENT 'Width in inches',
  `battery_height` decimal(10,2) DEFAULT NULL COMMENT 'Height in inches',
  `continuous_discharge` varchar(50) DEFAULT NULL COMMENT 'Continuous discharge in amps',
  `peak_discharge` varchar(50) DEFAULT NULL COMMENT 'Peak discharge in amps',
  `battery_case_type` varchar(100) DEFAULT NULL COMMENT 'Case/enclosure type',
  `communication_bms` varchar(255) DEFAULT NULL COMMENT 'Communication protocol/BMS type',
  `additional_details` text DEFAULT NULL COMMENT 'Additional project details',
  `annual_quantity` varchar(50) DEFAULT NULL COMMENT 'Expected annual order quantity',
  PRIMARY KEY (`id`),
  KEY `customer_id` (`customer_id`),
  KEY `assigned_to` (`assigned_to`),
  KEY `created_by` (`created_by`),
  KEY `stage` (`stage`),
  KEY `status` (`status`),
  KEY `idx_primary_contact` (`primary_contact_id`),
  KEY `idx_related_to` (`related_to`),
  KEY `idx_last_stage_change` (`last_stage_change_at`),
  KEY `idx_next_activity` (`next_activity_date`),
  KEY `idx_last_activity` (`last_activity_date`),
  KEY `idx_won_time` (`won_time`),
  KEY `idx_lost_time` (`lost_time`),
  KEY `idx_closed_at` (`closed_at`),
  KEY `idx_requires_nda` (`requires_nda`),
  KEY `idx_nda_status` (`nda_status`),
  CONSTRAINT `crm_opportunities_ibfk_1` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE,
  CONSTRAINT `crm_opportunities_ibfk_2` FOREIGN KEY (`assigned_to`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `crm_opportunities_ibfk_3` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=86 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `crm_opportunities`
--

LOCK TABLES `crm_opportunities` WRITE;
/*!40000 ALTER TABLE `crm_opportunities` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `crm_opportunities` VALUES
(23,46,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-09-19 19:32:00',85,NULL,'2025-10-29','2025-11-01 12:30:00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-027-111325',NULL,'active',1,'2025-09-19 19:32:00','2025-11-14 23:57:00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(24,47,NULL,NULL,'Battery Pack',0.00,'negotiation',0,'signed',1,'2025-11-13 15:33:28',85,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',5,'Opportunity based on battery quote(s). Quote numbers: Q-008-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-12-03 19:41:58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(25,48,NULL,NULL,'Battery Pack',0.00,'lead',0,'not_required',1,'2025-11-24 13:25:26',50,NULL,NULL,'2025-11-24 08:25:26',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-013-111325 - convo was good!',NULL,'active',1,'2025-11-13 15:33:28','2025-11-24 13:51:11',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(26,49,NULL,NULL,'Battery Pack',0.00,'qualified',0,'not_required',1,'2025-11-25 23:09:08',25,NULL,NULL,'2025-11-25 18:09:08',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-006-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-25 23:09:08',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(27,50,NULL,NULL,'Battery Pack',0.00,'qualified',0,'not_required',1,'2025-11-26 00:15:41',25,NULL,NULL,'2025-11-25 19:15:41',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-041-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-26 00:15:41',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(28,51,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-004-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(29,52,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-005-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(30,53,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-014-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(31,54,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-023-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(32,55,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-015-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(33,56,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-048-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(34,57,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-011-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(35,58,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-019-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(36,59,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-036-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(37,60,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-010-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(38,61,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-044-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(39,62,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-033-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(40,63,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-009-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(41,64,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-007-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(42,65,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-026-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(43,66,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-021-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(44,67,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-022-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(45,68,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-001-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(46,69,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-002-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(47,70,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-047-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(48,71,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-029-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(49,72,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-039-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(50,73,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-028-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(51,74,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-003-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(52,75,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-012-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(53,76,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-034-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(54,77,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-043-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(55,78,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-020-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(56,79,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-025-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(57,80,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-018-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(58,81,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-038-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(59,82,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-017-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(60,83,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-031-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(61,84,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-037-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(62,85,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-032-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(63,86,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-030-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(64,87,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-040-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(65,88,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-045-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(66,89,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-016-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(67,90,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-024-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(68,91,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-035-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(69,92,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-046-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(70,93,NULL,NULL,'Battery Pack',0.00,'proposal',0,'not_required',1,'2025-11-13 15:33:28',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quote',NULL,'Opportunity based on battery quote(s). Quote numbers: Q-042-111325',NULL,'active',1,'2025-11-13 15:33:28','2025-11-14 23:38:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `crm_opportunities` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `crm_opportunity_activities`
--

DROP TABLE IF EXISTS `crm_opportunity_activities`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `crm_opportunity_activities` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `opportunity_id` int(10) unsigned NOT NULL,
  `activity_type` enum('note','call','meeting','email','status_change') NOT NULL,
  `subject` varchar(255) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `activity_date` datetime DEFAULT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `opportunity_id` (`opportunity_id`),
  KEY `user_id` (`user_id`),
  CONSTRAINT `crm_opportunity_activities_ibfk_1` FOREIGN KEY (`opportunity_id`) REFERENCES `crm_opportunities` (`id`) ON DELETE CASCADE,
  CONSTRAINT `crm_opportunity_activities_ibfk_2` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `crm_opportunity_activities`
--

LOCK TABLES `crm_opportunity_activities` WRITE;
/*!40000 ALTER TABLE `crm_opportunity_activities` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `crm_opportunity_activities` VALUES
(3,35,'status_change','Stage Changed','Moved from Proposal to Negotiation','2025-11-14 14:42:53',1,'2025-11-14 19:42:53','2025-11-14 19:42:53'),
(4,35,'status_change','Stage Changed','Moved from Negotiation to Proposal','2025-11-14 14:42:59',1,'2025-11-14 19:42:59','2025-11-14 19:42:59'),
(5,25,'status_change','Stage Changed','Moved from Proposal to Qualified','2025-11-24 08:25:17',1,'2025-11-24 13:25:17','2025-11-24 13:25:17'),
(6,25,'status_change','Stage Changed','Moved from Qualified to Lead','2025-11-24 08:25:26',1,'2025-11-24 13:25:26','2025-11-24 13:25:26'),
(7,26,'status_change','Stage Changed','Moved from Proposal to Qualified','2025-11-24 08:25:28',1,'2025-11-24 13:25:28','2025-11-24 13:25:28'),
(8,26,'status_change','Stage Changed','Moved from Qualified to Lead','2025-11-25 18:09:03',1,'2025-11-25 23:09:03','2025-11-25 23:09:03'),
(9,26,'status_change','Stage Changed','Moved from Lead to Qualified','2025-11-25 18:09:08',1,'2025-11-25 23:09:08','2025-11-25 23:09:08'),
(10,27,'status_change','Stage Changed','Moved from Proposal to Qualified','2025-11-25 19:15:41',1,'2025-11-26 00:15:41','2025-11-26 00:15:41');
/*!40000 ALTER TABLE `crm_opportunity_activities` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `crm_support_ticket_attachments`
--

DROP TABLE IF EXISTS `crm_support_ticket_attachments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `crm_support_ticket_attachments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `ticket_id` int(10) unsigned NOT NULL,
  `file_name` varchar(255) NOT NULL,
  `file_path` varchar(500) NOT NULL,
  `file_size` int(10) unsigned NOT NULL COMMENT 'Size in bytes',
  `mime_type` varchar(100) DEFAULT NULL,
  `uploaded_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `ticket_id` (`ticket_id`),
  KEY `uploaded_by` (`uploaded_by`),
  CONSTRAINT `crm_support_ticket_attachments_ibfk_1` FOREIGN KEY (`ticket_id`) REFERENCES `crm_support_tickets` (`id`) ON DELETE CASCADE,
  CONSTRAINT `crm_support_ticket_attachments_ibfk_2` FOREIGN KEY (`uploaded_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `crm_support_ticket_attachments`
--

LOCK TABLES `crm_support_ticket_attachments` WRITE;
/*!40000 ALTER TABLE `crm_support_ticket_attachments` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `crm_support_ticket_attachments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `crm_support_ticket_responses`
--

DROP TABLE IF EXISTS `crm_support_ticket_responses`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `crm_support_ticket_responses` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `ticket_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `response_text` text NOT NULL,
  `is_internal` tinyint(1) DEFAULT 0 COMMENT 'Internal notes not visible to customer',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `ticket_id` (`ticket_id`),
  KEY `user_id` (`user_id`),
  CONSTRAINT `crm_support_ticket_responses_ibfk_1` FOREIGN KEY (`ticket_id`) REFERENCES `crm_support_tickets` (`id`) ON DELETE CASCADE,
  CONSTRAINT `crm_support_ticket_responses_ibfk_2` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `crm_support_ticket_responses`
--

LOCK TABLES `crm_support_ticket_responses` WRITE;
/*!40000 ALTER TABLE `crm_support_ticket_responses` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `crm_support_ticket_responses` VALUES
(1,1,1,'test',0,'2025-10-30 00:45:45','2025-11-11 00:36:44');
/*!40000 ALTER TABLE `crm_support_ticket_responses` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `crm_support_tickets`
--

DROP TABLE IF EXISTS `crm_support_tickets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `crm_support_tickets` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `ticket_number` varchar(50) NOT NULL,
  `customer_id` int(10) unsigned NOT NULL,
  `contact_id` int(10) unsigned DEFAULT NULL COMMENT 'Reference to customer_contacts',
  `subject` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `priority` enum('low','medium','high','urgent') DEFAULT 'medium',
  `status` enum('open','in_progress','pending','resolved','closed','cancelled') DEFAULT 'open',
  `category` varchar(100) DEFAULT NULL COMMENT 'Technical, Billing, General, etc.',
  `assigned_to` int(10) unsigned DEFAULT NULL,
  `resolution_notes` text DEFAULT NULL,
  `opened_at` datetime DEFAULT current_timestamp(),
  `closed_at` datetime DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `ticket_number` (`ticket_number`),
  KEY `customer_id` (`customer_id`),
  KEY `contact_id` (`contact_id`),
  KEY `assigned_to` (`assigned_to`),
  KEY `status` (`status`),
  KEY `priority` (`priority`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `crm_support_tickets_ibfk_1` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE,
  CONSTRAINT `crm_support_tickets_ibfk_2` FOREIGN KEY (`contact_id`) REFERENCES `customer_contacts` (`id`) ON DELETE SET NULL,
  CONSTRAINT `crm_support_tickets_ibfk_3` FOREIGN KEY (`assigned_to`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `crm_support_tickets_ibfk_4` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `crm_support_tickets`
--

LOCK TABLES `crm_support_tickets` WRITE;
/*!40000 ALTER TABLE `crm_support_tickets` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `crm_support_tickets` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `crm_tags`
--

DROP TABLE IF EXISTS `crm_tags`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `crm_tags` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL,
  `color` varchar(7) DEFAULT '#3498db' COMMENT 'Hex color code',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `crm_tags`
--

LOCK TABLES `crm_tags` WRITE;
/*!40000 ALTER TABLE `crm_tags` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `crm_tags` VALUES
(1,'VIP','#e74c3c','2025-10-29 23:45:39','2025-11-11 00:36:44'),
(2,'Partner','#9b59b6','2025-10-29 23:45:39','2025-11-11 00:36:44'),
(3,'Prospect','#3498db','2025-10-29 23:45:39','2025-11-11 00:36:44'),
(4,'Active','#2ecc71','2025-10-29 23:45:39','2025-11-11 00:36:44'),
(5,'Inactive','#95a5a6','2025-10-29 23:45:39','2025-11-11 00:36:44'),
(6,'High Value','#f39c12','2025-10-29 23:45:39','2025-11-11 00:36:44'),
(7,'Enterprise','#1abc9c','2025-10-29 23:45:39','2025-11-11 00:36:44'),
(8,'SMB','#34495e','2025-10-29 23:45:39','2025-11-11 00:36:44');
/*!40000 ALTER TABLE `crm_tags` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `currencies`
--

DROP TABLE IF EXISTS `currencies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `currencies` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `code` varchar(3) NOT NULL COMMENT 'ISO 4217 currency code',
  `name` varchar(100) NOT NULL,
  `symbol` varchar(10) NOT NULL,
  `decimal_places` int(11) DEFAULT 2,
  `is_base_currency` tinyint(1) DEFAULT 0,
  `is_active` tinyint(1) DEFAULT 1,
  `display_order` int(11) DEFAULT 0,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `code` (`code`),
  KEY `idx_is_active` (`is_active`),
  KEY `idx_is_base` (`is_base_currency`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `currencies`
--

LOCK TABLES `currencies` WRITE;
/*!40000 ALTER TABLE `currencies` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `currencies` VALUES
(1,'USD','US Dollar','$',2,1,1,1,'2025-11-12 17:29:39','2025-11-12 17:29:39'),
(2,'EUR','Euro','€',2,0,1,2,'2025-11-12 17:29:39','2025-11-12 17:29:39'),
(3,'GBP','British Pound','£',2,0,1,3,'2025-11-12 17:29:39','2025-11-12 17:29:39'),
(4,'JPY','Japanese Yen','¥',0,0,1,4,'2025-11-12 17:29:39','2025-11-12 17:29:39'),
(5,'CAD','Canadian Dollar','C$',2,0,1,5,'2025-11-12 17:29:39','2025-11-12 17:29:39'),
(6,'AUD','Australian Dollar','A$',2,0,1,6,'2025-11-12 17:29:39','2025-11-12 17:29:39'),
(7,'CHF','Swiss Franc','CHF',2,0,1,7,'2025-11-12 17:29:39','2025-11-12 17:29:39'),
(8,'CNY','Chinese Yuan','¥',2,0,1,8,'2025-11-12 17:29:39','2025-11-12 17:29:39'),
(9,'INR','Indian Rupee','₹',2,0,1,9,'2025-11-12 17:29:39','2025-11-12 17:29:39'),
(10,'MXN','Mexican Peso','MX$',2,0,1,10,'2025-11-12 17:29:39','2025-11-12 17:29:39');
/*!40000 ALTER TABLE `currencies` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `currency_revaluations`
--

DROP TABLE IF EXISTS `currency_revaluations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `currency_revaluations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `revaluation_date` date NOT NULL,
  `currency_id` int(10) unsigned NOT NULL,
  `exchange_rate_id` int(10) unsigned DEFAULT NULL,
  `account_id` int(10) unsigned DEFAULT NULL COMMENT 'Chart of accounts ID',
  `original_amount` decimal(15,2) NOT NULL,
  `original_currency_id` int(10) unsigned NOT NULL,
  `revalued_amount` decimal(15,2) NOT NULL,
  `gain_loss_amount` decimal(15,2) NOT NULL,
  `gain_loss_type` enum('realized','unrealized') DEFAULT 'unrealized',
  `journal_entry_id` int(10) unsigned DEFAULT NULL COMMENT 'Link to journal entry',
  `status` enum('draft','posted','reversed') DEFAULT 'draft',
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `original_currency_id` (`original_currency_id`),
  KEY `exchange_rate_id` (`exchange_rate_id`),
  KEY `account_id` (`account_id`),
  KEY `journal_entry_id` (`journal_entry_id`),
  KEY `created_by` (`created_by`),
  KEY `idx_revaluation_date` (`revaluation_date`),
  KEY `idx_currency` (`currency_id`),
  KEY `idx_status` (`status`),
  CONSTRAINT `currency_revaluations_ibfk_1` FOREIGN KEY (`currency_id`) REFERENCES `currencies` (`id`) ON DELETE CASCADE,
  CONSTRAINT `currency_revaluations_ibfk_2` FOREIGN KEY (`original_currency_id`) REFERENCES `currencies` (`id`) ON DELETE CASCADE,
  CONSTRAINT `currency_revaluations_ibfk_3` FOREIGN KEY (`exchange_rate_id`) REFERENCES `exchange_rates` (`id`) ON DELETE SET NULL,
  CONSTRAINT `currency_revaluations_ibfk_4` FOREIGN KEY (`account_id`) REFERENCES `chart_of_accounts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `currency_revaluations_ibfk_5` FOREIGN KEY (`journal_entry_id`) REFERENCES `journal_entries` (`id`) ON DELETE SET NULL,
  CONSTRAINT `currency_revaluations_ibfk_6` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `currency_revaluations`
--

LOCK TABLES `currency_revaluations` WRITE;
/*!40000 ALTER TABLE `currency_revaluations` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `currency_revaluations` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `custom_reports`
--

DROP TABLE IF EXISTS `custom_reports`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `custom_reports` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `category` varchar(100) DEFAULT NULL,
  `query_sql` text NOT NULL,
  `parameters` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Query parameters with default values' CHECK (json_valid(`parameters`)),
  `columns` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Column definitions for display' CHECK (json_valid(`columns`)),
  `is_public` tinyint(1) DEFAULT 0,
  `created_by` int(10) unsigned NOT NULL,
  `last_run_at` timestamp NULL DEFAULT NULL,
  `run_count` int(11) DEFAULT 0,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_created_by` (`created_by`),
  KEY `idx_category` (`category`),
  CONSTRAINT `custom_reports_ibfk_1` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `custom_reports`
--

LOCK TABLES `custom_reports` WRITE;
/*!40000 ALTER TABLE `custom_reports` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `custom_reports` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `customer_activities`
--

DROP TABLE IF EXISTS `customer_activities`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `customer_activities` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `customer_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `activity_type` enum('note','call','meeting','email','task') NOT NULL,
  `subject` varchar(255) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `activity_date` datetime DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `customer_id` (`customer_id`),
  KEY `user_id` (`user_id`),
  CONSTRAINT `customer_activities_ibfk_1` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE,
  CONSTRAINT `customer_activities_ibfk_2` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_activities`
--

LOCK TABLES `customer_activities` WRITE;
/*!40000 ALTER TABLE `customer_activities` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `customer_activities` VALUES
(1,2,1,'email','Test','','2025-10-30 20:57:00','2025-10-30 00:58:01','2025-11-11 00:36:44'),
(2,16,1,'call','Discuss purchase','','2025-11-05 11:49:00','2025-11-05 16:49:18','2025-11-11 00:36:44'),
(3,46,1,'note','test','test','2025-12-01 22:02:00','2025-12-02 03:02:36','2025-12-02 03:02:36');
/*!40000 ALTER TABLE `customer_activities` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `customer_contacts`
--

DROP TABLE IF EXISTS `customer_contacts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `customer_contacts` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `contact_type` enum('customer','client') DEFAULT 'customer',
  `customer_id` int(10) unsigned NOT NULL,
  `first_name` varchar(100) NOT NULL,
  `last_name` varchar(100) DEFAULT NULL,
  `email` varchar(255) DEFAULT NULL,
  `secondary_email` varchar(255) DEFAULT NULL,
  `tertiary_email` varchar(255) DEFAULT NULL,
  `phone` varchar(20) DEFAULT NULL,
  `position` varchar(100) DEFAULT NULL,
  `is_primary` tinyint(1) DEFAULT 0,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `customer_id` (`customer_id`),
  KEY `idx_secondary_email` (`secondary_email`),
  KEY `idx_tertiary_email` (`tertiary_email`),
  KEY `idx_deleted_at` (`deleted_at`),
  CONSTRAINT `customer_contacts_ibfk_1` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=70 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_contacts`
--

LOCK TABLES `customer_contacts` WRITE;
/*!40000 ALTER TABLE `customer_contacts` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `customer_contacts` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `customer_credit_balances`
--

DROP TABLE IF EXISTS `customer_credit_balances`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `customer_credit_balances` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `customer_id` int(10) unsigned NOT NULL,
  `total_credit_issued` decimal(15,2) DEFAULT 0.00,
  `total_credit_applied` decimal(15,2) DEFAULT 0.00,
  `available_credit` decimal(15,2) DEFAULT 0.00,
  `credit_note_count` int(11) DEFAULT 0,
  `last_credit_date` date DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `customer_id` (`customer_id`),
  KEY `idx_customer` (`customer_id`),
  KEY `idx_available` (`available_credit`),
  CONSTRAINT `customer_credit_balances_ibfk_1` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_credit_balances`
--

LOCK TABLES `customer_credit_balances` WRITE;
/*!40000 ALTER TABLE `customer_credit_balances` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `customer_credit_balances` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `customer_documents`
--

DROP TABLE IF EXISTS `customer_documents`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `customer_documents` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `customer_id` int(10) unsigned NOT NULL,
  `file_name` varchar(255) NOT NULL,
  `file_path` varchar(500) NOT NULL,
  `file_size` int(10) unsigned NOT NULL,
  `mime_type` varchar(100) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `uploaded_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `customer_id` (`customer_id`),
  KEY `uploaded_by` (`uploaded_by`),
  CONSTRAINT `customer_documents_ibfk_1` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE,
  CONSTRAINT `customer_documents_ibfk_2` FOREIGN KEY (`uploaded_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_documents`
--

LOCK TABLES `customer_documents` WRITE;
/*!40000 ALTER TABLE `customer_documents` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `customer_documents` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `customers`
--

DROP TABLE IF EXISTS `customers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `customers` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `customer_type` enum('individual','company') DEFAULT 'individual',
  `company_type` enum('client','customer') DEFAULT 'customer',
  `company_name` varchar(255) DEFAULT NULL,
  `first_name` varchar(100) DEFAULT NULL,
  `last_name` varchar(100) DEFAULT NULL,
  `email` varchar(255) NOT NULL,
  `secondary_email` varchar(255) DEFAULT NULL,
  `tertiary_email` varchar(255) DEFAULT NULL,
  `phone` varchar(20) DEFAULT NULL,
  `mobile` varchar(20) DEFAULT NULL,
  `website` varchar(255) DEFAULT NULL,
  `tax_id` varchar(50) DEFAULT NULL,
  `billing_address` text DEFAULT NULL,
  `billing_city` varchar(100) DEFAULT NULL,
  `billing_state` varchar(100) DEFAULT NULL,
  `billing_zip` varchar(20) DEFAULT NULL,
  `billing_country` varchar(100) DEFAULT NULL,
  `shipping_address` text DEFAULT NULL,
  `shipping_city` varchar(100) DEFAULT NULL,
  `shipping_state` varchar(100) DEFAULT NULL,
  `shipping_zip` varchar(20) DEFAULT NULL,
  `shipping_country` varchar(100) DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `status` enum('active','inactive') DEFAULT 'active',
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  `tax_exempt` tinyint(1) DEFAULT 0 COMMENT 'Quick flag for tax exempt status',
  `tax_jurisdiction_id` int(10) unsigned DEFAULT NULL COMMENT 'Primary tax jurisdiction',
  PRIMARY KEY (`id`),
  KEY `email` (`email`),
  KEY `created_by` (`created_by`),
  KEY `idx_secondary_email` (`secondary_email`),
  KEY `idx_tertiary_email` (`tertiary_email`),
  KEY `idx_tax_exempt` (`tax_exempt`),
  KEY `idx_company_type` (`company_type`),
  KEY `idx_deleted_at` (`deleted_at`),
  KEY `idx_search_active` (`status`,`company_name`),
  FULLTEXT KEY `ft_customer_search` (`company_name`,`first_name`,`last_name`,`email`),
  CONSTRAINT `customers_ibfk_1` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=133 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customers`
--

LOCK TABLES `customers` WRITE;
/*!40000 ALTER TABLE `customers` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `customers` VALUES
(46,'company','customer','4 Patriots','Contact','Person','4patriots@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(47,'company','customer','AeroVironment','Contact','Person','aerovironment@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(48,'company','customer','AirBus x AATLO','Contact','Person','airbusxaatlo@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(49,'company','customer','BAE Systems','Contact','Person','baesystems@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(50,'company','customer','Bluetti','Contact','Person','bluetti@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(51,'company','customer','Boeing','Contact','Person','boeing@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(52,'company','customer','Boeing 2','Contact','Person','boeing2@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(53,'company','customer','Boeing 3','Contact','Person','boeing3@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(54,'company','customer','Booz Allen Hamilton Inc','Contact','Person','boozallenhamiltoninc@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(55,'company','customer','Collins Aerospace','Contact','Person','collinsaerospace@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(56,'company','customer','Cubic Corporation','Contact','Person','cubiccorporation@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(57,'company','customer','Curtiss-Wright','Contact','Person','curtiss-wright@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(58,'company','customer','Eagle Picher Technologies','Contact','Person','eaglepichertechnologies@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(59,'company','customer','Enphase Energy','Contact','Person','enphaseenergy@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(60,'company','customer','Federal Bureau of Investigation','Contact','Person','federalbureauofinvestigation@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(61,'company','customer','Figure AI','Contact','Person','figureai@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(62,'company','customer','Fortress Power','Contact','Person','fortresspower@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(63,'company','customer','General Dynamics','Contact','Person','generaldynamics@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(64,'company','customer','L3 Harris','Contact','Person','l3harris@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(65,'company','customer','LG Electronics','Contact','Person','lgelectronics@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(66,'company','customer','LiiON Inc','Contact','Person','liioninc@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(67,'company','customer','Lithionics Battery','Contact','Person','lithionicsbattery@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(68,'company','customer','Lockheed Martin','Contact','Person','lockheedmartin@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(69,'company','customer','Lockheed Martin 2','Contact','Person','lockheedmartin2@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(70,'company','customer','Mistral Inc','Contact','Person','mistralinc@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(71,'company','customer','MPINarada','Contact','Person','mpinarada@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(72,'company','customer','NeoVolta','Contact','Person','neovolta@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(73,'company','customer','Nevados','Contact','Person','nevados@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(74,'company','customer','Northrop Grumman','Contact','Person','northropgrumman@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(75,'company','customer','Northrop Grumman 2','Contact','Person','northropgrumman2@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(76,'company','customer','Our Next Energy (ONE)','Contact','Person','ournextenergy(one)@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(77,'company','customer','Peppermint Robotics ','Contact','Person','peppermintrobotics@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(78,'company','customer','Power Sonic','Contact','Person','powersonic@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(79,'company','customer','PowerPole','Contact','Person','powerpole@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(80,'company','customer','Pratt / Miller','Contact','Person','pratt/miller@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(81,'company','customer','Prevalon Energy','Contact','Person','prevalonenergy@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(82,'company','customer','Roush','Contact','Person','roush@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(83,'company','customer','Siemens Energy','Contact','Person','siemensenergy@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(84,'company','customer','Siemens Energy 2','Contact','Person','siemensenergy2@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(85,'company','customer','Sol-Ark','Contact','Person','sol-ark@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(86,'company','customer','Solara Power','Contact','Person','solarapower@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(87,'company','customer','Sonnen Inc','Contact','Person','sonneninc@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(88,'company','customer','Swarmbotics','Contact','Person','swarmbotics@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(89,'company','customer','Tenacious International','Contact','Person','tenaciousinternational@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(90,'company','customer','Universal Solutions International','Contact','Person','universalsolutionsinternational@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(91,'company','customer','Vector Climate','Contact','Person','vectorclimate@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(92,'company','customer','Velocity Technology Solutions','Contact','Person','velocitytechnologysolutions@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(93,'company','customer','Yotta Energy ','Contact','Person','yottaenergy@example.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active',NULL,'2025-11-13 15:30:22','2025-11-13 15:30:22',NULL,0,NULL),
(112,'company','customer','Hyde Park Partners',NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Imported from Pipedrive\nOpen Deals: 0\nClosed Deals: 0\nPeople: 1','active',1,'2025-11-13 22:13:38','2025-11-15 16:28:22',NULL,0,NULL),
(113,'company','customer','VIU Global',NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Imported from Pipedrive\nOpen Deals: 0\nClosed Deals: 0\nPeople: 1','active',1,'2025-11-13 22:13:38','2025-11-15 16:28:25',NULL,0,NULL),
(115,'company','customer','General Dynamics Land Systems',NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Imported from Pipedrive\nOpen Deals: 0\nClosed Deals: 0\nPeople: 1','active',1,'2025-11-13 22:13:38','2025-11-14 18:20:14',NULL,0,NULL),
(116,'company','customer','HawkTV',NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Imported from Pipedrive\nOpen Deals: 0\nClosed Deals: 0\nPeople: 1','active',1,'2025-11-13 22:13:38','2025-11-14 18:20:17',NULL,0,NULL),
(117,'company','customer','Power Pole Geoff Contact',NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Imported from Pipedrive\nOpen Deals: 0\nClosed Deals: 0\nPeople: 1','active',1,'2025-11-13 22:13:38','2025-11-14 18:20:11',NULL,0,NULL),
(118,'company','customer','Cirnapro',NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Imported from Pipedrive\nOpen Deals: 0\nClosed Deals: 0\nPeople: 1','active',1,'2025-11-13 22:13:38','2025-11-14 18:20:20',NULL,0,NULL),
(119,'company','customer','Ontario Drive & Gear Limited',NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'66 Hinks Street New Hamburg Ontario N3A 2J5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Imported from Pipedrive\nOpen Deals: 0\nClosed Deals: 0\nPeople: 1','active',1,'2025-11-13 22:13:38','2025-11-14 18:20:23',NULL,0,NULL),
(121,'company','customer','YRC Freight— Urbandale, Iowa',NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Imported from Pipedrive\nOpen Deals: 0\nClosed Deals: 0\nPeople: 1','active',1,'2025-11-13 22:13:38','2025-11-14 18:20:31',NULL,0,NULL),
(122,'company','customer','Night Fishing Buoy',NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Imported from Pipedrive\nOpen Deals: 0\nClosed Deals: 1\nPeople: 1','active',1,'2025-11-13 22:13:38','2025-11-14 18:20:34',NULL,0,NULL),
(123,'company','customer','Immigration and Customs Enforcment',NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Imported from Pipedrive\nOpen Deals: 0\nClosed Deals: 1\nPeople: 1','active',1,'2025-11-13 22:13:38','2025-11-14 18:20:36',NULL,0,NULL),
(124,'company','customer','Tough Signal',NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Imported from Pipedrive\nOpen Deals: 0\nClosed Deals: 1\nPeople: 1','active',1,'2025-11-13 22:13:38','2025-11-14 18:20:39',NULL,0,NULL),
(125,'company','customer','Booz Allen Hamilton Inc.',NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Imported from Pipedrive\nOpen Deals: 0\nClosed Deals: 1\nPeople: 1','active',1,'2025-11-13 22:13:38','2025-11-14 18:20:40',NULL,0,NULL),
(126,'company','customer','HV Diagnostics',NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Imported from Pipedrive\nOpen Deals: 0\nClosed Deals: 1\nPeople: 2','active',1,'2025-11-13 22:13:38','2025-11-14 18:39:26',NULL,0,NULL),
(127,'company','customer','Obsidian Intergration',NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Imported from Pipedrive\nOpen Deals: 1\nClosed Deals: 0\nPeople: 2','active',1,'2025-11-13 22:13:38','2025-11-14 18:39:30',NULL,0,NULL),
(128,'company','customer','Andretti Autosports',NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Imported from Pipedrive\nOpen Deals: 0\nClosed Deals: 0\nPeople: 2','active',1,'2025-11-13 22:13:38','2025-11-14 18:39:34',NULL,0,NULL),
(129,'company','customer','GCC',NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Imported from Pipedrive\nOpen Deals: 0\nClosed Deals: 1\nPeople: 2','active',1,'2025-11-13 22:13:38','2025-11-14 18:39:35',NULL,0,NULL),
(130,'company','customer','AGV America',NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Imported from Pipedrive\nOpen Deals: 0\nClosed Deals: 0\nPeople: 1','active',1,'2025-11-13 22:13:38','2025-11-14 18:39:37',NULL,0,NULL),
(131,'company','customer','Toronto Coach Terminal Inc.',NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Imported from Pipedrive\nOpen Deals: 0\nClosed Deals: 1\nPeople: 2','active',1,'2025-11-13 22:13:38','2025-11-14 18:39:38',NULL,0,NULL),
(132,'company','client','Test Client','','','test@texclient.com','',NULL,'','','','','','','','','','','','','','','','active',1,'2025-11-13 14:47:07','2025-11-13 14:47:07',NULL,0,NULL);
/*!40000 ALTER TABLE `customers` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `dashboard_stat_cards`
--

DROP TABLE IF EXISTS `dashboard_stat_cards`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `dashboard_stat_cards` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `card_key` varchar(100) NOT NULL COMMENT 'Unique identifier like total_customers, pending_invoices',
  `title` varchar(255) NOT NULL COMMENT 'Display title like Total Customers',
  `icon` varchar(100) NOT NULL COMMENT 'Bootstrap icon class like bi-person-badge',
  `color` varchar(50) NOT NULL DEFAULT 'primary' COMMENT 'primary, success, warning, info, danger, secondary',
  `query_type` enum('count','sum','custom') DEFAULT 'count',
  `sql_query` text DEFAULT NULL COMMENT 'SQL query to fetch the main value',
  `secondary_label` varchar(255) DEFAULT NULL COMMENT 'Label for secondary stat like "new" or "pending"',
  `secondary_query` text DEFAULT NULL COMMENT 'SQL query for secondary stat',
  `secondary_icon` varchar(50) DEFAULT NULL COMMENT 'Icon for secondary stat like bi-arrow-up, bi-arrow-down',
  `secondary_color` varchar(50) DEFAULT NULL COMMENT 'Color for secondary stat',
  `format_type` enum('number','currency','percentage','text') DEFAULT 'number',
  `dashboard_section` varchar(100) DEFAULT NULL COMMENT 'Which dashboard this belongs to: main, crm, sales, hr, etc.',
  `display_order` int(11) DEFAULT 0,
  `permission_required` varchar(100) DEFAULT NULL COMMENT 'Permission needed to view this card',
  `is_active` tinyint(1) DEFAULT 1,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `card_key` (`card_key`),
  KEY `idx_dashboard_section` (`dashboard_section`),
  KEY `idx_is_active` (`is_active`),
  KEY `idx_display_order` (`display_order`)
) ENGINE=InnoDB AUTO_INCREMENT=37 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dashboard_stat_cards`
--

LOCK TABLES `dashboard_stat_cards` WRITE;
/*!40000 ALTER TABLE `dashboard_stat_cards` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `dashboard_stat_cards` VALUES
(1,'total_customers','Total Customers','bi-person-badge','primary','count','SELECT COUNT(*) as value FROM customers WHERE status = \"active\"','Active',NULL,'bi-check-circle','success','number','main',1,'crm.view',1,'2025-11-06 00:11:09','2025-11-11 11:25:53'),
(2,'total_products','Total Products','bi-box-seam','success','count','SELECT COUNT(*) as value FROM products WHERE status = \"active\"','low stock','SELECT COUNT(DISTINCT p.id) as value FROM products p INNER JOIN inventory i ON p.id = i.product_id WHERE i.quantity <= p.reorder_level AND p.status = \"active\"','bi-exclamation-triangle','warning','number','main',2,'inventory.view',1,'2025-11-06 00:11:09','2025-11-11 11:25:53'),
(3,'sales_month','Sales This Month','bi-graph-up','warning','sum','SELECT COALESCE(SUM(total_amount), 0) as value FROM invoices WHERE MONTH(invoice_date) = MONTH(CURRENT_DATE()) AND YEAR(invoice_date) = YEAR(CURRENT_DATE()) AND status IN (\"paid\", \"partial\")','Current month',NULL,'bi-calendar','info','currency','main',3,'sales.view',1,'2025-11-06 00:11:09','2025-11-11 11:25:53'),
(4,'pending_invoices','Pending Invoices','bi-receipt','info','count','SELECT COUNT(*) as value FROM invoices WHERE status IN (\"draft\", \"sent\")','Awaiting payment',NULL,'bi-clock','warning','number','main',4,'invoices.view',1,'2025-11-06 00:11:09','2025-11-11 11:25:53'),
(5,'total_opportunities','Total Opportunities','bi-star','warning','count','SELECT COUNT(*) as value FROM opportunities WHERE status NOT IN (\"lost\", \"closed\")','open','SELECT COUNT(*) as value FROM opportunities WHERE status = \"new\"','bi-arrow-up','success','number','crm',1,'crm.view',1,'2025-11-06 00:11:09','2025-11-11 11:25:53'),
(6,'active_leads','Active Leads','bi-person-lines-fill','primary','count','SELECT COUNT(*) as value FROM customers WHERE type = \"lead\" AND status = \"active\"','new this week',NULL,'bi-calendar-week','success','number','crm',2,'crm.view',1,'2025-11-06 00:11:09','2025-11-11 11:25:53'),
(7,'pipeline_value','Pipeline Value','bi-cash-stack','success','sum','SELECT COALESCE(SUM(estimated_value), 0) as value FROM opportunities WHERE status NOT IN (\"lost\", \"closed\")','potential revenue',NULL,'bi-graph-up','info','currency','crm',3,'crm.view',1,'2025-11-06 00:11:09','2025-11-11 11:25:53'),
(8,'conversion_rate','Conversion Rate','bi-percent','info','custom','SELECT ROUND((SELECT COUNT(*) FROM opportunities WHERE status = \"won\") / NULLIF((SELECT COUNT(*) FROM opportunities), 0) * 100, 1) as value','this month',NULL,'bi-trophy','success','percentage','crm',4,'crm.view',1,'2025-11-06 00:11:09','2025-11-11 11:25:53'),
(9,'orders_today','Orders Today','bi-cart-check','success','count','SELECT COUNT(*) as value FROM sales_orders WHERE DATE(created_at) = CURRENT_DATE()','today',NULL,'bi-calendar-day','primary','number','sales',1,'sales.view',1,'2025-11-06 00:11:09','2025-11-11 11:25:53'),
(10,'revenue_today','Revenue Today','bi-currency-dollar','primary','sum','SELECT COALESCE(SUM(total_amount), 0) as value FROM sales_orders WHERE DATE(order_date) = CURRENT_DATE() AND status != \"cancelled\"','vs yesterday',NULL,'bi-graph-up','success','currency','sales',2,'sales.view',1,'2025-11-06 00:11:09','2025-11-11 11:25:53'),
(11,'pending_orders','Pending Orders','bi-hourglass-split','warning','count','SELECT COUNT(*) as value FROM sales_orders WHERE status IN (\"pending\", \"processing\")','need attention',NULL,'bi-exclamation-circle','danger','number','sales',3,'sales.view',1,'2025-11-06 00:11:09','2025-11-11 11:25:53'),
(12,'quotes_open','Open Quotes','bi-file-earmark-text','info','count','SELECT COUNT(*) as value FROM quotes WHERE status IN (\"draft\", \"sent\")','awaiting response',NULL,'bi-clock-history','warning','number','sales',4,'sales.view',1,'2025-11-06 00:11:09','2025-11-11 11:25:53'),
(13,'total_employees','Total Employees','bi-people','primary','count','SELECT COUNT(*) as value FROM employees WHERE status = \"active\"','active',NULL,'bi-check-circle','success','number','hr',1,'hr.view',1,'2025-11-06 00:11:09','2025-11-11 11:25:53'),
(14,'pending_applications','Pending Applications','bi-file-earmark-person','warning','count','SELECT COUNT(*) as value FROM job_applications WHERE status IN (\"new\", \"screening\")','need review',NULL,'bi-eye','info','number','hr',2,'hr.view',1,'2025-11-06 00:11:09','2025-11-11 11:25:53'),
(15,'open_positions','Open Positions','bi-briefcase','info','count','SELECT COUNT(*) as value FROM job_positions WHERE status = \"open\"','actively recruiting',NULL,'bi-megaphone','success','number','hr',3,'hr.view',1,'2025-11-06 00:11:09','2025-11-11 11:25:53'),
(16,'upcoming_reviews','Upcoming Reviews','bi-clipboard-check','success','count','SELECT COUNT(*) as value FROM performance_reviews WHERE status = \"scheduled\" AND review_date <= DATE_ADD(CURRENT_DATE(), INTERVAL 30 DAY)','next 30 days',NULL,'bi-calendar-event','warning','number','hr',4,'hr.view',1,'2025-11-06 00:11:09','2025-11-11 11:25:53'),
(17,'active_work_orders','Active Work Orders','bi-gear','primary','count','SELECT COUNT(*) as value FROM work_orders WHERE status IN (\"pending\", \"in_progress\")','in progress',NULL,'bi-play-circle','success','number','manufacturing',1,'manufacturing.view',1,'2025-11-06 00:11:09','2025-11-11 11:25:53'),
(18,'production_today','Production Today','bi-box','success','sum','SELECT COALESCE(SUM(quantity_produced), 0) as value FROM work_orders WHERE DATE(updated_at) = CURRENT_DATE()','units',NULL,'bi-check2-circle','info','number','manufacturing',2,'manufacturing.view',1,'2025-11-06 00:11:09','2025-11-11 11:25:53'),
(19,'material_shortages','Material Shortages','bi-exclamation-triangle','danger','count','SELECT COUNT(*) as value FROM mrp_shortages WHERE status = \"pending\"','need attention',NULL,'bi-exclamation-circle','warning','number','manufacturing',3,'manufacturing.view',1,'2025-11-06 00:11:09','2025-11-11 11:25:53'),
(20,'equipment_downtime','Equipment Down','bi-wrench','warning','count','SELECT COUNT(*) as value FROM equipment WHERE status = \"down\"','maintenance needed',NULL,'bi-tools','danger','number','manufacturing',4,'manufacturing.view',1,'2025-11-06 00:11:09','2025-11-11 11:25:53'),
(21,'total_products_inventory','Total Products','bi-box-seam','primary','custom','SELECT COUNT(*) as value FROM products WHERE status = \"active\"','Active products',NULL,'bi-graph-up','info','number','inventory',1,'inventory.view',1,'2025-11-06 00:11:09','2025-11-11 11:25:53'),
(22,'total_quantity_inventory','Total Quantity','bi-boxes','info','count','SELECT COALESCE(SUM(quantity), 0) as value FROM inventory','Units in stock',NULL,'bi-cart-plus','danger','number','inventory',2,'inventory.view',1,'2025-11-06 00:11:09','2025-11-11 11:25:53'),
(23,'total_value_inventory','Total Value','bi-currency-dollar','success','count','SELECT COALESCE(SUM(i.quantity * p.cost_price), 0) as value FROM inventory i INNER JOIN products p ON i.product_id = p.id','Stock worth',NULL,'bi-truck','primary','currency','inventory',3,'inventory.view',1,'2025-11-06 00:11:09','2025-11-11 11:25:53'),
(24,'low_stock_items_inventory','Low Stock Items','bi-exclamation-triangle','warning','count','SELECT COUNT(DISTINCT p.id) as value FROM products p LEFT JOIN inventory i ON p.id = i.product_id WHERE (i.quantity <= p.reorder_level OR i.quantity IS NULL) AND p.reorder_level > 0 AND p.status = \"active\"','Below reorder level',NULL,'bi-calendar-day','success','number','inventory',4,'inventory.view',1,'2025-11-06 00:11:09','2025-11-11 11:25:53'),
(25,'total_categories','Total Categories','bi-folder','primary','count','SELECT COUNT(*) as value FROM product_categories','All categories',NULL,NULL,NULL,'number','product_categories',1,'inventory.view',1,'2025-11-06 11:34:01','2025-11-11 11:25:53'),
(26,'active_categories','Active Categories','bi-check-circle','success','count','SELECT COUNT(*) as value FROM product_categories WHERE is_active = 1','Currently active',NULL,NULL,NULL,'number','product_categories',2,'inventory.view',1,'2025-11-06 11:34:01','2025-11-11 11:25:53'),
(27,'total_products_in_categories','Total Products','bi-box-seam','info','count','SELECT COUNT(*) as value FROM products WHERE category_id IS NOT NULL','Across all categories',NULL,NULL,NULL,'number','product_categories',3,'inventory.view',1,'2025-11-06 11:34:01','2025-11-11 11:25:53'),
(32,'empty_categories','Empty Categories','bi-inbox','warning','count','SELECT COUNT(*) as value FROM product_categories pc LEFT JOIN products p ON pc.id = p.category_id WHERE p.id IS NULL','Without products',NULL,NULL,NULL,'number','product_categories',4,'inventory.view',1,'2025-11-06 11:38:21','2025-11-11 11:25:53'),
(33,'expired_lots','Expired Items','bi-exclamation-triangle','danger','count','SELECT COUNT(*) as value FROM lot_serial_numbers WHERE status = \'active\' AND expiration_date < CURDATE()','Require action',NULL,NULL,NULL,'number','lot_tracking',1,'inventory.view',1,'2025-11-06 12:32:21','2025-11-11 11:25:53'),
(34,'expiring_this_week','Expiring This Week','bi-calendar-week','warning','count','SELECT COUNT(*) as value FROM lot_serial_numbers WHERE status = \'active\' AND expiration_date BETWEEN CURDATE() AND DATE_ADD(CURDATE(), INTERVAL 7 DAY)','Next 7 days',NULL,NULL,NULL,'number','lot_tracking',2,'inventory.view',1,'2025-11-06 12:32:21','2025-11-11 11:25:53'),
(35,'expiring_this_month','Expiring This Month','bi-calendar-month','info','count','SELECT COUNT(*) as value FROM lot_serial_numbers WHERE status = \'active\' AND expiration_date BETWEEN CURDATE() AND DATE_ADD(CURDATE(), INTERVAL 30 DAY)','Next 30 days',NULL,NULL,NULL,'number','lot_tracking',3,'inventory.view',1,'2025-11-06 12:32:21','2025-11-11 11:25:53'),
(36,'active_lots','Active Lot/Serials','bi-upc-scan','primary','count','SELECT COUNT(*) as value FROM lot_serial_numbers WHERE status = \'active\'','In inventory',NULL,NULL,NULL,'number','lot_tracking',4,'inventory.view',1,'2025-11-06 12:32:21','2025-11-11 11:25:53');
/*!40000 ALTER TABLE `dashboard_stat_cards` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `debit_notes`
--

DROP TABLE IF EXISTS `debit_notes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `debit_notes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `debit_note_number` varchar(50) NOT NULL,
  `supplier_id` int(10) unsigned NOT NULL,
  `bill_id` int(10) unsigned DEFAULT NULL,
  `return_id` int(10) unsigned DEFAULT NULL,
  `issue_date` date NOT NULL,
  `amount` decimal(15,2) NOT NULL,
  `reason` text DEFAULT NULL,
  `status` enum('draft','issued','applied','cancelled') DEFAULT 'draft',
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `debit_note_number` (`debit_note_number`),
  KEY `supplier_id` (`supplier_id`),
  KEY `bill_id` (`bill_id`),
  KEY `return_id` (`return_id`),
  KEY `created_by` (`created_by`),
  KEY `idx_debit_notes_deleted_at` (`deleted_at`),
  CONSTRAINT `debit_notes_ibfk_1` FOREIGN KEY (`supplier_id`) REFERENCES `suppliers` (`id`),
  CONSTRAINT `debit_notes_ibfk_2` FOREIGN KEY (`bill_id`) REFERENCES `supplier_bills` (`id`) ON DELETE SET NULL,
  CONSTRAINT `debit_notes_ibfk_3` FOREIGN KEY (`return_id`) REFERENCES `purchase_returns` (`id`) ON DELETE SET NULL,
  CONSTRAINT `debit_notes_ibfk_4` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `debit_notes`
--

LOCK TABLES `debit_notes` WRITE;
/*!40000 ALTER TABLE `debit_notes` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `debit_notes` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `delivery_note_items`
--

DROP TABLE IF EXISTS `delivery_note_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `delivery_note_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `delivery_note_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned NOT NULL,
  `quantity` decimal(10,2) NOT NULL,
  `serial_numbers` text DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `delivery_note_id` (`delivery_note_id`),
  KEY `product_id` (`product_id`),
  CONSTRAINT `delivery_note_items_ibfk_1` FOREIGN KEY (`delivery_note_id`) REFERENCES `delivery_notes` (`id`) ON DELETE CASCADE,
  CONSTRAINT `delivery_note_items_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `delivery_note_items`
--

LOCK TABLES `delivery_note_items` WRITE;
/*!40000 ALTER TABLE `delivery_note_items` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `delivery_note_items` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `delivery_notes`
--

DROP TABLE IF EXISTS `delivery_notes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `delivery_notes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `delivery_note_number` varchar(50) NOT NULL,
  `sales_order_id` int(10) unsigned DEFAULT NULL,
  `shipment_id` int(10) unsigned DEFAULT NULL,
  `customer_id` int(10) unsigned NOT NULL,
  `delivery_date` date NOT NULL,
  `delivery_address` text DEFAULT NULL,
  `delivery_city` varchar(100) DEFAULT NULL,
  `delivery_state` varchar(50) DEFAULT NULL,
  `delivery_zip` varchar(20) DEFAULT NULL,
  `delivery_country` varchar(100) DEFAULT 'USA',
  `delivery_contact` varchar(100) DEFAULT NULL,
  `delivery_phone` varchar(50) DEFAULT NULL,
  `carrier` varchar(100) DEFAULT NULL,
  `tracking_number` varchar(100) DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `status` enum('draft','confirmed','in_transit','delivered','cancelled') DEFAULT 'draft',
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `delivery_note_number` (`delivery_note_number`),
  KEY `sales_order_id` (`sales_order_id`),
  KEY `shipment_id` (`shipment_id`),
  KEY `created_by` (`created_by`),
  KEY `idx_status` (`status`),
  KEY `idx_delivery_date` (`delivery_date`),
  KEY `idx_customer` (`customer_id`),
  CONSTRAINT `delivery_notes_ibfk_1` FOREIGN KEY (`sales_order_id`) REFERENCES `sales_orders` (`id`) ON DELETE SET NULL,
  CONSTRAINT `delivery_notes_ibfk_2` FOREIGN KEY (`shipment_id`) REFERENCES `shipments` (`id`) ON DELETE SET NULL,
  CONSTRAINT `delivery_notes_ibfk_3` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE,
  CONSTRAINT `delivery_notes_ibfk_4` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `delivery_notes`
--

LOCK TABLES `delivery_notes` WRITE;
/*!40000 ALTER TABLE `delivery_notes` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `delivery_notes` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `departments`
--

DROP TABLE IF EXISTS `departments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `departments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL,
  `description` text DEFAULT NULL,
  `manager_id` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `manager_id` (`manager_id`),
  KEY `idx_departments_deleted_at` (`deleted_at`),
  CONSTRAINT `departments_ibfk_1` FOREIGN KEY (`manager_id`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `departments`
--

LOCK TABLES `departments` WRITE;
/*!40000 ALTER TABLE `departments` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `departments` VALUES
(1,'Administration','Administrative and executive staff',NULL,'2025-10-26 14:24:24','2025-11-11 00:36:45',NULL),
(2,'Sales','Sales and marketing team',NULL,'2025-10-26 14:24:24','2025-11-11 00:36:45',NULL),
(3,'Accounting','Finance and accounting department',NULL,'2025-10-26 14:24:24','2025-11-11 00:36:45',NULL),
(4,'Operations','Operations and logistics',NULL,'2025-10-26 14:24:24','2025-11-11 00:36:45',NULL),
(5,'Human Resources','HR and recruitment',NULL,'2025-10-26 14:24:24','2025-11-11 00:36:45',NULL),
(6,'IT','Information Technology',NULL,'2025-10-26 14:24:24','2025-11-11 00:36:45',NULL),
(8,'Marketing','Marketing and Communications',NULL,'2025-10-27 14:37:00','2025-11-11 00:36:45',NULL),
(11,'Finance','Finance and Accounting',NULL,'2025-10-27 14:37:00','2025-11-11 00:36:45',NULL),
(13,'Manufacturing','Manufacturing and Production',NULL,'2025-10-27 14:37:00','2025-11-11 00:36:45',NULL);
/*!40000 ALTER TABLE `departments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `depreciation_schedules`
--

DROP TABLE IF EXISTS `depreciation_schedules`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `depreciation_schedules` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `asset_id` int(10) unsigned NOT NULL,
  `period_date` date NOT NULL COMMENT 'First day of the period (month/quarter/year)',
  `opening_balance` decimal(15,2) NOT NULL,
  `depreciation_amount` decimal(15,2) NOT NULL,
  `accumulated_depreciation` decimal(15,2) NOT NULL,
  `net_book_value` decimal(15,2) NOT NULL,
  `status` enum('scheduled','posted','reversed') DEFAULT 'scheduled',
  `journal_entry_id` int(10) unsigned DEFAULT NULL COMMENT 'Link to posted journal entry',
  `posted_by` int(10) unsigned DEFAULT NULL,
  `posted_at` datetime DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_asset_period` (`asset_id`,`period_date`),
  KEY `idx_asset_period` (`asset_id`,`period_date`),
  KEY `idx_status` (`status`),
  KEY `idx_period_date` (`period_date`),
  KEY `posted_by` (`posted_by`),
  CONSTRAINT `depreciation_schedules_ibfk_1` FOREIGN KEY (`asset_id`) REFERENCES `fixed_assets` (`id`) ON DELETE CASCADE,
  CONSTRAINT `depreciation_schedules_ibfk_2` FOREIGN KEY (`posted_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `depreciation_schedules`
--

LOCK TABLES `depreciation_schedules` WRITE;
/*!40000 ALTER TABLE `depreciation_schedules` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `depreciation_schedules` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `diagram_shares`
--

DROP TABLE IF EXISTS `diagram_shares`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `diagram_shares` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `diagram_id` int(11) NOT NULL,
  `shared_with_user_id` int(11) NOT NULL,
  `permission` varchar(20) DEFAULT 'view' COMMENT 'view, edit',
  `created_by` int(11) NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_share` (`diagram_id`,`shared_with_user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `diagram_shares`
--

LOCK TABLES `diagram_shares` WRITE;
/*!40000 ALTER TABLE `diagram_shares` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `diagram_shares` VALUES
(1,5,4,'view',1,'2025-12-02 19:37:07'),
(2,6,5,'view',1,'2025-12-04 23:07:12');
/*!40000 ALTER TABLE `diagram_shares` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `diagrams`
--

DROP TABLE IF EXISTS `diagrams`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `diagrams` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `diagram_data` longtext NOT NULL COMMENT 'Excalidraw JSON scene data',
  `module` varchar(50) DEFAULT NULL COMMENT 'Associated module: crm, projects, manufacturing, etc.',
  `entity_id` int(11) DEFAULT NULL COMMENT 'Related record ID',
  `thumbnail_path` varchar(500) DEFAULT NULL COMMENT 'Path to thumbnail image',
  `is_template` tinyint(1) DEFAULT 0,
  `created_by` int(11) NOT NULL,
  `updated_by` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_module_entity` (`module`,`entity_id`),
  KEY `idx_created_by` (`created_by`),
  KEY `idx_is_template` (`is_template`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `diagrams`
--

LOCK TABLES `diagrams` WRITE;
/*!40000 ALTER TABLE `diagrams` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `diagrams` VALUES
(3,'Untitled Diagram','','{\"type\":\"excalidraw\",\"version\":2,\"source\":\"m1_erp\",\"elements\":[{\"id\":\"5RV8qSCrMglkMVB4zs_TS\",\"type\":\"rectangle\",\"x\":310,\"y\":118,\"width\":97,\"height\":64,\"angle\":0,\"strokeColor\":\"#1e1e1e\",\"backgroundColor\":\"transparent\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"groupIds\":[],\"frameId\":null,\"roundness\":{\"type\":3},\"seed\":972801369,\"version\":9,\"versionNonce\":21896281,\"isDeleted\":false,\"boundElements\":null,\"updated\":1764683662156,\"link\":null,\"locked\":false}],\"appState\":{\"showWelcomeScreen\":true,\"theme\":\"dark\",\"collaborators\":[],\"currentChartType\":\"bar\",\"currentItemBackgroundColor\":\"transparent\",\"currentItemEndArrowhead\":\"arrow\",\"currentItemFillStyle\":\"solid\",\"currentItemFontFamily\":1,\"currentItemFontSize\":20,\"currentItemOpacity\":100,\"currentItemRoughness\":1,\"currentItemStartArrowhead\":null,\"currentItemStrokeColor\":\"#1e1e1e\",\"currentItemRoundness\":\"round\",\"currentItemStrokeStyle\":\"solid\",\"currentItemStrokeWidth\":2,\"currentItemTextAlign\":\"left\",\"cursorButton\":\"up\",\"activeEmbeddable\":null,\"draggingElement\":null,\"editingElement\":null,\"editingGroupId\":null,\"editingLinearElement\":null,\"activeTool\":{\"type\":\"selection\",\"customType\":null,\"locked\":false,\"lastActiveTool\":null},\"penMode\":false,\"penDetected\":false,\"errorMessage\":null,\"exportBackground\":true,\"exportScale\":2,\"exportEmbedScene\":false,\"exportWithDarkMode\":false,\"fileHandle\":null,\"gridSize\":null,\"isBindingEnabled\":true,\"defaultSidebarDockedPreference\":false,\"isLoading\":false,\"isResizing\":false,\"isRotating\":false,\"lastPointerDownWith\":\"mouse\",\"multiElement\":null,\"name\":\"Untitled-2025-12-02-0854\",\"contextMenu\":null,\"openMenu\":null,\"openPopup\":null,\"openSidebar\":null,\"openDialog\":null,\"pasteDialog\":{\"shown\":false,\"data\":null},\"previousSelectedElementIds\":[],\"resizingElement\":null,\"scrolledOutside\":false,\"scrollX\":0,\"scrollY\":0,\"selectedElementIds\":{\"5RV8qSCrMglkMVB4zs_TS\":true},\"selectedGroupIds\":[],\"selectedElementsAreBeingDragged\":false,\"selectionElement\":null,\"shouldCacheIgnoreZoom\":false,\"showStats\":false,\"startBoundElement\":null,\"suggestedBindings\":[],\"frameRendering\":{\"enabled\":true,\"clip\":true,\"name\":true,\"outline\":true},\"frameToHighlight\":null,\"editingFrame\":null,\"elementsToHighlight\":null,\"toast\":null,\"viewBackgroundColor\":\"#ffffff\",\"zenModeEnabled\":false,\"zoom\":{\"value\":1},\"viewModeEnabled\":false,\"pendingImageElementId\":null,\"showHyperlinkPopup\":false,\"selectedLinearElement\":null,\"snapLines\":[],\"originSnapOffset\":null,\"objectsSnapModeEnabled\":false,\"offsetLeft\":303,\"offsetTop\":248,\"width\":1119,\"height\":409},\"files\":[]}',NULL,NULL,NULL,0,1,NULL,'2025-12-02 13:54:23','2025-12-02 13:54:23'),
(4,'Untitled Diagram','','{\"type\":\"excalidraw\",\"version\":2,\"source\":\"m1_erp\",\"elements\":[{\"id\":\"Icx763BmkOw566YKOVQwM\",\"type\":\"rectangle\",\"x\":326,\"y\":121,\"width\":234,\"height\":155,\"angle\":0,\"strokeColor\":\"#1e1e1e\",\"backgroundColor\":\"transparent\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"groupIds\":[],\"frameId\":null,\"roundness\":{\"type\":3},\"seed\":574158508,\"version\":14,\"versionNonce\":13524780,\"isDeleted\":false,\"boundElements\":null,\"updated\":1764684031126,\"link\":null,\"locked\":false}],\"appState\":{\"showWelcomeScreen\":true,\"theme\":\"dark\",\"collaborators\":[],\"currentChartType\":\"bar\",\"currentItemBackgroundColor\":\"transparent\",\"currentItemEndArrowhead\":\"arrow\",\"currentItemFillStyle\":\"solid\",\"currentItemFontFamily\":1,\"currentItemFontSize\":20,\"currentItemOpacity\":100,\"currentItemRoughness\":1,\"currentItemStartArrowhead\":null,\"currentItemStrokeColor\":\"#1e1e1e\",\"currentItemRoundness\":\"round\",\"currentItemStrokeStyle\":\"solid\",\"currentItemStrokeWidth\":2,\"currentItemTextAlign\":\"left\",\"cursorButton\":\"up\",\"activeEmbeddable\":null,\"draggingElement\":null,\"editingElement\":null,\"editingGroupId\":null,\"editingLinearElement\":null,\"activeTool\":{\"type\":\"selection\",\"customType\":null,\"locked\":false,\"lastActiveTool\":null},\"penMode\":false,\"penDetected\":false,\"errorMessage\":null,\"exportBackground\":true,\"exportScale\":2,\"exportEmbedScene\":false,\"exportWithDarkMode\":false,\"fileHandle\":null,\"gridSize\":null,\"isBindingEnabled\":true,\"defaultSidebarDockedPreference\":false,\"isLoading\":false,\"isResizing\":false,\"isRotating\":false,\"lastPointerDownWith\":\"mouse\",\"multiElement\":null,\"name\":\"Untitled-2025-12-02-0900\",\"contextMenu\":null,\"openMenu\":null,\"openPopup\":null,\"openSidebar\":null,\"openDialog\":null,\"pasteDialog\":{\"shown\":false,\"data\":null},\"previousSelectedElementIds\":[],\"resizingElement\":null,\"scrolledOutside\":false,\"scrollX\":0,\"scrollY\":0,\"selectedElementIds\":{\"Icx763BmkOw566YKOVQwM\":true},\"selectedGroupIds\":[],\"selectedElementsAreBeingDragged\":false,\"selectionElement\":null,\"shouldCacheIgnoreZoom\":false,\"showStats\":false,\"startBoundElement\":null,\"suggestedBindings\":[],\"frameRendering\":{\"enabled\":true,\"clip\":true,\"name\":true,\"outline\":true},\"frameToHighlight\":null,\"editingFrame\":null,\"elementsToHighlight\":null,\"toast\":null,\"viewBackgroundColor\":\"#ffffff\",\"zenModeEnabled\":false,\"zoom\":{\"value\":1},\"viewModeEnabled\":false,\"pendingImageElementId\":null,\"showHyperlinkPopup\":false,\"selectedLinearElement\":null,\"snapLines\":[],\"originSnapOffset\":null,\"objectsSnapModeEnabled\":false,\"offsetLeft\":303,\"offsetTop\":248,\"width\":1119,\"height\":409},\"files\":[]}',NULL,NULL,NULL,0,1,NULL,'2025-12-02 14:00:32','2025-12-02 14:00:32'),
(5,'Test Diagram','Scrum Board','{\"type\":\"excalidraw\",\"version\":2,\"source\":\"m1_erp\",\"elements\":[{\"type\":\"rectangle\",\"version\":15,\"versionNonce\":1954189837,\"isDeleted\":false,\"id\":\"SZxFf9nIb1xQ95xkRLm20\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":307,\"y\":126,\"strokeColor\":\"#1e1e1e\",\"backgroundColor\":\"transparent\",\"width\":130,\"height\":112,\"seed\":1148644557,\"groupIds\":[],\"frameId\":null,\"roundness\":{\"type\":3},\"boundElements\":[],\"updated\":1764684192522,\"link\":null,\"locked\":false},{\"type\":\"text\",\"version\":1875,\"versionNonce\":1061682605,\"isDeleted\":false,\"id\":\"cFqSDR5ChTid_JZLdLRry\",\"fillStyle\":\"hachure\",\"strokeWidth\":1,\"strokeStyle\":\"dotted\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":334.1245681661849,\"y\":331.08238209477736,\"strokeColor\":\"#495057\",\"backgroundColor\":\"#868e96\",\"width\":43,\"height\":30,\"seed\":1238480899,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"fontSize\":24.013497016931144,\"fontFamily\":1,\"text\":\"Bug\",\"textAlign\":\"left\",\"verticalAlign\":\"top\",\"containerId\":null,\"originalText\":\"Bug\",\"lineHeight\":1.2492974254790115,\"baseline\":22.016861788503725},{\"type\":\"ellipse\",\"version\":1810,\"versionNonce\":1245036557,\"isDeleted\":false,\"id\":\"7yAo2RHvSr1dGaL-Tl4Vs\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":265.6160185989297,\"y\":332.7943665048821,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#c92a2a\",\"width\":18.915168634308852,\"height\":13.095116746829012,\"seed\":931250083,\"groupIds\":[\"OYfqssxucSjxV25vLaB1T\"],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"ellipse\",\"version\":1759,\"versionNonce\":184301165,\"isDeleted\":false,\"id\":\"Fw4WZ2q5-tQP56C5b3HnA\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":4.728678266311217,\"x\":260.43014025394814,\"y\":345.4350091324344,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#c92a2a\",\"width\":29.3147504765488,\"height\":25.730897100312987,\"seed\":1829753667,\"groupIds\":[\"OYfqssxucSjxV25vLaB1T\"],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"line\",\"version\":1541,\"versionNonce\":744808653,\"isDeleted\":false,\"id\":\"wVWnTqYQYtvIWjqvuyUWu\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":287.1443779857823,\"y\":350.9001231076778,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":10.743173626990341,\"height\":6.319513898229615,\"seed\":1524265699,\"groupIds\":[\"OYfqssxucSjxV25vLaB1T\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[6.3195138982296095,-6.319513898229616],[10.743173626990341,-1.474553242920248]]},{\"type\":\"line\",\"version\":1562,\"versionNonce\":1141456685,\"isDeleted\":false,\"id\":\"K4LpiD6iLbcx6DuGGxb1b\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":288.3029555337903,\"y\":360.1154911753707,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":10.743173626990341,\"height\":6.319513898229615,\"seed\":1634737795,\"groupIds\":[\"OYfqssxucSjxV25vLaB1T\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[6.3195138982296095,-6.319513898229616],[10.743173626990341,-1.474553242920248]]},{\"type\":\"line\",\"version\":1583,\"versionNonce\":2018693517,\"isDeleted\":false,\"id\":\"Zf732FtLkB7Ah69Lirh0e\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":281.98344163556294,\"y\":370.43736387581407,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":10.743173626990341,\"height\":6.319513898229615,\"seed\":1267684899,\"groupIds\":[\"OYfqssxucSjxV25vLaB1T\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[6.3195138982296095,-6.319513898229616],[10.743173626990341,-1.474553242920248]]},{\"type\":\"line\",\"version\":1575,\"versionNonce\":1719343085,\"isDeleted\":false,\"id\":\"r5erS7zbGDrEQ20DrAUsn\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":263.3408756357835,\"y\":352.3214240342269,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":9.268620384070111,\"height\":5.898212971680975,\"seed\":136747459,\"groupIds\":[\"OYfqssxucSjxV25vLaB1T\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[-5.687562508406687,-5.898212971680975],[-9.268620384070111,0]]},{\"type\":\"line\",\"version\":1552,\"versionNonce\":1217106509,\"isDeleted\":false,\"id\":\"yeyj4jpIFVl_tEM53wBb8\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":262.91957470923217,\"y\":362.2219958081197,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":9.268620384070111,\"height\":7.162115751326901,\"seed\":609511779,\"groupIds\":[\"OYfqssxucSjxV25vLaB1T\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[-4.213009265486401,-7.162115751326901],[-9.268620384070111,-2.317155096017533]]},{\"type\":\"line\",\"version\":1548,\"versionNonce\":1532870829,\"isDeleted\":false,\"id\":\"RHqhLnuACwMsAICwpkUL0\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":265.86868119508335,\"y\":368.75216016961986,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":9.900571773893068,\"height\":5.055611118583697,\"seed\":90653955,\"groupIds\":[\"OYfqssxucSjxV25vLaB1T\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[-5.055611118583717,-5.055611118583697],[-9.90057177389307,-1.2639027796459221]]},{\"type\":\"line\",\"version\":1558,\"versionNonce\":77275917,\"isDeleted\":false,\"id\":\"xtF45LnuG2W0ehXdO8TWu\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":279.5609613079164,\"y\":332.73093094971125,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":6.740814824778256,\"height\":4.844960655309377,\"seed\":1658694819,\"groupIds\":[\"OYfqssxucSjxV25vLaB1T\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[2.5278055592918505,-4.844960655309377],[6.740814824778256,-1.474553242920234]]},{\"type\":\"line\",\"version\":1534,\"versionNonce\":951925101,\"isDeleted\":false,\"id\":\"GsGHIw9obp4uXGEddBL-A\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":269.87103999728015,\"y\":333.7841832660878,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":6.530164361503941,\"height\":4.634310192035056,\"seed\":6692931,\"groupIds\":[\"OYfqssxucSjxV25vLaB1T\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[-2.106504632743225,-4.634310192035056],[-6.530164361503941,-4.213009265486417]]},{\"type\":\"text\",\"version\":1761,\"versionNonce\":554533837,\"isDeleted\":false,\"id\":\"nW2QIPUcVsD2IkYuoSYJ3\",\"fillStyle\":\"cross-hatch\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":785.5375167489442,\"y\":211.65541583656,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"transparent\",\"width\":256,\"height\":51,\"seed\":668934115,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"fontSize\":44.76229461122525,\"fontFamily\":2,\"text\":\"Scrum board\",\"textAlign\":\"left\",\"verticalAlign\":\"top\",\"containerId\":null,\"originalText\":\"Scrum board\",\"lineHeight\":1.139351779057602,\"baseline\":39.72916994240791},{\"type\":\"text\",\"version\":987,\"versionNonce\":27623981,\"isDeleted\":false,\"id\":\"5aJ8L27npkTqX1PJeVZ78\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":582.6763493893804,\"y\":302.1907441607834,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ffff\",\"width\":125,\"height\":40.38461538461539,\"seed\":1666657155,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"fontSize\":35.04490412396706,\"fontFamily\":2,\"text\":\"Backlog\",\"textAlign\":\"center\",\"verticalAlign\":\"top\",\"containerId\":null,\"originalText\":\"Backlog\",\"lineHeight\":1.1523676949367518,\"baseline\":32.05174606182907},{\"type\":\"text\",\"version\":1135,\"versionNonce\":1601090701,\"isDeleted\":false,\"id\":\"y7Qo8m7_zh1dlVzc8WFPi\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":763.1299134985952,\"y\":287.5511088904809,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ffff\",\"width\":100.31285291772363,\"height\":66.11528942304511,\"seed\":1997325091,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"fontSize\":29.157360231140597,\"fontFamily\":2,\"text\":\"Spring \\nbacklog\",\"textAlign\":\"center\",\"verticalAlign\":\"top\",\"containerId\":null,\"originalText\":\"Spring \\nbacklog\",\"lineHeight\":1.1337667213171234,\"baseline\":59.35681958665195},{\"type\":\"text\",\"version\":1667,\"versionNonce\":1713543917,\"isDeleted\":false,\"id\":\"DG4X-ewZ7cl7R53yHV-9Q\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":1119.097788296654,\"y\":308.27974274455187,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ffff\",\"width\":69.53504577251297,\"height\":33.057644711522556,\"seed\":460220099,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"fontSize\":29.157360231140597,\"fontFamily\":2,\"text\":\"Done\",\"textAlign\":\"center\",\"verticalAlign\":\"top\",\"containerId\":null,\"originalText\":\"Done\",\"lineHeight\":1.1337667213171234,\"baseline\":26.178409793325976},{\"type\":\"text\",\"version\":1320,\"versionNonce\":239777101,\"isDeleted\":false,\"id\":\"2h_WQiD2jmE_V89mXupwl\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":902.8651361187312,\"y\":299.7890286078846,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"#ffff\",\"width\":156.1688732923652,\"height\":36.47740106099041,\"seed\":1998231139,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"fontSize\":31.327781709020442,\"fontFamily\":2,\"text\":\"In progress\",\"textAlign\":\"center\",\"verticalAlign\":\"top\",\"containerId\":null,\"originalText\":\"In progress\",\"lineHeight\":1.1643786783182033,\"baseline\":29.381662033126105},{\"type\":\"rectangle\",\"version\":1802,\"versionNonce\":54559661,\"isDeleted\":false,\"id\":\"QObjcF6IL-ju-zV961wQr\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":578.2639863310796,\"y\":421.95816981455937,\"strokeColor\":\"#e67700\",\"backgroundColor\":\"#fab005\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":1491063299,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1762,\"versionNonce\":1227720205,\"isDeleted\":false,\"id\":\"c2DmJrXHV1dcC_DBu8ilQ\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":578.2639863310796,\"y\":484.11300542286654,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"#15aabf\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":834443683,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1814,\"versionNonce\":587938925,\"isDeleted\":false,\"id\":\"NPOzupdsP9kQOcYOuYbTG\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":576.4877047988903,\"y\":640.070523949278,\"strokeColor\":\"#84142d\",\"backgroundColor\":\"#c92a2a\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":1323265347,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1812,\"versionNonce\":950216397,\"isDeleted\":false,\"id\":\"9RZ-JSrOaNOBzgIy5MGmk\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":574.2039142575022,\"y\":706.8840850101376,\"strokeColor\":\"#e9d349\",\"backgroundColor\":\"#ffff1a\",\"width\":50.92852907297534,\"height\":54.12583583092038,\"seed\":1403440355,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1800,\"versionNonce\":2089731373,\"isDeleted\":false,\"id\":\"8DeEk1f5q6FekUwy4pfla\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":762.1502716665209,\"y\":446.0598573566033,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"#15aabf\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":1939945603,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1833,\"versionNonce\":1379374989,\"isDeleted\":false,\"id\":\"ydVRnhrhjeLuggZxhKQcS\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":762.1502716665209,\"y\":517.1111186442629,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"#15aabf\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":1821192227,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1892,\"versionNonce\":1943477741,\"isDeleted\":false,\"id\":\"GtPW9iy55LZFnJrZBpjz_\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":760.3739901343315,\"y\":588.162379931922,\"strokeColor\":\"#84142d\",\"backgroundColor\":\"#c92a2a\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":1079587779,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1853,\"versionNonce\":410441805,\"isDeleted\":false,\"id\":\"oBpBy5wiz6ZYk66JFLV9E\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":930.4819362951048,\"y\":443.6748227877313,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"#15aabf\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":790872931,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1853,\"versionNonce\":1508918957,\"isDeleted\":false,\"id\":\"Yw6Rfxk9JC5Yz5zc-eSe1\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":1173.2039934935192,\"y\":431.5454318551517,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"#15aabf\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":1899716355,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1854,\"versionNonce\":1525475597,\"isDeleted\":false,\"id\":\"r9X8r2e-IU-4uOj8-ogK3\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":1166.3526218693532,\"y\":498.46049471785045,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"#15aabf\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":824084131,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1895,\"versionNonce\":753287021,\"isDeleted\":false,\"id\":\"AehLLUFCZozgQX4Toa7s0\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":1174.0344627812983,\"y\":646.4293600676671,\"strokeColor\":\"#84142d\",\"backgroundColor\":\"#c92a2a\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":1165736515,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1900,\"versionNonce\":1982187981,\"isDeleted\":false,\"id\":\"2oN1kzH0BglNg7tMPByGT\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":923.6305646709343,\"y\":516.7561201121812,\"strokeColor\":\"#e9d349\",\"backgroundColor\":\"#ffff1a\",\"width\":50.92852907297534,\"height\":54.12583583092038,\"seed\":724662755,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1896,\"versionNonce\":1472530477,\"isDeleted\":false,\"id\":\"bw-ybwDYZW9Co-ra7geVg\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":1174.0344627812983,\"y\":710.7907298704495,\"strokeColor\":\"#e9d349\",\"backgroundColor\":\"#ffff1a\",\"width\":50.92852907297534,\"height\":54.12583583092038,\"seed\":1062094211,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1786,\"versionNonce\":330136205,\"isDeleted\":false,\"id\":\"1pOIxID11gw2SPX4-kI4V\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":581.9814898234536,\"y\":562.4597087177403,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"#15aabf\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":957390115,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1918,\"versionNonce\":1922605293,\"isDeleted\":false,\"id\":\"Bs2OQlFY7_ZvsBqJsyNWM\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":1169.4461199663256,\"y\":573.098921956883,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"#15aabf\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":1676083395,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1865,\"versionNonce\":1779432269,\"isDeleted\":false,\"id\":\"KoLxPv_IMTLBvhWXziSHh\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":760.5758403084437,\"y\":662.3544299287745,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"#15aabf\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":426766435,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1950,\"versionNonce\":40700333,\"isDeleted\":false,\"id\":\"yplTD4fI3koUQL7YIgQ_T\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":924.5805300168058,\"y\":598.3471360923454,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"#15aabf\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":2071587843,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"ellipse\",\"version\":1680,\"versionNonce\":2094615565,\"isDeleted\":false,\"id\":\"--FJFvSfXRUDL4S8iAEJh\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":954.5373801096221,\"y\":597.2933874185154,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#c92a2a\",\"width\":12.471776185810908,\"height\":8.634306590176644,\"seed\":1845719971,\"groupIds\":[\"IODJZpYL7Pj4PpeUmE0R8\"],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"ellipse\",\"version\":1632,\"versionNonce\":961430125,\"isDeleted\":false,\"id\":\"6CLywlmpvMp5LFARq5JMj\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":4.728678266311217,\"x\":951.1180548423781,\"y\":605.6280350626122,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#c92a2a\",\"width\":19.328773322340993,\"height\":16.96574827850908,\"seed\":1362822979,\"groupIds\":[\"IODJZpYL7Pj4PpeUmE0R8\"],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"line\",\"version\":1413,\"versionNonce\":1553296589,\"isDeleted\":false,\"id\":\"bRBU8YNiFbqPwhvr6PrS5\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":968.7321718723288,\"y\":609.8908283833497,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":7.083545465098394,\"height\":4.166791450057882,\"seed\":2071930595,\"groupIds\":[\"IODJZpYL7Pj4PpeUmE0R8\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[4.166791450057878,-4.166791450057882],[7.083545465098394,-0.9722513383468285]]},{\"type\":\"line\",\"version\":1437,\"versionNonce\":910707501,\"isDeleted\":false,\"id\":\"9jd_517YU6HqAkRuh3DYq\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":970.2107898867434,\"y\":614.592951019859,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":7.083545465098394,\"height\":4.166791450057882,\"seed\":1935561347,\"groupIds\":[\"IODJZpYL7Pj4PpeUmE0R8\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[4.166791450057878,-4.166791450057882],[7.083545465098394,-0.9722513383468285]]},{\"type\":\"line\",\"version\":1464,\"versionNonce\":1724931469,\"isDeleted\":false,\"id\":\"YE1uLTZvZoBTGATl2Yoyg\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":965.3292921881111,\"y\":622.1134166368525,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":7.083545465098394,\"height\":4.166791450057882,\"seed\":1771506211,\"groupIds\":[\"IODJZpYL7Pj4PpeUmE0R8\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[4.166791450057878,-4.166791450057882],[7.083545465098394,-0.9722513383468285]]},{\"type\":\"line\",\"version\":1446,\"versionNonce\":1164387309,\"isDeleted\":false,\"id\":\"RqJhn8XLHxMj5J50pYF_H\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":953.0372574104567,\"y\":610.168614480021,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":6.111294126751562,\"height\":3.8890053533873536,\"seed\":1930939843,\"groupIds\":[\"IODJZpYL7Pj4PpeUmE0R8\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[-3.7501123050520944,-3.889005353387353],[-6.111294126751561,0]]},{\"type\":\"line\",\"version\":1424,\"versionNonce\":102112845,\"isDeleted\":false,\"id\":\"wiZeM5QTLD7hXAtBo31KO\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":952.759471313776,\"y\":616.6965877517766,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":6.111294126751562,\"height\":4.722363643398934,\"seed\":50273635,\"groupIds\":[\"IODJZpYL7Pj4PpeUmE0R8\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[-2.7778609667052487,-4.722363643398935],[-6.111294126751561,-1.5278235316878936]]},{\"type\":\"line\",\"version\":1419,\"versionNonce\":532073645,\"isDeleted\":false,\"id\":\"KuMwyiqX2b2EXg7ypUQ8e\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":954.7039739904744,\"y\":621.0022722501726,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":6.527973271757348,\"height\":3.333433160046305,\"seed\":614168835,\"groupIds\":[\"IODJZpYL7Pj4PpeUmE0R8\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[-3.3334331600463027,-3.333433160046305],[-6.527973271757348,-0.8333582900115799]]},{\"type\":\"line\",\"version\":1433,\"versionNonce\":1911729933,\"isDeleted\":false,\"id\":\"sF0MtHWHmSfULU4aQosVw\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":963.7320221322661,\"y\":597.2515609848405,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":4.4445775467284045,\"height\":3.194540111711042,\"seed\":1969971363,\"groupIds\":[\"IODJZpYL7Pj4PpeUmE0R8\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[1.6667165800231543,-3.194540111711042],[4.4445775467284045,-0.9722513383468374]]},{\"type\":\"line\",\"version\":1407,\"versionNonce\":725828973,\"isDeleted\":false,\"id\":\"p38e-0slzg3wXOw9f5wfr\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":957.3429419088384,\"y\":597.9460262265186,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":4.3056844983931475,\"height\":3.055647063375781,\"seed\":1595757635,\"groupIds\":[\"IODJZpYL7Pj4PpeUmE0R8\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[-1.3889304833526368,-3.0556470633757806],[-4.3056844983931475,-2.7778609667052603]]},{\"type\":\"rectangle\",\"version\":1893,\"versionNonce\":1861357517,\"isDeleted\":false,\"id\":\"koDKD6WcloHjdUi024Thu\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":1104.1577150870962,\"y\":428.7759233133736,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"#15aabf\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":294638563,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1894,\"versionNonce\":991465005,\"isDeleted\":false,\"id\":\"wCrVqZt8W6Rp3OXjvoMG0\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":1097.3063434629303,\"y\":495.69098617607233,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"#15aabf\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":1020354435,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1935,\"versionNonce\":245383309,\"isDeleted\":false,\"id\":\"3TcgF1JLRcR-qv9F6L4VW\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":1104.9881843748753,\"y\":643.659851525889,\"strokeColor\":\"#84142d\",\"backgroundColor\":\"#c92a2a\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":186677027,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1936,\"versionNonce\":1329768173,\"isDeleted\":false,\"id\":\"r0czvrUh12plkrxy_QZkI\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":1104.9881843748753,\"y\":708.0212213286713,\"strokeColor\":\"#e9d349\",\"backgroundColor\":\"#ffff1a\",\"width\":50.92852907297534,\"height\":54.12583583092038,\"seed\":1525390019,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1958,\"versionNonce\":1871266125,\"isDeleted\":false,\"id\":\"aPM0HObYzz9UDufUtvM5q\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":1100.3998415599026,\"y\":570.3294134151049,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"#15aabf\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":953240163,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1992,\"versionNonce\":1422757805,\"isDeleted\":false,\"id\":\"_s8D27CpFziq_3iL-a7uO\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":989.254625787873,\"y\":443.8274204720194,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"#15aabf\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":429917699,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"ellipse\",\"version\":1722,\"versionNonce\":2100892173,\"isDeleted\":false,\"id\":\"xedSmTEWtHCLI6ieUT9Vs\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":1019.2114758806892,\"y\":442.7736717981895,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#c92a2a\",\"width\":12.471776185810908,\"height\":8.634306590176644,\"seed\":1414942115,\"groupIds\":[\"IIw2iYP7lal8kigv8OmHG\"],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"ellipse\",\"version\":1674,\"versionNonce\":1707427949,\"isDeleted\":false,\"id\":\"iBoThSrWuMxt0gIWJN2Il\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":4.728678266311217,\"x\":1015.7921506134453,\"y\":451.1083194422861,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#c92a2a\",\"width\":19.328773322340993,\"height\":16.96574827850908,\"seed\":1545773379,\"groupIds\":[\"IIw2iYP7lal8kigv8OmHG\"],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"line\",\"version\":1455,\"versionNonce\":809218765,\"isDeleted\":false,\"id\":\"iJ7ID5NGch0_FNhhViPHi\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":1033.406267643396,\"y\":455.3711127630238,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":7.083545465098394,\"height\":4.166791450057882,\"seed\":979599587,\"groupIds\":[\"IIw2iYP7lal8kigv8OmHG\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[4.166791450057878,-4.166791450057882],[7.083545465098394,-0.9722513383468285]]},{\"type\":\"line\",\"version\":1479,\"versionNonce\":154521901,\"isDeleted\":false,\"id\":\"macYQQ-W_-R9zKBVuSWSX\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":1034.8848856578106,\"y\":460.0732353995329,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":7.083545465098394,\"height\":4.166791450057882,\"seed\":1218931843,\"groupIds\":[\"IIw2iYP7lal8kigv8OmHG\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[4.166791450057878,-4.166791450057882],[7.083545465098394,-0.9722513383468285]]},{\"type\":\"line\",\"version\":1506,\"versionNonce\":1310532493,\"isDeleted\":false,\"id\":\"8lxYr3CELjM9eOPWkPU16\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":1030.0033879591783,\"y\":467.59370101652644,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":7.083545465098394,\"height\":4.166791450057882,\"seed\":715973667,\"groupIds\":[\"IIw2iYP7lal8kigv8OmHG\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[4.166791450057878,-4.166791450057882],[7.083545465098394,-0.9722513383468285]]},{\"type\":\"line\",\"version\":1488,\"versionNonce\":1932208621,\"isDeleted\":false,\"id\":\"z_ZuHFRhA2CyEuT4Y4775\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":1017.7113531815239,\"y\":455.648898859695,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":6.111294126751562,\"height\":3.8890053533873536,\"seed\":140666819,\"groupIds\":[\"IIw2iYP7lal8kigv8OmHG\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[-3.7501123050520944,-3.889005353387353],[-6.111294126751561,0]]},{\"type\":\"line\",\"version\":1466,\"versionNonce\":694772813,\"isDeleted\":false,\"id\":\"bYCGt6Y_VsZLyNmz3ky4N\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":1017.4335670848432,\"y\":462.17687213145064,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":6.111294126751562,\"height\":4.722363643398934,\"seed\":132544355,\"groupIds\":[\"IIw2iYP7lal8kigv8OmHG\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[-2.7778609667052487,-4.722363643398935],[-6.111294126751561,-1.5278235316878936]]},{\"type\":\"line\",\"version\":1461,\"versionNonce\":1152471725,\"isDeleted\":false,\"id\":\"OyW3HbF5kaLCCjemCq3GH\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":1019.3780697615412,\"y\":466.4825566298466,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":6.527973271757348,\"height\":3.333433160046305,\"seed\":126325507,\"groupIds\":[\"IIw2iYP7lal8kigv8OmHG\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[-3.3334331600463027,-3.333433160046305],[-6.527973271757348,-0.8333582900115799]]},{\"type\":\"line\",\"version\":1475,\"versionNonce\":1638692109,\"isDeleted\":false,\"id\":\"mDs5dcBLsmYPO_R5E5bVY\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":1028.4061179033333,\"y\":442.7318453645146,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":4.4445775467284045,\"height\":3.194540111711042,\"seed\":398736035,\"groupIds\":[\"IIw2iYP7lal8kigv8OmHG\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[1.6667165800231543,-3.194540111711042],[4.4445775467284045,-0.9722513383468374]]},{\"type\":\"line\",\"version\":1449,\"versionNonce\":1272204141,\"isDeleted\":false,\"id\":\"mejvtmeM3lEy3rH49iaiO\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":1022.017037679906,\"y\":443.4263106061926,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":4.3056844983931475,\"height\":3.055647063375781,\"seed\":894103107,\"groupIds\":[\"IIw2iYP7lal8kigv8OmHG\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[-1.3889304833526368,-3.0556470633757806],[-4.3056844983931475,-2.7778609667052603]]},{\"type\":\"rectangle\",\"version\":1976,\"versionNonce\":594695629,\"isDeleted\":false,\"id\":\"3UZ6RbDlWMkEWgoZtyKNL\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":990.254625787873,\"y\":519.8274204720194,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"#15aabf\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":1123692003,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"ellipse\",\"version\":1709,\"versionNonce\":1134564397,\"isDeleted\":false,\"id\":\"WbSDZ23nw7-UacRmQJt5D\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":1020.2114758806892,\"y\":518.7736717981895,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#c92a2a\",\"width\":12.471776185810908,\"height\":8.634306590176644,\"seed\":1138784643,\"groupIds\":[\"FXQS4n1QQ5NM2u35Xoz5R\"],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"ellipse\",\"version\":1661,\"versionNonce\":1749485197,\"isDeleted\":false,\"id\":\"EOPPbHCJY9dhdgMyOwLWK\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":4.728678266311217,\"x\":1016.7921506134453,\"y\":527.1083194422861,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#c92a2a\",\"width\":19.328773322340993,\"height\":16.96574827850908,\"seed\":1430016291,\"groupIds\":[\"FXQS4n1QQ5NM2u35Xoz5R\"],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"line\",\"version\":1442,\"versionNonce\":337685741,\"isDeleted\":false,\"id\":\"pZ7RPeKsfZOCbxGmkVPbj\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":1034.406267643396,\"y\":531.3711127630238,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":7.083545465098394,\"height\":4.166791450057882,\"seed\":1752970435,\"groupIds\":[\"FXQS4n1QQ5NM2u35Xoz5R\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[4.166791450057878,-4.166791450057882],[7.083545465098394,-0.9722513383468285]]},{\"type\":\"line\",\"version\":1466,\"versionNonce\":917931853,\"isDeleted\":false,\"id\":\"eEzOZQiuihTTpV_Vi122p\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":1035.8848856578106,\"y\":536.0732353995329,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":7.083545465098394,\"height\":4.166791450057882,\"seed\":1027515491,\"groupIds\":[\"FXQS4n1QQ5NM2u35Xoz5R\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[4.166791450057878,-4.166791450057882],[7.083545465098394,-0.9722513383468285]]},{\"type\":\"line\",\"version\":1493,\"versionNonce\":308417965,\"isDeleted\":false,\"id\":\"sIfK0QEGfrYKOA5GUGLD1\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":1031.0033879591783,\"y\":543.5937010165264,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":7.083545465098394,\"height\":4.166791450057882,\"seed\":458366979,\"groupIds\":[\"FXQS4n1QQ5NM2u35Xoz5R\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[4.166791450057878,-4.166791450057882],[7.083545465098394,-0.9722513383468285]]},{\"type\":\"line\",\"version\":1475,\"versionNonce\":1649203213,\"isDeleted\":false,\"id\":\"0J1LgOjgyhR_SwlbCKL0g\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":1018.7113531815239,\"y\":531.648898859695,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":6.111294126751562,\"height\":3.8890053533873536,\"seed\":1286940579,\"groupIds\":[\"FXQS4n1QQ5NM2u35Xoz5R\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[-3.7501123050520944,-3.889005353387353],[-6.111294126751561,0]]},{\"type\":\"line\",\"version\":1453,\"versionNonce\":1081101933,\"isDeleted\":false,\"id\":\"fW9izBa4CNOU3gdAXebeC\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":1018.4335670848432,\"y\":538.1768721314506,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":6.111294126751562,\"height\":4.722363643398934,\"seed\":1469463363,\"groupIds\":[\"FXQS4n1QQ5NM2u35Xoz5R\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[-2.7778609667052487,-4.722363643398935],[-6.111294126751561,-1.5278235316878936]]},{\"type\":\"line\",\"version\":1448,\"versionNonce\":1268119757,\"isDeleted\":false,\"id\":\"nFAwfIzBj_WCf9le-vPYs\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":1020.3780697615412,\"y\":542.4825566298466,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":6.527973271757348,\"height\":3.333433160046305,\"seed\":2018761443,\"groupIds\":[\"FXQS4n1QQ5NM2u35Xoz5R\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[-3.3334331600463027,-3.333433160046305],[-6.527973271757348,-0.8333582900115799]]},{\"type\":\"line\",\"version\":1462,\"versionNonce\":223827757,\"isDeleted\":false,\"id\":\"Cq16kQExmFKOVXHF2MJLt\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":1029.4061179033333,\"y\":518.7318453645146,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":4.4445775467284045,\"height\":3.194540111711042,\"seed\":1534887555,\"groupIds\":[\"FXQS4n1QQ5NM2u35Xoz5R\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[1.6667165800231543,-3.194540111711042],[4.4445775467284045,-0.9722513383468374]]},{\"type\":\"line\",\"version\":1436,\"versionNonce\":538831245,\"isDeleted\":false,\"id\":\"gYPT_zDOaqJVt-r4G1FsT\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":1023.017037679906,\"y\":519.4263106061926,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":4.3056844983931475,\"height\":3.055647063375781,\"seed\":399425059,\"groupIds\":[\"FXQS4n1QQ5NM2u35Xoz5R\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[-1.3889304833526368,-3.0556470633757806],[-4.3056844983931475,-2.7778609667052603]]},{\"type\":\"rectangle\",\"version\":1893,\"versionNonce\":354627565,\"isDeleted\":false,\"id\":\"TC_5QNNL9wufhcKN2DkoQ\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":990.4310544602922,\"y\":590.6823628624115,\"strokeColor\":\"#84142d\",\"backgroundColor\":\"#c92a2a\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":1748566467,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1829,\"versionNonce\":443591245,\"isDeleted\":false,\"id\":\"Q355NU9MgHp5_bxJzrM7e\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":815.4310544602922,\"y\":444.68236286241154,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"#15aabf\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":635031907,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1925,\"versionNonce\":1625282733,\"isDeleted\":false,\"id\":\"DkOHRY8Px8LfFOC6MscAc\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":815.4310544602922,\"y\":518.6823628624115,\"strokeColor\":\"#84142d\",\"backgroundColor\":\"#c92a2a\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":33533187,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1882,\"versionNonce\":1109015309,\"isDeleted\":false,\"id\":\"aUdMMIvuSKZRpodXwIFqJ\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":815.4310544602922,\"y\":586.6823628624115,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"#15aabf\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":2692259,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1981,\"versionNonce\":647582061,\"isDeleted\":false,\"id\":\"B3wc0uFOVW6XaoylaG27_\",\"fillStyle\":\"hachure\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":258.6241116289866,\"y\":510.0337353311961,\"strokeColor\":\"#e67700\",\"backgroundColor\":\"#fab005\",\"width\":44.008394151477845,\"height\":47.04345581709699,\"seed\":805603395,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"text\",\"version\":1969,\"versionNonce\":732339149,\"isDeleted\":false,\"id\":\"QJoL0zKGQjppNG-W_PyFW\",\"fillStyle\":\"hachure\",\"strokeWidth\":1,\"strokeStyle\":\"dotted\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":352.62899456951163,\"y\":528.168202150576,\"strokeColor\":\"#495057\",\"backgroundColor\":\"#868e96\",\"width\":45,\"height\":30,\"seed\":661686243,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"fontSize\":23.844697551811258,\"fontFamily\":1,\"text\":\"Epic\",\"textAlign\":\"left\",\"verticalAlign\":\"top\",\"containerId\":null,\"originalText\":\"Epic\",\"lineHeight\":1.258141351334573,\"baseline\":21.80460756797025},{\"type\":\"rectangle\",\"version\":1995,\"versionNonce\":156998189,\"isDeleted\":false,\"id\":\"KvARoP24nXy3mYDAaxc2o\",\"fillStyle\":\"hachure\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":256.14087935711177,\"y\":602.7410734810205,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"#15aabf\",\"width\":44.008394151477845,\"height\":47.04345581709699,\"seed\":1014731651,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"text\",\"version\":2046,\"versionNonce\":950127757,\"isDeleted\":false,\"id\":\"YyDkg4gSKdZV5mQmtARKX\",\"fillStyle\":\"hachure\",\"strokeWidth\":1,\"strokeStyle\":\"dotted\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":338.07894672034854,\"y\":601.2235426482107,\"strokeColor\":\"#495057\",\"backgroundColor\":\"#868e96\",\"width\":145,\"height\":30,\"seed\":2137271075,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"fontSize\":24.179336509860274,\"fontFamily\":1,\"text\":\"User history\",\"textAlign\":\"center\",\"verticalAlign\":\"top\",\"containerId\":null,\"originalText\":\"User history\",\"lineHeight\":1.2407288342161942,\"baseline\":22.22250797881134},{\"type\":\"text\",\"version\":2039,\"versionNonce\":1496494829,\"isDeleted\":false,\"id\":\"99IHM5m6PpzYJ67pSfSjM\",\"fillStyle\":\"hachure\",\"strokeWidth\":1,\"strokeStyle\":\"dotted\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":332.9306307457491,\"y\":696.4914555988303,\"strokeColor\":\"#495057\",\"backgroundColor\":\"#868e96\",\"width\":61,\"height\":31,\"seed\":1956171459,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"fontSize\":24.280493324953294,\"fontFamily\":1,\"text\":\"Task\",\"textAlign\":\"left\",\"verticalAlign\":\"top\",\"containerId\":null,\"originalText\":\"Task\",\"lineHeight\":1.2767450638303548,\"baseline\":23.35811846807148},{\"type\":\"text\",\"version\":2311,\"versionNonce\":1469566285,\"isDeleted\":false,\"id\":\"9MxJ5DXmpr2vfDUCfHoH5\",\"fillStyle\":\"hachure\",\"strokeWidth\":1,\"strokeStyle\":\"dotted\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":339.9148133783019,\"y\":436.5948840579856,\"strokeColor\":\"#495057\",\"backgroundColor\":\"#868e96\",\"width\":145,\"height\":30,\"seed\":246939235,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"fontSize\":24.037688391703753,\"fontFamily\":1,\"text\":\"Architecture\",\"textAlign\":\"left\",\"verticalAlign\":\"top\",\"containerId\":null,\"originalText\":\"Architecture\",\"lineHeight\":1.2480401405966328,\"baseline\":22.04703662568081},{\"type\":\"rectangle\",\"version\":2197,\"versionNonce\":1395301293,\"isDeleted\":false,\"id\":\"W2dvidT3x0cM00SaDd-Ph\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":248.1114966976411,\"y\":698.0089864316412,\"strokeColor\":\"#e9d349\",\"backgroundColor\":\"#ffff1a\",\"width\":48.344196530933495,\"height\":51.37925819655303,\"seed\":1754282499,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":2412,\"versionNonce\":1142201869,\"isDeleted\":false,\"id\":\"QXTqw-rBY9ZyBWew045Wk\",\"fillStyle\":\"hachure\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":263.1569959347671,\"y\":415.286599243771,\"strokeColor\":\"#c92a2a\",\"backgroundColor\":\"#c92a2a\",\"width\":44.008394151477845,\"height\":47.04345581709699,\"seed\":1059062179,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":2578,\"versionNonce\":1632588909,\"isDeleted\":false,\"id\":\"bVvsYXAH2IS9ES1cEvv2e\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":246.06999292119963,\"y\":428.4823291117493,\"strokeColor\":\"#84142d\",\"backgroundColor\":\"#c92a2a\",\"width\":44.008394151477845,\"height\":47.04345581709699,\"seed\":731239747,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":2002,\"versionNonce\":1185169101,\"isDeleted\":false,\"id\":\"g_ZOK3sC19l3OYrGaRJw_\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":244.6904194368244,\"y\":522.2933260490661,\"strokeColor\":\"#e67700\",\"backgroundColor\":\"#fab005\",\"width\":44.008394151477845,\"height\":47.04345581709699,\"seed\":491795683,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":2014,\"versionNonce\":1521278253,\"isDeleted\":false,\"id\":\"k9KXbbgEvZXGIPaT11cl0\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":246.06999292119963,\"y\":618.4495979098174,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"#15aabf\",\"width\":44.008394151477845,\"height\":47.04345581709699,\"seed\":333291651,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"line\",\"version\":113,\"versionNonce\":1959964557,\"isDeleted\":false,\"id\":\"k2lsgqsLpciIH2BxSXndQ\",\"fillStyle\":\"solid\",\"strokeWidth\":4,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":567.3095805631756,\"y\":383.34458416344,\"strokeColor\":\"#000000\",\"backgroundColor\":\"transparent\",\"width\":680,\"height\":0,\"seed\":419207203,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[680,0]]},{\"type\":\"line\",\"version\":82,\"versionNonce\":1129264621,\"isDeleted\":false,\"id\":\"jS1LQhN8yOsPnJ0LsVCuO\",\"fillStyle\":\"solid\",\"strokeWidth\":4,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":727.3095805631756,\"y\":298.34458416344,\"strokeColor\":\"#000000\",\"backgroundColor\":\"transparent\",\"width\":0,\"height\":540,\"seed\":2057018307,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[0,540]]},{\"type\":\"line\",\"version\":71,\"versionNonce\":1898704973,\"isDeleted\":false,\"id\":\"w0JzjX4owjRiEz-nNl_Io\",\"fillStyle\":\"solid\",\"strokeWidth\":4,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":887.3095805631756,\"y\":298.34458416344,\"strokeColor\":\"#000000\",\"backgroundColor\":\"transparent\",\"width\":0,\"height\":540,\"seed\":1155083107,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[0,540]]},{\"type\":\"line\",\"version\":58,\"versionNonce\":205676205,\"isDeleted\":false,\"id\":\"R0L-H1-IHgzF_GHyApSb4\",\"fillStyle\":\"solid\",\"strokeWidth\":4,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":1067.3095805631756,\"y\":298.34458416344,\"strokeColor\":\"#000000\",\"backgroundColor\":\"transparent\",\"width\":0,\"height\":540,\"seed\":2080622339,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[0,540]]},{\"type\":\"rectangle\",\"version\":2015,\"versionNonce\":725352717,\"isDeleted\":false,\"id\":\"92t9ZBzAdg22NNZ5untZ3\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":645.0746113578589,\"y\":426.48544711232034,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"#15aabf\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":379186851,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1999,\"versionNonce\":154559277,\"isDeleted\":false,\"id\":\"FBo3Ddcj9n-bnYlH6kQd1\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":646.0746113578589,\"y\":502.48544711232046,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"#15aabf\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":1506458243,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1916,\"versionNonce\":108419405,\"isDeleted\":false,\"id\":\"uW-yjc5H6fCtmDSUGS57G\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":646.2510400302781,\"y\":573.3403895027126,\"strokeColor\":\"#84142d\",\"backgroundColor\":\"#c92a2a\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":953070179,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"rectangle\",\"version\":1967,\"versionNonce\":1045931949,\"isDeleted\":false,\"id\":\"oS9fvw13j1s6K0TJpDShi\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":644.4635002467485,\"y\":647.6906960852943,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"#15aabf\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":95448579,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"ellipse\",\"version\":1698,\"versionNonce\":1572874765,\"isDeleted\":false,\"id\":\"2AJy_LViL22XgTAR-nW2w\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":674.4203503395647,\"y\":646.6369474114645,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#c92a2a\",\"width\":12.471776185810908,\"height\":8.634306590176644,\"seed\":840545699,\"groupIds\":[\"s6C46DMjtV2hBVdObNF_-\"],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"ellipse\",\"version\":1650,\"versionNonce\":1437163629,\"isDeleted\":false,\"id\":\"6_6O1SZHDlquc5UE7BSSO\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":4.728678266311217,\"x\":671.0010250723208,\"y\":654.971595055561,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#c92a2a\",\"width\":19.328773322340993,\"height\":16.96574827850908,\"seed\":2100889923,\"groupIds\":[\"s6C46DMjtV2hBVdObNF_-\"],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"line\",\"version\":1431,\"versionNonce\":1004325581,\"isDeleted\":false,\"id\":\"bnX5QUs4DndwH0QpcLV-Z\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":688.6151421022714,\"y\":659.2343883762987,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":7.083545465098394,\"height\":4.166791450057882,\"seed\":1013770467,\"groupIds\":[\"s6C46DMjtV2hBVdObNF_-\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[4.166791450057878,-4.166791450057882],[7.083545465098394,-0.9722513383468285]]},{\"type\":\"line\",\"version\":1455,\"versionNonce\":821291309,\"isDeleted\":false,\"id\":\"Z3sBCgX_Om4qs7iLbSvO6\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":690.0937601166861,\"y\":663.9365110128078,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":7.083545465098394,\"height\":4.166791450057882,\"seed\":356766851,\"groupIds\":[\"s6C46DMjtV2hBVdObNF_-\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[4.166791450057878,-4.166791450057882],[7.083545465098394,-0.9722513383468285]]},{\"type\":\"line\",\"version\":1482,\"versionNonce\":106445709,\"isDeleted\":false,\"id\":\"2vHgjXiD7V5Pv8fRiNLh1\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":685.2122624180538,\"y\":671.4569766298014,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":7.083545465098394,\"height\":4.166791450057882,\"seed\":2004634659,\"groupIds\":[\"s6C46DMjtV2hBVdObNF_-\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[4.166791450057878,-4.166791450057882],[7.083545465098394,-0.9722513383468285]]},{\"type\":\"line\",\"version\":1464,\"versionNonce\":608387565,\"isDeleted\":false,\"id\":\"-5evlL-dijUPRNB9rC-xs\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":672.9202276403994,\"y\":659.51217447297,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":6.111294126751562,\"height\":3.8890053533873536,\"seed\":1459933123,\"groupIds\":[\"s6C46DMjtV2hBVdObNF_-\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[-3.7501123050520944,-3.889005353387353],[-6.111294126751561,0]]},{\"type\":\"line\",\"version\":1442,\"versionNonce\":801012813,\"isDeleted\":false,\"id\":\"T-v88QOi3GEPGregjbfrx\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":672.6424415437186,\"y\":666.0401477447256,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":6.111294126751562,\"height\":4.722363643398934,\"seed\":637263715,\"groupIds\":[\"s6C46DMjtV2hBVdObNF_-\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[-2.7778609667052487,-4.722363643398935],[-6.111294126751561,-1.5278235316878936]]},{\"type\":\"line\",\"version\":1437,\"versionNonce\":1889757869,\"isDeleted\":false,\"id\":\"Sd4EOctRaUyAGXZZlXtHV\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":674.5869442204175,\"y\":670.3458322431215,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":6.527973271757348,\"height\":3.333433160046305,\"seed\":246414083,\"groupIds\":[\"s6C46DMjtV2hBVdObNF_-\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[-3.3334331600463027,-3.333433160046305],[-6.527973271757348,-0.8333582900115799]]},{\"type\":\"line\",\"version\":1451,\"versionNonce\":2006682893,\"isDeleted\":false,\"id\":\"T5ViAfbmCEYiyZhaY6OzQ\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":683.6149923622088,\"y\":646.5951209777895,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":4.4445775467284045,\"height\":3.194540111711042,\"seed\":1839178403,\"groupIds\":[\"s6C46DMjtV2hBVdObNF_-\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[1.6667165800231543,-3.194540111711042],[4.4445775467284045,-0.9722513383468374]]},{\"type\":\"line\",\"version\":1425,\"versionNonce\":69231469,\"isDeleted\":false,\"id\":\"V3VlMSpiImQR2e2oK0gey\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":677.2259121387806,\"y\":647.2895862194675,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":4.3056844983931475,\"height\":3.055647063375781,\"seed\":192501315,\"groupIds\":[\"s6C46DMjtV2hBVdObNF_-\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[-1.3889304833526368,-3.0556470633757806],[-4.3056844983931475,-2.7778609667052603]]},{\"type\":\"rectangle\",\"version\":1967,\"versionNonce\":712732109,\"isDeleted\":false,\"id\":\"1c29ZhwZuSEGPJReZAaRK\",\"fillStyle\":\"solid\",\"strokeWidth\":1,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":644.4635002467485,\"y\":716.5795849741831,\"strokeColor\":\"#1864ab\",\"backgroundColor\":\"#15aabf\",\"width\":46.36094799019761,\"height\":49.558254748142254,\"seed\":387683811,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"ellipse\",\"version\":1702,\"versionNonce\":969288749,\"isDeleted\":false,\"id\":\"Q6JW7bbayg9GI3gniw4ln\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":674.4203503395647,\"y\":714.8115505860674,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#c92a2a\",\"width\":12.471776185810908,\"height\":8.634306590176644,\"seed\":1603592579,\"groupIds\":[\"yEfL64HT-qz4XzBp4uFET\"],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"ellipse\",\"version\":1654,\"versionNonce\":1642733197,\"isDeleted\":false,\"id\":\"0qQQF-dG7V73Maxz9aqlz\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":4.728678266311217,\"x\":671.0010250723208,\"y\":723.1461982301644,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#c92a2a\",\"width\":19.328773322340993,\"height\":16.96574827850908,\"seed\":1310964003,\"groupIds\":[\"yEfL64HT-qz4XzBp4uFET\"],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false},{\"type\":\"line\",\"version\":1435,\"versionNonce\":429966573,\"isDeleted\":false,\"id\":\"ckpPFpn6bJ6j5FQhEPGwy\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":688.6151421022714,\"y\":727.4089915509016,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":7.083545465098394,\"height\":4.166791450057882,\"seed\":540449987,\"groupIds\":[\"yEfL64HT-qz4XzBp4uFET\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[4.166791450057878,-4.166791450057882],[7.083545465098394,-0.9722513383468285]]},{\"type\":\"line\",\"version\":1459,\"versionNonce\":1148428109,\"isDeleted\":false,\"id\":\"Jf7jd6VOj_WvOj95HW0H_\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":690.0937601166861,\"y\":732.1111141874112,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":7.083545465098394,\"height\":4.166791450057882,\"seed\":1634471011,\"groupIds\":[\"yEfL64HT-qz4XzBp4uFET\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[4.166791450057878,-4.166791450057882],[7.083545465098394,-0.9722513383468285]]},{\"type\":\"line\",\"version\":1486,\"versionNonce\":414985645,\"isDeleted\":false,\"id\":\"81Ff7uf9auB9RbgcbbijU\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":685.2122624180538,\"y\":739.6315798044047,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":7.083545465098394,\"height\":4.166791450057882,\"seed\":630360067,\"groupIds\":[\"yEfL64HT-qz4XzBp4uFET\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[4.166791450057878,-4.166791450057882],[7.083545465098394,-0.9722513383468285]]},{\"type\":\"line\",\"version\":1468,\"versionNonce\":1168371725,\"isDeleted\":false,\"id\":\"yKxknyE0yg-YYvhu2MZ-u\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":672.9202276403994,\"y\":727.6867776475731,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":6.111294126751562,\"height\":3.8890053533873536,\"seed\":44601251,\"groupIds\":[\"yEfL64HT-qz4XzBp4uFET\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[-3.7501123050520944,-3.889005353387353],[-6.111294126751561,0]]},{\"type\":\"line\",\"version\":1446,\"versionNonce\":1495557741,\"isDeleted\":false,\"id\":\"cNVpdzRYiW-2YaHXl2HaG\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":672.6424415437186,\"y\":734.2147509193287,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":6.111294126751562,\"height\":4.722363643398934,\"seed\":1255973699,\"groupIds\":[\"yEfL64HT-qz4XzBp4uFET\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[-2.7778609667052487,-4.722363643398935],[-6.111294126751561,-1.5278235316878936]]},{\"type\":\"line\",\"version\":1441,\"versionNonce\":1711739085,\"isDeleted\":false,\"id\":\"DL_XMKMhFHCOONlY0WJxX\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":674.5869442204175,\"y\":738.5204354177247,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":6.527973271757348,\"height\":3.333433160046305,\"seed\":109920995,\"groupIds\":[\"yEfL64HT-qz4XzBp4uFET\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[-3.3334331600463027,-3.333433160046305],[-6.527973271757348,-0.8333582900115799]]},{\"type\":\"line\",\"version\":1455,\"versionNonce\":1776643885,\"isDeleted\":false,\"id\":\"5w1orMD2F8XkNqcAFUgFV\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":683.6149923622088,\"y\":714.7697241523924,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":4.4445775467284045,\"height\":3.194540111711042,\"seed\":776531587,\"groupIds\":[\"yEfL64HT-qz4XzBp4uFET\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[1.6667165800231543,-3.194540111711042],[4.4445775467284045,-0.9722513383468374]]},{\"type\":\"line\",\"version\":1429,\"versionNonce\":1932067213,\"isDeleted\":false,\"id\":\"Gd1TJnt1ml_iQw36jZIux\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":677.2259121387806,\"y\":715.4641893940707,\"strokeColor\":\"#000000\",\"backgroundColor\":\"#ced4da\",\"width\":4.3056844983931475,\"height\":3.055647063375781,\"seed\":617489955,\"groupIds\":[\"yEfL64HT-qz4XzBp4uFET\"],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[-1.3889304833526368,-3.0556470633757806],[-4.3056844983931475,-2.7778609667052603]]},{\"type\":\"text\",\"version\":24,\"versionNonce\":118179821,\"isDeleted\":false,\"id\":\"1Hk2PGUBxawfOrajaKw02\",\"fillStyle\":\"solid\",\"strokeWidth\":4,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":624.1537362475992,\"y\":354.6580991830908,\"strokeColor\":\"#000000\",\"backgroundColor\":\"transparent\",\"width\":34,\"height\":25,\"seed\":1896573379,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"fontSize\":20,\"fontFamily\":1,\"text\":\"(10)\",\"textAlign\":\"left\",\"verticalAlign\":\"top\",\"containerId\":null,\"originalText\":\"(10)\",\"lineHeight\":1.25,\"baseline\":19},{\"type\":\"text\",\"version\":52,\"versionNonce\":1200996941,\"isDeleted\":false,\"id\":\"opeuqqfU4M-C7CE63lhOf\",\"fillStyle\":\"solid\",\"strokeWidth\":4,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":789.3759584698214,\"y\":355.60254362753506,\"strokeColor\":\"#000000\",\"backgroundColor\":\"transparent\",\"width\":26,\"height\":25,\"seed\":941570403,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"fontSize\":20,\"fontFamily\":1,\"text\":\"(7)\",\"textAlign\":\"left\",\"verticalAlign\":\"top\",\"containerId\":null,\"originalText\":\"(7)\",\"lineHeight\":1.25,\"baseline\":19},{\"type\":\"text\",\"version\":86,\"versionNonce\":1503785133,\"isDeleted\":false,\"id\":\"V7hvEUvy0aP3CkhDkBpDk\",\"fillStyle\":\"solid\",\"strokeWidth\":4,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":960.598180692044,\"y\":355.60254362753517,\"strokeColor\":\"#000000\",\"backgroundColor\":\"transparent\",\"width\":28,\"height\":25,\"seed\":2002261251,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"fontSize\":20,\"fontFamily\":1,\"text\":\"(6)\",\"textAlign\":\"left\",\"verticalAlign\":\"top\",\"containerId\":null,\"originalText\":\"(6)\",\"lineHeight\":1.25,\"baseline\":19},{\"type\":\"text\",\"version\":114,\"versionNonce\":182014733,\"isDeleted\":false,\"id\":\"8hCxFarAyL3wTjrEd667h\",\"fillStyle\":\"solid\",\"strokeWidth\":4,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":1140.1537362475992,\"y\":356.82476584975745,\"strokeColor\":\"#000000\",\"backgroundColor\":\"transparent\",\"width\":34,\"height\":25,\"seed\":2117368995,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"fontSize\":20,\"fontFamily\":1,\"text\":\"(10)\",\"textAlign\":\"left\",\"verticalAlign\":\"top\",\"containerId\":null,\"originalText\":\"(10)\",\"lineHeight\":1.25,\"baseline\":19},{\"type\":\"line\",\"version\":131,\"versionNonce\":934635885,\"isDeleted\":false,\"id\":\"Y3p3a2ULwlAFLaK2ytOxj\",\"fillStyle\":\"solid\",\"strokeWidth\":4,\"strokeStyle\":\"dashed\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":900.8204029142662,\"y\":667.2136547386464,\"strokeColor\":\"#e67700\",\"backgroundColor\":\"transparent\",\"width\":151.11111111111086,\"height\":0,\"seed\":677572675,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[151.11111111111086,0]]},{\"type\":\"text\",\"version\":199,\"versionNonce\":1904194509,\"isDeleted\":false,\"id\":\"1yssJxkhiX_c_m4YS_Xb5\",\"fillStyle\":\"solid\",\"strokeWidth\":4,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":960.0426251364888,\"y\":675.8247658497576,\"strokeColor\":\"#e67700\",\"backgroundColor\":\"transparent\",\"width\":39,\"height\":25,\"seed\":1472327651,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"fontSize\":20,\"fontFamily\":1,\"text\":\"WIP\",\"textAlign\":\"left\",\"verticalAlign\":\"top\",\"containerId\":null,\"originalText\":\"WIP\",\"lineHeight\":1.25,\"baseline\":19},{\"type\":\"line\",\"version\":86,\"versionNonce\":1683075629,\"isDeleted\":false,\"id\":\"Dkgea9GnIV-i26en68rTb\",\"fillStyle\":\"solid\",\"strokeWidth\":4,\"strokeStyle\":\"dashed\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":739.1537362475992,\"y\":729.0747658497573,\"strokeColor\":\"#e67700\",\"backgroundColor\":\"transparent\",\"width\":141.11111111111086,\"height\":1.1111111111110858,\"seed\":778042243,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":null,\"points\":[[0,0],[141.11111111111086,-1.1111111111110858]]},{\"type\":\"text\",\"version\":140,\"versionNonce\":2098521229,\"isDeleted\":false,\"id\":\"3rmoFEmwQKKku7gUKuIfW\",\"fillStyle\":\"solid\",\"strokeWidth\":4,\"strokeStyle\":\"solid\",\"roughness\":0,\"opacity\":100,\"angle\":0,\"x\":793.3759584698219,\"y\":737.6858769608687,\"strokeColor\":\"#e67700\",\"backgroundColor\":\"transparent\",\"width\":39,\"height\":25,\"seed\":142316323,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"boundElements\":[],\"updated\":1764724963222,\"link\":null,\"locked\":false,\"fontSize\":20,\"fontFamily\":1,\"text\":\"WIP\",\"textAlign\":\"left\",\"verticalAlign\":\"top\",\"containerId\":null,\"originalText\":\"WIP\",\"lineHeight\":1.25,\"baseline\":19}],\"appState\":{\"showWelcomeScreen\":true,\"theme\":\"dark\",\"collaborators\":[],\"currentChartType\":\"bar\",\"currentItemBackgroundColor\":\"transparent\",\"currentItemEndArrowhead\":\"arrow\",\"currentItemFillStyle\":\"solid\",\"currentItemFontFamily\":1,\"currentItemFontSize\":20,\"currentItemOpacity\":100,\"currentItemRoughness\":1,\"currentItemStartArrowhead\":null,\"currentItemStrokeColor\":\"#1e1e1e\",\"currentItemRoundness\":\"round\",\"currentItemStrokeStyle\":\"solid\",\"currentItemStrokeWidth\":2,\"currentItemTextAlign\":\"left\",\"cursorButton\":\"up\",\"activeEmbeddable\":null,\"draggingElement\":null,\"editingElement\":null,\"editingGroupId\":null,\"editingLinearElement\":null,\"activeTool\":{\"type\":\"selection\",\"customType\":null,\"locked\":false,\"lastActiveTool\":null},\"penMode\":false,\"penDetected\":false,\"errorMessage\":null,\"exportBackground\":true,\"exportScale\":2,\"exportEmbedScene\":false,\"exportWithDarkMode\":false,\"fileHandle\":null,\"gridSize\":null,\"isBindingEnabled\":true,\"defaultSidebarDockedPreference\":false,\"isLoading\":false,\"isResizing\":false,\"isRotating\":false,\"lastPointerDownWith\":\"mouse\",\"multiElement\":null,\"name\":\"Untitled-2025-12-02-0903\",\"contextMenu\":null,\"openMenu\":null,\"openPopup\":null,\"openSidebar\":null,\"openDialog\":null,\"pasteDialog\":{\"shown\":false,\"data\":null},\"previousSelectedElementIds\":[],\"resizingElement\":null,\"scrolledOutside\":false,\"scrollX\":474.0776096005857,\"scrollY\":128.2279898366936,\"selectedElementIds\":[],\"selectedGroupIds\":[],\"selectedElementsAreBeingDragged\":false,\"selectionElement\":null,\"shouldCacheIgnoreZoom\":false,\"showStats\":false,\"startBoundElement\":null,\"suggestedBindings\":[],\"frameRendering\":{\"enabled\":true,\"clip\":true,\"name\":true,\"outline\":true},\"frameToHighlight\":null,\"editingFrame\":null,\"elementsToHighlight\":null,\"toast\":null,\"viewBackgroundColor\":\"#ffffff\",\"zenModeEnabled\":false,\"zoom\":{\"value\":0.6041803956031799},\"viewModeEnabled\":false,\"pendingImageElementId\":null,\"showHyperlinkPopup\":false,\"selectedLinearElement\":null,\"snapLines\":[],\"originSnapOffset\":null,\"objectsSnapModeEnabled\":false,\"offsetLeft\":303,\"offsetTop\":189.5,\"width\":1119,\"height\":659},\"files\":[]}',NULL,NULL,NULL,0,1,1,'2025-12-02 14:03:14','2025-12-03 01:35:34'),
(6,'Untitled Diagram','','{\"type\":\"excalidraw\",\"version\":2,\"source\":\"m1_erp\",\"elements\":[{\"type\":\"rectangle\",\"version\":11,\"versionNonce\":211091787,\"isDeleted\":false,\"id\":\"eq80EKfu_iVyHuKnLyk6K\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":410,\"y\":109.5,\"strokeColor\":\"#1e1e1e\",\"backgroundColor\":\"transparent\",\"width\":452,\"height\":132,\"seed\":116474635,\"groupIds\":[],\"frameId\":null,\"roundness\":{\"type\":3},\"boundElements\":[],\"updated\":1764770684029,\"link\":null,\"locked\":false},{\"type\":\"arrow\",\"version\":19,\"versionNonce\":746335653,\"isDeleted\":false,\"id\":\"j4gbc-35Bh3voxdHfFso1\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"angle\":0,\"x\":774,\"y\":157.5,\"strokeColor\":\"#1e1e1e\",\"backgroundColor\":\"transparent\",\"width\":193,\"height\":32,\"seed\":1151115243,\"groupIds\":[],\"frameId\":null,\"roundness\":{\"type\":2},\"boundElements\":[],\"updated\":1764770689802,\"link\":null,\"locked\":false,\"startBinding\":null,\"endBinding\":null,\"lastCommittedPoint\":null,\"startArrowhead\":null,\"endArrowhead\":\"arrow\",\"points\":[[0,0],[193,32]]},{\"id\":\"YAkFN9_R9CmpdyQ1lfJL0\",\"type\":\"rectangle\",\"x\":365,\"y\":287.5,\"width\":295,\"height\":244,\"angle\":0,\"strokeColor\":\"#1e1e1e\",\"backgroundColor\":\"transparent\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"groupIds\":[],\"frameId\":null,\"roundness\":{\"type\":3},\"seed\":1874998676,\"version\":8,\"versionNonce\":2021000212,\"isDeleted\":false,\"boundElements\":null,\"updated\":1764889617217,\"link\":null,\"locked\":false},{\"id\":\"QXswgLdgRENvLfKBYPM1k\",\"type\":\"text\",\"x\":532,\"y\":355.5,\"width\":51.31999969482422,\"height\":25,\"angle\":0,\"strokeColor\":\"#1e1e1e\",\"backgroundColor\":\"transparent\",\"fillStyle\":\"solid\",\"strokeWidth\":2,\"strokeStyle\":\"solid\",\"roughness\":1,\"opacity\":100,\"groupIds\":[],\"frameId\":null,\"roundness\":null,\"seed\":1556373908,\"version\":7,\"versionNonce\":1340932268,\"isDeleted\":false,\"boundElements\":null,\"updated\":1764889622393,\"link\":null,\"locked\":false,\"text\":\"here..\",\"fontSize\":20,\"fontFamily\":1,\"textAlign\":\"left\",\"verticalAlign\":\"top\",\"baseline\":18,\"containerId\":null,\"originalText\":\"here..\",\"lineHeight\":1.25}],\"appState\":{\"showWelcomeScreen\":true,\"theme\":\"dark\",\"collaborators\":[],\"currentChartType\":\"bar\",\"currentItemBackgroundColor\":\"transparent\",\"currentItemEndArrowhead\":\"arrow\",\"currentItemFillStyle\":\"solid\",\"currentItemFontFamily\":1,\"currentItemFontSize\":20,\"currentItemOpacity\":100,\"currentItemRoughness\":1,\"currentItemStartArrowhead\":null,\"currentItemStrokeColor\":\"#1e1e1e\",\"currentItemRoundness\":\"round\",\"currentItemStrokeStyle\":\"solid\",\"currentItemStrokeWidth\":2,\"currentItemTextAlign\":\"left\",\"cursorButton\":\"down\",\"activeEmbeddable\":null,\"draggingElement\":null,\"editingElement\":null,\"editingGroupId\":null,\"editingLinearElement\":null,\"activeTool\":{\"type\":\"selection\",\"customType\":null,\"locked\":false,\"lastActiveTool\":null},\"penMode\":false,\"penDetected\":false,\"errorMessage\":null,\"exportBackground\":true,\"exportScale\":2,\"exportEmbedScene\":false,\"exportWithDarkMode\":false,\"fileHandle\":null,\"gridSize\":null,\"isBindingEnabled\":true,\"defaultSidebarDockedPreference\":false,\"isLoading\":false,\"isResizing\":false,\"isRotating\":false,\"lastPointerDownWith\":\"mouse\",\"multiElement\":null,\"name\":\"Untitled-2025-12-03-0904\",\"contextMenu\":null,\"openMenu\":null,\"openPopup\":null,\"openSidebar\":null,\"openDialog\":null,\"pasteDialog\":{\"shown\":false,\"data\":null},\"previousSelectedElementIds\":[],\"resizingElement\":null,\"scrolledOutside\":false,\"scrollX\":0,\"scrollY\":0,\"selectedElementIds\":[],\"selectedGroupIds\":[],\"selectedElementsAreBeingDragged\":false,\"selectionElement\":null,\"shouldCacheIgnoreZoom\":false,\"showStats\":false,\"startBoundElement\":null,\"suggestedBindings\":[],\"frameRendering\":{\"enabled\":true,\"clip\":true,\"name\":true,\"outline\":true},\"frameToHighlight\":null,\"editingFrame\":null,\"elementsToHighlight\":null,\"toast\":null,\"viewBackgroundColor\":\"#ffffff\",\"zenModeEnabled\":false,\"zoom\":{\"value\":1},\"viewModeEnabled\":false,\"pendingImageElementId\":null,\"showHyperlinkPopup\":false,\"selectedLinearElement\":null,\"snapLines\":[],\"originSnapOffset\":null,\"objectsSnapModeEnabled\":false,\"offsetLeft\":303,\"offsetTop\":189.5,\"width\":1119,\"height\":659},\"files\":[]}',NULL,NULL,NULL,0,1,1,'2025-12-03 14:04:58','2025-12-04 23:07:04');
/*!40000 ALTER TABLE `diagrams` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `discount_customers`
--

DROP TABLE IF EXISTS `discount_customers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `discount_customers` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `discount_id` int(10) unsigned NOT NULL,
  `customer_id` int(10) unsigned NOT NULL,
  `usage_count` int(11) DEFAULT 0,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_discount_customer` (`discount_id`,`customer_id`),
  KEY `customer_id` (`customer_id`),
  CONSTRAINT `discount_customers_ibfk_1` FOREIGN KEY (`discount_id`) REFERENCES `discounts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `discount_customers_ibfk_2` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `discount_customers`
--

LOCK TABLES `discount_customers` WRITE;
/*!40000 ALTER TABLE `discount_customers` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `discount_customers` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `discount_products`
--

DROP TABLE IF EXISTS `discount_products`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `discount_products` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `discount_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_discount_product` (`discount_id`,`product_id`),
  KEY `product_id` (`product_id`),
  CONSTRAINT `discount_products_ibfk_1` FOREIGN KEY (`discount_id`) REFERENCES `discounts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `discount_products_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `discount_products`
--

LOCK TABLES `discount_products` WRITE;
/*!40000 ALTER TABLE `discount_products` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `discount_products` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `discount_usage`
--

DROP TABLE IF EXISTS `discount_usage`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `discount_usage` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `discount_id` int(10) unsigned NOT NULL,
  `customer_id` int(10) unsigned DEFAULT NULL,
  `sales_order_id` int(10) unsigned DEFAULT NULL,
  `invoice_id` int(10) unsigned DEFAULT NULL,
  `discount_amount` decimal(10,2) NOT NULL,
  `used_at` timestamp NULL DEFAULT current_timestamp(),
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `sales_order_id` (`sales_order_id`),
  KEY `invoice_id` (`invoice_id`),
  KEY `idx_discount` (`discount_id`),
  KEY `idx_customer` (`customer_id`),
  KEY `idx_used_at` (`used_at`),
  CONSTRAINT `discount_usage_ibfk_1` FOREIGN KEY (`discount_id`) REFERENCES `discounts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `discount_usage_ibfk_2` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE SET NULL,
  CONSTRAINT `discount_usage_ibfk_3` FOREIGN KEY (`sales_order_id`) REFERENCES `sales_orders` (`id`) ON DELETE SET NULL,
  CONSTRAINT `discount_usage_ibfk_4` FOREIGN KEY (`invoice_id`) REFERENCES `invoices` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `discount_usage`
--

LOCK TABLES `discount_usage` WRITE;
/*!40000 ALTER TABLE `discount_usage` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `discount_usage` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `discounts`
--

DROP TABLE IF EXISTS `discounts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `discounts` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `code` varchar(50) NOT NULL,
  `name` varchar(100) NOT NULL,
  `description` text DEFAULT NULL,
  `discount_type` enum('percentage','fixed_amount','free_shipping','buy_x_get_y') NOT NULL,
  `discount_value` decimal(10,2) NOT NULL,
  `min_order_amount` decimal(10,2) DEFAULT 0.00,
  `max_discount_amount` decimal(10,2) DEFAULT NULL,
  `usage_limit` int(11) DEFAULT NULL,
  `usage_count` int(11) DEFAULT 0,
  `per_customer_limit` int(11) DEFAULT NULL,
  `applies_to` enum('all','specific_products','specific_categories','specific_customers') DEFAULT 'all',
  `valid_from` datetime DEFAULT NULL,
  `valid_to` datetime DEFAULT NULL,
  `is_active` tinyint(1) DEFAULT 1,
  `is_cumulative` tinyint(1) DEFAULT 0,
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `code` (`code`),
  KEY `created_by` (`created_by`),
  KEY `idx_code` (`code`),
  KEY `idx_active` (`is_active`),
  KEY `idx_dates` (`valid_from`,`valid_to`),
  CONSTRAINT `discounts_ibfk_1` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `discounts`
--

LOCK TABLES `discounts` WRITE;
/*!40000 ALTER TABLE `discounts` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `discounts` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `document_categories`
--

DROP TABLE IF EXISTS `document_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `document_categories` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL,
  `parent_id` int(10) unsigned DEFAULT NULL,
  `description` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_parent` (`parent_id`),
  CONSTRAINT `document_categories_ibfk_1` FOREIGN KEY (`parent_id`) REFERENCES `document_categories` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `document_categories`
--

LOCK TABLES `document_categories` WRITE;
/*!40000 ALTER TABLE `document_categories` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `document_categories` VALUES
(1,'General',NULL,'General documents and miscellaneous files','2025-11-18 00:31:01','2025-11-18 00:31:01'),
(2,'Contracts',NULL,'Contracts and agreements','2025-11-18 00:31:01','2025-11-18 00:31:01'),
(3,'Invoices',NULL,'Invoice documents and billing records','2025-11-18 00:31:01','2025-11-18 00:31:01'),
(4,'Reports',NULL,'Business reports and analytics','2025-11-18 00:31:01','2025-11-18 00:31:01'),
(5,'Templates',NULL,'Document templates and forms','2025-11-18 00:31:01','2025-11-18 00:31:01'),
(6,'Policies',NULL,'Company policies and procedures','2025-11-18 00:31:01','2025-11-18 00:31:01'),
(7,'Presentations',NULL,'Presentation files and slideshows','2025-11-18 00:31:01','2025-11-18 00:31:01'),
(8,'Legal',NULL,'Legal documents and compliance','2025-11-18 00:31:01','2025-11-18 00:31:01'),
(9,'HR',NULL,'Human resources documents','2025-11-18 00:31:01','2025-11-18 00:31:01'),
(10,'Marketing',NULL,'Marketing materials and assets','2025-11-18 00:31:01','2025-11-18 00:31:01');
/*!40000 ALTER TABLE `document_categories` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `document_shares`
--

DROP TABLE IF EXISTS `document_shares`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `document_shares` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `document_id` int(10) unsigned NOT NULL,
  `shared_with_user_id` int(10) unsigned DEFAULT NULL,
  `shared_with_role_id` int(10) unsigned DEFAULT NULL,
  `can_edit` tinyint(1) DEFAULT 0,
  `shared_by` int(10) unsigned NOT NULL,
  `shared_at` timestamp NULL DEFAULT current_timestamp(),
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `shared_by` (`shared_by`),
  KEY `idx_document` (`document_id`),
  KEY `idx_user` (`shared_with_user_id`),
  KEY `idx_role` (`shared_with_role_id`),
  CONSTRAINT `document_shares_ibfk_1` FOREIGN KEY (`document_id`) REFERENCES `documents` (`id`) ON DELETE CASCADE,
  CONSTRAINT `document_shares_ibfk_2` FOREIGN KEY (`shared_with_user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE,
  CONSTRAINT `document_shares_ibfk_3` FOREIGN KEY (`shared_with_role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE,
  CONSTRAINT `document_shares_ibfk_4` FOREIGN KEY (`shared_by`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `document_shares`
--

LOCK TABLES `document_shares` WRITE;
/*!40000 ALTER TABLE `document_shares` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `document_shares` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `document_versions`
--

DROP TABLE IF EXISTS `document_versions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `document_versions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `document_id` int(10) unsigned NOT NULL,
  `version` varchar(20) NOT NULL,
  `file_path` varchar(500) NOT NULL,
  `file_size` int(11) DEFAULT NULL,
  `uploaded_by` int(10) unsigned NOT NULL,
  `uploaded_at` timestamp NULL DEFAULT current_timestamp(),
  `notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `uploaded_by` (`uploaded_by`),
  KEY `idx_document` (`document_id`),
  CONSTRAINT `document_versions_ibfk_1` FOREIGN KEY (`document_id`) REFERENCES `documents` (`id`) ON DELETE CASCADE,
  CONSTRAINT `document_versions_ibfk_2` FOREIGN KEY (`uploaded_by`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `document_versions`
--

LOCK TABLES `document_versions` WRITE;
/*!40000 ALTER TABLE `document_versions` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `document_versions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `documentation_coverage`
--

DROP TABLE IF EXISTS `documentation_coverage`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `documentation_coverage` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `coverage_percentage` decimal(5,2) NOT NULL DEFAULT 0.00,
  `total_controllers` int(11) NOT NULL DEFAULT 0,
  `documented_controllers` int(11) NOT NULL DEFAULT 0,
  `undocumented_controllers` int(11) NOT NULL DEFAULT 0,
  `total_routes` int(11) NOT NULL DEFAULT 0,
  `undocumented_items` text DEFAULT NULL COMMENT 'JSON array of undocumented controllers',
  `checked_at` datetime NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_checked_at` (`checked_at`),
  KEY `idx_coverage` (`coverage_percentage`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Stores documentation coverage analysis results';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `documentation_coverage`
--

LOCK TABLES `documentation_coverage` WRITE;
/*!40000 ALTER TABLE `documentation_coverage` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `documentation_coverage` VALUES
(1,99.20,129,128,1,1069,'[{\"name\":\"RFQ\",\"file\":\"RFQController.php\",\"class\":\"RFQController\"}]','2025-11-17 10:57:42','2025-11-17 15:57:42'),
(2,99.30,143,142,1,1292,'[{\"name\":\"RFQ\",\"file\":\"RFQController.php\",\"class\":\"RFQController\"}]','2025-11-26 07:10:09','2025-11-26 12:10:09');
/*!40000 ALTER TABLE `documentation_coverage` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `documents`
--

DROP TABLE IF EXISTS `documents`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `documents` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `file_name` varchar(255) NOT NULL,
  `file_path` varchar(500) NOT NULL,
  `file_size` int(11) DEFAULT NULL,
  `file_type` varchar(100) DEFAULT NULL,
  `category_id` int(10) unsigned DEFAULT NULL,
  `version` varchar(20) DEFAULT '1.0',
  `is_public` tinyint(1) DEFAULT 0,
  `uploaded_by` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `uploaded_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_category` (`category_id`),
  KEY `idx_uploader` (`uploaded_by`),
  KEY `idx_uploaded_at` (`uploaded_at`),
  KEY `idx_documents_deleted_at` (`deleted_at`),
  CONSTRAINT `documents_ibfk_1` FOREIGN KEY (`category_id`) REFERENCES `document_categories` (`id`) ON DELETE SET NULL,
  CONSTRAINT `documents_ibfk_2` FOREIGN KEY (`uploaded_by`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `documents`
--

LOCK TABLES `documents` WRITE;
/*!40000 ALTER TABLE `documents` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `documents` VALUES
(1,'test','','IMG_5218.JPG','ERP_Documents/documents/general/IMG_5218.JPG',239098,'image/jpeg',NULL,'1.0',0,1,'2025-11-18 00:40:26','2025-11-18 00:40:26','2025-11-18 00:40:26',NULL);
/*!40000 ALTER TABLE `documents` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `email_alias_recipients`
--

DROP TABLE IF EXISTS `email_alias_recipients`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `email_alias_recipients` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `alias_id` int(11) NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_alias_user` (`alias_id`,`user_id`),
  KEY `idx_alias_id` (`alias_id`),
  KEY `idx_user_id` (`user_id`),
  CONSTRAINT `email_alias_recipients_ibfk_1` FOREIGN KEY (`alias_id`) REFERENCES `email_aliases` (`id`) ON DELETE CASCADE,
  CONSTRAINT `email_alias_recipients_ibfk_2` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci COMMENT='Users assigned to receive emails from aliases';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_alias_recipients`
--

LOCK TABLES `email_alias_recipients` WRITE;
/*!40000 ALTER TABLE `email_alias_recipients` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `email_alias_recipients` VALUES
(1,5,4,'2025-11-27 00:58:11'),
(2,5,2,'2025-11-27 00:58:14');
/*!40000 ALTER TABLE `email_alias_recipients` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `email_aliases`
--

DROP TABLE IF EXISTS `email_aliases`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `email_aliases` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `alias_email` varchar(255) NOT NULL COMMENT 'The email alias (e.g., sales@mavrix.one)',
  `description` varchar(500) DEFAULT NULL COMMENT 'Description of what this alias is for',
  `is_active` tinyint(1) DEFAULT 1 COMMENT 'Whether this alias is active',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `alias_email` (`alias_email`),
  KEY `idx_alias_email` (`alias_email`),
  KEY `idx_is_active` (`is_active`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci COMMENT='Email aliases for routing to users';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_aliases`
--

LOCK TABLES `email_aliases` WRITE;
/*!40000 ALTER TABLE `email_aliases` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `email_aliases` VALUES
(1,'info@mavrix.one','General information inquiries',1,'2025-11-26 23:53:45','2025-11-26 23:53:45'),
(2,'support@mavrix.one','Customer support',1,'2025-11-26 23:53:45','2025-11-26 23:53:45'),
(3,'sales@mavrix.one','Sales inquiries',1,'2025-11-26 23:53:45','2025-11-26 23:53:45'),
(4,'billing@mavrix.one','Billing and payments',1,'2025-11-26 23:53:45','2025-11-26 23:53:45'),
(5,'csuite@mavrix.one','suite',1,'2025-11-27 00:57:41','2025-11-27 00:57:41');
/*!40000 ALTER TABLE `email_aliases` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `email_attachments`
--

DROP TABLE IF EXISTS `email_attachments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `email_attachments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `email_id` int(10) unsigned NOT NULL,
  `filename` varchar(255) NOT NULL,
  `original_filename` varchar(255) NOT NULL,
  `file_path` varchar(500) NOT NULL,
  `file_size` int(10) unsigned NOT NULL,
  `mime_type` varchar(100) DEFAULT NULL,
  `content_id` varchar(255) DEFAULT NULL COMMENT 'For inline images',
  `is_inline` tinyint(1) DEFAULT 0,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_email` (`email_id`),
  CONSTRAINT `email_attachments_ibfk_1` FOREIGN KEY (`email_id`) REFERENCES `emails` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=32 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_attachments`
--

LOCK TABLES `email_attachments` WRITE;
/*!40000 ALTER TABLE `email_attachments` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `email_attachments` VALUES
(1,63,'693194f06c6e1_ASHBY-LOGO_PURPLE-SMALL.png','ASHBY-LOGO_PURPLE-SMALL.png','uploads/email_attachments/693194f06c6e1_ASHBY-LOGO_PURPLE-SMALL.png',1786,'image/png','6c38d966cbcebfbe09553b99d74f75be',1,'2025-12-04 14:04:32'),
(2,69,'693194f2f2b50_image001.png','image001.png','uploads/email_attachments/693194f2f2b50_image001.png',3569,'image/png','image001.png@01DC5A09.EF068660',1,'2025-12-04 14:04:34'),
(3,70,'693194f606f17_250917_Term_Sheet_LBC-FN_V1__2_.docx','250917 Term Sheet LBC-FN V1 (2).docx','uploads/email_attachments/693194f606f17_250917_Term_Sheet_LBC-FN_V1__2_.docx',46334,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','f_mi7ot9ls0',0,'2025-12-04 14:04:38'),
(4,70,'693194f609b55_D35A_-_3.7Ah_18650.pdf','D35A - 3.7Ah 18650.pdf','uploads/email_attachments/693194f609b55_D35A_-_3.7Ah_18650.pdf',570197,'application/pdf','f_mi7ov3hq1',0,'2025-12-04 14:04:38'),
(5,70,'693194f60a1f5_C55C_-_5.5Ah_21700_HP.pdf','C55C - 5.5Ah 21700 HP.pdf','uploads/email_attachments/693194f60a1f5_C55C_-_5.5Ah_21700_HP.pdf',637702,'application/pdf','f_mi7ov6bi2',0,'2025-12-04 14:04:38'),
(6,71,'693194fc3a576_image001.jpg','image001.jpg','uploads/email_attachments/693194fc3a576_image001.jpg',4950,'image/jpeg','image001.jpg@01DC5A31.46DC6AE0',1,'2025-12-04 14:04:44'),
(7,71,'693194fc3a835_CCB_1.0.0_web_compressed_2.pdf','CCB_1.0.0_web_compressed_2.pdf','uploads/email_attachments/693194fc3a835_CCB_1.0.0_web_compressed_2.pdf',7863159,'application/pdf','',0,'2025-12-04 14:04:44'),
(8,78,'693194ffadeb9_Lithium_Battery_Company_AE_Proposal_6-25-25.pdf','Lithium Battery Company AE Proposal 6-25-25.pdf','uploads/email_attachments/693194ffadeb9_Lithium_Battery_Company_AE_Proposal_6-25-25.pdf',525116,'application/pdf','19aa842f9731d8a90621',0,'2025-12-04 14:04:47'),
(9,78,'693194ffae306_3900_W_Coachman_Exhibit_A_.pdf','3900 W Coachman Exhibit A .pdf','uploads/email_attachments/693194ffae306_3900_W_Coachman_Exhibit_A_.pdf',1947435,'application/pdf','19aa842f9734797b1072',0,'2025-12-04 14:04:47'),
(10,79,'6931950137655_image002.png','image002.png','uploads/email_attachments/6931950137655_image002.png',973554,'image/png','ii_19ab6e887fa5b16b21',1,'2025-12-04 14:04:49'),
(11,79,'6931950137b2e_image001.jpg','image001.jpg','uploads/email_attachments/6931950137b2e_image001.jpg',1485,'image/jpeg','image001.jpg@01D756D4.5D0E4230',1,'2025-12-04 14:04:49'),
(12,79,'6931950137f4a_Shmuel_de-leon_Energy_company_cells_purchasing_services_presentation_ver_1.pdf','Shmuel de-leon Energy company cells purchasing services presentation ver 1.pdf','uploads/email_attachments/6931950137f4a_Shmuel_de-leon_Energy_company_cells_purchasing_services_presentation_ver_1.pdf',433088,'application/pdf','19ab6e887fb61e1f7a43',0,'2025-12-04 14:04:49'),
(13,83,'693195028bd6e_Offer_Letter_-_Rick_Mislan_11.26.2025_-_signed.pdf','Offer Letter - Rick Mislan 11.26.2025 - signed.pdf','uploads/email_attachments/693195028bd6e_Offer_Letter_-_Rick_Mislan_11.26.2025_-_signed.pdf',221940,'application/pdf','',0,'2025-12-04 14:04:50'),
(14,84,'69319502f1ec1_Mavrix_1_-_Talent_Acquisition_Process_Workflows_11.26.2025.docx','Mavrix 1 - Talent Acquisition Process Workflows 11.26.2025.docx','uploads/email_attachments/69319502f1ec1_Mavrix_1_-_Talent_Acquisition_Process_Workflows_11.26.2025.docx',32230,'application/vnd.openxmlformats-officedocument.wordprocessingml.document','',0,'2025-12-04 14:04:50'),
(15,88,'693195058b3f4_image001.png','image001.png','uploads/email_attachments/693195058b3f4_image001.png',41950,'image/png','image001.png@01DC0856.F0693A70',1,'2025-12-04 14:04:53'),
(16,89,'6931950627866_image001.png','image001.png','uploads/email_attachments/6931950627866_image001.png',41950,'image/png','image001.png@01DC0772.AAD8E6C0',1,'2025-12-04 14:04:54'),
(17,91,'6931950794a01_A32DEC58-A19A-4D8C-93E1-48974D7F1BC1','A32DEC58-A19A-4D8C-93E1-48974D7F1BC1','uploads/email_attachments/6931950794a01_A32DEC58-A19A-4D8C-93E1-48974D7F1BC1',1703,'application/octet-stream','3F9E7DAF-E879-450F-B630-8A06334FB026',1,'2025-12-04 14:04:55'),
(18,92,'6931950875f05_20250808120430.pdf','20250808120430.pdf','uploads/email_attachments/6931950875f05_20250808120430.pdf',381817,'application/pdf','66452de2-bf6d-4372-b5d2-488609fe3728',0,'2025-12-04 14:04:56'),
(19,94,'6931950a1b1f3_A32DEC58-A19A-4D8C-93E1-48974D7F1BC1','A32DEC58-A19A-4D8C-93E1-48974D7F1BC1','uploads/email_attachments/6931950a1b1f3_A32DEC58-A19A-4D8C-93E1-48974D7F1BC1',1703,'application/octet-stream','82D72FA0-2599-46F7-908F-9BAA4277A027',1,'2025-12-04 14:04:58'),
(20,96,'69319521c6cca_Kimley_Team_Quals_-_Mavrix_1.pdf','Kimley Team Quals - Mavrix 1.pdf','uploads/email_attachments/69319521c6cca_Kimley_Team_Quals_-_Mavrix_1.pdf',9948976,'application/pdf','',1,'2025-12-04 14:05:21'),
(21,96,'69319521d761d_CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png','CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png','uploads/email_attachments/69319521d761d_CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png',3569,'image/png','',1,'2025-12-04 14:05:21'),
(22,102,'693195251aeb5_Mavrix1_MASTER_MODEL_11.30.2025__Jordan.xlsx','Mavrix1_MASTER_MODEL_11.30.2025__Jordan.xlsx','uploads/email_attachments/693195251aeb5_Mavrix1_MASTER_MODEL_11.30.2025__Jordan.xlsx',4339299,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','19ae0152a2a6c3e80311',0,'2025-12-04 14:05:25'),
(23,102,'693195251b75a_BOM_for_16kWh_Sol-Ark_1727_10.28.25.xlsx','BOM for 16kWh Sol-Ark_1727_10.28.25.xlsx','uploads/email_attachments/693195251b75a_BOM_for_16kWh_Sol-Ark_1727_10.28.25.xlsx',11958,'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','f_mhb2vnm80',0,'2025-12-04 14:05:25'),
(24,104,'6931952562c74_image001.png','image001.png','uploads/email_attachments/6931952562c74_image001.png',41950,'image/png','image001.png@01DC63AC.FC62A440',1,'2025-12-04 14:05:25'),
(25,107,'69319525a88cc_image003.jpg','image003.jpg','uploads/email_attachments/69319525a88cc_image003.jpg',8642,'image/jpeg','ii_19ae5b9d98f6917eb1',1,'2025-12-04 14:05:25'),
(26,109,'69319526cc53b_CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png','CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png','uploads/email_attachments/69319526cc53b_CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png',3569,'image/png','ii_19ae76cfe50d2422db41',1,'2025-12-04 14:05:26'),
(27,110,'6931952758cee_CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png','CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png','uploads/email_attachments/6931952758cee_CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png',3569,'image/png','ii_19ae76cfe50d2422db41',1,'2025-12-04 14:05:27'),
(28,131,'6931b8efd8f0e_Lithium_Battery_Safety_Guidance.pdf','Lithium_Battery_Safety_Guidance.pdf','uploads/email_attachments/6931b8efd8f0e_Lithium_Battery_Safety_Guidance.pdf',1176673,'application/octet-stream','',0,'2025-12-04 16:38:07'),
(29,138,'693211383aa1c_52AACA64-B468-4285-B5C4-838F6707FFCC','52AACA64-B468-4285-B5C4-838F6707FFCC','uploads/email_attachments/693211383aa1c_52AACA64-B468-4285-B5C4-838F6707FFCC',3569,'application/octet-stream','F2963A61-7387-4B17-BC0E-0980EAF5DF83',1,'2025-12-04 22:54:48'),
(30,139,'6932117e63d4b_52AACA64-B468-4285-B5C4-838F6707FFCC','52AACA64-B468-4285-B5C4-838F6707FFCC','uploads/email_attachments/6932117e63d4b_52AACA64-B468-4285-B5C4-838F6707FFCC',3569,'application/octet-stream','6D0C3475-6E2F-42B7-90FD-6A5C616518E4',1,'2025-12-04 22:55:58'),
(31,139,'6932117e64d8f_womendroneassembly.jpeg','womendroneassembly.jpeg','uploads/email_attachments/6932117e64d8f_womendroneassembly.jpeg',318973,'image/jpeg','',0,'2025-12-04 22:55:58');
/*!40000 ALTER TABLE `email_attachments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `email_filters`
--

DROP TABLE IF EXISTS `email_filters`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `email_filters` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `name` varchar(255) NOT NULL,
  `conditions` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL COMMENT 'Match conditions (from, subject, has_attachment, etc)' CHECK (json_valid(`conditions`)),
  `actions` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL COMMENT 'Actions to perform (move_to_folder, mark_read, star, etc)' CHECK (json_valid(`actions`)),
  `is_active` tinyint(1) DEFAULT 1,
  `priority` int(11) DEFAULT 0,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_user_active` (`user_id`,`is_active`),
  CONSTRAINT `email_filters_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_filters`
--

LOCK TABLES `email_filters` WRITE;
/*!40000 ALTER TABLE `email_filters` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `email_filters` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `email_folder_map`
--

DROP TABLE IF EXISTS `email_folder_map`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `email_folder_map` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `email_id` int(10) unsigned NOT NULL,
  `folder_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_email_folder` (`email_id`,`folder_id`),
  KEY `idx_folder` (`folder_id`),
  CONSTRAINT `email_folder_map_ibfk_1` FOREIGN KEY (`email_id`) REFERENCES `emails` (`id`) ON DELETE CASCADE,
  CONSTRAINT `email_folder_map_ibfk_2` FOREIGN KEY (`folder_id`) REFERENCES `email_folders` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=305 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_folder_map`
--

LOCK TABLES `email_folder_map` WRITE;
/*!40000 ALTER TABLE `email_folder_map` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `email_folder_map` VALUES
(226,49,16,'2025-12-02 21:54:07'),
(230,53,16,'2025-12-04 11:33:14'),
(232,55,16,'2025-12-04 12:01:25'),
(234,56,76,'2025-12-04 12:33:10'),
(235,52,76,'2025-12-04 12:33:10'),
(236,51,76,'2025-12-04 12:33:10'),
(237,50,76,'2025-12-04 12:33:10'),
(238,57,16,'2025-12-04 12:34:51'),
(242,58,76,'2025-12-04 12:45:05'),
(243,54,76,'2025-12-04 12:45:22'),
(244,59,16,'2025-12-04 12:45:53'),
(246,60,76,'2025-12-04 13:14:48'),
(247,61,16,'2025-12-04 13:15:08'),
(248,62,1,'2025-12-04 13:15:17'),
(249,63,4,'2025-12-04 14:04:32'),
(250,64,4,'2025-12-04 14:04:32'),
(251,65,4,'2025-12-04 14:04:32'),
(252,66,4,'2025-12-04 14:04:33'),
(253,67,4,'2025-12-04 14:04:34'),
(254,68,4,'2025-12-04 14:04:34'),
(255,69,4,'2025-12-04 14:04:34'),
(256,70,4,'2025-12-04 14:04:37'),
(257,71,4,'2025-12-04 14:04:44'),
(258,72,4,'2025-12-04 14:04:44'),
(259,73,4,'2025-12-04 14:04:44'),
(260,74,4,'2025-12-04 14:04:44'),
(261,75,4,'2025-12-04 14:04:44'),
(262,76,4,'2025-12-04 14:04:45'),
(263,77,4,'2025-12-04 14:04:46'),
(264,78,4,'2025-12-04 14:04:47'),
(265,79,4,'2025-12-04 14:04:49'),
(266,80,4,'2025-12-04 14:04:49'),
(267,81,4,'2025-12-04 14:04:49'),
(268,82,4,'2025-12-04 14:04:49'),
(269,83,4,'2025-12-04 14:04:50'),
(270,84,4,'2025-12-04 14:04:50'),
(271,85,4,'2025-12-04 14:04:51'),
(272,86,4,'2025-12-04 14:04:52'),
(273,87,4,'2025-12-04 14:04:52'),
(274,88,4,'2025-12-04 14:04:53'),
(275,89,4,'2025-12-04 14:04:54'),
(276,90,4,'2025-12-04 14:04:54'),
(277,91,4,'2025-12-04 14:04:55'),
(278,92,4,'2025-12-04 14:04:56'),
(279,93,4,'2025-12-04 14:04:57'),
(280,94,4,'2025-12-04 14:04:57'),
(281,95,4,'2025-12-04 14:04:58'),
(282,96,4,'2025-12-04 14:05:21'),
(283,97,4,'2025-12-04 14:05:21'),
(284,98,4,'2025-12-04 14:05:22'),
(285,99,4,'2025-12-04 14:05:22'),
(286,100,4,'2025-12-04 14:05:22'),
(287,101,4,'2025-12-04 14:05:22'),
(288,102,4,'2025-12-04 14:05:25'),
(289,103,4,'2025-12-04 14:05:25'),
(290,104,4,'2025-12-04 14:05:25'),
(291,105,4,'2025-12-04 14:05:25'),
(292,106,4,'2025-12-04 14:05:25'),
(293,107,4,'2025-12-04 14:05:25'),
(294,108,4,'2025-12-04 14:05:26'),
(295,109,4,'2025-12-04 14:05:26'),
(296,110,4,'2025-12-04 14:05:27'),
(297,114,16,'2025-12-04 14:59:08'),
(298,115,1,'2025-12-04 14:59:09'),
(299,122,19,'2025-12-04 16:09:56'),
(300,128,1,'2025-12-04 16:18:59'),
(301,130,16,'2025-12-04 16:37:54'),
(302,131,1,'2025-12-04 16:38:07'),
(303,138,1,'2025-12-04 22:54:48'),
(304,139,1,'2025-12-04 22:55:58');
/*!40000 ALTER TABLE `email_folder_map` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `email_folders`
--

DROP TABLE IF EXISTS `email_folders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `email_folders` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `name` varchar(100) NOT NULL,
  `folder_type` enum('inbox','sent','drafts','trash','spam','starred','archive','custom') DEFAULT 'custom',
  `icon` varchar(50) DEFAULT NULL,
  `color` varchar(20) DEFAULT NULL,
  `display_order` int(11) DEFAULT 0,
  `is_system` tinyint(1) DEFAULT 0,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_user_type` (`user_id`,`folder_type`),
  CONSTRAINT `email_folders_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=93 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_folders`
--

LOCK TABLES `email_folders` WRITE;
/*!40000 ALTER TABLE `email_folders` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `email_folders` VALUES
(1,1,'Inbox','inbox','bi-inbox',NULL,1,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(2,2,'Inbox','inbox','bi-inbox',NULL,1,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(3,3,'Inbox','inbox','bi-inbox',NULL,1,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(4,4,'Inbox','inbox','bi-inbox',NULL,1,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(5,5,'Inbox','inbox','bi-inbox',NULL,1,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(6,6,'Inbox','inbox','bi-inbox',NULL,1,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(7,7,'Inbox','inbox','bi-inbox',NULL,1,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(8,8,'Inbox','inbox','bi-inbox',NULL,1,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(9,21,'Inbox','inbox','bi-inbox',NULL,1,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(16,1,'Sent','sent','bi-send',NULL,2,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(17,2,'Sent','sent','bi-send',NULL,2,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(18,3,'Sent','sent','bi-send',NULL,2,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(19,4,'Sent','sent','bi-send',NULL,2,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(20,5,'Sent','sent','bi-send',NULL,2,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(21,6,'Sent','sent','bi-send',NULL,2,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(22,7,'Sent','sent','bi-send',NULL,2,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(23,8,'Sent','sent','bi-send',NULL,2,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(24,21,'Sent','sent','bi-send',NULL,2,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(31,1,'Drafts','drafts','bi-file-earmark-text',NULL,3,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(32,2,'Drafts','drafts','bi-file-earmark-text',NULL,3,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(33,3,'Drafts','drafts','bi-file-earmark-text',NULL,3,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(34,4,'Drafts','drafts','bi-file-earmark-text',NULL,3,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(35,5,'Drafts','drafts','bi-file-earmark-text',NULL,3,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(36,6,'Drafts','drafts','bi-file-earmark-text',NULL,3,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(37,7,'Drafts','drafts','bi-file-earmark-text',NULL,3,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(38,8,'Drafts','drafts','bi-file-earmark-text',NULL,3,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(39,21,'Drafts','drafts','bi-file-earmark-text',NULL,3,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(46,1,'Starred','starred','bi-star',NULL,4,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(47,2,'Starred','starred','bi-star',NULL,4,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(48,3,'Starred','starred','bi-star',NULL,4,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(49,4,'Starred','starred','bi-star',NULL,4,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(50,5,'Starred','starred','bi-star',NULL,4,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(51,6,'Starred','starred','bi-star',NULL,4,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(52,7,'Starred','starred','bi-star',NULL,4,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(53,8,'Starred','starred','bi-star',NULL,4,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(54,21,'Starred','starred','bi-star',NULL,4,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(61,1,'Spam','spam','bi-exclamation-triangle',NULL,5,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(62,2,'Spam','spam','bi-exclamation-triangle',NULL,5,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(63,3,'Spam','spam','bi-exclamation-triangle',NULL,5,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(64,4,'Spam','spam','bi-exclamation-triangle',NULL,5,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(65,5,'Spam','spam','bi-exclamation-triangle',NULL,5,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(66,6,'Spam','spam','bi-exclamation-triangle',NULL,5,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(67,7,'Spam','spam','bi-exclamation-triangle',NULL,5,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(68,8,'Spam','spam','bi-exclamation-triangle',NULL,5,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(69,21,'Spam','spam','bi-exclamation-triangle',NULL,5,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(76,1,'Trash','trash','bi-trash',NULL,6,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(77,2,'Trash','trash','bi-trash',NULL,6,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(78,3,'Trash','trash','bi-trash',NULL,6,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(79,4,'Trash','trash','bi-trash',NULL,6,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(80,5,'Trash','trash','bi-trash',NULL,6,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(81,6,'Trash','trash','bi-trash',NULL,6,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(82,7,'Trash','trash','bi-trash',NULL,6,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(83,8,'Trash','trash','bi-trash',NULL,6,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(84,21,'Trash','trash','bi-trash',NULL,6,1,'2025-11-26 15:51:32','2025-11-26 15:51:32'),
(91,1,'Archive','archive','bi-archive',NULL,0,1,'2025-11-27 13:36:32','2025-11-27 13:36:32'),
(92,21,'Archive','archive','bi-archive',NULL,0,1,'2025-11-29 13:37:39','2025-11-29 13:37:39');
/*!40000 ALTER TABLE `email_folders` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `email_log`
--

DROP TABLE IF EXISTS `email_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `email_log` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `template_id` int(11) DEFAULT NULL COMMENT 'Template used (if any)',
  `template_name` varchar(100) DEFAULT NULL COMMENT 'Template name at time of sending',
  `to_email` varchar(500) NOT NULL COMMENT 'Recipient email(s)',
  `to_name` varchar(255) DEFAULT NULL COMMENT 'Recipient name',
  `cc` varchar(500) DEFAULT NULL,
  `bcc` varchar(500) DEFAULT NULL,
  `from_email` varchar(255) DEFAULT NULL,
  `from_name` varchar(255) DEFAULT NULL,
  `reply_to` varchar(255) DEFAULT NULL,
  `subject` varchar(500) NOT NULL,
  `body_html` longtext DEFAULT NULL,
  `body_text` longtext DEFAULT NULL,
  `attachments` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'List of attachment file paths' CHECK (json_valid(`attachments`)),
  `status` enum('pending','sent','failed','bounced') DEFAULT 'pending',
  `error_message` text DEFAULT NULL COMMENT 'Error message if failed',
  `sent_at` timestamp NULL DEFAULT NULL COMMENT 'When email was successfully sent',
  `user_id` int(10) unsigned DEFAULT NULL COMMENT 'User who triggered the email',
  `related_type` varchar(100) DEFAULT NULL COMMENT 'Related entity type (Invoice, Quote, etc.)',
  `related_id` int(10) unsigned DEFAULT NULL COMMENT 'Related entity ID',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_template_id` (`template_id`),
  KEY `idx_to_email` (`to_email`(255)),
  KEY `idx_status` (`status`),
  KEY `idx_sent_at` (`sent_at`),
  KEY `idx_related` (`related_type`,`related_id`),
  KEY `idx_user_id` (`user_id`),
  CONSTRAINT `email_log_ibfk_1` FOREIGN KEY (`template_id`) REFERENCES `email_templates` (`id`) ON DELETE SET NULL,
  CONSTRAINT `email_log_ibfk_2` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Email sending log';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_log`
--

LOCK TABLES `email_log` WRITE;
/*!40000 ALTER TABLE `email_log` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `email_log` VALUES
(1,NULL,NULL,'rick@mavrix.one',NULL,NULL,NULL,'noreply@example.com','M1 ERP',NULL,'Admin User invited you to a calendar event','<html><body><h2>Admin User invited you to a calendar event</h2><p>&lt;strong&gt;Event:&lt;/strong&gt; Test6&lt;br&gt;&lt;strong&gt;Start:&lt;/strong&gt; Nov 27, 2025 4:00 PM&lt;br&gt;&lt;strong&gt;End:&lt;/strong&gt; Nov 27, 2025 4:30 PM&lt;br&gt;&lt;strong&gt;Location:&lt;/strong&gt; Not specified&lt;br&gt;</p><p><a href=\'http://localhost:8080/calendar\' style=\'display:inline-block;padding:10px 20px;background:#007bff;color:#fff;text-decoration:none;border-radius:4px;\'>View Details</a></p><hr><p style=\'color:#666;font-size:12px;\'>You received this notification from M1 ERP. To manage your notification preferences, visit your account settings.</p></body></html>','Event: Test6Start: Nov 27, 2025 4:00 PMEnd: Nov 27, 2025 4:30 PMLocation: Not specified',NULL,'pending',NULL,NULL,1,'CalendarEvent',15,'2025-11-27 20:53:37'),
(2,NULL,NULL,'rick@mavrix.one',NULL,NULL,NULL,'noreply@example.com','M1 ERP',NULL,'Admin User invited you to a calendar event','<html><body><h2>Admin User invited you to a calendar event</h2><p>&lt;strong&gt;Event:&lt;/strong&gt; Test6&lt;br&gt;&lt;strong&gt;Start:&lt;/strong&gt; Nov 27, 2025 4:00 PM&lt;br&gt;&lt;strong&gt;End:&lt;/strong&gt; Nov 27, 2025 4:30 PM&lt;br&gt;&lt;strong&gt;Location:&lt;/strong&gt; Not specified&lt;br&gt;</p><p><a href=\'http://localhost:8080/calendar\' style=\'display:inline-block;padding:10px 20px;background:#007bff;color:#fff;text-decoration:none;border-radius:4px;\'>View Details</a></p><hr><p style=\'color:#666;font-size:12px;\'>You received this notification from M1 ERP. To manage your notification preferences, visit your account settings.</p></body></html>','Event: Test6Start: Nov 27, 2025 4:00 PMEnd: Nov 27, 2025 4:30 PMLocation: Not specified',NULL,'pending',NULL,NULL,1,'CalendarEvent',16,'2025-11-27 20:53:40'),
(3,NULL,NULL,'rick@mavrix.one',NULL,NULL,NULL,'noreply@example.com','M1 ERP',NULL,'Admin User invited you to a calendar event','<html><body><h2>Admin User invited you to a calendar event</h2><p>&lt;strong&gt;Event:&lt;/strong&gt; Test6&lt;br&gt;&lt;strong&gt;Start:&lt;/strong&gt; Nov 27, 2025 4:00 PM&lt;br&gt;&lt;strong&gt;End:&lt;/strong&gt; Nov 27, 2025 4:30 PM&lt;br&gt;&lt;strong&gt;Location:&lt;/strong&gt; Not specified&lt;br&gt;</p><p><a href=\'http://localhost:8080/calendar\' style=\'display:inline-block;padding:10px 20px;background:#007bff;color:#fff;text-decoration:none;border-radius:4px;\'>View Details</a></p><hr><p style=\'color:#666;font-size:12px;\'>You received this notification from M1 ERP. To manage your notification preferences, visit your account settings.</p></body></html>','Event: Test6Start: Nov 27, 2025 4:00 PMEnd: Nov 27, 2025 4:30 PMLocation: Not specified',NULL,'pending',NULL,NULL,1,'CalendarEvent',17,'2025-11-27 20:53:46'),
(4,NULL,NULL,'rick@mavrix.one',NULL,NULL,NULL,'noreply@example.com','M1 ERP',NULL,'Admin User invited you to a calendar event','<html><body><h2>Admin User invited you to a calendar event</h2><p>&lt;strong&gt;Event:&lt;/strong&gt; Test6&lt;br&gt;&lt;strong&gt;Start:&lt;/strong&gt; Nov 27, 2025 4:00 PM&lt;br&gt;&lt;strong&gt;End:&lt;/strong&gt; Nov 27, 2025 4:30 PM&lt;br&gt;&lt;strong&gt;Location:&lt;/strong&gt; Not specified&lt;br&gt;</p><p><a href=\'http://localhost:8080/calendar\' style=\'display:inline-block;padding:10px 20px;background:#007bff;color:#fff;text-decoration:none;border-radius:4px;\'>View Details</a></p><hr><p style=\'color:#666;font-size:12px;\'>You received this notification from M1 ERP. To manage your notification preferences, visit your account settings.</p></body></html>','Event: Test6Start: Nov 27, 2025 4:00 PMEnd: Nov 27, 2025 4:30 PMLocation: Not specified',NULL,'pending',NULL,NULL,1,'CalendarEvent',18,'2025-11-27 20:53:49'),
(5,NULL,NULL,'rick@mavrix.one',NULL,NULL,NULL,'noreply@example.com','Admin User',NULL,'Calendar Event Invitation: ricks mtg','<div style=\"font-family: Arial, sans-serif; max-width: 600px; margin: 0 auto;\"><div style=\"background: linear-gradient(135deg, #0066cc 0%, #004999 100%); color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;\"><h2 style=\"margin: 0; font-size: 24px;\">📅 Calendar Event Invitation</h2></div><div style=\"background: #f8f9fa; padding: 20px; border-left: 4px solid #0066cc; border-right: 1px solid #dee2e6; border-bottom: 1px solid #dee2e6;\"><h3 style=\"margin-top: 0; color: #333;\">ricks mtg</h3><table style=\"width: 100%; border-collapse: collapse; margin-top: 15px;\"><tr><td style=\"padding: 8px 0; width: 120px; vertical-align: top; color: #666;\"><strong>📅 Start:</strong></td><td style=\"padding: 8px 0; color: #333;\">Nov 27, 2025 4:00 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>🕐 End:</strong></td><td style=\"padding: 8px 0; color: #333;\">Nov 27, 2025 4:30 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>📍 Location:</strong></td><td style=\"padding: 8px 0; color: #333;\">Not specified</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>📝 Details:</strong></td><td style=\"padding: 8px 0; color: #333;\">test</td></tr></table><div style=\"margin-top: 20px; text-align: center;\"><a href=\"http://localhost:8080/calendar\" style=\"display: inline-block; padding: 12px 30px; background: #0066cc; color: white; text-decoration: none; border-radius: 4px; font-weight: bold;\">View Calendar</a></div></div><div style=\"font-family: Arial, sans-serif; color: #333; background: #ffffff; padding: 15px; margin-top: 20px;\"><hr style=\"border: none; border-top: 2px solid #0066cc; margin: 0 0 15px 0;\"><table style=\"border-collapse: collapse;\"><tr><td style=\"vertical-align: top; padding-right: 10px; width: 80px;\"><img src=\"http://localhost:8080/uploads/company/logo_1762869843.png\" alt=\"Mavrix1\" style=\"max-height: 35px; max-width: 80px; width: auto; height: auto; object-fit: contain; display: block;\"></td><td style=\"vertical-align: top;\"><strong style=\"font-size: 14px;\">Admin User</strong><br><span style=\"font-size: 12px; color: #666;\">Administrator</span><br><br><span style=\"font-size: 12px;\">📧 <a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></span><br><span style=\"font-size: 12px;\">📞 906-123-4567</span><br><span style=\"font-size: 12px;\">🏢 906-555-4567</span><br><span style=\"font-size: 12px;\">🌐 <a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></span><br></td></tr></table><hr style=\"border: none; border-top: 1px solid #e0e0e0; margin: 15px 0 10px 0;\"><p style=\"font-size: 9px; color: #666; margin: 0; line-height: 1.4;\"><strong>CONFIDENTIALITY NOTICE:</strong> This email and any attachments are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify Mavrix1 immediately and delete this email from your system. Any unauthorized review, use, disclosure, or distribution is prohibited.</p></div></div>','📅 Calendar Event Invitationricks mtg📅 Start:Nov 27, 2025 4:00 PM🕐 End:Nov 27, 2025 4:30 PM📍 Location:Not specified📝 Details:testView CalendarAdmin UserAdministrator📧 admin@mavrix.one📞 906-123-4567🏢 906-555-4567🌐 https://mavrix1.comCONFIDENTIALITY NOTICE: This email and any attachments are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify Mavrix1 immediately and delete this email from your system. Any unauthorized review, use, disclosure, or distribution is prohibited.',NULL,'pending',NULL,NULL,1,'CalendarEvent',19,'2025-11-27 20:57:37'),
(6,NULL,NULL,'rick@mavrix.one',NULL,NULL,NULL,'noreply@example.com','Admin User',NULL,'Calendar Event Invitation: ricks mtg','<div style=\"font-family: Arial, sans-serif; max-width: 600px; margin: 0 auto;\"><div style=\"background: linear-gradient(135deg, #0066cc 0%, #004999 100%); color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;\"><h2 style=\"margin: 0; font-size: 24px;\">📅 Calendar Event Invitation</h2></div><div style=\"background: #f8f9fa; padding: 20px; border-left: 4px solid #0066cc; border-right: 1px solid #dee2e6; border-bottom: 1px solid #dee2e6;\"><h3 style=\"margin-top: 0; color: #333;\">ricks mtg</h3><table style=\"width: 100%; border-collapse: collapse; margin-top: 15px;\"><tr><td style=\"padding: 8px 0; width: 120px; vertical-align: top; color: #666;\"><strong>📅 Start:</strong></td><td style=\"padding: 8px 0; color: #333;\">Nov 27, 2025 4:00 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>🕐 End:</strong></td><td style=\"padding: 8px 0; color: #333;\">Nov 27, 2025 4:30 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>📍 Location:</strong></td><td style=\"padding: 8px 0; color: #333;\">Not specified</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>📝 Details:</strong></td><td style=\"padding: 8px 0; color: #333;\">test</td></tr></table><div style=\"margin-top: 20px; text-align: center;\"><a href=\"http://localhost:8080/calendar\" style=\"display: inline-block; padding: 12px 30px; background: #0066cc; color: white; text-decoration: none; border-radius: 4px; font-weight: bold;\">View Calendar</a></div></div><div style=\"font-family: Arial, sans-serif; color: #333; background: #ffffff; padding: 15px; margin-top: 20px;\"><hr style=\"border: none; border-top: 2px solid #0066cc; margin: 0 0 15px 0;\"><table style=\"border-collapse: collapse;\"><tr><td style=\"vertical-align: top; padding-right: 10px; width: 80px;\"><img src=\"http://localhost:8080/uploads/company/logo_1762869843.png\" alt=\"Mavrix1\" style=\"max-height: 35px; max-width: 80px; width: auto; height: auto; object-fit: contain; display: block;\"></td><td style=\"vertical-align: top;\"><strong style=\"font-size: 14px;\">Admin User</strong><br><span style=\"font-size: 12px; color: #666;\">Administrator</span><br><br><span style=\"font-size: 12px;\">📧 <a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></span><br><span style=\"font-size: 12px;\">📞 906-123-4567</span><br><span style=\"font-size: 12px;\">🏢 906-555-4567</span><br><span style=\"font-size: 12px;\">🌐 <a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></span><br></td></tr></table><hr style=\"border: none; border-top: 1px solid #e0e0e0; margin: 15px 0 10px 0;\"><p style=\"font-size: 9px; color: #666; margin: 0; line-height: 1.4;\"><strong>CONFIDENTIALITY NOTICE:</strong> This email and any attachments are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify Mavrix1 immediately and delete this email from your system. Any unauthorized review, use, disclosure, or distribution is prohibited.</p></div></div>','📅 Calendar Event Invitationricks mtg📅 Start:Nov 27, 2025 4:00 PM🕐 End:Nov 27, 2025 4:30 PM📍 Location:Not specified📝 Details:testView CalendarAdmin UserAdministrator📧 admin@mavrix.one📞 906-123-4567🏢 906-555-4567🌐 https://mavrix1.comCONFIDENTIALITY NOTICE: This email and any attachments are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify Mavrix1 immediately and delete this email from your system. Any unauthorized review, use, disclosure, or distribution is prohibited.',NULL,'pending',NULL,NULL,1,'CalendarEvent',20,'2025-11-27 20:57:39'),
(7,NULL,NULL,'rick@mavrix.one',NULL,NULL,NULL,'noreply@example.com','Admin User',NULL,'Calendar Event Invitation: ricks mtg','<div style=\"font-family: Arial, sans-serif; max-width: 600px; margin: 0 auto;\"><div style=\"background: linear-gradient(135deg, #0066cc 0%, #004999 100%); color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;\"><h2 style=\"margin: 0; font-size: 24px;\">📅 Calendar Event Invitation</h2></div><div style=\"background: #f8f9fa; padding: 20px; border-left: 4px solid #0066cc; border-right: 1px solid #dee2e6; border-bottom: 1px solid #dee2e6;\"><h3 style=\"margin-top: 0; color: #333;\">ricks mtg</h3><table style=\"width: 100%; border-collapse: collapse; margin-top: 15px;\"><tr><td style=\"padding: 8px 0; width: 120px; vertical-align: top; color: #666;\"><strong>📅 Start:</strong></td><td style=\"padding: 8px 0; color: #333;\">Nov 27, 2025 4:00 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>🕐 End:</strong></td><td style=\"padding: 8px 0; color: #333;\">Nov 27, 2025 4:30 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>📍 Location:</strong></td><td style=\"padding: 8px 0; color: #333;\">Not specified</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>📝 Details:</strong></td><td style=\"padding: 8px 0; color: #333;\">test</td></tr></table><div style=\"margin-top: 20px; text-align: center;\"><a href=\"http://localhost:8080/calendar\" style=\"display: inline-block; padding: 12px 30px; background: #0066cc; color: white; text-decoration: none; border-radius: 4px; font-weight: bold;\">View Calendar</a></div></div><div style=\"font-family: Arial, sans-serif; color: #333; background: #ffffff; padding: 15px; margin-top: 20px;\"><hr style=\"border: none; border-top: 2px solid #0066cc; margin: 0 0 15px 0;\"><table style=\"border-collapse: collapse;\"><tr><td style=\"vertical-align: top; padding-right: 10px; width: 80px;\"><img src=\"http://localhost:8080/uploads/company/logo_1762869843.png\" alt=\"Mavrix1\" style=\"max-height: 35px; max-width: 80px; width: auto; height: auto; object-fit: contain; display: block;\"></td><td style=\"vertical-align: top;\"><strong style=\"font-size: 14px;\">Admin User</strong><br><span style=\"font-size: 12px; color: #666;\">Administrator</span><br><br><span style=\"font-size: 12px;\">📧 <a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></span><br><span style=\"font-size: 12px;\">📞 906-123-4567</span><br><span style=\"font-size: 12px;\">🏢 906-555-4567</span><br><span style=\"font-size: 12px;\">🌐 <a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></span><br></td></tr></table><hr style=\"border: none; border-top: 1px solid #e0e0e0; margin: 15px 0 10px 0;\"><p style=\"font-size: 9px; color: #666; margin: 0; line-height: 1.4;\"><strong>CONFIDENTIALITY NOTICE:</strong> This email and any attachments are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify Mavrix1 immediately and delete this email from your system. Any unauthorized review, use, disclosure, or distribution is prohibited.</p></div></div>','📅 Calendar Event Invitationricks mtg📅 Start:Nov 27, 2025 4:00 PM🕐 End:Nov 27, 2025 4:30 PM📍 Location:Not specified📝 Details:testView CalendarAdmin UserAdministrator📧 admin@mavrix.one📞 906-123-4567🏢 906-555-4567🌐 https://mavrix1.comCONFIDENTIALITY NOTICE: This email and any attachments are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify Mavrix1 immediately and delete this email from your system. Any unauthorized review, use, disclosure, or distribution is prohibited.',NULL,'pending',NULL,NULL,1,'CalendarEvent',21,'2025-11-27 20:57:42'),
(8,NULL,NULL,'rick@mavrix.one',NULL,NULL,NULL,'noreply@example.com','Admin User',NULL,'Calendar Event Invitation: test7','<div style=\"font-family: Arial, sans-serif; max-width: 600px; margin: 0 auto;\"><div style=\"background: linear-gradient(135deg, #0066cc 0%, #004999 100%); color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;\"><h2 style=\"margin: 0; font-size: 24px;\">📅 Calendar Event Invitation</h2></div><div style=\"background: #f8f9fa; padding: 20px; border-left: 4px solid #0066cc; border-right: 1px solid #dee2e6; border-bottom: 1px solid #dee2e6;\"><h3 style=\"margin-top: 0; color: #333;\">test7</h3><table style=\"width: 100%; border-collapse: collapse; margin-top: 15px;\"><tr><td style=\"padding: 8px 0; width: 120px; vertical-align: top; color: #666;\"><strong>📅 Start:</strong></td><td style=\"padding: 8px 0; color: #333;\">Nov 27, 2025 4:00 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>🕐 End:</strong></td><td style=\"padding: 8px 0; color: #333;\">Nov 27, 2025 4:30 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>📍 Location:</strong></td><td style=\"padding: 8px 0; color: #333;\">Not specified</td></tr></table><div style=\"margin-top: 20px; text-align: center;\"><a href=\"http://localhost:8080/calendar\" style=\"display: inline-block; padding: 12px 30px; background: #0066cc; color: white; text-decoration: none; border-radius: 4px; font-weight: bold;\">View Calendar</a></div></div><div style=\"font-family: Arial, sans-serif; color: #333; background: #ffffff; padding: 15px; margin-top: 20px;\"><hr style=\"border: none; border-top: 2px solid #0066cc; margin: 0 0 15px 0;\"><table style=\"border-collapse: collapse;\"><tr><td style=\"vertical-align: top; padding-right: 10px; width: 80px;\"><img src=\"http://localhost:8080/uploads/company/logo_1762869843.png\" alt=\"Mavrix1\" style=\"max-height: 35px; max-width: 80px; width: auto; height: auto; object-fit: contain; display: block;\"></td><td style=\"vertical-align: top;\"><strong style=\"font-size: 14px;\">Admin User</strong><br><span style=\"font-size: 12px; color: #666;\">Administrator</span><br><br><span style=\"font-size: 12px;\">📧 <a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></span><br><span style=\"font-size: 12px;\">📞 906-123-4567</span><br><span style=\"font-size: 12px;\">🏢 906-555-4567</span><br><span style=\"font-size: 12px;\">🌐 <a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></span><br></td></tr></table><hr style=\"border: none; border-top: 1px solid #e0e0e0; margin: 15px 0 10px 0;\"><p style=\"font-size: 9px; color: #666; margin: 0; line-height: 1.4;\"><strong>CONFIDENTIALITY NOTICE:</strong> This email and any attachments are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify Mavrix1 immediately and delete this email from your system. Any unauthorized review, use, disclosure, or distribution is prohibited.</p></div></div>','📅 Calendar Event Invitationtest7📅 Start:Nov 27, 2025 4:00 PM🕐 End:Nov 27, 2025 4:30 PM📍 Location:Not specifiedView CalendarAdmin UserAdministrator📧 admin@mavrix.one📞 906-123-4567🏢 906-555-4567🌐 https://mavrix1.comCONFIDENTIALITY NOTICE: This email and any attachments are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify Mavrix1 immediately and delete this email from your system. Any unauthorized review, use, disclosure, or distribution is prohibited.',NULL,'pending',NULL,NULL,1,'CalendarEvent',22,'2025-11-27 20:58:28'),
(9,NULL,NULL,'rick@mavrix.one',NULL,NULL,NULL,'noreply@example.com','Admin User',NULL,'Calendar Event Invitation: test7','<div style=\"font-family: Arial, sans-serif; max-width: 600px; margin: 0 auto;\"><div style=\"background: linear-gradient(135deg, #0066cc 0%, #004999 100%); color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;\"><h2 style=\"margin: 0; font-size: 24px;\">📅 Calendar Event Invitation</h2></div><div style=\"background: #f8f9fa; padding: 20px; border-left: 4px solid #0066cc; border-right: 1px solid #dee2e6; border-bottom: 1px solid #dee2e6;\"><h3 style=\"margin-top: 0; color: #333;\">test7</h3><table style=\"width: 100%; border-collapse: collapse; margin-top: 15px;\"><tr><td style=\"padding: 8px 0; width: 120px; vertical-align: top; color: #666;\"><strong>📅 Start:</strong></td><td style=\"padding: 8px 0; color: #333;\">Nov 27, 2025 4:00 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>🕐 End:</strong></td><td style=\"padding: 8px 0; color: #333;\">Nov 27, 2025 4:30 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>📍 Location:</strong></td><td style=\"padding: 8px 0; color: #333;\">Not specified</td></tr></table><div style=\"margin-top: 20px; text-align: center;\"><a href=\"http://localhost:8080/calendar\" style=\"display: inline-block; padding: 12px 30px; background: #0066cc; color: white; text-decoration: none; border-radius: 4px; font-weight: bold;\">View Calendar</a></div></div><div style=\"font-family: Arial, sans-serif; color: #333; background: #ffffff; padding: 15px; margin-top: 20px;\"><hr style=\"border: none; border-top: 2px solid #0066cc; margin: 0 0 15px 0;\"><table style=\"border-collapse: collapse;\"><tr><td style=\"vertical-align: top; padding-right: 10px; width: 80px;\"><img src=\"http://localhost:8080/uploads/company/logo_1762869843.png\" alt=\"Mavrix1\" style=\"max-height: 35px; max-width: 80px; width: auto; height: auto; object-fit: contain; display: block;\"></td><td style=\"vertical-align: top;\"><strong style=\"font-size: 14px;\">Admin User</strong><br><span style=\"font-size: 12px; color: #666;\">Administrator</span><br><br><span style=\"font-size: 12px;\">📧 <a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></span><br><span style=\"font-size: 12px;\">📞 906-123-4567</span><br><span style=\"font-size: 12px;\">🏢 906-555-4567</span><br><span style=\"font-size: 12px;\">🌐 <a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></span><br></td></tr></table><hr style=\"border: none; border-top: 1px solid #e0e0e0; margin: 15px 0 10px 0;\"><p style=\"font-size: 9px; color: #666; margin: 0; line-height: 1.4;\"><strong>CONFIDENTIALITY NOTICE:</strong> This email and any attachments are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify Mavrix1 immediately and delete this email from your system. Any unauthorized review, use, disclosure, or distribution is prohibited.</p></div></div>','📅 Calendar Event Invitationtest7📅 Start:Nov 27, 2025 4:00 PM🕐 End:Nov 27, 2025 4:30 PM📍 Location:Not specifiedView CalendarAdmin UserAdministrator📧 admin@mavrix.one📞 906-123-4567🏢 906-555-4567🌐 https://mavrix1.comCONFIDENTIALITY NOTICE: This email and any attachments are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify Mavrix1 immediately and delete this email from your system. Any unauthorized review, use, disclosure, or distribution is prohibited.',NULL,'pending',NULL,NULL,1,'CalendarEvent',23,'2025-11-27 20:59:40'),
(10,NULL,NULL,'rick@mavrix.one',NULL,NULL,NULL,'noreply@example.com','Admin User',NULL,'Calendar Event Invitation: test','<div style=\"font-family: Arial, sans-serif; max-width: 600px; margin: 0 auto;\"><div style=\"background: linear-gradient(135deg, #0066cc 0%, #004999 100%); color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;\"><h2 style=\"margin: 0; font-size: 24px;\">📅 Calendar Event Invitation</h2></div><div style=\"background: #f8f9fa; padding: 20px; border-left: 4px solid #0066cc; border-right: 1px solid #dee2e6; border-bottom: 1px solid #dee2e6;\"><h3 style=\"margin-top: 0; color: #333;\">test</h3><table style=\"width: 100%; border-collapse: collapse; margin-top: 15px;\"><tr><td style=\"padding: 8px 0; width: 120px; vertical-align: top; color: #666;\"><strong>📅 Start:</strong></td><td style=\"padding: 8px 0; color: #333;\">Nov 27, 2025 5:00 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>🕐 End:</strong></td><td style=\"padding: 8px 0; color: #333;\">Nov 27, 2025 5:30 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>📍 Location:</strong></td><td style=\"padding: 8px 0; color: #333;\">Not specified</td></tr></table><div style=\"margin-top: 20px; text-align: center;\"><a href=\"http://localhost:8080/calendar\" style=\"display: inline-block; padding: 12px 30px; background: #0066cc; color: white; text-decoration: none; border-radius: 4px; font-weight: bold;\">View Calendar</a></div></div><div style=\"font-family: Arial, sans-serif; color: #333; background: #ffffff; padding: 15px; margin-top: 20px;\"><hr style=\"border: none; border-top: 2px solid #0066cc; margin: 0 0 15px 0;\"><table style=\"border-collapse: collapse;\"><tr><td style=\"vertical-align: top; padding-right: 10px; width: 80px;\"><img src=\"http://localhost:8080/uploads/company/logo_1762869843.png\" alt=\"Mavrix1\" style=\"max-height: 35px; max-width: 80px; width: auto; height: auto; object-fit: contain; display: block;\"></td><td style=\"vertical-align: top;\"><strong style=\"font-size: 14px;\">Admin User</strong><br><span style=\"font-size: 12px; color: #666;\">Administrator</span><br><br><span style=\"font-size: 12px;\">📧 <a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></span><br><span style=\"font-size: 12px;\">📞 906-123-4567</span><br><span style=\"font-size: 12px;\">🏢 906-555-4567</span><br><span style=\"font-size: 12px;\">🌐 <a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></span><br></td></tr></table><hr style=\"border: none; border-top: 1px solid #e0e0e0; margin: 15px 0 10px 0;\"><p style=\"font-size: 9px; color: #666; margin: 0; line-height: 1.4;\"><strong>CONFIDENTIALITY NOTICE:</strong> This email and any attachments are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify Mavrix1 immediately and delete this email from your system. Any unauthorized review, use, disclosure, or distribution is prohibited.</p></div></div>','📅 Calendar Event Invitationtest📅 Start:Nov 27, 2025 5:00 PM🕐 End:Nov 27, 2025 5:30 PM📍 Location:Not specifiedView CalendarAdmin UserAdministrator📧 admin@mavrix.one📞 906-123-4567🏢 906-555-4567🌐 https://mavrix1.comCONFIDENTIALITY NOTICE: This email and any attachments are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify Mavrix1 immediately and delete this email from your system. Any unauthorized review, use, disclosure, or distribution is prohibited.',NULL,'pending',NULL,NULL,1,'CalendarEvent',24,'2025-11-27 21:00:33'),
(11,NULL,NULL,'rick@mavrix.one',NULL,NULL,NULL,'noreply@example.com','Admin User',NULL,'Calendar Event Invitation: test','<div style=\"font-family: Arial, sans-serif; max-width: 600px; margin: 0 auto;\"><div style=\"background: linear-gradient(135deg, #0066cc 0%, #004999 100%); color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;\"><h2 style=\"margin: 0; font-size: 24px;\">📅 Calendar Event Invitation</h2></div><div style=\"background: #f8f9fa; padding: 20px; border-left: 4px solid #0066cc; border-right: 1px solid #dee2e6; border-bottom: 1px solid #dee2e6;\"><h3 style=\"margin-top: 0; color: #333;\">test</h3><table style=\"width: 100%; border-collapse: collapse; margin-top: 15px;\"><tr><td style=\"padding: 8px 0; width: 120px; vertical-align: top; color: #666;\"><strong>📅 Start:</strong></td><td style=\"padding: 8px 0; color: #333;\">Oct 31, 2025 12:00 AM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>🕐 End:</strong></td><td style=\"padding: 8px 0; color: #333;\">Nov 1, 2025 12:00 AM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>📍 Location:</strong></td><td style=\"padding: 8px 0; color: #333;\">Not specified</td></tr></table><div style=\"margin-top: 20px; text-align: center;\"><a href=\"http://localhost:8080/calendar\" style=\"display: inline-block; padding: 12px 30px; background: #0066cc; color: white; text-decoration: none; border-radius: 4px; font-weight: bold;\">View Calendar</a></div></div><div style=\"font-family: Arial, sans-serif; color: #333; background: #ffffff; padding: 15px; margin-top: 20px;\"><hr style=\"border: none; border-top: 2px solid #0066cc; margin: 0 0 15px 0;\"><table style=\"border-collapse: collapse;\"><tr><td style=\"vertical-align: top; padding-right: 10px; width: 80px;\"><img src=\"http://localhost:8080/uploads/company/logo_1762869843.png\" alt=\"Mavrix1\" style=\"max-height: 35px; max-width: 80px; width: auto; height: auto; object-fit: contain; display: block;\"></td><td style=\"vertical-align: top;\"><strong style=\"font-size: 14px;\">Admin User</strong><br><span style=\"font-size: 12px; color: #666;\">Administrator</span><br><br><span style=\"font-size: 12px;\">📧 <a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></span><br><span style=\"font-size: 12px;\">📞 906-123-4567</span><br><span style=\"font-size: 12px;\">🏢 906-555-4567</span><br><span style=\"font-size: 12px;\">🌐 <a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></span><br></td></tr></table><hr style=\"border: none; border-top: 1px solid #e0e0e0; margin: 15px 0 10px 0;\"><p style=\"font-size: 9px; color: #666; margin: 0; line-height: 1.4;\"><strong>CONFIDENTIALITY NOTICE:</strong> This email and any attachments are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify Mavrix1 immediately and delete this email from your system. Any unauthorized review, use, disclosure, or distribution is prohibited.</p></div></div>','📅 Calendar Event Invitationtest📅 Start:Oct 31, 2025 12:00 AM🕐 End:Nov 1, 2025 12:00 AM📍 Location:Not specifiedView CalendarAdmin UserAdministrator📧 admin@mavrix.one📞 906-123-4567🏢 906-555-4567🌐 https://mavrix1.comCONFIDENTIALITY NOTICE: This email and any attachments are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify Mavrix1 immediately and delete this email from your system. Any unauthorized review, use, disclosure, or distribution is prohibited.',NULL,'pending',NULL,NULL,1,'CalendarEvent',25,'2025-11-27 21:00:56'),
(12,NULL,NULL,'rick@mavrix.one',NULL,NULL,NULL,'noreply@example.com','Admin User',NULL,'Calendar Event Invitation: test','<div style=\"font-family: Arial, sans-serif; max-width: 600px; margin: 0 auto;\"><div style=\"background: linear-gradient(135deg, #0066cc 0%, #004999 100%); color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;\"><h2 style=\"margin: 0; font-size: 24px;\">📅 Calendar Event Invitation</h2></div><div style=\"background: #f8f9fa; padding: 20px; border-left: 4px solid #0066cc; border-right: 1px solid #dee2e6; border-bottom: 1px solid #dee2e6;\"><h3 style=\"margin-top: 0; color: #333;\">test</h3><table style=\"width: 100%; border-collapse: collapse; margin-top: 15px;\"><tr><td style=\"padding: 8px 0; width: 120px; vertical-align: top; color: #666;\"><strong>📅 Start:</strong></td><td style=\"padding: 8px 0; color: #333;\">Nov 27, 2025 5:00 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>🕐 End:</strong></td><td style=\"padding: 8px 0; color: #333;\">Nov 27, 2025 5:30 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>📍 Location:</strong></td><td style=\"padding: 8px 0; color: #333;\">Not specified</td></tr></table><div style=\"margin-top: 20px; text-align: center;\"><a href=\"http://localhost:8080/calendar\" style=\"display: inline-block; padding: 12px 30px; background: #0066cc; color: white; text-decoration: none; border-radius: 4px; font-weight: bold;\">View Calendar</a></div></div><div style=\"font-family: Arial, sans-serif; color: #333; background: #ffffff; padding: 15px; margin-top: 20px;\"><hr style=\"border: none; border-top: 2px solid #0066cc; margin: 0 0 15px 0;\"><table style=\"border-collapse: collapse;\"><tr><td style=\"vertical-align: top; padding-right: 10px; width: 80px;\"><img src=\"http://localhost:8080/uploads/company/logo_1762869843.png\" alt=\"Mavrix1\" style=\"max-height: 35px; max-width: 80px; width: auto; height: auto; object-fit: contain; display: block;\"></td><td style=\"vertical-align: top;\"><strong style=\"font-size: 14px;\">Admin User</strong><br><span style=\"font-size: 12px; color: #666;\">Administrator</span><br><br><span style=\"font-size: 12px;\">📧 <a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></span><br><span style=\"font-size: 12px;\">📞 906-123-4567</span><br><span style=\"font-size: 12px;\">🏢 906-555-4567</span><br><span style=\"font-size: 12px;\">🌐 <a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></span><br></td></tr></table><hr style=\"border: none; border-top: 1px solid #e0e0e0; margin: 15px 0 10px 0;\"><p style=\"font-size: 9px; color: #666; margin: 0; line-height: 1.4;\"><strong>CONFIDENTIALITY NOTICE:</strong> This email and any attachments are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify Mavrix1 immediately and delete this email from your system. Any unauthorized review, use, disclosure, or distribution is prohibited.</p></div></div>','📅 Calendar Event Invitationtest📅 Start:Nov 27, 2025 5:00 PM🕐 End:Nov 27, 2025 5:30 PM📍 Location:Not specifiedView CalendarAdmin UserAdministrator📧 admin@mavrix.one📞 906-123-4567🏢 906-555-4567🌐 https://mavrix1.comCONFIDENTIALITY NOTICE: This email and any attachments are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify Mavrix1 immediately and delete this email from your system. Any unauthorized review, use, disclosure, or distribution is prohibited.',NULL,'pending',NULL,NULL,1,'CalendarEvent',26,'2025-11-27 21:02:07'),
(13,NULL,NULL,'rick@mavrix.one',NULL,NULL,NULL,'noreply@example.com','Admin User',NULL,'Calendar Event Invitation: tester','<div style=\"font-family: Arial, sans-serif; max-width: 600px; margin: 0 auto;\"><div style=\"background: linear-gradient(135deg, #0066cc 0%, #004999 100%); color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;\"><h2 style=\"margin: 0; font-size: 24px;\">📅 Calendar Event Invitation</h2></div><div style=\"background: #f8f9fa; padding: 20px; border-left: 4px solid #0066cc; border-right: 1px solid #dee2e6; border-bottom: 1px solid #dee2e6;\"><h3 style=\"margin-top: 0; color: #333;\">tester</h3><table style=\"width: 100%; border-collapse: collapse; margin-top: 15px;\"><tr><td style=\"padding: 8px 0; width: 120px; vertical-align: top; color: #666;\"><strong>📅 Start:</strong></td><td style=\"padding: 8px 0; color: #333;\">Nov 27, 2025 5:00 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>🕐 End:</strong></td><td style=\"padding: 8px 0; color: #333;\">Nov 27, 2025 5:30 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>📍 Location:</strong></td><td style=\"padding: 8px 0; color: #333;\">Not specified</td></tr></table><div style=\"margin-top: 20px; text-align: center;\"><a href=\"http://localhost:8080/calendar\" style=\"display: inline-block; padding: 12px 30px; background: #0066cc; color: white; text-decoration: none; border-radius: 4px; font-weight: bold;\">View Calendar</a></div></div><div style=\"font-family: Arial, sans-serif; color: #333; background: #ffffff; padding: 15px; margin-top: 20px;\"><hr style=\"border: none; border-top: 2px solid #0066cc; margin: 0 0 15px 0;\"><table style=\"border-collapse: collapse;\"><tr><td style=\"vertical-align: top; padding-right: 10px; width: 80px;\"><img src=\"http://localhost:8080/uploads/company/logo_1762869843.png\" alt=\"Mavrix1\" style=\"max-height: 35px; max-width: 80px; width: auto; height: auto; object-fit: contain; display: block;\"></td><td style=\"vertical-align: top;\"><strong style=\"font-size: 14px;\">Admin User</strong><br><span style=\"font-size: 12px; color: #666;\">Administrator</span><br><br><span style=\"font-size: 12px;\">📧 <a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></span><br><span style=\"font-size: 12px;\">📞 906-123-4567</span><br><span style=\"font-size: 12px;\">🏢 906-555-4567</span><br><span style=\"font-size: 12px;\">🌐 <a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></span><br></td></tr></table><hr style=\"border: none; border-top: 1px solid #e0e0e0; margin: 15px 0 10px 0;\"><p style=\"font-size: 9px; color: #666; margin: 0; line-height: 1.4;\"><strong>CONFIDENTIALITY NOTICE:</strong> This email and any attachments are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify Mavrix1 immediately and delete this email from your system. Any unauthorized review, use, disclosure, or distribution is prohibited.</p></div></div>','📅 Calendar Event Invitationtester📅 Start:Nov 27, 2025 5:00 PM🕐 End:Nov 27, 2025 5:30 PM📍 Location:Not specifiedView CalendarAdmin UserAdministrator📧 admin@mavrix.one📞 906-123-4567🏢 906-555-4567🌐 https://mavrix1.comCONFIDENTIALITY NOTICE: This email and any attachments are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify Mavrix1 immediately and delete this email from your system. Any unauthorized review, use, disclosure, or distribution is prohibited.',NULL,'pending',NULL,NULL,1,'CalendarEvent',27,'2025-11-27 21:03:26'),
(14,NULL,NULL,'rick@mavrix.one',NULL,NULL,NULL,'noreply@example.com','Admin User',NULL,'Calendar Event Invitation: tester','<div style=\"font-family: Arial, sans-serif; max-width: 600px; margin: 0 auto;\"><div style=\"background: linear-gradient(135deg, #0066cc 0%, #004999 100%); color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;\"><h2 style=\"margin: 0; font-size: 24px;\">📅 Calendar Event Invitation</h2></div><div style=\"background: #f8f9fa; padding: 20px; border-left: 4px solid #0066cc; border-right: 1px solid #dee2e6; border-bottom: 1px solid #dee2e6;\"><h3 style=\"margin-top: 0; color: #333;\">tester</h3><table style=\"width: 100%; border-collapse: collapse; margin-top: 15px;\"><tr><td style=\"padding: 8px 0; width: 120px; vertical-align: top; color: #666;\"><strong>📅 Start:</strong></td><td style=\"padding: 8px 0; color: #333;\">Nov 27, 2025 5:00 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>🕐 End:</strong></td><td style=\"padding: 8px 0; color: #333;\">Nov 27, 2025 5:30 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>📍 Location:</strong></td><td style=\"padding: 8px 0; color: #333;\">Not specified</td></tr></table><div style=\"margin-top: 20px; text-align: center;\"><a href=\"http://localhost:8080/calendar\" style=\"display: inline-block; padding: 12px 30px; background: #0066cc; color: white; text-decoration: none; border-radius: 4px; font-weight: bold;\">View Calendar</a></div></div><div style=\"font-family: Arial, sans-serif; color: #333; background: #ffffff; padding: 15px; margin-top: 20px;\"><hr style=\"border: none; border-top: 2px solid #0066cc; margin: 0 0 15px 0;\"><table style=\"border-collapse: collapse;\"><tr><td style=\"vertical-align: top; padding-right: 10px; width: 80px;\"><img src=\"http://localhost:8080/uploads/company/logo_1762869843.png\" alt=\"Mavrix1\" style=\"max-height: 35px; max-width: 80px; width: auto; height: auto; object-fit: contain; display: block;\"></td><td style=\"vertical-align: top;\"><strong style=\"font-size: 14px;\">Admin User</strong><br><span style=\"font-size: 12px; color: #666;\">Administrator</span><br><br><span style=\"font-size: 12px;\">📧 <a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></span><br><span style=\"font-size: 12px;\">📞 906-123-4567</span><br><span style=\"font-size: 12px;\">🏢 906-555-4567</span><br><span style=\"font-size: 12px;\">🌐 <a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></span><br></td></tr></table><hr style=\"border: none; border-top: 1px solid #e0e0e0; margin: 15px 0 10px 0;\"><p style=\"font-size: 9px; color: #666; margin: 0; line-height: 1.4;\"><strong>CONFIDENTIALITY NOTICE:</strong> This email and any attachments are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify Mavrix1 immediately and delete this email from your system. Any unauthorized review, use, disclosure, or distribution is prohibited.</p></div></div>','📅 Calendar Event Invitationtester📅 Start:Nov 27, 2025 5:00 PM🕐 End:Nov 27, 2025 5:30 PM📍 Location:Not specifiedView CalendarAdmin UserAdministrator📧 admin@mavrix.one📞 906-123-4567🏢 906-555-4567🌐 https://mavrix1.comCONFIDENTIALITY NOTICE: This email and any attachments are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify Mavrix1 immediately and delete this email from your system. Any unauthorized review, use, disclosure, or distribution is prohibited.',NULL,'sent',NULL,'2025-11-27 21:04:37',1,'CalendarEvent',28,'2025-11-27 21:04:36'),
(15,NULL,NULL,'rick@mavrix.one',NULL,NULL,NULL,'noreply@example.com','Admin User',NULL,'Calendar Event Invitation: Demo','<div style=\"font-family: Arial, sans-serif; max-width: 600px; margin: 0 auto;\"><div style=\"background: linear-gradient(135deg, #0066cc 0%, #004999 100%); color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;\"><h2 style=\"margin: 0; font-size: 24px;\">📅 Calendar Event Invitation</h2></div><div style=\"background: #f8f9fa; padding: 20px; border-left: 4px solid #0066cc; border-right: 1px solid #dee2e6; border-bottom: 1px solid #dee2e6;\"><h3 style=\"margin-top: 0; color: #333;\">Demo</h3><table style=\"width: 100%; border-collapse: collapse; margin-top: 15px;\"><tr><td style=\"padding: 8px 0; width: 120px; vertical-align: top; color: #666;\"><strong>📅 Start:</strong></td><td style=\"padding: 8px 0; color: #333;\">Nov 30, 2025 7:30 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>🕐 End:</strong></td><td style=\"padding: 8px 0; color: #333;\">Nov 30, 2025 9:00 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>📍 Location:</strong></td><td style=\"padding: 8px 0; color: #333;\">Not specified</td></tr></table><div style=\"margin-top: 20px; text-align: center;\"><a href=\"http://localhost:8080/calendar\" style=\"display: inline-block; padding: 12px 30px; background: #0066cc; color: white; text-decoration: none; border-radius: 4px; font-weight: bold;\">View Calendar</a></div></div><table style=\"width: 100%; max-width: 600px; border-collapse: collapse; font-family: Helvetica, Arial, sans-serif;\">\r\n    <tr>\r\n        <td style=\"padding: 0; border-top: 3px solid #0066cc;\">\r\n            <table style=\"width: 100%; border-collapse: collapse; padding-top: 15px;\">\r\n                <tr>\r\n                    <!-- LEFT COLUMN -->\r\n                    <td style=\"vertical-align: top; padding-left: 20px; border-left: 2px solid #e0e0e0;\">\r\n                        <div style=\"margin-bottom: 10px;\">\r\n                            <strong style=\"font-size: 14px; color: #0066cc;\">Admin User</strong><br>\r\n                            <span style=\"font-size: 12px; color: #666;\">Administrator</span>\r\n                        </div>\r\n\r\n                        <div style=\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n                            <div><a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></div>\r\n                            <div>Mobile: 906-123-4567</div>\r\n                            <div>Office: 906-555-4567</div>\r\n                            <div><a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></div>\r\n                        </div>\r\n                    </td>\r\n\r\n                    <!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n                    <td style=\"width: 200px; vertical-align: middle; text-align: center; padding-top: 10px;\">\r\n                        <img src=\"http://localhost:8080/uploads/company/logo_1762869843.png\" alt=\"Mavrix1\" style=\"max-width: 150px; height: auto; display: block; margin: 0 auto;\">\r\n\r\n                        <div style=\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1.3;\">\r\n                            3900 W. Coachman Ave.<br>\r\n                            Tampa, FL 33611\r\n                        </div>\r\n                    </td>\r\n                </tr>\r\n            </table>\r\n        </td>\r\n    </tr>\r\n\r\n    <tr>\r\n        <td style=\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n            <div style=\"font-size: 9px; color: #888; line-height: 1.4;\">\r\n                <strong>CONFIDENTIALITY NOTICE:</strong><br>\r\n                <em>This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.</em><br><br>\r\n                <em>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</em><br><br>\r\n                <em>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</em><br><br>\r\n                <em>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em>\r\n            </div>\r\n        </td>\r\n    </tr>\r\n</table></div>','📅 Calendar Event InvitationDemo📅 Start:Nov 30, 2025 7:30 PM🕐 End:Nov 30, 2025 9:00 PM📍 Location:Not specifiedView Calendar\r\n    \r\n        \r\n            \r\n                \r\n                    \r\n                    \r\n                        \r\n                            Admin User\r\n                            Administrator\r\n                        \r\n\r\n                        \r\n                            admin@mavrix.one\r\n                            Mobile: 906-123-4567\r\n                            Office: 906-555-4567\r\n                            https://mavrix1.com\r\n                        \r\n                    \r\n\r\n                    \r\n                    \r\n                        \r\n\r\n                        \r\n                            3900 W. Coachman Ave.\r\n                            Tampa, FL 33611\r\n                        \r\n                    \r\n                \r\n            \r\n        \r\n    \r\n\r\n    \r\n        \r\n            \r\n                CONFIDENTIALITY NOTICE:\r\n                This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.\r\n                This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n                If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n                Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n            \r\n        \r\n    \r\n',NULL,'sent',NULL,'2025-12-04 18:07:29',1,'CalendarEvent',31,'2025-12-04 18:07:28'),
(16,NULL,NULL,'rick@mavrix.one',NULL,NULL,NULL,'noreply@example.com','Admin User',NULL,'Calendar Event Update: Demo','<div style=\"font-family: Arial, sans-serif; max-width: 600px; margin: 0 auto;\"><div style=\"background: linear-gradient(135deg, #0066cc 0%, #004999 100%); color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;\"><h2 style=\"margin: 0; font-size: 24px;\">📅 Calendar Event Update</h2></div><div style=\"background: #f8f9fa; padding: 20px; border-left: 4px solid #0066cc; border-right: 1px solid #dee2e6; border-bottom: 1px solid #dee2e6;\"><h3 style=\"margin-top: 0; color: #333;\">Demo</h3><table style=\"width: 100%; border-collapse: collapse; margin-top: 15px;\"><tr><td style=\"padding: 8px 0; width: 120px; vertical-align: top; color: #666;\"><strong>📅 Start:</strong></td><td style=\"padding: 8px 0; color: #333;\">Dec 4, 2025 7:00 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>🕐 End:</strong></td><td style=\"padding: 8px 0; color: #333;\">Dec 4, 2025 7:30 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>📍 Location:</strong></td><td style=\"padding: 8px 0; color: #333;\">Not specified</td></tr></table><div style=\"margin-top: 20px; text-align: center;\"><a href=\"http://localhost:8080/calendar\" style=\"display: inline-block; padding: 12px 30px; background: #0066cc; color: white; text-decoration: none; border-radius: 4px; font-weight: bold;\">View Calendar</a></div></div><table style=\"width: 100%; max-width: 600px; border-collapse: collapse; font-family: Helvetica, Arial, sans-serif;\">\r\n    <tr>\r\n        <td style=\"padding: 0; border-top: 3px solid #0066cc;\">\r\n            <table style=\"width: 100%; border-collapse: collapse; padding-top: 15px;\">\r\n                <tr>\r\n                    <!-- LEFT COLUMN -->\r\n                    <td style=\"vertical-align: top; padding-left: 20px; border-left: 2px solid #e0e0e0;\">\r\n                        <div style=\"margin-bottom: 10px;\">\r\n                            <strong style=\"font-size: 14px; color: #0066cc;\">Admin User</strong><br>\r\n                            <span style=\"font-size: 12px; color: #666;\">Administrator</span>\r\n                        </div>\r\n\r\n                        <div style=\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n                            <div><a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></div>\r\n                            <div>Mobile: 906-123-4567</div>\r\n                            <div>Office: 906-555-4567</div>\r\n                            <div><a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></div>\r\n                        </div>\r\n                    </td>\r\n\r\n                    <!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n                    <td style=\"width: 200px; vertical-align: middle; text-align: center; padding-top: 10px;\">\r\n                        <img src=\"http://localhost:8080/uploads/company/logo_1762869843.png\" alt=\"Mavrix1\" style=\"max-width: 150px; height: auto; display: block; margin: 0 auto;\">\r\n\r\n                        <div style=\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1.3;\">\r\n                            3900 W. Coachman Ave.<br>\r\n                            Tampa, FL 33611\r\n                        </div>\r\n                    </td>\r\n                </tr>\r\n            </table>\r\n        </td>\r\n    </tr>\r\n\r\n    <tr>\r\n        <td style=\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n            <div style=\"font-size: 9px; color: #888; line-height: 1.4;\">\r\n                <strong>CONFIDENTIALITY NOTICE:</strong><br>\r\n                <em>This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.</em><br><br>\r\n                <em>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</em><br><br>\r\n                <em>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</em><br><br>\r\n                <em>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em>\r\n            </div>\r\n        </td>\r\n    </tr>\r\n</table></div>','📅 Calendar Event UpdateDemo📅 Start:Dec 4, 2025 7:00 PM🕐 End:Dec 4, 2025 7:30 PM📍 Location:Not specifiedView Calendar\r\n    \r\n        \r\n            \r\n                \r\n                    \r\n                    \r\n                        \r\n                            Admin User\r\n                            Administrator\r\n                        \r\n\r\n                        \r\n                            admin@mavrix.one\r\n                            Mobile: 906-123-4567\r\n                            Office: 906-555-4567\r\n                            https://mavrix1.com\r\n                        \r\n                    \r\n\r\n                    \r\n                    \r\n                        \r\n\r\n                        \r\n                            3900 W. Coachman Ave.\r\n                            Tampa, FL 33611\r\n                        \r\n                    \r\n                \r\n            \r\n        \r\n    \r\n\r\n    \r\n        \r\n            \r\n                CONFIDENTIALITY NOTICE:\r\n                This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.\r\n                This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n                If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n                Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n            \r\n        \r\n    \r\n',NULL,'sent',NULL,'2025-12-04 19:32:41',1,'CalendarEvent',31,'2025-12-04 19:32:41'),
(17,NULL,NULL,'rick@mavrix.one',NULL,NULL,NULL,'noreply@example.com','Admin User',NULL,'Calendar Event Invitation: Rick Mtg','<div style=\"font-family: Arial, sans-serif; max-width: 600px; margin: 0 auto;\"><div style=\"background: linear-gradient(135deg, #0066cc 0%, #004999 100%); color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;\"><h2 style=\"margin: 0; font-size: 24px;\">📅 Calendar Event Invitation</h2></div><div style=\"background: #f8f9fa; padding: 20px; border-left: 4px solid #0066cc; border-right: 1px solid #dee2e6; border-bottom: 1px solid #dee2e6;\"><h3 style=\"margin-top: 0; color: #333;\">Rick Mtg</h3><table style=\"width: 100%; border-collapse: collapse; margin-top: 15px;\"><tr><td style=\"padding: 8px 0; width: 120px; vertical-align: top; color: #666;\"><strong>📅 Start:</strong></td><td style=\"padding: 8px 0; color: #333;\">Dec 10, 2025 5:00 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>🕐 End:</strong></td><td style=\"padding: 8px 0; color: #333;\">Dec 10, 2025 5:30 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>📍 Location:</strong></td><td style=\"padding: 8px 0; color: #333;\">Not specified</td></tr></table><div style=\"margin-top: 20px; text-align: center;\"><a href=\"http://localhost:8080/calendar\" style=\"display: inline-block; padding: 12px 30px; background: #0066cc; color: white; text-decoration: none; border-radius: 4px; font-weight: bold;\">View Calendar</a></div></div><table style=\"width: 100%; max-width: 600px; border-collapse: collapse; font-family: Helvetica, Arial, sans-serif;\">\r\n    <tr>\r\n        <td style=\"padding: 0; border-top: 3px solid #0066cc;\">\r\n            <table style=\"width: 100%; border-collapse: collapse; padding-top: 15px;\">\r\n                <tr>\r\n                    <!-- LEFT COLUMN -->\r\n                    <td style=\"vertical-align: top; padding-left: 20px; border-left: 2px solid #e0e0e0;\">\r\n                        <div style=\"margin-bottom: 10px;\">\r\n                            <strong style=\"font-size: 14px; color: #0066cc;\">Admin User</strong><br>\r\n                            <span style=\"font-size: 12px; color: #666;\">Administrator</span>\r\n                        </div>\r\n\r\n                        <div style=\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n                            <div><a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></div>\r\n                            <div>Mobile: 906-123-4567</div>\r\n                            <div>Office: 906-555-4567</div>\r\n                            <div><a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></div>\r\n                        </div>\r\n                    </td>\r\n\r\n                    <!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n                    <td style=\"width: 200px; vertical-align: middle; text-align: center; padding-top: 10px;\">\r\n                        <img src=\"http://localhost:8080/uploads/company/logo_1762869843.png\" alt=\"Mavrix1\" style=\"max-width: 150px; height: auto; display: block; margin: 0 auto;\">\r\n\r\n                        <div style=\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1.3;\">\r\n                            3900 W. Coachman Ave.<br>\r\n                            Tampa, FL 33611\r\n                        </div>\r\n                    </td>\r\n                </tr>\r\n            </table>\r\n        </td>\r\n    </tr>\r\n\r\n    <tr>\r\n        <td style=\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n            <div style=\"font-size: 9px; color: #888; line-height: 1.4;\">\r\n                <strong>CONFIDENTIALITY NOTICE:</strong><br>\r\n                <em>This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.</em><br><br>\r\n                <em>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</em><br><br>\r\n                <em>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</em><br><br>\r\n                <em>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em>\r\n            </div>\r\n        </td>\r\n    </tr>\r\n</table></div>','📅 Calendar Event InvitationRick Mtg📅 Start:Dec 10, 2025 5:00 PM🕐 End:Dec 10, 2025 5:30 PM📍 Location:Not specifiedView Calendar\r\n    \r\n        \r\n            \r\n                \r\n                    \r\n                    \r\n                        \r\n                            Admin User\r\n                            Administrator\r\n                        \r\n\r\n                        \r\n                            admin@mavrix.one\r\n                            Mobile: 906-123-4567\r\n                            Office: 906-555-4567\r\n                            https://mavrix1.com\r\n                        \r\n                    \r\n\r\n                    \r\n                    \r\n                        \r\n\r\n                        \r\n                            3900 W. Coachman Ave.\r\n                            Tampa, FL 33611\r\n                        \r\n                    \r\n                \r\n            \r\n        \r\n    \r\n\r\n    \r\n        \r\n            \r\n                CONFIDENTIALITY NOTICE:\r\n                This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.\r\n                This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n                If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n                Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n            \r\n        \r\n    \r\n',NULL,'sent',NULL,'2025-12-04 23:15:38',1,'CalendarEvent',32,'2025-12-04 23:15:38'),
(18,NULL,NULL,'cfo@mavrix.one',NULL,NULL,NULL,'noreply@example.com','Admin User',NULL,'Calendar Event Invitation: Rick Mtg','<div style=\"font-family: Arial, sans-serif; max-width: 600px; margin: 0 auto;\"><div style=\"background: linear-gradient(135deg, #0066cc 0%, #004999 100%); color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;\"><h2 style=\"margin: 0; font-size: 24px;\">📅 Calendar Event Invitation</h2></div><div style=\"background: #f8f9fa; padding: 20px; border-left: 4px solid #0066cc; border-right: 1px solid #dee2e6; border-bottom: 1px solid #dee2e6;\"><h3 style=\"margin-top: 0; color: #333;\">Rick Mtg</h3><table style=\"width: 100%; border-collapse: collapse; margin-top: 15px;\"><tr><td style=\"padding: 8px 0; width: 120px; vertical-align: top; color: #666;\"><strong>📅 Start:</strong></td><td style=\"padding: 8px 0; color: #333;\">Dec 10, 2025 5:00 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>🕐 End:</strong></td><td style=\"padding: 8px 0; color: #333;\">Dec 10, 2025 5:30 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>📍 Location:</strong></td><td style=\"padding: 8px 0; color: #333;\">Not specified</td></tr></table><div style=\"margin-top: 20px; text-align: center;\"><a href=\"http://localhost:8080/calendar\" style=\"display: inline-block; padding: 12px 30px; background: #0066cc; color: white; text-decoration: none; border-radius: 4px; font-weight: bold;\">View Calendar</a></div></div><table style=\"width: 100%; max-width: 600px; border-collapse: collapse; font-family: Helvetica, Arial, sans-serif;\">\r\n    <tr>\r\n        <td style=\"padding: 0; border-top: 3px solid #0066cc;\">\r\n            <table style=\"width: 100%; border-collapse: collapse; padding-top: 15px;\">\r\n                <tr>\r\n                    <!-- LEFT COLUMN -->\r\n                    <td style=\"vertical-align: top; padding-left: 20px; border-left: 2px solid #e0e0e0;\">\r\n                        <div style=\"margin-bottom: 10px;\">\r\n                            <strong style=\"font-size: 14px; color: #0066cc;\">Admin User</strong><br>\r\n                            <span style=\"font-size: 12px; color: #666;\">Administrator</span>\r\n                        </div>\r\n\r\n                        <div style=\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n                            <div><a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></div>\r\n                            <div>Mobile: 906-123-4567</div>\r\n                            <div>Office: 906-555-4567</div>\r\n                            <div><a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></div>\r\n                        </div>\r\n                    </td>\r\n\r\n                    <!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n                    <td style=\"width: 200px; vertical-align: middle; text-align: center; padding-top: 10px;\">\r\n                        <img src=\"http://localhost:8080/uploads/company/logo_1762869843.png\" alt=\"Mavrix1\" style=\"max-width: 150px; height: auto; display: block; margin: 0 auto;\">\r\n\r\n                        <div style=\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1.3;\">\r\n                            3900 W. Coachman Ave.<br>\r\n                            Tampa, FL 33611\r\n                        </div>\r\n                    </td>\r\n                </tr>\r\n            </table>\r\n        </td>\r\n    </tr>\r\n\r\n    <tr>\r\n        <td style=\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n            <div style=\"font-size: 9px; color: #888; line-height: 1.4;\">\r\n                <strong>CONFIDENTIALITY NOTICE:</strong><br>\r\n                <em>This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.</em><br><br>\r\n                <em>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</em><br><br>\r\n                <em>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</em><br><br>\r\n                <em>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em>\r\n            </div>\r\n        </td>\r\n    </tr>\r\n</table></div>','📅 Calendar Event InvitationRick Mtg📅 Start:Dec 10, 2025 5:00 PM🕐 End:Dec 10, 2025 5:30 PM📍 Location:Not specifiedView Calendar\r\n    \r\n        \r\n            \r\n                \r\n                    \r\n                    \r\n                        \r\n                            Admin User\r\n                            Administrator\r\n                        \r\n\r\n                        \r\n                            admin@mavrix.one\r\n                            Mobile: 906-123-4567\r\n                            Office: 906-555-4567\r\n                            https://mavrix1.com\r\n                        \r\n                    \r\n\r\n                    \r\n                    \r\n                        \r\n\r\n                        \r\n                            3900 W. Coachman Ave.\r\n                            Tampa, FL 33611\r\n                        \r\n                    \r\n                \r\n            \r\n        \r\n    \r\n\r\n    \r\n        \r\n            \r\n                CONFIDENTIALITY NOTICE:\r\n                This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.\r\n                This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n                If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n                Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n            \r\n        \r\n    \r\n',NULL,'sent',NULL,'2025-12-04 23:15:38',1,'CalendarEvent',32,'2025-12-04 23:15:38'),
(19,NULL,NULL,'test@mavrix.one',NULL,NULL,NULL,'noreply@example.com','Admin User',NULL,'Calendar Event Invitation: Rick Mtg','<div style=\"font-family: Arial, sans-serif; max-width: 600px; margin: 0 auto;\"><div style=\"background: linear-gradient(135deg, #0066cc 0%, #004999 100%); color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;\"><h2 style=\"margin: 0; font-size: 24px;\">📅 Calendar Event Invitation</h2></div><div style=\"background: #f8f9fa; padding: 20px; border-left: 4px solid #0066cc; border-right: 1px solid #dee2e6; border-bottom: 1px solid #dee2e6;\"><h3 style=\"margin-top: 0; color: #333;\">Rick Mtg</h3><table style=\"width: 100%; border-collapse: collapse; margin-top: 15px;\"><tr><td style=\"padding: 8px 0; width: 120px; vertical-align: top; color: #666;\"><strong>📅 Start:</strong></td><td style=\"padding: 8px 0; color: #333;\">Dec 10, 2025 5:00 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>🕐 End:</strong></td><td style=\"padding: 8px 0; color: #333;\">Dec 10, 2025 5:30 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>📍 Location:</strong></td><td style=\"padding: 8px 0; color: #333;\">Not specified</td></tr></table><div style=\"margin-top: 20px; text-align: center;\"><a href=\"http://localhost:8080/calendar\" style=\"display: inline-block; padding: 12px 30px; background: #0066cc; color: white; text-decoration: none; border-radius: 4px; font-weight: bold;\">View Calendar</a></div></div><table style=\"width: 100%; max-width: 600px; border-collapse: collapse; font-family: Helvetica, Arial, sans-serif;\">\r\n    <tr>\r\n        <td style=\"padding: 0; border-top: 3px solid #0066cc;\">\r\n            <table style=\"width: 100%; border-collapse: collapse; padding-top: 15px;\">\r\n                <tr>\r\n                    <!-- LEFT COLUMN -->\r\n                    <td style=\"vertical-align: top; padding-left: 20px; border-left: 2px solid #e0e0e0;\">\r\n                        <div style=\"margin-bottom: 10px;\">\r\n                            <strong style=\"font-size: 14px; color: #0066cc;\">Admin User</strong><br>\r\n                            <span style=\"font-size: 12px; color: #666;\">Administrator</span>\r\n                        </div>\r\n\r\n                        <div style=\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n                            <div><a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></div>\r\n                            <div>Mobile: 906-123-4567</div>\r\n                            <div>Office: 906-555-4567</div>\r\n                            <div><a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></div>\r\n                        </div>\r\n                    </td>\r\n\r\n                    <!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n                    <td style=\"width: 200px; vertical-align: middle; text-align: center; padding-top: 10px;\">\r\n                        <img src=\"http://localhost:8080/uploads/company/logo_1762869843.png\" alt=\"Mavrix1\" style=\"max-width: 150px; height: auto; display: block; margin: 0 auto;\">\r\n\r\n                        <div style=\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1.3;\">\r\n                            3900 W. Coachman Ave.<br>\r\n                            Tampa, FL 33611\r\n                        </div>\r\n                    </td>\r\n                </tr>\r\n            </table>\r\n        </td>\r\n    </tr>\r\n\r\n    <tr>\r\n        <td style=\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n            <div style=\"font-size: 9px; color: #888; line-height: 1.4;\">\r\n                <strong>CONFIDENTIALITY NOTICE:</strong><br>\r\n                <em>This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.</em><br><br>\r\n                <em>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</em><br><br>\r\n                <em>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</em><br><br>\r\n                <em>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em>\r\n            </div>\r\n        </td>\r\n    </tr>\r\n</table></div>','📅 Calendar Event InvitationRick Mtg📅 Start:Dec 10, 2025 5:00 PM🕐 End:Dec 10, 2025 5:30 PM📍 Location:Not specifiedView Calendar\r\n    \r\n        \r\n            \r\n                \r\n                    \r\n                    \r\n                        \r\n                            Admin User\r\n                            Administrator\r\n                        \r\n\r\n                        \r\n                            admin@mavrix.one\r\n                            Mobile: 906-123-4567\r\n                            Office: 906-555-4567\r\n                            https://mavrix1.com\r\n                        \r\n                    \r\n\r\n                    \r\n                    \r\n                        \r\n\r\n                        \r\n                            3900 W. Coachman Ave.\r\n                            Tampa, FL 33611\r\n                        \r\n                    \r\n                \r\n            \r\n        \r\n    \r\n\r\n    \r\n        \r\n            \r\n                CONFIDENTIALITY NOTICE:\r\n                This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.\r\n                This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n                If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n                Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n            \r\n        \r\n    \r\n',NULL,'sent',NULL,'2025-12-04 23:15:38',1,'CalendarEvent',32,'2025-12-04 23:15:38'),
(20,NULL,NULL,'accountant@mavrix.one',NULL,NULL,NULL,'noreply@example.com','Admin User',NULL,'Calendar Event Invitation: Rick Mtg','<div style=\"font-family: Arial, sans-serif; max-width: 600px; margin: 0 auto;\"><div style=\"background: linear-gradient(135deg, #0066cc 0%, #004999 100%); color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;\"><h2 style=\"margin: 0; font-size: 24px;\">📅 Calendar Event Invitation</h2></div><div style=\"background: #f8f9fa; padding: 20px; border-left: 4px solid #0066cc; border-right: 1px solid #dee2e6; border-bottom: 1px solid #dee2e6;\"><h3 style=\"margin-top: 0; color: #333;\">Rick Mtg</h3><table style=\"width: 100%; border-collapse: collapse; margin-top: 15px;\"><tr><td style=\"padding: 8px 0; width: 120px; vertical-align: top; color: #666;\"><strong>📅 Start:</strong></td><td style=\"padding: 8px 0; color: #333;\">Dec 10, 2025 5:00 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>🕐 End:</strong></td><td style=\"padding: 8px 0; color: #333;\">Dec 10, 2025 5:30 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>📍 Location:</strong></td><td style=\"padding: 8px 0; color: #333;\">Not specified</td></tr></table><div style=\"margin-top: 20px; text-align: center;\"><a href=\"http://localhost:8080/calendar\" style=\"display: inline-block; padding: 12px 30px; background: #0066cc; color: white; text-decoration: none; border-radius: 4px; font-weight: bold;\">View Calendar</a></div></div><table style=\"width: 100%; max-width: 600px; border-collapse: collapse; font-family: Helvetica, Arial, sans-serif;\">\r\n    <tr>\r\n        <td style=\"padding: 0; border-top: 3px solid #0066cc;\">\r\n            <table style=\"width: 100%; border-collapse: collapse; padding-top: 15px;\">\r\n                <tr>\r\n                    <!-- LEFT COLUMN -->\r\n                    <td style=\"vertical-align: top; padding-left: 20px; border-left: 2px solid #e0e0e0;\">\r\n                        <div style=\"margin-bottom: 10px;\">\r\n                            <strong style=\"font-size: 14px; color: #0066cc;\">Admin User</strong><br>\r\n                            <span style=\"font-size: 12px; color: #666;\">Administrator</span>\r\n                        </div>\r\n\r\n                        <div style=\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n                            <div><a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></div>\r\n                            <div>Mobile: 906-123-4567</div>\r\n                            <div>Office: 906-555-4567</div>\r\n                            <div><a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></div>\r\n                        </div>\r\n                    </td>\r\n\r\n                    <!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n                    <td style=\"width: 200px; vertical-align: middle; text-align: center; padding-top: 10px;\">\r\n                        <img src=\"http://localhost:8080/uploads/company/logo_1762869843.png\" alt=\"Mavrix1\" style=\"max-width: 150px; height: auto; display: block; margin: 0 auto;\">\r\n\r\n                        <div style=\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1.3;\">\r\n                            3900 W. Coachman Ave.<br>\r\n                            Tampa, FL 33611\r\n                        </div>\r\n                    </td>\r\n                </tr>\r\n            </table>\r\n        </td>\r\n    </tr>\r\n\r\n    <tr>\r\n        <td style=\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n            <div style=\"font-size: 9px; color: #888; line-height: 1.4;\">\r\n                <strong>CONFIDENTIALITY NOTICE:</strong><br>\r\n                <em>This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.</em><br><br>\r\n                <em>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</em><br><br>\r\n                <em>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</em><br><br>\r\n                <em>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em>\r\n            </div>\r\n        </td>\r\n    </tr>\r\n</table></div>','📅 Calendar Event InvitationRick Mtg📅 Start:Dec 10, 2025 5:00 PM🕐 End:Dec 10, 2025 5:30 PM📍 Location:Not specifiedView Calendar\r\n    \r\n        \r\n            \r\n                \r\n                    \r\n                    \r\n                        \r\n                            Admin User\r\n                            Administrator\r\n                        \r\n\r\n                        \r\n                            admin@mavrix.one\r\n                            Mobile: 906-123-4567\r\n                            Office: 906-555-4567\r\n                            https://mavrix1.com\r\n                        \r\n                    \r\n\r\n                    \r\n                    \r\n                        \r\n\r\n                        \r\n                            3900 W. Coachman Ave.\r\n                            Tampa, FL 33611\r\n                        \r\n                    \r\n                \r\n            \r\n        \r\n    \r\n\r\n    \r\n        \r\n            \r\n                CONFIDENTIALITY NOTICE:\r\n                This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.\r\n                This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n                If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n                Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n            \r\n        \r\n    \r\n',NULL,'sent',NULL,'2025-12-04 23:15:38',1,'CalendarEvent',32,'2025-12-04 23:15:38'),
(21,NULL,NULL,'nathan@mavrix.one',NULL,NULL,NULL,'noreply@example.com','Admin User',NULL,'Calendar Event Invitation: Rick Mtg','<div style=\"font-family: Arial, sans-serif; max-width: 600px; margin: 0 auto;\"><div style=\"background: linear-gradient(135deg, #0066cc 0%, #004999 100%); color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;\"><h2 style=\"margin: 0; font-size: 24px;\">📅 Calendar Event Invitation</h2></div><div style=\"background: #f8f9fa; padding: 20px; border-left: 4px solid #0066cc; border-right: 1px solid #dee2e6; border-bottom: 1px solid #dee2e6;\"><h3 style=\"margin-top: 0; color: #333;\">Rick Mtg</h3><table style=\"width: 100%; border-collapse: collapse; margin-top: 15px;\"><tr><td style=\"padding: 8px 0; width: 120px; vertical-align: top; color: #666;\"><strong>📅 Start:</strong></td><td style=\"padding: 8px 0; color: #333;\">Dec 10, 2025 5:00 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>🕐 End:</strong></td><td style=\"padding: 8px 0; color: #333;\">Dec 10, 2025 5:30 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>📍 Location:</strong></td><td style=\"padding: 8px 0; color: #333;\">Not specified</td></tr></table><div style=\"margin-top: 20px; text-align: center;\"><a href=\"http://localhost:8080/calendar\" style=\"display: inline-block; padding: 12px 30px; background: #0066cc; color: white; text-decoration: none; border-radius: 4px; font-weight: bold;\">View Calendar</a></div></div><table style=\"width: 100%; max-width: 600px; border-collapse: collapse; font-family: Helvetica, Arial, sans-serif;\">\r\n    <tr>\r\n        <td style=\"padding: 0; border-top: 3px solid #0066cc;\">\r\n            <table style=\"width: 100%; border-collapse: collapse; padding-top: 15px;\">\r\n                <tr>\r\n                    <!-- LEFT COLUMN -->\r\n                    <td style=\"vertical-align: top; padding-left: 20px; border-left: 2px solid #e0e0e0;\">\r\n                        <div style=\"margin-bottom: 10px;\">\r\n                            <strong style=\"font-size: 14px; color: #0066cc;\">Admin User</strong><br>\r\n                            <span style=\"font-size: 12px; color: #666;\">Administrator</span>\r\n                        </div>\r\n\r\n                        <div style=\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n                            <div><a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></div>\r\n                            <div>Mobile: 906-123-4567</div>\r\n                            <div>Office: 906-555-4567</div>\r\n                            <div><a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></div>\r\n                        </div>\r\n                    </td>\r\n\r\n                    <!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n                    <td style=\"width: 200px; vertical-align: middle; text-align: center; padding-top: 10px;\">\r\n                        <img src=\"http://localhost:8080/uploads/company/logo_1762869843.png\" alt=\"Mavrix1\" style=\"max-width: 150px; height: auto; display: block; margin: 0 auto;\">\r\n\r\n                        <div style=\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1.3;\">\r\n                            3900 W. Coachman Ave.<br>\r\n                            Tampa, FL 33611\r\n                        </div>\r\n                    </td>\r\n                </tr>\r\n            </table>\r\n        </td>\r\n    </tr>\r\n\r\n    <tr>\r\n        <td style=\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n            <div style=\"font-size: 9px; color: #888; line-height: 1.4;\">\r\n                <strong>CONFIDENTIALITY NOTICE:</strong><br>\r\n                <em>This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.</em><br><br>\r\n                <em>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</em><br><br>\r\n                <em>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</em><br><br>\r\n                <em>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em>\r\n            </div>\r\n        </td>\r\n    </tr>\r\n</table></div>','📅 Calendar Event InvitationRick Mtg📅 Start:Dec 10, 2025 5:00 PM🕐 End:Dec 10, 2025 5:30 PM📍 Location:Not specifiedView Calendar\r\n    \r\n        \r\n            \r\n                \r\n                    \r\n                    \r\n                        \r\n                            Admin User\r\n                            Administrator\r\n                        \r\n\r\n                        \r\n                            admin@mavrix.one\r\n                            Mobile: 906-123-4567\r\n                            Office: 906-555-4567\r\n                            https://mavrix1.com\r\n                        \r\n                    \r\n\r\n                    \r\n                    \r\n                        \r\n\r\n                        \r\n                            3900 W. Coachman Ave.\r\n                            Tampa, FL 33611\r\n                        \r\n                    \r\n                \r\n            \r\n        \r\n    \r\n\r\n    \r\n        \r\n            \r\n                CONFIDENTIALITY NOTICE:\r\n                This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.\r\n                This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n                If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n                Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n            \r\n        \r\n    \r\n',NULL,'sent',NULL,'2025-12-04 23:15:39',1,'CalendarEvent',32,'2025-12-04 23:15:38'),
(22,NULL,NULL,'tony@mavrix.one',NULL,NULL,NULL,'noreply@example.com','Admin User',NULL,'Calendar Event Invitation: Rick Mtg','<div style=\"font-family: Arial, sans-serif; max-width: 600px; margin: 0 auto;\"><div style=\"background: linear-gradient(135deg, #0066cc 0%, #004999 100%); color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;\"><h2 style=\"margin: 0; font-size: 24px;\">📅 Calendar Event Invitation</h2></div><div style=\"background: #f8f9fa; padding: 20px; border-left: 4px solid #0066cc; border-right: 1px solid #dee2e6; border-bottom: 1px solid #dee2e6;\"><h3 style=\"margin-top: 0; color: #333;\">Rick Mtg</h3><table style=\"width: 100%; border-collapse: collapse; margin-top: 15px;\"><tr><td style=\"padding: 8px 0; width: 120px; vertical-align: top; color: #666;\"><strong>📅 Start:</strong></td><td style=\"padding: 8px 0; color: #333;\">Dec 10, 2025 5:00 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>🕐 End:</strong></td><td style=\"padding: 8px 0; color: #333;\">Dec 10, 2025 5:30 PM</td></tr><tr><td style=\"padding: 8px 0; vertical-align: top; color: #666;\"><strong>📍 Location:</strong></td><td style=\"padding: 8px 0; color: #333;\">Not specified</td></tr></table><div style=\"margin-top: 20px; text-align: center;\"><a href=\"http://localhost:8080/calendar\" style=\"display: inline-block; padding: 12px 30px; background: #0066cc; color: white; text-decoration: none; border-radius: 4px; font-weight: bold;\">View Calendar</a></div></div><table style=\"width: 100%; max-width: 600px; border-collapse: collapse; font-family: Helvetica, Arial, sans-serif;\">\r\n    <tr>\r\n        <td style=\"padding: 0; border-top: 3px solid #0066cc;\">\r\n            <table style=\"width: 100%; border-collapse: collapse; padding-top: 15px;\">\r\n                <tr>\r\n                    <!-- LEFT COLUMN -->\r\n                    <td style=\"vertical-align: top; padding-left: 20px; border-left: 2px solid #e0e0e0;\">\r\n                        <div style=\"margin-bottom: 10px;\">\r\n                            <strong style=\"font-size: 14px; color: #0066cc;\">Admin User</strong><br>\r\n                            <span style=\"font-size: 12px; color: #666;\">Administrator</span>\r\n                        </div>\r\n\r\n                        <div style=\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n                            <div><a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></div>\r\n                            <div>Mobile: 906-123-4567</div>\r\n                            <div>Office: 906-555-4567</div>\r\n                            <div><a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></div>\r\n                        </div>\r\n                    </td>\r\n\r\n                    <!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n                    <td style=\"width: 200px; vertical-align: middle; text-align: center; padding-top: 10px;\">\r\n                        <img src=\"http://localhost:8080/uploads/company/logo_1762869843.png\" alt=\"Mavrix1\" style=\"max-width: 150px; height: auto; display: block; margin: 0 auto;\">\r\n\r\n                        <div style=\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1.3;\">\r\n                            3900 W. Coachman Ave.<br>\r\n                            Tampa, FL 33611\r\n                        </div>\r\n                    </td>\r\n                </tr>\r\n            </table>\r\n        </td>\r\n    </tr>\r\n\r\n    <tr>\r\n        <td style=\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n            <div style=\"font-size: 9px; color: #888; line-height: 1.4;\">\r\n                <strong>CONFIDENTIALITY NOTICE:</strong><br>\r\n                <em>This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.</em><br><br>\r\n                <em>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</em><br><br>\r\n                <em>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</em><br><br>\r\n                <em>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em>\r\n            </div>\r\n        </td>\r\n    </tr>\r\n</table></div>','📅 Calendar Event InvitationRick Mtg📅 Start:Dec 10, 2025 5:00 PM🕐 End:Dec 10, 2025 5:30 PM📍 Location:Not specifiedView Calendar\r\n    \r\n        \r\n            \r\n                \r\n                    \r\n                    \r\n                        \r\n                            Admin User\r\n                            Administrator\r\n                        \r\n\r\n                        \r\n                            admin@mavrix.one\r\n                            Mobile: 906-123-4567\r\n                            Office: 906-555-4567\r\n                            https://mavrix1.com\r\n                        \r\n                    \r\n\r\n                    \r\n                    \r\n                        \r\n\r\n                        \r\n                            3900 W. Coachman Ave.\r\n                            Tampa, FL 33611\r\n                        \r\n                    \r\n                \r\n            \r\n        \r\n    \r\n\r\n    \r\n        \r\n            \r\n                CONFIDENTIALITY NOTICE:\r\n                This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.\r\n                This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n                If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n                Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n            \r\n        \r\n    \r\n',NULL,'sent',NULL,'2025-12-04 23:15:39',1,'CalendarEvent',32,'2025-12-04 23:15:39');
/*!40000 ALTER TABLE `email_log` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `email_recipients`
--

DROP TABLE IF EXISTS `email_recipients`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `email_recipients` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `email_id` int(10) unsigned NOT NULL,
  `recipient_type` enum('to','cc','bcc') NOT NULL,
  `email_address` varchar(255) NOT NULL,
  `name` varchar(255) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_email` (`email_id`),
  KEY `idx_recipient` (`recipient_type`,`email_address`),
  CONSTRAINT `email_recipients_ibfk_1` FOREIGN KEY (`email_id`) REFERENCES `emails` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=142 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_recipients`
--

LOCK TABLES `email_recipients` WRITE;
/*!40000 ALTER TABLE `email_recipients` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `email_recipients` VALUES
(52,49,'to','brian@mavrix.one','','2025-12-02 21:54:07'),
(53,50,'to','erp_system@mavrix.one','erp_system@mavrix.one','2025-12-04 11:06:00'),
(54,51,'to','erp_system@mavrix.one','erp_system@mavrix.one','2025-12-04 11:06:01'),
(55,52,'to','erp_system@mavrix.one','erp_system@mavrix.one','2025-12-04 11:06:01'),
(56,53,'to','erp_system@mavrix.one',NULL,'2025-12-04 11:33:14'),
(57,54,'to','erp_system@mavrix.one','erp_system@mavrix.one','2025-12-04 11:33:20'),
(58,55,'to','erp_system@mavrix.one',NULL,'2025-12-04 12:01:25'),
(59,56,'to','erp_system@mavrix.one','erp_system@mavrix.one','2025-12-04 12:01:31'),
(60,57,'to','erp_system@mavrix.one',NULL,'2025-12-04 12:34:51'),
(61,57,'cc','rick@mavrix.one',NULL,'2025-12-04 12:34:51'),
(62,57,'bcc','rick@mislan.com',NULL,'2025-12-04 12:34:51'),
(63,58,'to','erp_system@mavrix.one','erp_system@mavrix.one','2025-12-04 12:35:11'),
(64,59,'to','erp_system@mavrix.one',NULL,'2025-12-04 12:45:53'),
(65,60,'to','erp_system@mavrix.one','erp_system@mavrix.one','2025-12-04 12:46:36'),
(66,61,'to','erp_system@mavrix.one',NULL,'2025-12-04 13:15:08'),
(67,62,'to','erp_system@mavrix.one','erp_system@mavrix.one','2025-12-04 13:15:17'),
(68,63,'to','rick@mavrix.one','Rick Mislan','2025-12-04 14:04:32'),
(69,64,'to','rick@mavrix.one','Rick','2025-12-04 14:04:32'),
(70,65,'to','rick@mavrix.one','Rick','2025-12-04 14:04:32'),
(71,66,'to','rick@mavrix.one','Rick Mislan','2025-12-04 14:04:33'),
(72,67,'to','Nathan@lithiumbatterycompany.com','Nathan Staron','2025-12-04 14:04:34'),
(73,67,'to','jarrett@lithiumbatterycompany.com','Jarrett Brownfield','2025-12-04 14:04:34'),
(74,67,'to','brian@mavrix.one','Brian Stufflebean','2025-12-04 14:04:34'),
(75,67,'to','rick@mavrix.one','Rick Mislan','2025-12-04 14:04:34'),
(76,68,'to','rick@mavrix.one','Rick Mislan','2025-12-04 14:04:34'),
(77,69,'to','rick@mavrix.one','Rick','2025-12-04 14:04:34'),
(78,70,'to','brian@mavrix.one','Brian Stufflebean','2025-12-04 14:04:37'),
(79,70,'to','rick@mavrix.one','Rick Mislan','2025-12-04 14:04:37'),
(80,70,'to','Nathan@lithiumbatterycompany.com','Nathan Staron','2025-12-04 14:04:37'),
(81,70,'to','jarrett@lithiumbatterycompany.com','Jarrett Brownfield','2025-12-04 14:04:38'),
(82,71,'to','rick@mavrix.one','Rick','2025-12-04 14:04:44'),
(83,72,'to','rick@mavrix.one','Rick','2025-12-04 14:04:44'),
(84,73,'to','rick@mavrix.one','Rick','2025-12-04 14:04:44'),
(85,74,'to','contact@mavrix.one','contact@mavrix.one','2025-12-04 14:04:44'),
(86,75,'to','rick@mavrix.one','\"rick@mavrix.one\"','2025-12-04 14:04:44'),
(87,76,'to','leslie@mavrix.one','Leslie Staron','2025-12-04 14:04:45'),
(88,76,'to','rick@mavrix.one','Rick Mislan','2025-12-04 14:04:45'),
(89,76,'to','Nathan@lithiumbatterycompany.com','\"Nathan A. Staron\"','2025-12-04 14:04:45'),
(90,76,'to','tony@mavrix.one','Tony Aponte','2025-12-04 14:04:46'),
(91,77,'to','brian@bayfrontcapitalllc.com','Brian Stufflebean','2025-12-04 14:04:46'),
(92,78,'to','brian@mavrix.one','Brian Stufflebean','2025-12-04 14:04:47'),
(93,78,'to','rick@mavrix.one','Rick Mislan','2025-12-04 14:04:47'),
(94,78,'to','katherine@mavrix.one','katherine@mavrix.one','2025-12-04 14:04:47'),
(95,79,'to','rick@mavrix.one','Rick Mislan','2025-12-04 14:04:49'),
(96,79,'to','brian@bayfrontcapitalllc.com','Brian Stufflebean','2025-12-04 14:04:49'),
(97,80,'to','rick@mavrix.one','rick@mavrix.one','2025-12-04 14:04:49'),
(98,81,'to','rick@mavrix.one','rick@mavrix.one','2025-12-04 14:04:49'),
(99,82,'to','rick@mavrix.one','\"rick@mavrix.one\"','2025-12-04 14:04:49'),
(100,83,'to','\"Richard P. Mislan','\"Richard P. Mislan','2025-12-04 14:04:50'),
(101,83,'to','rick@mavrix.one','PhD\"','2025-12-04 14:04:50'),
(102,83,'to','leslie@mavrix.one','Leslie Staron','2025-12-04 14:04:50'),
(103,84,'to','rick@mavrix.one','Rick Mislan','2025-12-04 14:04:50'),
(104,85,'to','rick@mavrix.one','','2025-12-04 14:04:51'),
(105,86,'to','rick@mavrix.one','','2025-12-04 14:04:52'),
(106,87,'to','jtrevey@forgenano.com','James Trevey','2025-12-04 14:04:52'),
(107,88,'to','rick@mavrix.one','Rick','2025-12-04 14:04:53'),
(108,89,'to','rick@mavrix.one','\"rick@mavrix.one\"','2025-12-04 14:04:54'),
(109,90,'to','rick@mavrix.one','rick@mavrix.one','2025-12-04 14:04:54'),
(110,91,'to','rick@mavrix.one','Rick','2025-12-04 14:04:55'),
(111,92,'to','rick@mavrix.one','Rick','2025-12-04 14:04:56'),
(112,93,'to','rick@mavrix.one','Rick Mislan','2025-12-04 14:04:57'),
(113,94,'to','rick@mavrix.one','Rick','2025-12-04 14:04:57'),
(114,95,'to','rick@mavrix.one','Rick','2025-12-04 14:04:58'),
(115,96,'to','rick@mavrix.one','Rick Mislan','2025-12-04 14:05:21'),
(116,96,'to','Nathan@Lithiumbatterycompany.com','\"Nathan A. Staron\"','2025-12-04 14:05:21'),
(117,97,'to','rick@mavrix.one','rick@mavrix.one','2025-12-04 14:05:21'),
(118,98,'to','jordan@lithiumbatterycompany.com','Jordan Wroblewski','2025-12-04 14:05:22'),
(119,99,'to','rick@mavrix.one','rick@mavrix.one','2025-12-04 14:05:22'),
(120,100,'to','Rick@mavrix.one','Rick@mavrix.one','2025-12-04 14:05:22'),
(121,101,'to','rick@mavrix.one','Rick','2025-12-04 14:05:22'),
(122,102,'to','brian@bayfrontcapitalllc.com','Brian Stufflebean','2025-12-04 14:05:25'),
(123,102,'to','rick@mavrix.one','Rick Mislan','2025-12-04 14:05:25'),
(124,103,'to','rick@mavrix.one','rick@mavrix.one','2025-12-04 14:05:25'),
(125,104,'to','rick@mavrix.one','Rick','2025-12-04 14:05:25'),
(126,105,'to','rick@mavrix.one','','2025-12-04 14:05:25'),
(127,106,'to','rick@mavrix.one','rick@mavrix.one','2025-12-04 14:05:25'),
(128,107,'to','Steve.Barthlow@lddblueline.com','Steve Barthlow','2025-12-04 14:05:25'),
(129,108,'to','Nathan@lithiumbatterycompany.com','\"Nathan A. Staron\"','2025-12-04 14:05:26'),
(130,108,'to','jordan@lithiumbatterycompany.com','Jordan Wroblewski','2025-12-04 14:05:26'),
(131,109,'to','Brian@mavrix.one','Brian Stufflebean','2025-12-04 14:05:26'),
(132,110,'to','Nathan@lithiumbatterycompany.com','Nathan Staron','2025-12-04 14:05:27'),
(133,110,'to','jarrett@lithiumbatterycompany.com','Jarrett Brownfield','2025-12-04 14:05:27'),
(134,114,'to','erp_system@mavrix.one',NULL,'2025-12-04 14:59:08'),
(135,115,'to','erp_system@mavrix.one','erp_system@mavrix.one','2025-12-04 14:59:09'),
(136,122,'to','erp_system@mavrix.one',NULL,'2025-12-04 16:09:56'),
(137,128,'to','erp_system@mavrix.one','erp_system@mavrix.one','2025-12-04 16:18:59'),
(138,130,'to','erp_system@mavrix.one',NULL,'2025-12-04 16:37:54'),
(139,131,'to','erp_system@mavrix.one','erp_system@mavrix.one','2025-12-04 16:38:07'),
(140,138,'to','erp_system@mavrix.one','erp_system@mavrix.one','2025-12-04 22:54:48'),
(141,139,'to','erp_system@mavrix.one','erp_system@mavrix.one','2025-12-04 22:55:58');
/*!40000 ALTER TABLE `email_recipients` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `email_signature_templates`
--

DROP TABLE IF EXISTS `email_signature_templates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `email_signature_templates` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `html_content` text NOT NULL,
  `is_default` tinyint(1) DEFAULT 0,
  `is_active` tinyint(1) DEFAULT 1,
  `created_by` int(11) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_is_default` (`is_default`),
  KEY `idx_is_active` (`is_active`),
  KEY `idx_created_by` (`created_by`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_signature_templates`
--

LOCK TABLES `email_signature_templates` WRITE;
/*!40000 ALTER TABLE `email_signature_templates` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `email_signature_templates` VALUES
(1,'Default Mavrix 1 Corporate Signature','Standard Mavrix1  signature with logo and contact information','<table style=\"width: 100%; max-width: 600px; border-collapse: collapse; font-family: Helvetica, Arial, sans-serif;\">\r\n    <tr>\r\n        <td style=\"padding: 0; border-top: 3px solid #0066cc;\">\r\n            <table style=\"width: 100%; border-collapse: collapse; padding-top: 15px;\">\r\n                <tr>\r\n                    <!-- LEFT COLUMN -->\r\n                    <td style=\"vertical-align: top; padding-left: 20px; border-left: 2px solid #e0e0e0;\">\r\n                        <div style=\"margin-bottom: 10px;\">\r\n                            <strong style=\"font-size: 14px; color: #0066cc;\">{user_name}</strong><br>\r\n                            <span style=\"font-size: 12px; color: #666;\">{position_title}</span>\r\n                        </div>\r\n\r\n                        <div style=\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n                            <div><a href=\"mailto:{user_email}\" style=\"color: #0066cc; text-decoration: none;\">{user_email}</a></div>\r\n                            <div>Mobile: {user_phone}</div>\r\n                            <div>Office: {company_phone}</div>\r\n                            <div><a href=\"{company_website}\" style=\"color: #0066cc; text-decoration: none;\">{company_website}</a></div>\r\n                        </div>\r\n                    </td>\r\n\r\n                    <!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n                    <td style=\"width: 200px; vertical-align: middle; text-align: center; padding-top: 10px;\">\r\n                        <img src=\"{company_logo}\" alt=\"{company_name}\" style=\"max-width: 150px; height: auto; display: block; margin: 0 auto;\">\r\n\r\n                        <div style=\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1.3;\">\r\n                            {company_address_line1}<br>\r\n                            {company_city}, {company_state} {company_zip}\r\n                        </div>\r\n                    </td>\r\n                </tr>\r\n            </table>\r\n        </td>\r\n    </tr>\r\n\r\n    <tr>\r\n        <td style=\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n            <div style=\"font-size: 9px; color: #888; line-height: 1.4;\">\r\n                <strong>CONFIDENTIALITY NOTICE:</strong><br>\r\n                <em>This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.</em><br><br>\r\n                <em>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</em><br><br>\r\n                <em>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</em><br><br>\r\n                <em>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em>\r\n            </div>\r\n        </td>\r\n    </tr>\r\n</table>',1,1,1,'2025-11-26 17:39:39','2025-11-27 22:45:45');
/*!40000 ALTER TABLE `email_signature_templates` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `email_templates`
--

DROP TABLE IF EXISTS `email_templates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `email_templates` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL COMMENT 'Template name/identifier',
  `slug` varchar(100) NOT NULL COMMENT 'Unique slug for programmatic access',
  `type` enum('quote','nda','notification','system') DEFAULT 'notification' COMMENT 'Template category',
  `subject` varchar(255) NOT NULL COMMENT 'Email subject line with variables',
  `body` text NOT NULL COMMENT 'Email body HTML with variables',
  `body_html` longtext DEFAULT NULL COMMENT 'HTML version of email body',
  `body_text` longtext DEFAULT NULL COMMENT 'Plain text version',
  `available_variables` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'List of available template variables' CHECK (json_valid(`available_variables`)),
  `sample_data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Sample data for preview' CHECK (json_valid(`sample_data`)),
  `from_email` varchar(255) DEFAULT NULL COMMENT 'Override default from email',
  `from_name` varchar(255) DEFAULT NULL COMMENT 'Override default from name',
  `cc` varchar(500) DEFAULT NULL COMMENT 'Default CC addresses',
  `bcc` varchar(500) DEFAULT NULL COMMENT 'Default BCC addresses',
  `reply_to` varchar(255) DEFAULT NULL COMMENT 'Reply-to address',
  `description` text DEFAULT NULL COMMENT 'Template purpose and usage notes',
  `category` varchar(50) DEFAULT NULL COMMENT 'Category (invoices, quotes, hr, system, etc.)',
  `is_active` tinyint(1) DEFAULT 1 COMMENT 'Is template active',
  `is_system` tinyint(1) DEFAULT 0 COMMENT 'System template (cannot be deleted)',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `created_by` int(11) DEFAULT NULL,
  `updated_by` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `slug` (`slug`),
  KEY `idx_slug` (`slug`),
  KEY `idx_type` (`type`),
  KEY `idx_active` (`is_active`),
  KEY `idx_category` (`category`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_templates`
--

LOCK TABLES `email_templates` WRITE;
/*!40000 ALTER TABLE `email_templates` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `email_templates` VALUES
(1,'Quote Approval','quote_approval','quote','Quote {{quote_number}} - Please Review and Sign','<h2>Hello {{recipient_name}},</h2>\n<p>Please review and sign the attached quote:</p>\n<table style=\"width: 100%; margin: 20px 0;\">\n    <tr>\n        <td><strong>Quote Number:</strong></td>\n        <td>{{quote_number}}</td>\n    </tr>\n    <tr>\n        <td><strong>Total Amount:</strong></td>\n        <td>{{total_amount}}</td>\n    </tr>\n    {{#expiry_date}}\n    <tr>\n        <td><strong>Valid Until:</strong></td>\n        <td>{{expiry_date}}</td>\n    </tr>\n    {{/expiry_date}}\n</table>\n<div style=\"text-align: center; margin: 30px 0;\">\n    <a href=\"{{quote_link}}\" class=\"button\" style=\"display: inline-block; padding: 12px 30px; background: #3498db; color: white; text-decoration: none; border-radius: 5px;\">Review & Sign Quote</a>\n</div>\n<p>If you have any questions, please contact {{sender_name}}.</p>\n<p>Best regards,<br>{{company_name}}</p>','<h2>Hello {{recipient_name}},</h2>\n<p>Please review and sign the attached quote:</p>\n<table style=\"width: 100%; margin: 20px 0;\">\n    <tr>\n        <td><strong>Quote Number:</strong></td>\n        <td>{{quote_number}}</td>\n    </tr>\n    <tr>\n        <td><strong>Total Amount:</strong></td>\n        <td>{{total_amount}}</td>\n    </tr>\n    {{#expiry_date}}\n    <tr>\n        <td><strong>Valid Until:</strong></td>\n        <td>{{expiry_date}}</td>\n    </tr>\n    {{/expiry_date}}\n</table>\n<div style=\"text-align: center; margin: 30px 0;\">\n    <a href=\"{{quote_link}}\" class=\"button\" style=\"display: inline-block; padding: 12px 30px; background: #3498db; color: white; text-decoration: none; border-radius: 5px;\">Review & Sign Quote</a>\n</div>\n<p>If you have any questions, please contact {{sender_name}}.</p>\n<p>Best regards,<br>{{company_name}}</p>',NULL,'[\"{{recipient_name}}\", \"{{quote_number}}\", \"{{quote_link}}\", \"{{total_amount}}\", \"{{sender_name}}\", \"{{expiry_date}}\", \"{{company_name}}\"]',NULL,NULL,NULL,NULL,NULL,NULL,'Template used when sending quotes for customer approval and signature',NULL,1,1,'2025-11-16 21:17:31','2025-11-26 13:59:16',NULL,NULL),
(2,'NDA Signature Request','nda_signature','nda','Non-Disclosure Agreement {{nda_number}} - Signature Required','<h2>Hello {{recipient_name}},</h2>\n<p>We are excited to move forward with <strong>{{opportunity_name}}</strong>.</p>\n<p>Before we proceed, we require your signature on our Non-Disclosure Agreement:</p>\n<table style=\"width: 100%; margin: 20px 0;\">\n    <tr>\n        <td><strong>NDA Number:</strong></td>\n        <td>{{nda_number}}</td>\n    </tr>\n    <tr>\n        <td><strong>Related to:</strong></td>\n        <td>{{opportunity_name}}</td>\n    </tr>\n    {{#expiry_date}}\n    <tr>\n        <td><strong>Please sign by:</strong></td>\n        <td>{{expiry_date}}</td>\n    </tr>\n    {{/expiry_date}}\n</table>\n<div style=\"text-align: center; margin: 30px 0;\">\n    <a href=\"{{nda_link}}\" class=\"button\" style=\"display: inline-block; padding: 12px 30px; background: #e74c3c; color: white; text-decoration: none; border-radius: 5px;\">Review & Sign NDA</a>\n</div>\n<p><em>This is a confidential legal document. Please review it carefully before signing.</em></p>\n<p>If you have any questions, please contact {{sender_name}}.</p>\n<p>Best regards,<br>{{company_name}}</p>','<h2>Hello {{recipient_name}},</h2>\n<p>We are excited to move forward with <strong>{{opportunity_name}}</strong>.</p>\n<p>Before we proceed, we require your signature on our Non-Disclosure Agreement:</p>\n<table style=\"width: 100%; margin: 20px 0;\">\n    <tr>\n        <td><strong>NDA Number:</strong></td>\n        <td>{{nda_number}}</td>\n    </tr>\n    <tr>\n        <td><strong>Related to:</strong></td>\n        <td>{{opportunity_name}}</td>\n    </tr>\n    {{#expiry_date}}\n    <tr>\n        <td><strong>Please sign by:</strong></td>\n        <td>{{expiry_date}}</td>\n    </tr>\n    {{/expiry_date}}\n</table>\n<div style=\"text-align: center; margin: 30px 0;\">\n    <a href=\"{{nda_link}}\" class=\"button\" style=\"display: inline-block; padding: 12px 30px; background: #e74c3c; color: white; text-decoration: none; border-radius: 5px;\">Review & Sign NDA</a>\n</div>\n<p><em>This is a confidential legal document. Please review it carefully before signing.</em></p>\n<p>If you have any questions, please contact {{sender_name}}.</p>\n<p>Best regards,<br>{{company_name}}</p>',NULL,'[\"{{recipient_name}}\", \"{{nda_number}}\", \"{{nda_link}}\", \"{{opportunity_name}}\", \"{{sender_name}}\", \"{{expiry_date}}\", \"{{company_name}}\"]',NULL,NULL,NULL,NULL,NULL,NULL,'Template used when sending NDAs for signature',NULL,1,1,'2025-11-16 21:17:31','2025-11-26 13:59:16',NULL,NULL),
(3,'OTP Verification','otp','system','Your verification code for {{company_name}}','<h2>Hello {{name}},</h2>\n<p>Your verification code is:</p>\n<div style=\"background: #fff; border: 2px dashed #3498db; padding: 20px; text-align: center; font-size: 32px; font-weight: bold; letter-spacing: 5px; margin: 20px 0;\">{{otp_code}}</div>\n<p>This code will expire in <strong>{{expiry_minutes}} minutes</strong>.</p>\n<p style=\"color: #e74c3c; font-weight: bold;\">Do not share this code with anyone.</p>','<h2>Hello {{name}},</h2>\n<p>Your verification code is:</p>\n<div style=\"background: #fff; border: 2px dashed #3498db; padding: 20px; text-align: center; font-size: 32px; font-weight: bold; letter-spacing: 5px; margin: 20px 0;\">{{otp_code}}</div>\n<p>This code will expire in <strong>{{expiry_minutes}} minutes</strong>.</p>\n<p style=\"color: #e74c3c; font-weight: bold;\">Do not share this code with anyone.</p>',NULL,'[\"{{name}}\", \"{{otp_code}}\", \"{{expiry_minutes}}\", \"{{company_name}}\"]',NULL,NULL,NULL,NULL,NULL,NULL,'Template for OTP/MFA verification codes',NULL,1,1,'2025-11-16 21:17:31','2025-11-26 13:59:16',NULL,NULL),
(4,'Password Reset','password_reset','system','Reset your password for {{company_name}}','<h2>Hello {{name}},</h2>\n<p>We received a request to reset your password. Click the button below to reset it:</p>\n<div style=\"text-align: center; margin: 30px 0;\">\n    <a href=\"{{reset_link}}\" class=\"button\" style=\"display: inline-block; padding: 12px 30px; background: #3498db; color: white; text-decoration: none; border-radius: 5px;\">Reset Password</a>\n</div>\n<p>Or copy and paste this link into your browser:</p>\n<p style=\"word-break: break-all; color: #3498db;\">{{reset_link}}</p>\n<p>This link will expire in <strong>{{expiry_minutes}} minutes</strong>.</p>\n<p style=\"color: #e74c3c; font-weight: bold;\">If you didn\'t request this, please ignore this email or contact support.</p>','<h2>Hello {{name}},</h2>\n<p>We received a request to reset your password. Click the button below to reset it:</p>\n<div style=\"text-align: center; margin: 30px 0;\">\n    <a href=\"{{reset_link}}\" class=\"button\" style=\"display: inline-block; padding: 12px 30px; background: #3498db; color: white; text-decoration: none; border-radius: 5px;\">Reset Password</a>\n</div>\n<p>Or copy and paste this link into your browser:</p>\n<p style=\"word-break: break-all; color: #3498db;\">{{reset_link}}</p>\n<p>This link will expire in <strong>{{expiry_minutes}} minutes</strong>.</p>\n<p style=\"color: #e74c3c; font-weight: bold;\">If you didn\'t request this, please ignore this email or contact support.</p>',NULL,'[\"{{name}}\", \"{{reset_link}}\", \"{{expiry_minutes}}\", \"{{company_name}}\"]',NULL,NULL,NULL,NULL,NULL,NULL,'Template for password reset emails',NULL,1,1,'2025-11-16 21:17:31','2025-11-26 13:59:16',NULL,NULL),
(5,'NDA Fully Executed - Customer','nda_fully_executed','nda','NDA {{nda_number}} Fully Executed - Ready to Proceed','<p>Dear {{recipient_name}},</p>\n\n<p>Great news! The Non-Disclosure Agreement <strong>{{nda_number}}</strong> for <strong>{{opportunity_name}}</strong> has been fully executed by all parties.</p>\n\n<p>Both you and our company representative have signed the agreement, and we are now ready to proceed with the next steps.</p>\n\n<p style=\"margin: 20px 0;\">\n    <a href=\"{{nda_link}}\" class=\"button\" style=\"display: inline-block; padding: 12px 30px; background: #3498db; color: white !important; text-decoration: none; border-radius: 5px;\">\n        View Fully Executed NDA\n    </a>\n</p>\n\n<p>You can download a copy of the fully executed NDA from the link above for your records.</p>\n\n<p>If you have any questions, please don\'t hesitate to contact us.</p>\n\n<p>Best regards,<br>\n{{sender_name}}<br>\n{{company_name}}</p>','<p>Dear {{recipient_name}},</p>\n\n<p>Great news! The Non-Disclosure Agreement <strong>{{nda_number}}</strong> for <strong>{{opportunity_name}}</strong> has been fully executed by all parties.</p>\n\n<p>Both you and our company representative have signed the agreement, and we are now ready to proceed with the next steps.</p>\n\n<p style=\"margin: 20px 0;\">\n    <a href=\"{{nda_link}}\" class=\"button\" style=\"display: inline-block; padding: 12px 30px; background: #3498db; color: white !important; text-decoration: none; border-radius: 5px;\">\n        View Fully Executed NDA\n    </a>\n</p>\n\n<p>You can download a copy of the fully executed NDA from the link above for your records.</p>\n\n<p>If you have any questions, please don\'t hesitate to contact us.</p>\n\n<p>Best regards,<br>\n{{sender_name}}<br>\n{{company_name}}</p>',NULL,'[\"{{recipient_name}}\", \"{{nda_number}}\", \"{{nda_link}}\", \"{{opportunity_name}}\", \"{{sender_name}}\", \"{{company_name}}\"]',NULL,NULL,NULL,NULL,NULL,NULL,'Sent to customer when NDA is fully executed by both parties',NULL,1,1,'2025-11-17 11:16:18','2025-11-26 13:59:16',1,NULL),
(6,'NDA Fully Executed - Company Copy','nda_fully_executed_company','nda','NDA {{nda_number}} Fully Executed - {{customer_name}}','<p>Dear {{recipient_name}},</p>\n\n<p>You have successfully counter-signed the Non-Disclosure Agreement <strong>{{nda_number}}</strong> with <strong>{{customer_name}}</strong> for <strong>{{opportunity_name}}</strong>.</p>\n\n<p>The NDA is now fully executed by both parties, and a copy has been sent to the customer.</p>\n\n<p style=\"margin: 20px 0;\">\n    <a href=\"{{nda_link}}\" class=\"button\" style=\"display: inline-block; padding: 12px 30px; background: #3498db; color: white !important; text-decoration: none; border-radius: 5px;\">\n        View Fully Executed NDA\n    </a>\n</p>\n\n<p>You can download a copy of the fully executed NDA from the link above for your records.</p>\n\n<p>Best regards,<br>\n{{company_name}} System</p>','<p>Dear {{recipient_name}},</p>\n\n<p>You have successfully counter-signed the Non-Disclosure Agreement <strong>{{nda_number}}</strong> with <strong>{{customer_name}}</strong> for <strong>{{opportunity_name}}</strong>.</p>\n\n<p>The NDA is now fully executed by both parties, and a copy has been sent to the customer.</p>\n\n<p style=\"margin: 20px 0;\">\n    <a href=\"{{nda_link}}\" class=\"button\" style=\"display: inline-block; padding: 12px 30px; background: #3498db; color: white !important; text-decoration: none; border-radius: 5px;\">\n        View Fully Executed NDA\n    </a>\n</p>\n\n<p>You can download a copy of the fully executed NDA from the link above for your records.</p>\n\n<p>Best regards,<br>\n{{company_name}} System</p>',NULL,'[\"{{recipient_name}}\", \"{{nda_number}}\", \"{{nda_link}}\", \"{{customer_name}}\", \"{{opportunity_name}}\", \"{{company_name}}\"]',NULL,NULL,NULL,NULL,NULL,NULL,'Sent to company representative who counter-signed the NDA',NULL,1,1,'2025-11-17 11:16:18','2025-11-26 13:59:16',1,NULL);
/*!40000 ALTER TABLE `email_templates` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `email_tracking`
--

DROP TABLE IF EXISTS `email_tracking`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `email_tracking` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `email_id` int(10) unsigned NOT NULL,
  `event_type` enum('sent','delivered','opened','clicked','bounced','spam') NOT NULL,
  `event_data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`event_data`)),
  `ip_address` varchar(45) DEFAULT NULL,
  `user_agent` text DEFAULT NULL,
  `occurred_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_email_event` (`email_id`,`event_type`),
  CONSTRAINT `email_tracking_ibfk_1` FOREIGN KEY (`email_id`) REFERENCES `emails` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_tracking`
--

LOCK TABLES `email_tracking` WRITE;
/*!40000 ALTER TABLE `email_tracking` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `email_tracking` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `emails`
--

DROP TABLE IF EXISTS `emails`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `emails` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `message_id` varchar(255) DEFAULT NULL,
  `thread_id` varchar(255) DEFAULT NULL,
  `in_reply_to` varchar(255) DEFAULT NULL,
  `subject` varchar(500) DEFAULT NULL,
  `from_email` varchar(255) NOT NULL,
  `from_name` varchar(255) DEFAULT NULL,
  `body_html` longtext DEFAULT NULL,
  `body_plain` longtext DEFAULT NULL,
  `is_read` tinyint(1) DEFAULT 0,
  `is_starred` tinyint(1) DEFAULT 0,
  `is_automated` tinyint(1) DEFAULT 0,
  `is_important` tinyint(1) DEFAULT 0,
  `is_draft` tinyint(1) DEFAULT 0,
  `size_bytes` int(10) unsigned DEFAULT 0,
  `sent_at` timestamp NULL DEFAULT NULL,
  `received_at` timestamp NULL DEFAULT current_timestamp(),
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `context_type` varchar(50) DEFAULT NULL COMMENT 'Type of entity (employee, customer, opportunity, application, etc.)',
  `context_id` int(11) DEFAULT NULL COMMENT 'ID of the related entity',
  `related_module` varchar(50) DEFAULT NULL COMMENT 'Module name for organizational purposes',
  PRIMARY KEY (`id`),
  UNIQUE KEY `message_id` (`message_id`),
  KEY `idx_user_read` (`user_id`,`is_read`),
  KEY `idx_user_starred` (`user_id`,`is_starred`),
  KEY `idx_thread` (`thread_id`),
  KEY `idx_sent_at` (`sent_at`),
  KEY `idx_context` (`context_type`,`context_id`),
  KEY `idx_related_module` (`related_module`),
  KEY `idx_is_automated` (`is_automated`),
  FULLTEXT KEY `idx_search` (`subject`,`body_plain`),
  CONSTRAINT `emails_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=140 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `emails`
--

LOCK TABLES `emails` WRITE;
/*!40000 ALTER TABLE `emails` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `emails` VALUES
(49,1,NULL,NULL,NULL,'Non-Disclosure Agreement NDA-2025-00002 - Signature Required','info@mavrix.one','Mavrix1','\n        <!DOCTYPE html>\n        <html>\n        <head>\n            <meta charset=\'UTF-8\'>\n            <style>\n                body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; }\n                .container { max-width: 600px; margin: 0 auto; padding: 20px; }\n                .header { background: white; padding: 20px; border-bottom: 2px solid #dee2e6; }\n                .header table { width: 100%; }\n                .header td { vertical-align: top; padding: 0; }\n                .content { background: #f9f9f9; padding: 30px; border: 1px solid #ddd; }\n                .code-box { background: #fff; border: 2px dashed #3498db; padding: 20px; \n                           text-align: center; font-size: 32px; font-weight: bold; \n                           letter-spacing: 5px; margin: 20px 0; }\n                .backup-code { font-family: monospace; font-size: 16px; padding: 5px; }\n                .button { display: inline-block; padding: 12px 30px; background: #3498db; \n                         color: white; text-decoration: none; border-radius: 5px; margin: 20px 0; }\n                .footer { text-align: center; padding: 20px; color: #777; font-size: 12px; }\n                .warning { color: #e74c3c; font-weight: bold; }\n            </style>\n        </head>\n        <body>\n            <div class=\'container\'>\n                <div class=\'header\'>\n                    <table>\n                        <tr>\n                            <td style=\'width: 50%;\'><img src=\"cid:company_logo_header\" alt=\"Mavrix1\" style=\"max-width: 300px; height: auto; display: block;\"></td>\n                            <td style=\'width: 50%; text-align: right;\'><div style=\'font-size: 10pt;\'>3900 W. Coachman Ave. , Tampa, FL 33611</div><div style=\'font-size: 10pt;\'>906-555-4567</div><div style=\'font-size: 10pt;\'>info@mavrix.one</div></td>\n                        </tr>\n                    </table>\n                </div>\n                <div class=\'content\'>\n        \n                    <h2>Hello AeroVironment,</h2>\n                    <p>We are working together on the opportunity: <strong>Battery Pack</strong>.</p>\n                    <p>Before we proceed, we require a signed Non-Disclosure Agreement (NDA).</p>\n                    <div style=\'background: #fff; padding: 20px; border: 1px solid #ddd; margin: 20px 0; border-radius: 5px;\'>\n                        <p style=\'margin: 0 0 10px 0;\'><strong>NDA Number:</strong> NDA-2025-00002</p>\n                        <p style=\'margin: 0 0 10px 0;\'><strong>Opportunity:</strong> Battery Pack</p>\n                        <p style=\'margin: 0;\'><strong>Signature Link Valid Until:</strong> March 2, 2026</p>\n                    </div>\n                    <p>Please click the button below to review and sign the NDA:</p>\n                    <div style=\'text-align: center;\'>\n                        <a href=\'http://localhost:8080/ndas/sign/1d7a74a4fd432b14c42f21b35e79395aa642fd177715a8959214976055305427\' class=\'button\'>Review &amp; Sign NDA</a>\n                    </div>\n                    <p>Or copy and paste this link into your browser:</p>\n                    <p style=\'word-break: break-all; color: #3498db;\'>http://localhost:8080/ndas/sign/1d7a74a4fd432b14c42f21b35e79395aa642fd177715a8959214976055305427</p>\n                    <p class=\'warning\'>This is a legally binding agreement. Please review it carefully before signing.</p>\n                    <p>If you have any questions, please contact us.</p>\n                    <p>Best regards,<br>Admin User</p>\n                <div style=\'margin-top: 30px; padding-top: 20px; border-top: 1px solid #ddd;\'><table style=\"width: 100%; max-width: 600px; border-collapse: collapse; font-family: Helvetica, Arial, sans-serif;\">\r\n    <tr>\r\n        <td style=\"padding: 0; border-top: 3px solid #0066cc;\">\r\n            <table style=\"width: 100%; border-collapse: collapse; padding-top: 15px;\">\r\n                <tr>\r\n                    <!-- LEFT COLUMN -->\r\n                    <td style=\"vertical-align: top; padding-left: 20px; border-left: 2px solid #e0e0e0;\">\r\n                        <div style=\"margin-bottom: 10px;\">\r\n                            <strong style=\"font-size: 14px; color: #0066cc;\">Admin User</strong><br>\r\n                            <span style=\"font-size: 12px; color: #666;\">Administrator</span>\r\n                        </div>\r\n\r\n                        <div style=\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n                            <div><a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></div>\r\n                            <div>Mobile: 906-123-4567</div>\r\n                            <div>Office: 906-555-4567</div>\r\n                            <div><a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></div>\r\n                        </div>\r\n                    </td>\r\n\r\n                    <!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n                    <td style=\"width: 200px; vertical-align: middle; text-align: center; padding-top: 10px;\">\r\n                        <img src=\"cid:company_logo_signature\" alt=\"Mavrix1\" style=\"max-width: 150px; height: auto; display: block; margin: 0 auto;\">\r\n\r\n                        <div style=\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1.3;\">\r\n                            3900 W. Coachman Ave.<br>\r\n                            Tampa, FL 33611\r\n                        </div>\r\n                    </td>\r\n                </tr>\r\n            </table>\r\n        </td>\r\n    </tr>\r\n\r\n    <tr>\r\n        <td style=\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n            <div style=\"font-size: 9px; color: #888; line-height: 1.4;\">\r\n                <strong>CONFIDENTIALITY NOTICE:</strong><br>\r\n                <em>This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.</em><br><br>\r\n                <em>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</em><br><br>\r\n                <em>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</em><br><br>\r\n                <em>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em>\r\n            </div>\r\n        </td>\r\n    </tr>\r\n</table></div>\n                </div>\n                <div class=\'footer\'>\n                    <p>This is an automated message from Mavrix1. Please do not reply to this email.</p>\n                    <p>If you did not request this, please contact support immediately.</p>\n                </div>\n            </div>\n        </body>\n        </html>\n        ','\n        \n        \n        \n            \n            \n                body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; }\n                .container { max-width: 600px; margin: 0 auto; padding: 20px; }\n                .header { background: white; padding: 20px; border-bottom: 2px solid #dee2e6; }\n                .header table { width: 100%; }\n                .header td { vertical-align: top; padding: 0; }\n                .content { background: #f9f9f9; padding: 30px; border: 1px solid #ddd; }\n                .code-box { background: #fff; border: 2px dashed #3498db; padding: 20px; \n                           text-align: center; font-size: 32px; font-weight: bold; \n                           letter-spacing: 5px; margin: 20px 0; }\n                .backup-code { font-family: monospace; font-size: 16px; padding: 5px; }\n                .button { display: inline-block; padding: 12px 30px; background: #3498db; \n                         color: white; text-decoration: none; border-radius: 5px; margin: 20px 0; }\n                .footer { text-align: center; padding: 20px; color: #777; font-size: 12px; }\n                .warning { color: #e74c3c; font-weight: bold; }\n            \n        \n        \n            \n                \n                    \n                        \n                            \n                            3900 W. Coachman Ave. , Tampa, FL 33611906-555-4567info@mavrix.one\n                        \n                    \n                \n                \n        \n                    Hello AeroVironment,\n                    We are working together on the opportunity: Battery Pack.\n                    Before we proceed, we require a signed Non-Disclosure Agreement (NDA).\n                    \n                        NDA Number: NDA-2025-00002\n                        Opportunity: Battery Pack\n                        Signature Link Valid Until: March 2, 2026\n                    \n                    Please click the button below to review and sign the NDA:\n                    \n                        Review &amp; Sign NDA\n                    \n                    Or copy and paste this link into your browser:\n                    http://localhost:8080/ndas/sign/1d7a74a4fd432b14c42f21b35e79395aa642fd177715a8959214976055305427\n                    This is a legally binding agreement. Please review it carefully before signing.\n                    If you have any questions, please contact us.\n                    Best regards,Admin User\n                \r\n    \r\n        \r\n            \r\n                \r\n                    \r\n                    \r\n                        \r\n                            Admin User\r\n                            Administrator\r\n                        \r\n\r\n                        \r\n                            admin@mavrix.one\r\n                            Mobile: 906-123-4567\r\n                            Office: 906-555-4567\r\n                            https://mavrix1.com\r\n                        \r\n                    \r\n\r\n                    \r\n                    \r\n                        \r\n\r\n                        \r\n                            3900 W. Coachman Ave.\r\n                            Tampa, FL 33611\r\n                        \r\n                    \r\n                \r\n            \r\n        \r\n    \r\n\r\n    \r\n        \r\n            \r\n                CONFIDENTIALITY NOTICE:\r\n                This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.\r\n                This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n                If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n                Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n            \r\n        \r\n    \r\n\n                \n                \n                    This is an automated message from Mavrix1. Please do not reply to this email.\n                    If you did not request this, please contact support immediately.\n                \n            \n        \n        \n        ',1,0,1,0,0,0,'2025-12-02 21:54:07','2025-12-02 21:54:07','2025-12-02 21:54:07','2025-12-02 21:54:07','nda',16,NULL),
(50,1,'<ixAz0NpeUpBFDz1TDpGrsudbLI9hmt4bm5eU94a9Do@scb-lp-273.ad.rit.edu>',NULL,NULL,'Your verification code for Mavrix1','info@mavrix.one','Mavrix1','--b1=_ixAz0NpeUpBFDz1TDpGrsudbLI9hmt4bm5eU94a9Do\r\nContent-Type: text/plain; charset=us-ascii\r\n\r\n\r\n        \r\n        \r\n        \r\n            \r\n            \r\n                body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; }\r\n                .container { max-width: 600px; margin: 0 auto; padding: 20px; }\r\n                .header { background: #2c3e50; color: white; padding: 20px; text-align: center; }\r\n                .content { background: #f9f9f9; padding: 30px; border: 1px solid #ddd; }\r\n                .code-box { background: #fff; border: 2px dashed #3498db; padding: 20px; \r\n                           text-align: center; font-size: 32px; font-weight: bold; \r\n                           letter-spacing: 5px; margin: 20px 0; }\r\n                .backup-code { font-family: monospace; font-size: 16px; padding: 5px; }\r\n                .button { display: inline-block; padding: 12px 30px; background: #3498db; \r\n                         color: white; text-decoration: none; border-radius: 5px; margin: 20px 0; }\r\n                .footer { text-align: center; padding: 20px; color: #777; font-size: 12px; }\r\n                .warning { color: #e74c3c; font-weight: bold; }\r\n            \r\n        \r\n        \r\n            \r\n                \r\n                    Mavrix1\r\n                \r\n                \r\n        \r\n                    Hello Test User,\r\n                    Your verification code is:\r\n                    123456\r\n                    This code will expire in 5 minutes.\r\n                    Do not share this code with anyone.\r\n                \r\n                \r\n                \r\n                    This is an automated message from Mavrix1. Please do not reply to this email.\r\n                    If you did not request this, please contact support immediately.\r\n                \r\n            \r\n        \r\n        \r\n        \r\n\r\n--b1=_ixAz0NpeUpBFDz1TDpGrsudbLI9hmt4bm5eU94a9Do\r\nContent-Type: text/html; charset=us-ascii\r\n\r\n\r\n        <!DOCTYPE html>\r\n        <html>\r\n        <head>\r\n            <meta charset=\'UTF-8\'>\r\n            <style>\r\n                body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; }\r\n                .container { max-width: 600px; margin: 0 auto; padding: 20px; }\r\n                .header { background: #2c3e50; color: white; padding: 20px; text-align: center; }\r\n                .content { background: #f9f9f9; padding: 30px; border: 1px solid #ddd; }\r\n                .code-box { background: #fff; border: 2px dashed #3498db; padding: 20px; \r\n                           text-align: center; font-size: 32px; font-weight: bold; \r\n                           letter-spacing: 5px; margin: 20px 0; }\r\n                .backup-code { font-family: monospace; font-size: 16px; padding: 5px; }\r\n                .button { display: inline-block; padding: 12px 30px; background: #3498db; \r\n                         color: white; text-decoration: none; border-radius: 5px; margin: 20px 0; }\r\n                .footer { text-align: center; padding: 20px; color: #777; font-size: 12px; }\r\n                .warning { color: #e74c3c; font-weight: bold; }\r\n            </style>\r\n        </head>\r\n        <body>\r\n            <div class=\'container\'>\r\n                <div class=\'header\'>\r\n                    <h1>Mavrix1</h1>\r\n                </div>\r\n                <div class=\'content\'>\r\n        \r\n                    <h2>Hello Test User,</h2>\r\n                    <p>Your verification code is:</p>\r\n                    <div class=\'code-box\'>123456</div>\r\n                    <p>This code will expire in <strong>5 minutes</strong>.</p>\r\n                    <p class=\'warning\'>Do not share this code with anyone.</p>\r\n                \r\n                </div>\r\n                <div class=\'footer\'>\r\n                    <p>This is an automated message from Mavrix1. Please do not reply to this email.</p>\r\n                    <p>If you did not request this, please contact support immediately.</p>\r\n                </div>\r\n            </div>\r\n        </body>\r\n        </html>\r\n        \r\n\r\n\r\n--b1=_ixAz0NpeUpBFDz1TDpGrsudbLI9hmt4bm5eU94a9Do--\r\n\r\n','--b1=_ixAz0NpeUpBFDz1TDpGrsudbLI9hmt4bm5eU94a9Do\r\nContent-Type: text/plain; charset=us-ascii\r\n\r\n\r\n        \r\n        \r\n        \r\n            \r\n            \r\n                body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; }\r\n                .container { max-width: 600px; margin: 0 auto; padding: 20px; }\r\n                .header { background: #2c3e50; color: white; padding: 20px; text-align: center; }\r\n                .content { background: #f9f9f9; padding: 30px; border: 1px solid #ddd; }\r\n                .code-box { background: #fff; border: 2px dashed #3498db; padding: 20px; \r\n                           text-align: center; font-size: 32px; font-weight: bold; \r\n                           letter-spacing: 5px; margin: 20px 0; }\r\n                .backup-code { font-family: monospace; font-size: 16px; padding: 5px; }\r\n                .button { display: inline-block; padding: 12px 30px; background: #3498db; \r\n                         color: white; text-decoration: none; border-radius: 5px; margin: 20px 0; }\r\n                .footer { text-align: center; padding: 20px; color: #777; font-size: 12px; }\r\n                .warning { color: #e74c3c; font-weight: bold; }\r\n            \r\n        \r\n        \r\n            \r\n                \r\n                    Mavrix1\r\n                \r\n                \r\n        \r\n                    Hello Test User,\r\n                    Your verification code is:\r\n                    123456\r\n                    This code will expire in 5 minutes.\r\n                    Do not share this code with anyone.\r\n                \r\n                \r\n                \r\n                    This is an automated message from Mavrix1. Please do not reply to this email.\r\n                    If you did not request this, please contact support immediately.\r\n                \r\n            \r\n        \r\n        \r\n        \r\n\r\n--b1=_ixAz0NpeUpBFDz1TDpGrsudbLI9hmt4bm5eU94a9Do\r\nContent-Type: text/html; charset=us-ascii\r\n\r\n\r\n        <!DOCTYPE html>\r\n        <html>\r\n        <head>\r\n            <meta charset=\'UTF-8\'>\r\n            <style>\r\n                body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; }\r\n                .container { max-width: 600px; margin: 0 auto; padding: 20px; }\r\n                .header { background: #2c3e50; color: white; padding: 20px; text-align: center; }\r\n                .content { background: #f9f9f9; padding: 30px; border: 1px solid #ddd; }\r\n                .code-box { background: #fff; border: 2px dashed #3498db; padding: 20px; \r\n                           text-align: center; font-size: 32px; font-weight: bold; \r\n                           letter-spacing: 5px; margin: 20px 0; }\r\n                .backup-code { font-family: monospace; font-size: 16px; padding: 5px; }\r\n                .button { display: inline-block; padding: 12px 30px; background: #3498db; \r\n                         color: white; text-decoration: none; border-radius: 5px; margin: 20px 0; }\r\n                .footer { text-align: center; padding: 20px; color: #777; font-size: 12px; }\r\n                .warning { color: #e74c3c; font-weight: bold; }\r\n            </style>\r\n        </head>\r\n        <body>\r\n            <div class=\'container\'>\r\n                <div class=\'header\'>\r\n                    <h1>Mavrix1</h1>\r\n                </div>\r\n                <div class=\'content\'>\r\n        \r\n                    <h2>Hello Test User,</h2>\r\n                    <p>Your verification code is:</p>\r\n                    <div class=\'code-box\'>123456</div>\r\n                    <p>This code will expire in <strong>5 minutes</strong>.</p>\r\n                    <p class=\'warning\'>Do not share this code with anyone.</p>\r\n                \r\n                </div>\r\n                <div class=\'footer\'>\r\n                    <p>This is an automated message from Mavrix1. Please do not reply to this email.</p>\r\n                    <p>If you did not request this, please contact support immediately.</p>\r\n                </div>\r\n            </div>\r\n        </body>\r\n        </html>\r\n        \r\n\r\n\r\n--b1=_ixAz0NpeUpBFDz1TDpGrsudbLI9hmt4bm5eU94a9Do--\r\n\r\n',1,0,0,0,0,0,'2025-11-15 18:10:58','2025-12-04 11:06:00','2025-12-04 11:06:00','2025-12-04 11:12:00',NULL,NULL,NULL),
(51,1,'<ZgE4RABHIkF0VDTihF7Sg8GDQllCUKo6pe7zWIIy2So@localhost>',NULL,NULL,'Test the reply please','contact@mavrix.one','Mavrix1','--b1=_ZgE4RABHIkF0VDTihF7Sg8GDQllCUKo6pe7zWIIy2So\r\nContent-Type: text/plain; charset=us-ascii\r\n\r\nHey test this!Admin User  Administrator       admin@mavrix.one  906-555-4567 CONFIDENTIALITY NOTICE: This email and any attachments are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify Mavrix1 immediately and delete this email from your system. Any unauthorized review, use, disclosure, or distribution is prohibited.\r\n\r\n--b1=_ZgE4RABHIkF0VDTihF7Sg8GDQllCUKo6pe7zWIIy2So\r\nContent-Type: text/html; charset=us-ascii\r\n\r\n<p>Hey test this!</p><p><br></p><p><span style=\"color: rgb(0, 0, 0);\">Admin User</span> </p><p> <span style=\"color: rgb(0, 0, 0);\">Administrator</span> </p><p> </p><p><br></p><p> <img src=\"http://localhost:8080/uploads/company/logo_1762869843.png\" alt=\"Mavrix1\"> </p><p>  </p><p> <a href=\"mailto:admin@mavrix.one\" target=\"_blank\" style=\"color: rgb(0, 102, 204);\">admin@mavrix.one</a> </p><p> 906-555-4567 </p><p><strong><em>CONFIDENTIALITY NOTICE:</em></strong><em> This email and any attachments are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify Mavrix1 immediately and delete this email from your system. Any unauthorized review, use, disclosure, or distribution is prohibited.</em></p>\r\n\r\n\r\n--b1=_ZgE4RABHIkF0VDTihF7Sg8GDQllCUKo6pe7zWIIy2So--\r\n\r\n','--b1=_ZgE4RABHIkF0VDTihF7Sg8GDQllCUKo6pe7zWIIy2So\r\nContent-Type: text/plain; charset=us-ascii\r\n\r\nHey test this!Admin User  Administrator       admin@mavrix.one  906-555-4567 CONFIDENTIALITY NOTICE: This email and any attachments are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify Mavrix1 immediately and delete this email from your system. Any unauthorized review, use, disclosure, or distribution is prohibited.\r\n\r\n--b1=_ZgE4RABHIkF0VDTihF7Sg8GDQllCUKo6pe7zWIIy2So\r\nContent-Type: text/html; charset=us-ascii\r\n\r\n<p>Hey test this!</p><p><br></p><p><span style=\"color: rgb(0, 0, 0);\">Admin User</span> </p><p> <span style=\"color: rgb(0, 0, 0);\">Administrator</span> </p><p> </p><p><br></p><p> <img src=\"http://localhost:8080/uploads/company/logo_1762869843.png\" alt=\"Mavrix1\"> </p><p>  </p><p> <a href=\"mailto:admin@mavrix.one\" target=\"_blank\" style=\"color: rgb(0, 102, 204);\">admin@mavrix.one</a> </p><p> 906-555-4567 </p><p><strong><em>CONFIDENTIALITY NOTICE:</em></strong><em> This email and any attachments are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify Mavrix1 immediately and delete this email from your system. Any unauthorized review, use, disclosure, or distribution is prohibited.</em></p>\r\n\r\n\r\n--b1=_ZgE4RABHIkF0VDTihF7Sg8GDQllCUKo6pe7zWIIy2So--\r\n\r\n',1,0,0,0,0,0,'2025-11-26 19:42:16','2025-12-04 11:06:01','2025-12-04 11:06:01','2025-12-04 11:11:53',NULL,NULL,NULL),
(52,1,'<etPan.6927bee5.1a44d833.12662@mavrix.one>',NULL,NULL,'Fwd: Testing again','rick@mavrix.one','Rick','--6927bee5_5bfc50b7_12662\r\nContent-Type: text/plain; charset=\"utf-8\"\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\n\r\nSee this=3F Much cleaner.=C2=A0\r\n Maybe your ai can do better...\r\n =20\r\n        =20\r\n    =20\r\n    =20\r\n\r\n    =20\r\nRick Mislan, PhD,=C2=A0=46ounder, CTO\r\n\r\nhttps://mavrix1.com\r\n\r\n\r\nCON=46IDENTIALITY NOTICE\r\nThis communication, including any attachments, may contain confidential, =\r\nprivileged, or Controlled Unclassified Information (CUI) protected under =\r\nfederal law. It is intended solely for the use of the designated recipien=\r\nt(s). Any unauthorized review, use, disclosure, distribution, or copying =\r\nis strictly prohibited and may be unlawful.\r\n\r\nIf you are not the intended recipient, please notify the sender immediate=\r\nly, delete this email, and destroy all copies.\r\n\r\nUnless expressly stated, the views and opinions expressed herein are thos=\r\ne of the sender and do not necessarily reflect those of the sender=E2=80=99=\r\ns employer or any U.S. Government agency. All recipients are responsible =\r\nfor handling information in accordance with applicable federal regulation=\r\ns, including but not limited to =46AR, D=46ARS, ITAR, and CUI handling re=\r\nquirements.\r\n\r\n\r\n\r\n\r\n =20\r\nOn November 26, 2025 at 9:59:36=E2=80=AFPM, Mavrix1 (contact=40mavrix.one=\r\n) wrote:\r\n =20\r\nHey Rick, here we go=21\r\n\r\n\r\nAdmin User\r\nAdministrator\r\nadmin=40mavrix.one\r\n906-123-4567\r\nhttps://mavrix1.com\r\n906-555-4567\r\n\r\nCON=46IDENTIALITY NOTICE: This email and any attachments are confidential=\r\n and intended solely for the use of the individual or entity to whom they=\r\n are addressed. If you have received this email in error, please notify M=\r\navrix1 immediately and delete this email from your system. Any unauthoriz=\r\ned review, use, disclosure, or distribution is prohibited.\r\n--6927bee5_5bfc50b7_12662\r\nContent-Type: multipart/related; boundary=\"6927bee5_7e223a68_12662\"\r\n\r\n--6927bee5_7e223a68_12662\r\nContent-Type: text/html; charset=\"utf-8\"\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\n\r\n\r\n    <style>body=7Bfont-family:Helvetica,Arial;font-size:13px=7D</style><d=\r\niv style=3D=22font-family:Helvetica,Arial;font-size:13px; =22>See this=3F=\r\n Much cleaner.&nbsp;</div> Maybe your ai can do better...<br> <div class=3D=\r\n=22gmail=5Fsignature=22>\r\n        <title></title>\r\n    =20\r\n    <br>\r\n    =20\r\n<div><span style=3D=22font-family: Helvetica, Arial;=22>Rick Mislan, PhD,=\r\n&nbsp;</span><div style=3D=22font-family: Helvetica, Arial;=22>=46ounder,=\r\n CTO</div><div style=3D=22font-family: Helvetica, Arial;=22><div><div><im=\r\ng class=3D=22composer=5Finternal=5Fattach=22 src=3D=22cid:79DD4A7A-37AE-4=\r\n702-8E68-DC07BDA56011=22 style=3D=22max-width: 99%;=22><br></div><div><a =\r\nhref=3D=22https://mavrix1.com/=22>https://mavrix1.com</a></div></div><div=\r\n><br></div><div><div>CON=46IDENTIALITY NOTICE</div><div>This communicatio=\r\nn, including any attachments, may contain confidential, privileged, or Co=\r\nntrolled Unclassified Information (CUI) protected under federal law. It i=\r\ns intended solely for the use of the designated recipient(s). Any unautho=\r\nrized review, use, disclosure, distribution, or copying is strictly prohi=\r\nbited and may be unlawful.</div><div><br></div><div>If you are not the in=\r\ntended recipient, please notify the sender immediately, delete this email=\r\n, and destroy all copies.</div><div><br></div><div>Unless expressly state=\r\nd, the views and opinions expressed herein are those of the sender and do=\r\n not necessarily reflect those of the sender=E2=80=99s employer or any U.=\r\nS. Government agency. All recipients are responsible for handling informa=\r\ntion in accordance with applicable federal regulations, including but not=\r\n limited to =46AR, D=46ARS, ITAR, and CUI handling requirements.</div></d=\r\niv></div></div></div> <br><p class=3D=22airmail=5Fon=22>On November 26, 2=\r\n025 at 9:59:36=E2=80=AFPM, Mavrix1 (<a href=3D=22mailto:contact=40mavrix.=\r\none=22>contact=40mavrix.one</a>) wrote:</p> <blockquote type=3D=22cite=22=\r\n class=3D=22clean=5Fbq=22><span><div><div></div><div><p><br></p><p>Hey Ri=\r\nck, here we go=21</p><p><br></p><p><br></p><p><strong style=3D=22color: r=\r\ngb(0, 102, 204);=22>Admin User</strong></p><p>Administrator</p><p><a href=\r\n=3D=22mailto:admin=40mavrix.one=22 target=3D=22=5Fblank=22 style=3D=22col=\r\nor: rgb(0, 102, 204);=22>admin=40mavrix.one</a></p><p>906-123-4567</p><p>=\r\n<img src=3D=22http://localhost:8080/uploads/company/logo=5F1762869843.png=\r\n=22 alt=3D=22Mavrix1=22></p><p>https://mavrix1.com</p><p>906-555-4567</p>=\r\n<p><br></p><p><strong><em>CON=46IDENTIALITY NOTICE:</em></strong><em> Thi=\r\ns email and any attachments are confidential and intended solely for the =\r\nuse of the individual or entity to whom they are addressed. If you have r=\r\neceived this email in error, please notify Mavrix1 immediately and delete=\r\n this email from your system. Any unauthorized review, use, disclosure, o=\r\nr distribution is prohibited.</em></p>\r\n\r\n</div></div></span></blockquote>\r\n\r\n\r\n\r\n--6927bee5_7e223a68_12662\r\nContent-Type: application/octet-stream\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <79DD4A7A-37AE-4702-8E68-DC07BDA56011>\r\nContent-Disposition: inline; filename=\"52AACA64-B468-4285-B5C4-838F6707FFCC\"\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAGwAAAAYCAYAAAAf1RgaAAAAAXNSR0IArs4c6QAAAIRlWElmTU0A\r\nKgAAAAgABQESAAMAAAABAAEAAAEaAAUAAAABAAAASgEbAAUAAAABAAAAUgEoAAMAAAABAAIAAIdp\r\nAAQAAAABAAAAWgAAAAAAAABIAAAAAQAAAEgAAAABAAOgAQADAAAAAQABAACgAgAEAAAAAQAAAGyg\r\nAwAEAAAAAQAAABgAAAAABrPxEgAAAAlwSFlzAAALEwAACxMBAJqcGAAAAVlpVFh0WE1MOmNvbS5h\r\nZG9iZS54bXAAAAAAADx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9\r\nIlhNUCBDb3JlIDYuMC4wIj4KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9y\r\nZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6\r\nYWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZm\r\nLzEuMC8iPgogICAgICAgICA8dGlmZjpPcmllbnRhdGlvbj4xPC90aWZmOk9yaWVudGF0aW9uPgog\r\nICAgICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KGV7hBwAA\r\nC6FJREFUaAXtWnuMVUcZnznPe/fuZYEtDxHCQ1ADBNuuAlKh24dRaqURWFotj5haKAn9SxOaauRi\r\nxEBsMMFSAmnUCDTKWtDioyEm3RLKq6VKC7Rg20VA5Lmwz3vPa8bfN+ecu+fevbugjQQrX5g735n5\r\nvm++13wz5yyc3YKb0gP19a8YTU33+NNmbx0puHjJtGsm+U7beoMxyRsaGrUJE45JxlbclMp/1JXK\r\nsZWM5XLwP6PG6+tzOgVr8tzN0wWTjRq3hojAw6TU+EfdGf9T9uVyGsutQNC4nDpn8zz0m7lmWEwE\r\njm6mbd/r3MCnzNk6DlEbyRFCqfNbAbyBEeaBlJzrkula1mOFQ683fvMcLT917tblGF8dbTgmhe8a\r\nZsbyvY4NhsbEdwy7ZrHntDHOtBuo7q2lGLyvGSnmOe2/fH3S3//EGhGsOZuf03RrKRMC/3wBL30f\r\nW24uxm6XHhcaQuxjgrwXMNpgt9p/3wfYGsrPMmC+07H8wPYFiyYfHj1gypwtr+JysZROMiG80wjO\r\nPftfnL9KpTaxoFQakk4y3WKB13Wc+97DbuB5hm5qXAvoAPzQ4GmG1HxRlCUMjZvC/7dLL7SCnkKK\r\nAPxmN388fr2Klq8fCI2yGGAzYXjXpRvZxBzGknqEcmxUt3xJmeqWH64S/5rwg+dI9+DOhc00pjF3\r\nMJPp51y3bRWXwuaafHNv46J/1H11Z5XGWsPqCDqDosbDo6uwd8fCI7HAW/2N9cD+HY+/gxWpdQMu\r\nIa0HmoNaa2BxDNd6gMp/zsfcv7rm9Gs/+bRuZ1OMBwJnmsA+LO6OIpeUGjZmcZdwbMfinEI4piUK\r\ntPDM9ND32s7sa8G1FTegnMgMnjJEeBfHMcXTLaOUP34iOULXNf1yx+UT76IoyMygzw0N3Avjuaa7\r\nKCtiyqQFB5uaVgT0atKoXk1i3tK+volpTU05Pz1s4gjZ1fEJyBJcZ4UH711zSPFBt+zHJ9f6+Qvj\r\nmNR1kg3HFG0MpflSCs3UrcHHNcNHUWoZj+KlG1rmQkfLsaO3fWpWtv2fb35B0+02KQMzlep/8uq5\r\nv56sq1tsjhlzv4j1m9B41Dh6tNEdO3amffLMnsk8KLiala2pqhn97pWzh07hWm/U168QuRx0mLmu\r\nxBA+dc7Wn1rp/su8QuuBD97a+o1LzX98Q9MzA6T0wjpbQh49oI6WQG+XS6Lj/DwK8lrfdZ8Bj4AV\r\nizG6sYT/Wg9wE0j2aFI+4bruacO2D0HuJ5EUJP9HfqHwXczraGWJUxQczmUyQ0zf3weu0eCjg+Ip\r\n6LWGqEzbfhKlJgeZA9VckbUUURGUcikUOo3K9Hs1K+VO33FmAa+CfRshf36k20UpxJLAdXdgjlip\r\nXFLvs0xmqOH7vwJ+N60npfwAu2em4zgnQjplnBw7c51dWzVwv50acLtbuPpsuMNAEcqhHidhN7wB\r\nSXTVJDroES3G+Z0YHxaRBcD3AO9AI8cQHTUTbQrmhjBNW6Nb1gko/lsodgrjr6Ll0Uh5ar0B3YZG\r\noY2HUTME5z8HPpULMU9q2m7g/SD/aT2VeicoFLbgmfRUNyj0MZB8sonDQVsRlNE0AT2ehz4qWEYq\r\nNQMKr8MgTXWhfw09MlY5WA3SBECAvz90OY5g91MjYbJG5yDLe4XCAiTUYcz9GG0Qgrod8lcgqX6A\r\nZ+VbPN/NfH8L5AxXMhDwwHEWYvIqnimoJK+iX8jAcqAySC4/gkXuBdZeTgDnN3BN2xYZ+Aqy64vl\r\nNPRsWNbTCNYqwqH4WOpB+zI6atcHlIlBcBRrUeaPRGYO8To7D0OHRZBJmYtCKTeZpvm253nkqPKg\r\nkQMC3bbXgf8+ogfshYOWhKjKrlGQQUpiGfkzzD0Zz/XW6+n01xG08mlKUg82PoOgvQV8M2QORr8S\r\nz5/xbftx03EewRrPYpwWozVXgf57kaC+qoQiqRSwkJfzLiC4CykgoynTiN7DWm1qNPyhnUUQ0xBO\r\niruga0mkZ2hdNnub5Ti0O2NrEyTEWgSwcy8IAjJYkjMBSCacawDarUiIp5AQq2F4WmjabzD8WTRc\r\nqYpZqoKnyrCUyyIHnfN1fQ5oaH0Ljc5CfPcJ1cCaxE9Ac7TLyoGcWr6LY5rYJgNB2GXb9jTsmm2Q\r\nfyfabMN178IqQ4DDItmBKrEkyOdfiJhVYsWCeut7D1hoNAlJgrIKP7hdFoEMIAgtLsUpcDEoOtPz\r\nZsO5GyPnxXN995EzYWgyKXQ6fxCMiShT86HPWGTxC3DUVyCMHKey3Uinp+Ec2RAtQCXpYdbZGZd5\r\nVaIwljBHJSWRJ+2h5+sF4qOAGjiP3kdfB722o/8a2iA0gvNwxnQnn/8bcNKT6ONgA+0dygNSThkr\r\nTX2ME00Sj3limuRcEo/p/Cib8V0TWYbDFuXoJFpzecMcjZ0GY28ZzXBmPIZ5OmupvDyA8wGfdBR4\r\ndLCjbP0aT8pO7J4nUOZ341ntvJCsx29SZ8IrtR5MZQOUAEoOJQzwiWo+TDjMyGpE58GIJz4ro8e+\r\nu752WN+c//lsmM1QHsgf4MBHkOYZiIuzPZZMdC520AhE6yBwys6kMykjade6MGKez/l+OILK53Jc\r\nQo7QJQRn34sI4nCMkZPWIrjPAyOeXhOASD8kxFUggB6LkDCboINFCQWDqPxNR0UYAUPW4lydgPPy\r\nWxgj2/tKoqJKlXZY7JS4LxL3glSii8fiPskabn0YgB1Ug4ksy2bTaJkeDYEUQlQVmcFQxENEGVoo\r\nFJrxOA9NzcMxa1CGfocFKLspWLtQKr+t8MqlJyk3iUcs1+xiHvIn2Sex03+I6vAL4BSsADotRcI8\r\nirEv4fkYxhFH/hjodtNFCo+URJXiQaRFSOwwekfFu3J42JKRyfOnyBAhREcrEl1CRjTbfSZQNpcA\r\nruT7kWGd4M2A98tQuJl5nguiUGaSOpWiFzADdIPUWpSpPenIUAM7Fd/h7GWQvR70w0BP70VA5fuB\r\nZT3KHHV/ih1KU91AL/nhpYYYeujcTZjAiKcbYh+QHdVIli3oH4pkXgQ+D8FqQm/iPZK+ZtxF5y3m\r\nZwKfjkrwNkunH/Lz+X14rqwjJgiSi+KLPkqrZl1G1RBcs66OGlUfOTFHkeGsvl4xGUYN6q5Bvixw\r\nzY5ujPRVIGp1ixUd0zMFrnY6PtLpVV00qBS2+kFR689MM7GWkUbrj4bd1qPReAZ0eD8xujgzW6qr\r\nh0bZHOkUrhmwhgbdc5znOE+tZ9x08NZ1Ge2cptfOY+3tl1hdHRKQdmhCz/rQPt2ogqNhC3TV9LTS\r\nk01o6LanEg+vwhpWB3gkfKBefQYMqKsxUtmXODdnQYdW9Ac1c+AMJFMTw9cOrO3DhxTcq9jxDyhd\r\nmQleoxo+32FWDbsDc4JsYbmVyvfD81nVk+8Iwi8dqf7L8Bb9F6+2Y8qhTer1hLKMyk2lay3xEdhh\r\np+h6OxNoMdoVBCQLQS4BmovLSclE2QPJoUa0lMXXglg30qv8bKzEey09r8VDa9Ba5Dc4X31EoApV\r\nQCOIdQ+fSn9TeCRe0pl8VGIf/VeBQu3Zg1aq/x2JLx3kB3yzu5jq9/mGbV3ZVA123nm9s9UjYT3A\r\ntLOyfUBaOb82bxmdrWewS3pCki57JW/i7z6kOCvYvpZyDFEYOvh6nFkUPAxYy7kLcTCK4+VILJd0\r\na710UTdMp8+kSOoZ2ZOsPOXi1XMFnjSNscwgJ2t12GdBBZur29kVnWwtF+J7tvKFP6LGh13WpSu1\r\nIpt6z4TPlX00n65uFV3+KRsfZZEIoQlqh+lGalkQ5Nuw88/hICvmAw7FHobSymQNzga1ICnSGx0O\r\n2CIN0eF8UYWfZJTP0fz1QFIG6RF7IsbL5ZbrFusfr1VJl3iNmKZSn7Sf5mOeSuM0X54BldZNyiFc\r\n0aiDUHwMZTsb+AX6lihxSGIXO6yfZtjh9zGivgU3jQeE7zCKUeDnq3EDYy+7nRfpL4wdgZcv2RE3\r\njcb/74rgq6NAsBCrXf8CAf/+y47p6ecAAAAASUVORK5CYII=\r\n\r\n--6927bee5_7e223a68_12662--\r\n\r\n--6927bee5_5bfc50b7_12662--\r\n\r\n','--6927bee5_5bfc50b7_12662\r\nContent-Type: text/plain; charset=\"utf-8\"\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\n\r\nSee this=3F Much cleaner.=C2=A0\r\n Maybe your ai can do better...\r\n =20\r\n        =20\r\n    =20\r\n    =20\r\n\r\n    =20\r\nRick Mislan, PhD,=C2=A0=46ounder, CTO\r\n\r\nhttps://mavrix1.com\r\n\r\n\r\nCON=46IDENTIALITY NOTICE\r\nThis communication, including any attachments, may contain confidential, =\r\nprivileged, or Controlled Unclassified Information (CUI) protected under =\r\nfederal law. It is intended solely for the use of the designated recipien=\r\nt(s). Any unauthorized review, use, disclosure, distribution, or copying =\r\nis strictly prohibited and may be unlawful.\r\n\r\nIf you are not the intended recipient, please notify the sender immediate=\r\nly, delete this email, and destroy all copies.\r\n\r\nUnless expressly stated, the views and opinions expressed herein are thos=\r\ne of the sender and do not necessarily reflect those of the sender=E2=80=99=\r\ns employer or any U.S. Government agency. All recipients are responsible =\r\nfor handling information in accordance with applicable federal regulation=\r\ns, including but not limited to =46AR, D=46ARS, ITAR, and CUI handling re=\r\nquirements.\r\n\r\n\r\n\r\n\r\n =20\r\nOn November 26, 2025 at 9:59:36=E2=80=AFPM, Mavrix1 (contact=40mavrix.one=\r\n) wrote:\r\n =20\r\nHey Rick, here we go=21\r\n\r\n\r\nAdmin User\r\nAdministrator\r\nadmin=40mavrix.one\r\n906-123-4567\r\nhttps://mavrix1.com\r\n906-555-4567\r\n\r\nCON=46IDENTIALITY NOTICE: This email and any attachments are confidential=\r\n and intended solely for the use of the individual or entity to whom they=\r\n are addressed. If you have received this email in error, please notify M=\r\navrix1 immediately and delete this email from your system. Any unauthoriz=\r\ned review, use, disclosure, or distribution is prohibited.\r\n--6927bee5_5bfc50b7_12662\r\nContent-Type: multipart/related; boundary=\"6927bee5_7e223a68_12662\"\r\n\r\n--6927bee5_7e223a68_12662\r\nContent-Type: text/html; charset=\"utf-8\"\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\n\r\n\r\n    <style>body=7Bfont-family:Helvetica,Arial;font-size:13px=7D</style><d=\r\niv style=3D=22font-family:Helvetica,Arial;font-size:13px; =22>See this=3F=\r\n Much cleaner.&nbsp;</div> Maybe your ai can do better...<br> <div class=3D=\r\n=22gmail=5Fsignature=22>\r\n        <title></title>\r\n    =20\r\n    <br>\r\n    =20\r\n<div><span style=3D=22font-family: Helvetica, Arial;=22>Rick Mislan, PhD,=\r\n&nbsp;</span><div style=3D=22font-family: Helvetica, Arial;=22>=46ounder,=\r\n CTO</div><div style=3D=22font-family: Helvetica, Arial;=22><div><div><im=\r\ng class=3D=22composer=5Finternal=5Fattach=22 src=3D=22cid:79DD4A7A-37AE-4=\r\n702-8E68-DC07BDA56011=22 style=3D=22max-width: 99%;=22><br></div><div><a =\r\nhref=3D=22https://mavrix1.com/=22>https://mavrix1.com</a></div></div><div=\r\n><br></div><div><div>CON=46IDENTIALITY NOTICE</div><div>This communicatio=\r\nn, including any attachments, may contain confidential, privileged, or Co=\r\nntrolled Unclassified Information (CUI) protected under federal law. It i=\r\ns intended solely for the use of the designated recipient(s). Any unautho=\r\nrized review, use, disclosure, distribution, or copying is strictly prohi=\r\nbited and may be unlawful.</div><div><br></div><div>If you are not the in=\r\ntended recipient, please notify the sender immediately, delete this email=\r\n, and destroy all copies.</div><div><br></div><div>Unless expressly state=\r\nd, the views and opinions expressed herein are those of the sender and do=\r\n not necessarily reflect those of the sender=E2=80=99s employer or any U.=\r\nS. Government agency. All recipients are responsible for handling informa=\r\ntion in accordance with applicable federal regulations, including but not=\r\n limited to =46AR, D=46ARS, ITAR, and CUI handling requirements.</div></d=\r\niv></div></div></div> <br><p class=3D=22airmail=5Fon=22>On November 26, 2=\r\n025 at 9:59:36=E2=80=AFPM, Mavrix1 (<a href=3D=22mailto:contact=40mavrix.=\r\none=22>contact=40mavrix.one</a>) wrote:</p> <blockquote type=3D=22cite=22=\r\n class=3D=22clean=5Fbq=22><span><div><div></div><div><p><br></p><p>Hey Ri=\r\nck, here we go=21</p><p><br></p><p><br></p><p><strong style=3D=22color: r=\r\ngb(0, 102, 204);=22>Admin User</strong></p><p>Administrator</p><p><a href=\r\n=3D=22mailto:admin=40mavrix.one=22 target=3D=22=5Fblank=22 style=3D=22col=\r\nor: rgb(0, 102, 204);=22>admin=40mavrix.one</a></p><p>906-123-4567</p><p>=\r\n<img src=3D=22http://localhost:8080/uploads/company/logo=5F1762869843.png=\r\n=22 alt=3D=22Mavrix1=22></p><p>https://mavrix1.com</p><p>906-555-4567</p>=\r\n<p><br></p><p><strong><em>CON=46IDENTIALITY NOTICE:</em></strong><em> Thi=\r\ns email and any attachments are confidential and intended solely for the =\r\nuse of the individual or entity to whom they are addressed. If you have r=\r\neceived this email in error, please notify Mavrix1 immediately and delete=\r\n this email from your system. Any unauthorized review, use, disclosure, o=\r\nr distribution is prohibited.</em></p>\r\n\r\n</div></div></span></blockquote>\r\n\r\n\r\n\r\n--6927bee5_7e223a68_12662\r\nContent-Type: application/octet-stream\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <79DD4A7A-37AE-4702-8E68-DC07BDA56011>\r\nContent-Disposition: inline; filename=\"52AACA64-B468-4285-B5C4-838F6707FFCC\"\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAGwAAAAYCAYAAAAf1RgaAAAAAXNSR0IArs4c6QAAAIRlWElmTU0A\r\nKgAAAAgABQESAAMAAAABAAEAAAEaAAUAAAABAAAASgEbAAUAAAABAAAAUgEoAAMAAAABAAIAAIdp\r\nAAQAAAABAAAAWgAAAAAAAABIAAAAAQAAAEgAAAABAAOgAQADAAAAAQABAACgAgAEAAAAAQAAAGyg\r\nAwAEAAAAAQAAABgAAAAABrPxEgAAAAlwSFlzAAALEwAACxMBAJqcGAAAAVlpVFh0WE1MOmNvbS5h\r\nZG9iZS54bXAAAAAAADx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9\r\nIlhNUCBDb3JlIDYuMC4wIj4KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9y\r\nZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6\r\nYWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZm\r\nLzEuMC8iPgogICAgICAgICA8dGlmZjpPcmllbnRhdGlvbj4xPC90aWZmOk9yaWVudGF0aW9uPgog\r\nICAgICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KGV7hBwAA\r\nC6FJREFUaAXtWnuMVUcZnznPe/fuZYEtDxHCQ1ADBNuuAlKh24dRaqURWFotj5haKAn9SxOaauRi\r\nxEBsMMFSAmnUCDTKWtDioyEm3RLKq6VKC7Rg20VA5Lmwz3vPa8bfN+ecu+fevbugjQQrX5g735n5\r\nvm++13wz5yyc3YKb0gP19a8YTU33+NNmbx0puHjJtGsm+U7beoMxyRsaGrUJE45JxlbclMp/1JXK\r\nsZWM5XLwP6PG6+tzOgVr8tzN0wWTjRq3hojAw6TU+EfdGf9T9uVyGsutQNC4nDpn8zz0m7lmWEwE\r\njm6mbd/r3MCnzNk6DlEbyRFCqfNbAbyBEeaBlJzrkula1mOFQ683fvMcLT917tblGF8dbTgmhe8a\r\nZsbyvY4NhsbEdwy7ZrHntDHOtBuo7q2lGLyvGSnmOe2/fH3S3//EGhGsOZuf03RrKRMC/3wBL30f\r\nW24uxm6XHhcaQuxjgrwXMNpgt9p/3wfYGsrPMmC+07H8wPYFiyYfHj1gypwtr+JysZROMiG80wjO\r\nPftfnL9KpTaxoFQakk4y3WKB13Wc+97DbuB5hm5qXAvoAPzQ4GmG1HxRlCUMjZvC/7dLL7SCnkKK\r\nAPxmN388fr2Klq8fCI2yGGAzYXjXpRvZxBzGknqEcmxUt3xJmeqWH64S/5rwg+dI9+DOhc00pjF3\r\nMJPp51y3bRWXwuaafHNv46J/1H11Z5XGWsPqCDqDosbDo6uwd8fCI7HAW/2N9cD+HY+/gxWpdQMu\r\nIa0HmoNaa2BxDNd6gMp/zsfcv7rm9Gs/+bRuZ1OMBwJnmsA+LO6OIpeUGjZmcZdwbMfinEI4piUK\r\ntPDM9ND32s7sa8G1FTegnMgMnjJEeBfHMcXTLaOUP34iOULXNf1yx+UT76IoyMygzw0N3Avjuaa7\r\nKCtiyqQFB5uaVgT0atKoXk1i3tK+volpTU05Pz1s4gjZ1fEJyBJcZ4UH711zSPFBt+zHJ9f6+Qvj\r\nmNR1kg3HFG0MpflSCs3UrcHHNcNHUWoZj+KlG1rmQkfLsaO3fWpWtv2fb35B0+02KQMzlep/8uq5\r\nv56sq1tsjhlzv4j1m9B41Dh6tNEdO3amffLMnsk8KLiala2pqhn97pWzh07hWm/U168QuRx0mLmu\r\nxBA+dc7Wn1rp/su8QuuBD97a+o1LzX98Q9MzA6T0wjpbQh49oI6WQG+XS6Lj/DwK8lrfdZ8Bj4AV\r\nizG6sYT/Wg9wE0j2aFI+4bruacO2D0HuJ5EUJP9HfqHwXczraGWJUxQczmUyQ0zf3weu0eCjg+Ip\r\n6LWGqEzbfhKlJgeZA9VckbUUURGUcikUOo3K9Hs1K+VO33FmAa+CfRshf36k20UpxJLAdXdgjlip\r\nXFLvs0xmqOH7vwJ+N60npfwAu2em4zgnQjplnBw7c51dWzVwv50acLtbuPpsuMNAEcqhHidhN7wB\r\nSXTVJDroES3G+Z0YHxaRBcD3AO9AI8cQHTUTbQrmhjBNW6Nb1gko/lsodgrjr6Ll0Uh5ar0B3YZG\r\noY2HUTME5z8HPpULMU9q2m7g/SD/aT2VeicoFLbgmfRUNyj0MZB8sonDQVsRlNE0AT2ehz4qWEYq\r\nNQMKr8MgTXWhfw09MlY5WA3SBECAvz90OY5g91MjYbJG5yDLe4XCAiTUYcz9GG0Qgrod8lcgqX6A\r\nZ+VbPN/NfH8L5AxXMhDwwHEWYvIqnimoJK+iX8jAcqAySC4/gkXuBdZeTgDnN3BN2xYZ+Aqy64vl\r\nNPRsWNbTCNYqwqH4WOpB+zI6atcHlIlBcBRrUeaPRGYO8To7D0OHRZBJmYtCKTeZpvm253nkqPKg\r\nkQMC3bbXgf8+ogfshYOWhKjKrlGQQUpiGfkzzD0Zz/XW6+n01xG08mlKUg82PoOgvQV8M2QORr8S\r\nz5/xbftx03EewRrPYpwWozVXgf57kaC+qoQiqRSwkJfzLiC4CykgoynTiN7DWm1qNPyhnUUQ0xBO\r\niruga0mkZ2hdNnub5Ti0O2NrEyTEWgSwcy8IAjJYkjMBSCacawDarUiIp5AQq2F4WmjabzD8WTRc\r\nqYpZqoKnyrCUyyIHnfN1fQ5oaH0Ljc5CfPcJ1cCaxE9Ac7TLyoGcWr6LY5rYJgNB2GXb9jTsmm2Q\r\nfyfabMN178IqQ4DDItmBKrEkyOdfiJhVYsWCeut7D1hoNAlJgrIKP7hdFoEMIAgtLsUpcDEoOtPz\r\nZsO5GyPnxXN995EzYWgyKXQ6fxCMiShT86HPWGTxC3DUVyCMHKey3Uinp+Ec2RAtQCXpYdbZGZd5\r\nVaIwljBHJSWRJ+2h5+sF4qOAGjiP3kdfB722o/8a2iA0gvNwxnQnn/8bcNKT6ONgA+0dygNSThkr\r\nTX2ME00Sj3limuRcEo/p/Cib8V0TWYbDFuXoJFpzecMcjZ0GY28ZzXBmPIZ5OmupvDyA8wGfdBR4\r\ndLCjbP0aT8pO7J4nUOZ341ntvJCsx29SZ8IrtR5MZQOUAEoOJQzwiWo+TDjMyGpE58GIJz4ro8e+\r\nu752WN+c//lsmM1QHsgf4MBHkOYZiIuzPZZMdC520AhE6yBwys6kMykjade6MGKez/l+OILK53Jc\r\nQo7QJQRn34sI4nCMkZPWIrjPAyOeXhOASD8kxFUggB6LkDCboINFCQWDqPxNR0UYAUPW4lydgPPy\r\nWxgj2/tKoqJKlXZY7JS4LxL3glSii8fiPskabn0YgB1Ug4ksy2bTaJkeDYEUQlQVmcFQxENEGVoo\r\nFJrxOA9NzcMxa1CGfocFKLspWLtQKr+t8MqlJyk3iUcs1+xiHvIn2Sex03+I6vAL4BSsADotRcI8\r\nirEv4fkYxhFH/hjodtNFCo+URJXiQaRFSOwwekfFu3J42JKRyfOnyBAhREcrEl1CRjTbfSZQNpcA\r\nruT7kWGd4M2A98tQuJl5nguiUGaSOpWiFzADdIPUWpSpPenIUAM7Fd/h7GWQvR70w0BP70VA5fuB\r\nZT3KHHV/ih1KU91AL/nhpYYYeujcTZjAiKcbYh+QHdVIli3oH4pkXgQ+D8FqQm/iPZK+ZtxF5y3m\r\nZwKfjkrwNkunH/Lz+X14rqwjJgiSi+KLPkqrZl1G1RBcs66OGlUfOTFHkeGsvl4xGUYN6q5Bvixw\r\nzY5ujPRVIGp1ixUd0zMFrnY6PtLpVV00qBS2+kFR689MM7GWkUbrj4bd1qPReAZ0eD8xujgzW6qr\r\nh0bZHOkUrhmwhgbdc5znOE+tZ9x08NZ1Ge2cptfOY+3tl1hdHRKQdmhCz/rQPt2ogqNhC3TV9LTS\r\nk01o6LanEg+vwhpWB3gkfKBefQYMqKsxUtmXODdnQYdW9Ac1c+AMJFMTw9cOrO3DhxTcq9jxDyhd\r\nmQleoxo+32FWDbsDc4JsYbmVyvfD81nVk+8Iwi8dqf7L8Bb9F6+2Y8qhTer1hLKMyk2lay3xEdhh\r\np+h6OxNoMdoVBCQLQS4BmovLSclE2QPJoUa0lMXXglg30qv8bKzEey09r8VDa9Ba5Dc4X31EoApV\r\nQCOIdQ+fSn9TeCRe0pl8VGIf/VeBQu3Zg1aq/x2JLx3kB3yzu5jq9/mGbV3ZVA123nm9s9UjYT3A\r\ntLOyfUBaOb82bxmdrWewS3pCki57JW/i7z6kOCvYvpZyDFEYOvh6nFkUPAxYy7kLcTCK4+VILJd0\r\na710UTdMp8+kSOoZ2ZOsPOXi1XMFnjSNscwgJ2t12GdBBZur29kVnWwtF+J7tvKFP6LGh13WpSu1\r\nIpt6z4TPlX00n65uFV3+KRsfZZEIoQlqh+lGalkQ5Nuw88/hICvmAw7FHobSymQNzga1ICnSGx0O\r\n2CIN0eF8UYWfZJTP0fz1QFIG6RF7IsbL5ZbrFusfr1VJl3iNmKZSn7Sf5mOeSuM0X54BldZNyiFc\r\n0aiDUHwMZTsb+AX6lihxSGIXO6yfZtjh9zGivgU3jQeE7zCKUeDnq3EDYy+7nRfpL4wdgZcv2RE3\r\njcb/74rgq6NAsBCrXf8CAf/+y47p6ecAAAAASUVORK5CYII=\r\n\r\n--6927bee5_7e223a68_12662--\r\n\r\n--6927bee5_5bfc50b7_12662--\r\n\r\n',1,0,0,0,0,0,'2025-11-27 03:00:34','2025-12-04 11:06:01','2025-12-04 11:06:01','2025-12-04 11:06:06',NULL,NULL,NULL),
(53,1,'<1764847994.1@erp>',NULL,NULL,'Test','admin@mavrix.one','Admin User','<p>Hey Admin!</p>\r\n<p></p>\r\n<table style=\"width: 100%; max-width: 600px; border-collapse: collapse; font-family: Helvetica, Arial, sans-serif;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 0; border-top: 3px solid #0066cc;\">\r\n<table style=\"width: 100%; border-collapse: collapse; padding-top: 15px;\">\r\n<tbody>\r\n<tr><!-- LEFT COLUMN -->\r\n<td style=\"vertical-align: top; padding-left: 20px; border-left: 2px solid #e0e0e0;\">\r\n<div style=\"margin-bottom: 10px;\"><strong style=\"font-size: 14px; color: #0066cc;\">Admin User</strong><br><span style=\"font-size: 12px; color: #666;\">Administrator</span></div>\r\n<div style=\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n<div><a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></div>\r\n<div>Mobile: 906-123-4567</div>\r\n<div>Office: 906-555-4567</div>\r\n<div><a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></div>\r\n</div>\r\n</td>\r\n<!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n<td style=\"width: 200px; vertical-align: middle; text-align: center; padding-top: 10px;\"><img src=\"cid:company_logo\" alt=\"Mavrix1\" style=\"max-width: 150px; height: auto; display: block; margin: 0 auto;\">\r\n<div style=\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1.3;\">3900 W. Coachman Ave.<br>Tampa, FL 33611</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n<div style=\"font-size: 9px; color: #888; line-height: 1.4;\"><strong>CONFIDENTIALITY NOTICE:</strong><br><em>This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.</em><br><br><em>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</em><br><br><em>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</em><br><br><em>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Hey Admin!\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nAdmin UserAdministrator\r\n\r\nadmin@mavrix.one\r\nMobile: 906-123-4567\r\nOffice: 906-555-4567\r\nhttps://mavrix1.com\r\n\r\n\r\n\r\n\r\n3900 W. Coachman Ave.Tampa, FL 33611\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE:This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n\r\n\r\n\r\n',1,0,0,0,0,0,'2025-12-04 11:33:14','2025-12-04 11:33:14','2025-12-04 11:33:14','2025-12-04 11:33:14',NULL,NULL,NULL),
(54,1,'<A8XnifFXRzA0dUmkccjmOCoLbTFRFN7hRpd9cKY@localhost>','thread_9168230d82e90b7de1795d2a28acdeca',NULL,'Test','contact@mavrix.one','Mavrix1','--b2=_A8XnifFXRzA0dUmkccjmOCoLbTFRFN7hRpd9cKY\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Transfer-Encoding: quoted-printable\r\n\r\n<p>Hey Admin!</p>\r\n<p></p>\r\n<table style=3D\"width: 100%; max-width: 600px; border-collapse: collapse; f=\r\nont-family: Helvetica, Arial, sans-serif;\">\r\n<tbody>\r\n<tr>\r\n<td style=3D\"padding: 0; border-top: 3px solid #0066cc;\">\r\n<table style=3D\"width: 100%; border-collapse: collapse; padding-top: 15px;\"=\r\n>\r\n<tbody>\r\n<tr><!-- LEFT COLUMN -->\r\n<td style=3D\"vertical-align: top; padding-left: 20px; border-left: 2px soli=\r\nd #e0e0e0;\">\r\n<div style=3D\"margin-bottom: 10px;\"><strong style=3D\"font-size: 14px; color=\r\n: #0066cc;\">Admin User</strong><br><span style=3D\"font-size: 12px; color: #=\r\n666;\">Administrator</span></div>\r\n<div style=3D\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n<div><a href=3D\"mailto:admin@mavrix.one\" style=3D\"color: #0066cc; text-deco=\r\nration: none;\">admin@mavrix.one</a></div>\r\n<div>Mobile: 906-123-4567</div>\r\n<div>Office: 906-555-4567</div>\r\n<div><a href=3D\"https://mavrix1.com\" style=3D\"color: #0066cc; text-decorati=\r\non: none;\">https://mavrix1.com</a></div>\r\n</div>\r\n</td>\r\n<!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n<td style=3D\"width: 200px; vertical-align: middle; text-align: center; padd=\r\ning-top: 10px;\"><img src=3D\"cid:company_logo\" alt=3D\"Mavrix1\" style=3D\"max-=\r\nwidth: 150px; height: auto; display: block; margin: 0 auto;\">\r\n<div style=3D\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1=\r\n.3;\">3900 W. Coachman Ave.<br>Tampa, FL 33611</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=3D\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n<div style=3D\"font-size: 9px; color: #888; line-height: 1.4;\"><strong>CONFI=\r\nDENTIALITY NOTICE:</strong><br><em>This communication may contain confident=\r\nial information. Unauthorized review, use, disclosure, or distribution is p=\r\nrohibited.</em><br><br><em>This communication, including any attachments, m=\r\nay contain confidential, privileged, or Controlled Unclassified Information=\r\n (CUI) protected under federal law. It is intended solely for the use of th=\r\ne designated recipient(s). Any unauthorized review, use, disclosure, distri=\r\nbution, or copying is strictly prohibited and may be unlawful.</em><br><br>=\r\n<em>If you are not the intended recipient, please notify the sender immedia=\r\ntely, delete this email, and destroy all copies.</em><br><br><em>Unless exp=\r\nressly stated, the views and opinions expressed herein are those of the sen=\r\nder and do not necessarily reflect those of the sender=E2=80=99s employer o=\r\nr any U.S. Government agency. All recipients are responsible for handling i=\r\nnformation in accordance with applicable federal regulations, including but=\r\n not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n--b2=_A8XnifFXRzA0dUmkccjmOCoLbTFRFN7hRpd9cKY\r\nContent-Type: image/png; name=logo_1762869843.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <company_logo>\r\nContent-Disposition: inline; filename=logo_1762869843.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAuwAAACiCAYAAAAa7ZjJAAAACXBIWXMAAAsSAAALEgHS3X78AAAV\r\nP0lEQVR4nO3dT1LcStbG4Te/8BzvgOoVgGfNiLoroG40Mw8oVgBegfEKKFZAEdHMHOFiBS5GHrpY\r\nQcMK2qwgv4FO0TLmX5XySCnp90R0dIejndK9NtKrzJMnQ4xRAAAAAHzt7F+OJU0kbazy+/7P5W4A\r\nAAAAPNjZvzyRdK4Vw7okvUt+NwAAAAAkSTv7l+9VzKofrDsGgR0AAABwYGF9LmmryjiUxAAAAACJ\r\n7exfbktaqGJYlwjsAAAAQFI7+5cjFTPrmynGI7ADAAAAiezsXx5L+qY1Npc+hxp2AAAAIIGd/cup\r\nKmwufQ6BHQAAAKjANpfOJO16jE9JDAAAALAm21w6l1NYl5hhBwAAANays385VDGznqxe/SnMsAMA\r\nAAAr2tm/HEv6LuewLhHYAQAAgJXs7F9OJJ3XdT1KYgAAAIA3sM2lU0l7dV6XwA4AAAC8Ymf/cqCi\r\nXr3yyaWrIrADAAAALyh1gnGvV38KNewAAADAM2xz6U81FNYlAjsAAADwpJ39yxPVuLn0OZTEAAAA\r\nACW2uXQi6aDpe5EI7AAAAMADC+tzNbC59DmUxAAAAAB62Fx6q4zCukRgBwAAALSzfzlSg51gXkJg\r\nBwAAQK/t7F8eS/qmDMO6RA07AAAAemxn/3KqTDaXPofADgAAgN7JcXPpc8I///XvgaRxw/cBAAAA\r\nPOnH148nKcezzaVTtSCsS8UM+0DS54bvAwAAAHjsXtIo5YA7+5dDSTPVU69+Z/+9WWUQNp0CAAAg\r\nRzeShj++fpynGnBn/3Is6bvqCetXkpZtIiuhhh0AAAC5uZY0+vH1469UA9a8ufTTj68fJ3bdyoMR\r\n2AEAAJCTsx9fPx6nGsw2l84k7aYa8wV3Kj40FikHpSQGAAAAuThMHNYHKjrB1BHWryRtpw7rEjPs\r\nAAAAaN69inr1ZGHXOsHMVU+9+kMJjAdm2AEAANCkGyWembbNpT/lH9bvJH3wDOsSgR0AAADNuVIx\r\ns36basCd/cuJpPNU473ArQTmMUpiAAAA0ASPzaUT+XeCuZd04j2rXkZgBwAAQJ3uJR3/+PpxmmpA\r\nC+tz+Z9ceiNpXMesehmBHQAAAHVp8+bSCxUfGsl6w78VgR0AAAB1WJ5cmvIwpLGKMhjPsJ58RWBV\r\nbDoFAACAtwulD+vHKjaXeob15UfG1PEar2KGHQAAAJ6+/Pj68STlgDv7l1P5by5trATmMQI7AAAA\r\nPNyr2KA5SzVgTZtLU5fAVA78KQL7vaRad8oCAAAge8cOm0tnkjZTjfkEjy4wC0l7VQZIEdgXP75+\r\nHCYYBwAAAHjJ2Hn8RQ4lMI9REgMAAIDs1d37PCd0iQEAAAAyRmAHAAAAMkZgBwAAADJGYAcAAAAy\r\nRmAHAAAAMkZgBwAAADJGYAcAAAAyRmAHAAAAMkZgBwAAADJGYAcAAAAyRmAHAAAAMkZgBwAAADJG\r\nYAcAAAAyRmAHAAAAMkZgBwAAADJGYAcAAAAy9q6Oi4QQhpKGdVwLrbWQ9CvGOG/6RiQphHDS9D10\r\n1K39ZxFj/OVxgRDCSNK2x9iSJl73jW7+2YUQtiW9V3/fgdMY4+1r/6cQwljSINVFY4wnVX5/CGEg\r\naZzgVp4zizEuHMfPiv0cjBwv8aa/Z21WS2BX8aD6XNO10GIhBEm6kTRf/qehgMTfV2chhDsVH2oz\r\nFX/Ot4mGnkuaSNpMNF6ZZ6DsNXuhTyVtOAx/WNdzpBRMhpJ267hm5uYqPtJfM1baf18nFX//QL7v\r\ngeMQwnGMcep4jSzYx9i582Xmetvfs9aiJAY52pJ0JOmbpP+GEKa2SoNu2ZS0p+JB/p8QwiKEMA4h\r\nvK8yqAWzkaT7BPf42FYIYeowbq/Zn/lcPmH9wjsUhRAGIYRJCOFW0k8VQY+w3m638nmGLG1IOg8h\r\nTByv0agQwnt7XnqH9Tt1PKxLBHa0w4Gk7yGEW1syRzdtqXiw34YQTqoEd1tqHqe6sUcOQgjHTmP3\r\n1Vw+Yf06xjh2GFfSQ1CfSvqPikkGj1UdNMBW/AaSrp0vdWSTFZUmKnJjJUVzFe9vT1eStrteDiMR\r\n2NEum5K+hRDmtuyMbtpQMUNZ6QMtxjiT9CnZXf3ulFWfNCzwbjkMfSenmlmbOZyoCOregQQNiTH+\r\nijEOJZ05X2pLxfNu6HydWthzeyGfn+uyLzHGUV/2FRHY0Ua7kn4yy9l5Gyo+0Gbrzj7FGCeSLtLe\r\n1oMZH47V2M+wR+C9l+TyIrc/84WKGXX0QIzxWNKh/Etkvrf9vWYNG77JZ8Vs6V7S31U3FrcNgR1t\r\ndko9cS/sSZrbEus6jlVsZE5tQ9K0a0vZdbHZxFOn4cceHThs89xPUfrSO7YPYiifZ0nZaZVJiqbY\r\nqtNc/g0bblSUwMycr5MdAjva7oDQ3gtbkhbrzGjbLOtQTptQVXQ2wQrsz9HrhfvJ42VeU6cLZMw+\r\nAocq6qY9LScpWrGCV1p18t5ofSFp2Id69acQ2NEFhPZ+WHtG2zm079G3/+3sz28qv44wybtuWE0u\r\nYR3LuvaRpC/Ol9pSEdrHzteppMZVp8MY47gv9epPIbCjKw7oINMLa89o2+yYV33o59xfrBmZymcz\r\n2o1HRxgrxZqmHhftZvXTf6mnrR9rbNl4L+lDH/rVv4bAji6ZtK3uD2vZW7ebgj30vWbGJm1Zwm6K\r\nBY89h6Hv5HeS6Il8N9Chpexk7m3517Vn1fqxxpaN15IGfToR9iUEdnTJpnyPkkY+Ttb9jTYz5tE5\r\nZkNF55gsXqq5sRUIj84qnh1hBqJtI15g9dRD+XWjWsqi9aNdv46WjWcxxmGfS2AeI7Cja8ZN3wBq\r\nsVuha4zk1zlmU8XME0ps5cFrWf/YcQau1S32UA+rax+raP3oqdHWj7ZX57vqadnIz94j75q+gYqu\r\nVHzptcVQvruob+TXecHDttIvj2+FEAYJdpF7byjqk4GKA2xSP+RHWjMExhh/lQ73SH1fWyGEqecJ\r\nm21iKw5z+bzkvzjXtg4dxrxR8e+jLzOHt03fQF1ijNMQwkJ+f9+Xlge31bIJs7RR3KOcrexGTi1Z\r\nu6Ctgb21f6g20zRX2h/m5ZLwPOGYtbBZ0pnSLq8NVPEl0bcDGbzZA3+itOUFgyq/Oca4XF7+meRu\r\nfncQQpizUUqSX3i5qOHnNPWy/yF/J7otxrgovdc8J+iWrR9ds1CpBat3F5gr1fQB0lZtLYk5aWNY\r\nlx46VYwTDztpY1iXHur/6O7ScfYQPlbajgqVN3jaz6PXMvZ50/WmTbMuEi4dYdS+cpULwno/WInM\r\nUNKZ86VcWz/auHP5h/VPMUaXfShd0srA3oETrlL/pZwnHq9WfT0EoW/sYZzdh7aFKK8X66xirX1r\r\nWZ2tx4bNexWHp7Tt5X7b9A2gXlaHfagWtn4stWz0rlf/y+PshC5qZWAHgJTsxepxemEvO8fYysKp\r\nw9BtDevoKZsQGKqe1o/zqs+aEMLA6vC9uyPdqGjZOHe+TmcQ2AGgMJbPS3VLfh1SslOqefXg2REG\r\ncGF/Z4fymRQo21XR+nGtcsEaWzZexBi3+fBeDYEdAPRQsjOSz/L1gbVE67RSNwmPZfQzasDRVlbX\r\nPpJ/B7INST9Xbf1YY8vGQzporYfADgDGeRP0Z2sl2WVT+czOXdGXGV1gnY3+km9du1S0fpy+ViIT\r\nQngfQphJ+ux8P3cqytmmztfpLAI7AJRYTaVX55jpusvVubNNbx59mm/EgWjoEHvGbMu/rv1ARReZ\r\nJ5859usL+fdXv5K0TTlbNQR2AHjEZoE8jhrv5CZUa/925DD08owJal3RKbaaN5TPc6Zs2frxt9W9\r\nGls2fqFlYxoEdgB4gtVZXjsMval2nUj8IpulO3cafkjbV3SV1bWPJX1yvtSGpG/L1o81tmz8m0MI\r\n0yGwA8DzRvJZtt5N3Te5CbZSMHca/pAldPSB9SH/IP+69qMQwi/V07JxuwNn5mSFwA4Az7Bl3LF8\r\nXqRHXicU1qEU1ukIA1RkH6cD+de1e86qS0WJDytjDgjsAPACe5F6dXc5b/Em1InoCAMkYyUy2/I7\r\nednbYYxxTL26DwI7ALzCujp41ZlWPp2wbtbj2WNZnY4w6D37YD2Uf4lMKveSPrAq5utd0zcA5KgP\r\nh9w0ZND0Dawrxjix2fDUQXVDRWgftmFmyrpNnDoMfS+J2TlARaeqEMJCxQZ1704uVVyLTk61ILAD\r\nT/M+RAItFGMcW2hPXQqypaLEZJx43KTsn33qNPyITabA/8QYF6WfOe9e6es4o3ytPpTEAMBqhipO\r\n7UvtYNXjxOtkZTtT+WxaO7SyIwAlVtc+kvSl6XspWbZszPZ51UUEdgBYgS39juRTX3r6+ICTjMzk\r\ns8n0gtpX4GXWz/xvNV/XfqOiCwwtG2tGYAeAFVnpxthp+GlunWOsZ/yuw9DXdnAMgFdYSN6Wf+vH\r\n51ypCOuUrjWAwA4Aa7CXp0fnmA0VoT2LzjHWK/7IYegb+bXLBDrJ+psPVfQ7r9OnGCObSxtEYAeA\r\nNdkJhR4vzi35be58M5vpP3cYmo4wwJqsrn2s+mbaz+xZhwYR2AGgAscX556VojSidJKphzHL6sB6\r\nQgjvQwhz+ewpecpRk88iFAjsAFDdUD6bwY6sJKVWpbDu0RHmExvWgPXYqtdcPntKXnIUQmjdIW9d\r\nQmAHgIqstGMon9A+aWAT6kR+HWGYqQPWYB2k5qpvZv2xXUmL3DbF9wWBHQASsBIPj77Ey5NQa5nZ\r\nsl7wqU9zlaQbOsIA67HTt7/JZ9VrFZsqnkdsGK8ZgR0AErF+4h4HnGzIr578gb2ETx2GvlOxAgFg\r\nBVavPlVep29vSPpmHxGoCYEdABKyA05cOsfYi9tF6Qj01O4l0Q4OWFEIYaDiQ91jxSuFzyGEGXXt\r\n9XjX9A0APXCtGmZHW2KsYkm1645VHHCSutb0IISwSF0Hbi/cqXyW2+kIA6yotLm06RKY1+zJSmSs\r\nRzycENgBf3Obde29EMJQPQjsMcZf9s96q/Qv3FML7fOEY87ks5HtCx1hgNVYZyiP8w+8bKnYjDpK\r\n/FxCCSUxAOCg1DnGw8yWyyuz/soeLeIu+FAFVmNlb20K60sbkr7bpnU4ILADgBMrBTl0GHpDRWiv\r\nVDtqM3lHSe7odzfy6ZgDdJJtLl3Iv179znn8U8+9Nn1GYAcAR9Y55sxh6C1V2CRqNbIeM3n3koZs\r\nMgXexn4WF/Lvr/4pxjiQTyersoMQwoLNqGkR2AHAWYzxWNKVw9B767RWK51kmhphHViBrXLN5bu3\r\n517SX8vN6laq9rd8Dnpb2pJ0yyFL6RDYAaAeYxWlIql9tpf+m5TCukf3iWM6wgBvYx/b5/LtBHOj\r\n4iN6Xv5F2ww+lG+JzIakn6s8n/A8AjsA1MBmnUfymdWarDCTNZFfR5ipw7hAp1i9+kz+hyFdqQjr\r\nT35E269vq2g97OmcuvbqCOwAUBPrUzx0GPpNm1Ctg4PHprYrOsIAryv1V99zvtRZjPHVA8tijL9i\r\njEP5HPZWdhBCmFPXvj4COwDUyLFzzKZeqEsPIYwknTpc90ZFuQ+AF9jZDHP5bi69l3Ro+2beLMY4\r\nls9zqWxXRb926trXQGAHgJpZ6YjHjNbWU0vP9oL849cTuJf06iwe0He2uvVdvvXqy03f03V+s/2+\r\nD/LdjLqp4mTUseM1OonADgANsBktj9rRg/LL0Jagp/IJCkOOIwdeZh/RHqtbZTeSBlU3fZfq2j02\r\nyC9tqKhrP3G8RucQ2AGgOSP5vBjPS8vOM/kswR/SEQZ4Xo2HIV3EGLdTrXSV9tp417V/DiFUPgCu\r\nLwjsgL9R0zeAPNkLdiyfJei5daLYdRj7jI4wwPPsg/lW9RyGNE49qG1GHcv/kKU9Fc8q6tpfQWAH\r\nnpayVGHL6heBP9gstcdH3YZ8OlFcrbqhDegTK0n7Kf969YfDkLzUeMjS3Dbl4hnvmr4BIFOpN9Gd\r\nWmifJh63bQZN30COYozzEMKhikNUckZHGOAFIYSJpCPny9xIGtdVkhZjnFmYnsnvRNYNSd9DCJ+8\r\nP0LaisAOPG2m9LOTm/I/KAMtFWOc2kvRu951XfcqQgIdYYBHrA7bqwSt7EoN/BzGGJftGL3/GU/t\r\nOsc8a35HSQzwtJl8lwCBP1jNqGd3hipGbDIF/lQ6DMk7rL/pMCQvdR6ypKJEhs2oJQR24An2QGRZ\r\nDk0YSrpr+iYeOYwxzpu+CSA3diDZXBkehuSlpkOWtiTdshn1fwjswPMmyi84oePsY3GkfFZ4LugI\r\nA/zJ+oh/U8aHIXmp6ZClDUk/OWSpQGAHnlEKTkCtrPRk3PR9SLr2aBkHtJn1V5/Kf09SksOQvNR0\r\nyJJUnCsxdb5G9gjswAvsgeS99Af8IcY4k/SpwVu4ER+swG9CCAMVJTCtOgzJS42HLB2EEBZ9rmsn\r\nsAOvsKW/Q+VTooCesPZm3i/Cp9ARBnjE6qkXaulhSF5qPGRpS9Kir3XtBHbgDSy0D5VvBw90VEOd\r\nY2rr8Qy0QZcOQ/JS0yFLmyo6yIwdr5ElAjvwRhZghpLOGr4V9M9Q9a3wfLJyHACSrH7a+1CzGxWb\r\nS+fO13Flz46hfBs2bKioa2/lh826COzACmzp71jSP9RMqQJ6yEpThvIP7Rdtnd0DUrPNpQv516tf\r\nqQjrnVjVKm1GvXa+1FEIYdaXunYCO7CGGOOtlSr8Q8WMO+0f4cpegp59mG/aVDcLeLLNpXXUqzd6\r\nGJKXGg9Z2lNRIjNwvk7jCOxABRbcj2OMAxU9ab/If1YBPWV7KTw2dt2pmMEHUBioqJf2ktVhSF5q\r\nPGRp4HyNxr2r6Tq3IsSU/VLafx9d+DJv/b8PmwF9WNK0newDFUuDsv89qPu+OqwTy8erijGe2BJw\r\nyk4Jx12b4Usk5XPpNuFYXZTbz3Pq9/Rjx10pgXlNjHFqpUWe5Xa5P78q/1mHf/7r30NJ3yuMcf3j\r\n68dh1RsBAAAAumZn/3KoalmbkhgAAAAgZwR2AAAAIGMEdgAAACBjBHYAAAAgYwR2AAAAIGMEdgAA\r\nACBjBHYAAAAgYwR2AAAAIGMEdgAAACBjBHYAAAAgYwR2AAAAIGMEdgAAACBjBHYAAAAgYwR2AAAA\r\nIGPvEoyxu7N/GROMAwAAAOARZtgBAACAjBHYAQAAgIwR2AEAAICMEdgBAACAjBHYAQAAgIwR2AEA\r\nAICMEdgBAACAjBHYAQAAgIwR2AEAAICMEdgBAACAjBHYAQAAgIwR2AEAAICMEdgBAACAjBHYAQAA\r\ngIwR2AEAAICMvZN0K+lLw/cBAAAA4An/D+pVjENe+oQjAAAAAElFTkSuQmCC\r\n\r\n--b2=_A8XnifFXRzA0dUmkccjmOCoLbTFRFN7hRpd9cKY--','Hey Admin!\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nAdmin UserAdministrator\r\n\r\nadmin@mavrix.one\r\nMobile: 906-123-4567\r\nOffice: 906-555-4567\r\nhttps://mavrix1.com\r\n\r\n\r\n\r\n\r\n3900 W. Coachman Ave.Tampa, FL 33611\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE:This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.',1,0,0,0,0,0,'2025-12-04 11:33:13','2025-12-04 11:33:20','2025-12-04 11:33:20','2025-12-04 12:01:24',NULL,NULL,NULL),
(55,1,'<1764849685.1@erp>','thread_9168230d82e90b7de1795d2a28acdeca',NULL,'Test2','admin@mavrix.one','Admin User','<p></p>\r\n<p>Test</p>\r\n<table style=\"width: 100%; max-width: 600px; border-collapse: collapse; font-family: Helvetica, Arial, sans-serif;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 0; border-top: 3px solid #0066cc;\">\r\n<table style=\"width: 100%; border-collapse: collapse; padding-top: 15px;\">\r\n<tbody>\r\n<tr><!-- LEFT COLUMN -->\r\n<td style=\"vertical-align: top; padding-left: 20px; border-left: 2px solid #e0e0e0;\">\r\n<div style=\"margin-bottom: 10px;\"><strong style=\"font-size: 14px; color: #0066cc;\">Admin User</strong><br><span style=\"font-size: 12px; color: #666;\">Administrator</span></div>\r\n<div style=\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n<div><a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></div>\r\n<div>Mobile: 906-123-4567</div>\r\n<div>Office: 906-555-4567</div>\r\n<div><a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></div>\r\n</div>\r\n</td>\r\n<!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n<td style=\"width: 200px; vertical-align: middle; text-align: center; padding-top: 10px;\"><img src=\"cid:company_logo\" alt=\"Mavrix1\" style=\"max-width: 150px; height: auto; display: block; margin: 0 auto;\">\r\n<div style=\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1.3;\">3900 W. Coachman Ave.<br>Tampa, FL 33611</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n<div style=\"font-size: 9px; color: #888; line-height: 1.4;\"><strong>CONFIDENTIALITY NOTICE:</strong><br><em>This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.</em><br><br><em>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</em><br><br><em>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</em><br><br><em>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p></p>\r\n<hr>\r\n<p><em>On Dec 4, 2025, Mavrix1 wrote:</em></p>\r\n<p>--b2=_A8XnifFXRzA0dUmkccjmOCoLbTFRFN7hRpd9cKY Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable</p>\r\n<p>Hey Admin!</p>\r\n<p></p>\r\n<table 100%;=\"\" max-width:=\"\" 600px;=\"\" border-collapse:=\"\" collapse;=\"\" f=\"ont-family:\" helvetica,=\"\" arial,=\"\" sans-serif;\"=\"\">\r\n<tbody>\r\n<tr>\r\n<td 0;=\"\" border-top:=\"\" 3px=\"\" solid=\"\" #0066cc;\"=\"\">\r\n<table 100%;=\"\" border-collapse:=\"\" collapse;=\"\" padding-top:=\"\" 15px;\"=\"\">\r\n<tbody>\r\n<tr><!-- LEFT COLUMN -->\r\n<td top;=\"\" padding-left:=\"\" 20px;=\"\" border-left:=\"\" 2px=\"\" soli=\"d\" #e0e0e0;\"=\"\">\r\n<div 10px;\"=\"\"><strong 14px;=\"\" color=\":\" #0066cc;\"=\"\">Admin User</strong><br><span 12px;=\"\" color:=\"\" #=\"666;&quot;\">Administrator</span></div>\r\n<div 12px;=\"\" color:=\"\" #333;=\"\" line-height:=\"\" 1.3;\"=\"\">\r\n<div><a href=\"3D&quot;mailto:admin@mavrix.one&quot;\" #0066cc;=\"\" text-deco=\"ration:\" none;\"=\"\">admin@mavrix.one</a></div>\r\n<div>Mobile: 906-123-4567</div>\r\n<div>Office: 906-555-4567</div>\r\n<div><a href=\"3D&quot;https://mavrix1.com&quot;\" #0066cc;=\"\" text-decorati=\"on:\" none;\"=\"\">https://mavrix1.com</a></div>\r\n</div>\r\n</td>\r\n<!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n<td 200px;=\"\" vertical-align:=\"\" middle;=\"\" text-align:=\"\" center;=\"\" padd=\"ing-top:\" 10px;\"=\"\"><img src=\"3D&quot;cid:company_logo&quot;\" alt=\"3D&quot;Mavrix1&quot;\" width:=\"\" 150px;=\"\" height:=\"\" auto;=\"\" display:=\"\" block;=\"\" margin:=\"\" 0=\"\" auto;\"=\"\">\r\n<div 8px;=\"\" font-size:=\"\" 11px;=\"\" color:=\"\" #666;=\"\" line-height:=\"\" 1=\".3;&quot;\">3900 W. Coachman Ave.<br>Tampa, FL 33611</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td 15px;=\"\" border-top:=\"\" 1px=\"\" solid=\"\" #e0e0e0;\"=\"\">\r\n<div 9px;=\"\" color:=\"\" #888;=\"\" line-height:=\"\" 1.4;\"=\"\"><strong>CONFI= DENTIALITY NOTICE:</strong><br><em>This communication may contain confident= ial information. Unauthorized review, use, disclosure, or distribution is p= rohibited.</em><br><br><em>This communication, including any attachments, m= ay contain confidential, privileged, or Controlled Unclassified Information= (CUI) protected under federal law. It is intended solely for the use of th= e designated recipient(s). Any unauthorized review, use, disclosure, distri= bution, or copying is strictly prohibited and may be unlawful.</em><br><br>= <em>If you are not the intended recipient, please notify the sender immedia= tely, delete this email, and destroy all copies.</em><br><br><em>Unless exp= ressly stated, the views and opinions expressed herein are those of the sen= der and do not necessarily reflect those of the sender=E2=80=99s employer o= r any U.S. Government agency. All recipients are responsible for handling i= nformation in accordance with applicable federal regulations, including but= not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>--b2=_A8XnifFXRzA0dUmkccjmOCoLbTFRFN7hRpd9cKY Content-Type: image/png; name=logo_1762869843.png Content-Transfer-Encoding: base64 Content-ID: <company_logo> Content-Disposition: inline; filename=logo_1762869843.png iVBORw0KGgoAAAANSUhEUgAAAuwAAACiCAYAAAAa7ZjJAAAACXBIWXMAAAsSAAALEgHS3X78AAAV P0lEQVR4nO3dT1LcStbG4Te/8BzvgOoVgGfNiLoroG40Mw8oVgBegfEKKFZAEdHMHOFiBS5GHrpY QcMK2qwgv4FO0TLmX5XySCnp90R0dIejndK9NtKrzJMnQ4xRAAAAAHzt7F+OJU0kbazy+/7P5W4A AAAAPNjZvzyRdK4Vw7okvUt+NwAAAAAkSTv7l+9VzKofrDsGgR0AAABwYGF9LmmryjiUxAAAAACJ 7exfbktaqGJYlwjsAAAAQFI7+5cjFTPrmynGI7ADAAAAiezsXx5L+qY1Npc+hxp2AAAAIIGd/cup KmwufQ6BHQAAAKjANpfOJO16jE9JDAAAALAm21w6l1NYl5hhBwAAANays385VDGznqxe/SnMsAMA AAAr2tm/HEv6LuewLhHYAQAAgJXs7F9OJJ3XdT1KYgAAAIA3sM2lU0l7dV6XwA4AAAC8Ymf/cqCi Xr3yyaWrIrADAAAALyh1gnGvV38KNewAAADAM2xz6U81FNYlAjsAAADwpJ39yxPVuLn0OZTEAAAA ACW2uXQi6aDpe5EI7AAAAMADC+tzNbC59DmUxAAAAAB62Fx6q4zCukRgBwAAALSzfzlSg51gXkJg BwAAQK/t7F8eS/qmDMO6RA07AAAAemxn/3KqTDaXPofADgAAgN7JcXPpc8I///XvgaRxw/cBAAAA POnH148nKcezzaVTtSCsS8UM+0DS54bvAwAAAHjsXtIo5YA7+5dDSTPVU69+Z/+9WWUQNp0CAAAg RzeShj++fpynGnBn/3Is6bvqCetXkpZtIiuhhh0AAAC5uZY0+vH1469UA9a8ufTTj68fJ3bdyoMR 2AEAAJCTsx9fPx6nGsw2l84k7aYa8wV3Kj40FikHpSQGAAAAuThMHNYHKjrB1BHWryRtpw7rEjPs AAAAaN69inr1ZGHXOsHMVU+9+kMJjAdm2AEAANCkGyWembbNpT/lH9bvJH3wDOsSgR0AAADNuVIx s36basCd/cuJpPNU473ArQTmMUpiAAAA0ASPzaUT+XeCuZd04j2rXkZgBwAAQJ3uJR3/+PpxmmpA C+tz+Z9ceiNpXMesehmBHQAAAHVp8+bSCxUfGsl6w78VgR0AAAB1WJ5cmvIwpLGKMhjPsJ58RWBV bDoFAACAtwulD+vHKjaXeob15UfG1PEar2KGHQAAAJ6+/Pj68STlgDv7l1P5by5trATmMQI7AAAA PNyr2KA5SzVgTZtLU5fAVA78KQL7vaRad8oCAAAge8cOm0tnkjZTjfkEjy4wC0l7VQZIEdgXP75+ HCYYBwAAAHjJ2Hn8RQ4lMI9REgMAAIDs1d37PCd0iQEAAAAyRmAHAAAAMkZgBwAAADJGYAcAAAAy RmAHAAAAMkZgBwAAADJGYAcAAAAyRmAHAAAAMkZgBwAAADJGYAcAAAAyRmAHAAAAMkZgBwAAADJG YAcAAAAyRmAHAAAAMkZgBwAAADJGYAcAAAAy9q6Oi4QQhpKGdVwLrbWQ9CvGOG/6RiQphHDS9D10 1K39ZxFj/OVxgRDCSNK2x9iSJl73jW7+2YUQtiW9V3/fgdMY4+1r/6cQwljSINVFY4wnVX5/CGEg aZzgVp4zizEuHMfPiv0cjBwv8aa/Z21WS2BX8aD6XNO10GIhBEm6kTRf/qehgMTfV2chhDsVH2oz FX/Ot4mGnkuaSNpMNF6ZZ6DsNXuhTyVtOAx/WNdzpBRMhpJ267hm5uYqPtJfM1baf18nFX//QL7v geMQwnGMcep4jSzYx9i582Xmetvfs9aiJAY52pJ0JOmbpP+GEKa2SoNu2ZS0p+JB/p8QwiKEMA4h vK8yqAWzkaT7BPf42FYIYeowbq/Zn/lcPmH9wjsUhRAGIYRJCOFW0k8VQY+w3m638nmGLG1IOg8h TByv0agQwnt7XnqH9Tt1PKxLBHa0w4Gk7yGEW1syRzdtqXiw34YQTqoEd1tqHqe6sUcOQgjHTmP3 1Vw+Yf06xjh2GFfSQ1CfSvqPikkGj1UdNMBW/AaSrp0vdWSTFZUmKnJjJUVzFe9vT1eStrteDiMR 2NEum5K+hRDmtuyMbtpQMUNZ6QMtxjiT9CnZXf3ulFWfNCzwbjkMfSenmlmbOZyoCOregQQNiTH+ ijEOJZ05X2pLxfNu6HydWthzeyGfn+uyLzHGUV/2FRHY0Ua7kn4yy9l5Gyo+0Gbrzj7FGCeSLtLe 1oMZH47V2M+wR+C9l+TyIrc/84WKGXX0QIzxWNKh/Etkvrf9vWYNG77JZ8Vs6V7S31U3FrcNgR1t dko9cS/sSZrbEus6jlVsZE5tQ9K0a0vZdbHZxFOn4cceHThs89xPUfrSO7YPYiifZ0nZaZVJiqbY qtNc/g0bblSUwMycr5MdAjva7oDQ3gtbkhbrzGjbLOtQTptQVXQ2wQrsz9HrhfvJ42VeU6cLZMw+ Aocq6qY9LScpWrGCV1p18t5ofSFp2Id69acQ2NEFhPZ+WHtG2zm079G3/+3sz28qv44wybtuWE0u YR3LuvaRpC/Ol9pSEdrHzteppMZVp8MY47gv9epPIbCjKw7oINMLa89o2+yYV33o59xfrBmZymcz 2o1HRxgrxZqmHhftZvXTf6mnrR9rbNl4L+lDH/rVv4bAji6ZtK3uD2vZW7ebgj30vWbGJm1Zwm6K BY89h6Hv5HeS6Il8N9Chpexk7m3517Vn1fqxxpaN15IGfToR9iUEdnTJpnyPkkY+Ttb9jTYz5tE5 ZkNF55gsXqq5sRUIj84qnh1hBqJtI15g9dRD+XWjWsqi9aNdv46WjWcxxmGfS2AeI7Cja8ZN3wBq sVuha4zk1zlmU8XME0ps5cFrWf/YcQau1S32UA+rax+raP3oqdHWj7ZX57vqadnIz94j75q+gYqu VHzptcVQvruob+TXecHDttIvj2+FEAYJdpF7byjqk4GKA2xSP+RHWjMExhh/lQ73SH1fWyGEqecJ m21iKw5z+bzkvzjXtg4dxrxR8e+jLzOHt03fQF1ijNMQwkJ+f9+Xlge31bIJs7RR3KOcrexGTi1Z u6Ctgb21f6g20zRX2h/m5ZLwPOGYtbBZ0pnSLq8NVPEl0bcDGbzZA3+itOUFgyq/Oca4XF7+meRu fncQQpizUUqSX3i5qOHnNPWy/yF/J7otxrgovdc8J+iWrR9ds1CpBat3F5gr1fQB0lZtLYk5aWNY lx46VYwTDztpY1iXHur/6O7ScfYQPlbajgqVN3jaz6PXMvZ50/WmTbMuEi4dYdS+cpULwno/WInM UNKZ86VcWz/auHP5h/VPMUaXfShd0srA3oETrlL/pZwnHq9WfT0EoW/sYZzdh7aFKK8X66xirX1r WZ2tx4bNexWHp7Tt5X7b9A2gXlaHfagWtn4stWz0rlf/y+PshC5qZWAHgJTsxepxemEvO8fYysKp w9BtDevoKZsQGKqe1o/zqs+aEMLA6vC9uyPdqGjZOHe+TmcQ2AGgMJbPS3VLfh1SslOqefXg2REG cGF/Z4fymRQo21XR+nGtcsEaWzZexBi3+fBeDYEdAPRQsjOSz/L1gbVE67RSNwmPZfQzasDRVlbX PpJ/B7INST9Xbf1YY8vGQzporYfADgDGeRP0Z2sl2WVT+czOXdGXGV1gnY3+km9du1S0fpy+ViIT QngfQphJ+ux8P3cqytmmztfpLAI7AJRYTaVX55jpusvVubNNbx59mm/EgWjoEHvGbMu/rv1ARReZ J5859usL+fdXv5K0TTlbNQR2AHjEZoE8jhrv5CZUa/925DD08owJal3RKbaaN5TPc6Zs2frxt9W9 Gls2fqFlYxoEdgB4gtVZXjsMval2nUj8IpulO3cafkjbV3SV1bWPJX1yvtSGpG/L1o81tmz8m0MI 0yGwA8DzRvJZtt5N3Te5CbZSMHca/pAldPSB9SH/IP+69qMQwi/V07JxuwNn5mSFwA4Az7Bl3LF8 XqRHXicU1qEU1ukIA1RkH6cD+de1e86qS0WJDytjDgjsAPACe5F6dXc5b/Em1InoCAMkYyUy2/I7 ednbYYxxTL26DwI7ALzCujp41ZlWPp2wbtbj2WNZnY4w6D37YD2Uf4lMKveSPrAq5utd0zcA5KgP h9w0ZND0Dawrxjix2fDUQXVDRWgftmFmyrpNnDoMfS+J2TlARaeqEMJCxQZ1704uVVyLTk61ILAD T/M+RAItFGMcW2hPXQqypaLEZJx43KTsn33qNPyITabA/8QYF6WfOe9e6es4o3ytPpTEAMBqhipO 7UvtYNXjxOtkZTtT+WxaO7SyIwAlVtc+kvSl6XspWbZszPZ51UUEdgBYgS39juRTX3r6+ICTjMzk s8n0gtpX4GXWz/xvNV/XfqOiCwwtG2tGYAeAFVnpxthp+GlunWOsZ/yuw9DXdnAMgFdYSN6Wf+vH 51ypCOuUrjWAwA4Aa7CXp0fnmA0VoT2LzjHWK/7IYegb+bXLBDrJ+psPVfQ7r9OnGCObSxtEYAeA NdkJhR4vzi35be58M5vpP3cYmo4wwJqsrn2s+mbaz+xZhwYR2AGgAscX556VojSidJKphzHL6sB6 QgjvQwhz+ewpecpRk88iFAjsAFDdUD6bwY6sJKVWpbDu0RHmExvWgPXYqtdcPntKXnIUQmjdIW9d QmAHgIqstGMon9A+aWAT6kR+HWGYqQPWYB2k5qpvZv2xXUmL3DbF9wWBHQASsBIPj77Ey5NQa5nZ sl7wqU9zlaQbOsIA67HTt7/JZ9VrFZsqnkdsGK8ZgR0AErF+4h4HnGzIr578gb2ETx2GvlOxAgFg BVavPlVep29vSPpmHxGoCYEdABKyA05cOsfYi9tF6Qj01O4l0Q4OWFEIYaDiQ91jxSuFzyGEGXXt 9XjX9A0APXCtGmZHW2KsYkm1645VHHCSutb0IISwSF0Hbi/cqXyW2+kIA6yotLm06RKY1+zJSmSs RzycENgBf3Obde29EMJQPQjsMcZf9s96q/Qv3FML7fOEY87ks5HtCx1hgNVYZyiP8w+8bKnYjDpK /FxCCSUxAOCg1DnGw8yWyyuz/soeLeIu+FAFVmNlb20K60sbkr7bpnU4ILADgBMrBTl0GHpDRWiv VDtqM3lHSe7odzfy6ZgDdJJtLl3Iv179znn8U8+9Nn1GYAcAR9Y55sxh6C1V2CRqNbIeM3n3koZs MgXexn4WF/Lvr/4pxjiQTyersoMQwoLNqGkR2AHAWYzxWNKVw9B767RWK51kmhphHViBrXLN5bu3 517SX8vN6laq9rd8Dnpb2pJ0yyFL6RDYAaAeYxWlIql9tpf+m5TCukf3iWM6wgBvYx/b5/LtBHOj 4iN6Xv5F2ww+lG+JzIakn6s8n/A8AjsA1MBmnUfymdWarDCTNZFfR5ipw7hAp1i9+kz+hyFdqQjr T35E269vq2g97OmcuvbqCOwAUBPrUzx0GPpNm1Ctg4PHprYrOsIAryv1V99zvtRZjPHVA8tijL9i jEP5HPZWdhBCmFPXvj4COwDUyLFzzKZeqEsPIYwknTpc90ZFuQ+AF9jZDHP5bi69l3Ro+2beLMY4 ls9zqWxXRb926trXQGAHgJpZ6YjHjNbWU0vP9oL849cTuJf06iwe0He2uvVdvvXqy03f03V+s/2+ D/LdjLqp4mTUseM1OonADgANsBktj9rRg/LL0Jagp/IJCkOOIwdeZh/RHqtbZTeSBlU3fZfq2j02 yC9tqKhrP3G8RucQ2AGgOSP5vBjPS8vOM/kswR/SEQZ4Xo2HIV3EGLdTrXSV9tp417V/DiFUPgCu LwjsgL9R0zeAPNkLdiyfJei5daLYdRj7jI4wwPPsg/lW9RyGNE49qG1GHcv/kKU9Fc8q6tpfQWAH npayVGHL6heBP9gstcdH3YZ8OlFcrbqhDegTK0n7Kf969YfDkLzUeMjS3Dbl4hnvmr4BIFOpN9Gd WmifJh63bQZN30COYozzEMKhikNUckZHGOAFIYSJpCPny9xIGtdVkhZjnFmYnsnvRNYNSd9DCJ+8 P0LaisAOPG2m9LOTm/I/KAMtFWOc2kvRu951XfcqQgIdYYBHrA7bqwSt7EoN/BzGGJftGL3/GU/t Osc8a35HSQzwtJl8lwCBP1jNqGd3hipGbDIF/lQ6DMk7rL/pMCQvdR6ypKJEhs2oJQR24An2QGRZ Dk0YSrpr+iYeOYwxzpu+CSA3diDZXBkehuSlpkOWtiTdshn1fwjswPMmyi84oePsY3GkfFZ4LugI A/zJ+oh/U8aHIXmp6ZClDUk/OWSpQGAHnlEKTkCtrPRk3PR9SLr2aBkHtJn1V5/Kf09SksOQvNR0 yJJUnCsxdb5G9gjswAvsgeS99Af8IcY4k/SpwVu4ER+swG9CCAMVJTCtOgzJS42HLB2EEBZ9rmsn sAOvsKW/Q+VTooCesPZm3i/Cp9ARBnjE6qkXaulhSF5qPGRpS9Kir3XtBHbgDSy0D5VvBw90VEOd Y2rr8Qy0QZcOQ/JS0yFLmyo6yIwdr5ElAjvwRhZghpLOGr4V9M9Q9a3wfLJyHACSrH7a+1CzGxWb S+fO13Flz46hfBs2bKioa2/lh826COzACmzp71jSP9RMqQJ6yEpThvIP7Rdtnd0DUrPNpQv516tf qQjrnVjVKm1GvXa+1FEIYdaXunYCO7CGGOOtlSr8Q8WMO+0f4cpegp59mG/aVDcLeLLNpXXUqzd6 GJKXGg9Z2lNRIjNwvk7jCOxABRbcj2OMAxU9ab/If1YBPWV7KTw2dt2pmMEHUBioqJf2ktVhSF5q PGRp4HyNxr2r6Tq3IsSU/VLafx9d+DJv/b8PmwF9WNK0newDFUuDsv89qPu+OqwTy8erijGe2BJw yk4Jx12b4Usk5XPpNuFYXZTbz3Pq9/Rjx10pgXlNjHFqpUWe5Xa5P78q/1mHf/7r30NJ3yuMcf3j 68dh1RsBAAAAumZn/3KoalmbkhgAAAAgZwR2AAAAIGMEdgAAACBjBHYAAAAgYwR2AAAAIGMEdgAA ACBjBHYAAAAgYwR2AAAAIGMEdgAAACBjBHYAAAAgYwR2AAAAIGMEdgAAACBjBHYAAAAgYwR2AAAA IGPvEoyxu7N/GROMAwAAAOARZtgBAACAjBHYAQAAgIwR2AEAAICMEdgBAACAjBHYAQAAgIwR2AEA AICMEdgBAACAjBHYAQAAgIwR2AEAAICMEdgBAACAjBHYAQAAgIwR2AEAAICMEdgBAACAjBHYAQAA gIwR2AEAAICMvZN0K+lLw/cBAAAA4An/D+pVjENe+oQjAAAAAElFTkSuQmCC --b2=_A8XnifFXRzA0dUmkccjmOCoLbTFRFN7hRpd9cKY--</company_logo></p>','\r\nTest\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nAdmin UserAdministrator\r\n\r\nadmin@mavrix.one\r\nMobile: 906-123-4567\r\nOffice: 906-555-4567\r\nhttps://mavrix1.com\r\n\r\n\r\n\r\n\r\n3900 W. Coachman Ave.Tampa, FL 33611\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE:This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n\r\n\r\n\r\n\r\n\r\n\r\nOn Dec 4, 2025, Mavrix1 wrote:\r\n--b2=_A8XnifFXRzA0dUmkccjmOCoLbTFRFN7hRpd9cKY Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable\r\nHey Admin!\r\n\r\n\r\n',1,0,0,0,0,0,'2025-12-04 12:01:25','2025-12-04 12:01:25','2025-12-04 12:01:25','2025-12-04 12:01:25',NULL,NULL,NULL),
(56,1,'<umIv8wt6HaFV1KXO8rssMAieLQxUAQNfpuIzUNLlUWM@localhost>',NULL,NULL,'Test2','contact@mavrix.one','Mavrix1','--b2=_umIv8wt6HaFV1KXO8rssMAieLQxUAQNfpuIzUNLlUWM\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Transfer-Encoding: quoted-printable\r\n\r\n<p></p>\r\n<p>Test</p>\r\n<table style=3D\"width: 100%; max-width: 600px; border-collapse: collapse; f=\r\nont-family: Helvetica, Arial, sans-serif;\">\r\n<tbody>\r\n<tr>\r\n<td style=3D\"padding: 0; border-top: 3px solid #0066cc;\">\r\n<table style=3D\"width: 100%; border-collapse: collapse; padding-top: 15px;\"=\r\n>\r\n<tbody>\r\n<tr><!-- LEFT COLUMN -->\r\n<td style=3D\"vertical-align: top; padding-left: 20px; border-left: 2px soli=\r\nd #e0e0e0;\">\r\n<div style=3D\"margin-bottom: 10px;\"><strong style=3D\"font-size: 14px; color=\r\n: #0066cc;\">Admin User</strong><br><span style=3D\"font-size: 12px; color: #=\r\n666;\">Administrator</span></div>\r\n<div style=3D\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n<div><a href=3D\"mailto:admin@mavrix.one\" style=3D\"color: #0066cc; text-deco=\r\nration: none;\">admin@mavrix.one</a></div>\r\n<div>Mobile: 906-123-4567</div>\r\n<div>Office: 906-555-4567</div>\r\n<div><a href=3D\"https://mavrix1.com\" style=3D\"color: #0066cc; text-decorati=\r\non: none;\">https://mavrix1.com</a></div>\r\n</div>\r\n</td>\r\n<!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n<td style=3D\"width: 200px; vertical-align: middle; text-align: center; padd=\r\ning-top: 10px;\"><img src=3D\"cid:company_logo\" alt=3D\"Mavrix1\" style=3D\"max-=\r\nwidth: 150px; height: auto; display: block; margin: 0 auto;\">\r\n<div style=3D\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1=\r\n.3;\">3900 W. Coachman Ave.<br>Tampa, FL 33611</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=3D\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n<div style=3D\"font-size: 9px; color: #888; line-height: 1.4;\"><strong>CONFI=\r\nDENTIALITY NOTICE:</strong><br><em>This communication may contain confident=\r\nial information. Unauthorized review, use, disclosure, or distribution is p=\r\nrohibited.</em><br><br><em>This communication, including any attachments, m=\r\nay contain confidential, privileged, or Controlled Unclassified Information=\r\n (CUI) protected under federal law. It is intended solely for the use of th=\r\ne designated recipient(s). Any unauthorized review, use, disclosure, distri=\r\nbution, or copying is strictly prohibited and may be unlawful.</em><br><br>=\r\n<em>If you are not the intended recipient, please notify the sender immedia=\r\ntely, delete this email, and destroy all copies.</em><br><br><em>Unless exp=\r\nressly stated, the views and opinions expressed herein are those of the sen=\r\nder and do not necessarily reflect those of the sender=E2=80=99s employer o=\r\nr any U.S. Government agency. All recipients are responsible for handling i=\r\nnformation in accordance with applicable federal regulations, including but=\r\n not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p></p>\r\n<hr>\r\n<p><em>On Dec 4, 2025, Mavrix1 wrote:</em></p>\r\n<p>--b2=3D_A8XnifFXRzA0dUmkccjmOCoLbTFRFN7hRpd9cKY Content-Type: text/html;=\r\n charset=3DUTF-8 Content-Transfer-Encoding: quoted-printable</p>\r\n<p>Hey Admin!</p>\r\n<p></p>\r\n<table 100%;=3D\"\" max-width:=3D\"\" 600px;=3D\"\" border-collapse:=3D\"\" collaps=\r\ne;=3D\"\" f=3D\"ont-family:\" helvetica,=3D\"\" arial,=3D\"\" sans-serif;\"=3D\"\">\r\n<tbody>\r\n<tr>\r\n<td 0;=3D\"\" border-top:=3D\"\" 3px=3D\"\" solid=3D\"\" #0066cc;\"=3D\"\">\r\n<table 100%;=3D\"\" border-collapse:=3D\"\" collapse;=3D\"\" padding-top:=3D\"\" 15=\r\npx;\"=3D\"\">\r\n<tbody>\r\n<tr><!-- LEFT COLUMN -->\r\n<td top;=3D\"\" padding-left:=3D\"\" 20px;=3D\"\" border-left:=3D\"\" 2px=3D\"\" soli=\r\n=3D\"d\" #e0e0e0;\"=3D\"\">\r\n<div 10px;\"=3D\"\"><strong 14px;=3D\"\" color=3D\":\" #0066cc;\"=3D\"\">Admin User</=\r\nstrong><br><span 12px;=3D\"\" color:=3D\"\" #=3D\"666;&quot;\">Administrator</spa=\r\nn></div>\r\n<div 12px;=3D\"\" color:=3D\"\" #333;=3D\"\" line-height:=3D\"\" 1.3;\"=3D\"\">\r\n<div><a href=3D\"3D&quot;mailto:admin@mavrix.one&quot;\" #0066cc;=3D\"\" text-d=\r\neco=3D\"ration:\" none;\"=3D\"\">admin@mavrix.one</a></div>\r\n<div>Mobile: 906-123-4567</div>\r\n<div>Office: 906-555-4567</div>\r\n<div><a href=3D\"3D&quot;https://mavrix1.com&quot;\" #0066cc;=3D\"\" text-decor=\r\nati=3D\"on:\" none;\"=3D\"\">https://mavrix1.com</a></div>\r\n</div>\r\n</td>\r\n<!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n<td 200px;=3D\"\" vertical-align:=3D\"\" middle;=3D\"\" text-align:=3D\"\" center;=\r\n=3D\"\" padd=3D\"ing-top:\" 10px;\"=3D\"\"><img src=3D\"3D&quot;cid:company_logo&qu=\r\not;\" alt=3D\"3D&quot;Mavrix1&quot;\" width:=3D\"\" 150px;=3D\"\" height:=3D\"\" aut=\r\no;=3D\"\" display:=3D\"\" block;=3D\"\" margin:=3D\"\" 0=3D\"\" auto;\"=3D\"\">\r\n<div 8px;=3D\"\" font-size:=3D\"\" 11px;=3D\"\" color:=3D\"\" #666;=3D\"\" line-heigh=\r\nt:=3D\"\" 1=3D\".3;&quot;\">3900 W. Coachman Ave.<br>Tampa, FL 33611</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td 15px;=3D\"\" border-top:=3D\"\" 1px=3D\"\" solid=3D\"\" #e0e0e0;\"=3D\"\">\r\n<div 9px;=3D\"\" color:=3D\"\" #888;=3D\"\" line-height:=3D\"\" 1.4;\"=3D\"\"><strong>=\r\nCONFI=3D DENTIALITY NOTICE:</strong><br><em>This communication may contain =\r\nconfident=3D ial information. Unauthorized review, use, disclosure, or dist=\r\nribution is p=3D rohibited.</em><br><br><em>This communication, including a=\r\nny attachments, m=3D ay contain confidential, privileged, or Controlled Unc=\r\nlassified Information=3D (CUI) protected under federal law. It is intended =\r\nsolely for the use of th=3D e designated recipient(s). Any unauthorized rev=\r\niew, use, disclosure, distri=3D bution, or copying is strictly prohibited a=\r\nnd may be unlawful.</em><br><br>=3D <em>If you are not the intended recipie=\r\nnt, please notify the sender immedia=3D tely, delete this email, and destro=\r\ny all copies.</em><br><br><em>Unless exp=3D ressly stated, the views and op=\r\ninions expressed herein are those of the sen=3D der and do not necessarily =\r\nreflect those of the sender=3DE2=3D80=3D99s employer o=3D r any U.S. Govern=\r\nment agency. All recipients are responsible for handling i=3D nformation in=\r\n accordance with applicable federal regulations, including but=3D not limit=\r\ned to FAR, DFARS, ITAR, and CUI handling requirements.</em></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>--b2=3D_A8XnifFXRzA0dUmkccjmOCoLbTFRFN7hRpd9cKY Content-Type: image/png;=\r\n name=3Dlogo_1762869843.png Content-Transfer-Encoding: base64 Content-ID: <=\r\ncompany_logo> Content-Disposition: inline; filename=3Dlogo_1762869843.png i=\r\nVBORw0KGgoAAAANSUhEUgAAAuwAAACiCAYAAAAa7ZjJAAAACXBIWXMAAAsSAAALEgHS3X78AAAV=\r\n P0lEQVR4nO3dT1LcStbG4Te/8BzvgOoVgGfNiLoroG40Mw8oVgBegfEKKFZAEdHMHOFiBS5GHr=\r\npY QcMK2qwgv4FO0TLmX5XySCnp90R0dIejndK9NtKrzJMnQ4xRAAAAAHzt7F+OJU0kbazy+/7P=\r\n5W4A AAAAPNjZvzyRdK4Vw7okvUt+NwAAAAAkSTv7l+9VzKofrDsGgR0AAABwYGF9LmmryjiUxA=\r\nAAAACJ 7exfbktaqGJYlwjsAAAAQFI7+5cjFTPrmynGI7ADAAAAiezsXx5L+qY1Npc+hxp2AAAA=\r\nIIGd/cup KmwufQ6BHQAAAKjANpfOJO16jE9JDAAAALAm21w6l1NYl5hhBwAAANays385VDGznq=\r\nxe/SnMsAMA AAAr2tm/HEv6LuewLhHYAQAAgJXs7F9OJJ3XdT1KYgAAAIA3sM2lU0l7dV6XwA4A=\r\nAAC8Ymf/cqCi Xr3yyaWrIrADAAAALyh1gnGvV38KNewAAADAM2xz6U81FNYlAjsAAADwpJ39yx=\r\nPVuLn0OZTEAAAA ACW2uXQi6aDpe5EI7AAAAMADC+tzNbC59DmUxAAAAAB62Fx6q4zCukRgBwAA=\r\nALSzfzlSg51gXkJg BwAAQK/t7F8eS/qmDMO6RA07AAAAemxn/3KqTDaXPofADgAAgN7JcXPpc8=\r\nI///XvgaRxw/cBAAAA POnH148nKcezzaVTtSCsS8UM+0DS54bvAwAAAHjsXtIo5YA7+5dDSTPV=\r\nU69+Z/+9WWUQNp0CAAAg RzeShj++fpynGnBn/3Is6bvqCetXkpZtIiuhhh0AAAC5uZY0+vH146=\r\n9UA9a8ufTTj68fJ3bdyoMR 2AEAAJCTsx9fPx6nGsw2l84k7aYa8wV3Kj40FikHpSQGAAAAuThM=\r\nHNYHKjrB1BHWryRtpw7rEjPs AAAAaN69inr1ZGHXOsHMVU+9+kMJjAdm2AEAANCkGyWembbNpT=\r\n/lH9bvJH3wDOsSgR0AAADNuVIx s36basCd/cuJpPNU473ArQTmMUpiAAAA0ASPzaUT+XeCuZd0=\r\n4j2rXkZgBwAAQJ3uJR3/+PpxmmpA C+tz+Z9ceiNpXMesehmBHQAAAHVp8+bSCxUfGsl6w78VgR=\r\n0AAAB1WJ5cmvIwpLGKMhjPsJ58RWBV bDoFAACAtwulD+vHKjaXeob15UfG1PEar2KGHQAAAJ6+=\r\n/Pj68STlgDv7l1P5by5trATmMQI7AAAA PNyr2KA5SzVgTZtLU5fAVA78KQL7vaRad8oCAAAge8=\r\ncOm0tnkjZTjfkEjy4wC0l7VQZIEdgXP75+ HCYYBwAAAHjJ2Hn8RQ4lMI9REgMAAIDs1d37PCd0=\r\niQEAAAAyRmAHAAAAMkZgBwAAADJGYAcAAAAy RmAHAAAAMkZgBwAAADJGYAcAAAAyRmAHAAAAMk=\r\nZgBwAAADJGYAcAAAAyRmAHAAAAMkZgBwAAADJG YAcAAAAyRmAHAAAAMkZgBwAAADJGYAcAAAAy=\r\n9q6Oi4QQhpKGdVwLrbWQ9CvGOG/6RiQphHDS9D10 1K39ZxFj/OVxgRDCSNK2x9iSJl73jW7+2Y=\r\nUQtiW9V3/fgdMY4+1r/6cQwljSINVFY4wnVX5/CGEg aZzgVp4zizEuHMfPiv0cjBwv8aa/Z21W=\r\nS2BX8aD6XNO10GIhBEm6kTRf/qehgMTfV2chhDsVH2oz FX/Ot4mGnkuaSNpMNF6ZZ6DsNXuhTy=\r\nVtOAx/WNdzpBRMhpJ267hm5uYqPtJfM1baf18nFX//QL7v geMQwnGMcep4jSzYx9i582Xmetvf=\r\ns9aiJAY52pJ0JOmbpP+GEKa2SoNu2ZS0p+JB/p8QwiKEMA4h vK8yqAWzkaT7BPf42FYIYeowbq=\r\n/Zn/lcPmH9wjsUhRAGIYRJCOFW0k8VQY+w3m638nmGLG1IOg8h TByv0agQwnt7XnqH9Tt1PKxL=\r\nBHa0w4Gk7yGEW1syRzdtqXiw34YQTqoEd1tqHqe6sUcOQgjHTmP3 1Vw+Yf06xjh2GFfSQ1CfSv=\r\nqPikkGj1UdNMBW/AaSrp0vdWSTFZUmKnJjJUVzFe9vT1eStrteDiMR 2NEum5K+hRDmtuyMbtpQ=\r\nMUNZ6QMtxjiT9CnZXf3ulFWfNCzwbjkMfSenmlmbOZyoCOregQQNiTH+ ijEOJZ05X2pLxfNu6H=\r\nydWthzeyGfn+uyLzHGUV/2FRHY0Ua7kn4yy9l5Gyo+0Gbrzj7FGCeSLtLe 1oMZH47V2M+wR+C9=\r\nl+TyIrc/84WKGXX0QIzxWNKh/Etkvrf9vWYNG77JZ8Vs6V7S31U3FrcNgR1t dko9cS/sSZrbEu=\r\ns6jlVsZE5tQ9K0a0vZdbHZxFOn4cceHThs89xPUfrSO7YPYiifZ0nZaZVJiqbY qtNc/g0bblSU=\r\nwMycr5MdAjva7oDQ3gtbkhbrzGjbLOtQTptQVXQ2wQrsz9HrhfvJ42VeU6cLZMw+ Aocq6qY9LS=\r\ncpWrGCV1p18t5ofSFp2Id69acQ2NEFhPZ+WHtG2zm079G3/+3sz28qv44wybtuWE0u YR3LuvaR=\r\npC/Ol9pSEdrHzteppMZVp8MY47gv9epPIbCjKw7oINMLa89o2+yYV33o59xfrBmZymcz 2o1HRx=\r\ngrxZqmHhftZvXTf6mnrR9rbNl4L+lDH/rVv4bAji6ZtK3uD2vZW7ebgj30vWbGJm1Zwm6K BY89=\r\nh6Hv5HeS6Il8N9Chpexk7m3517Vn1fqxxpaN15IGfToR9iUEdnTJpnyPkkY+Ttb9jTYz5tE5 Zk=\r\nNF55gsXqq5sRUIj84qnh1hBqJtI15g9dRD+XWjWsqi9aNdv46WjWcxxmGfS2AeI7Cja8ZN3wBq =\r\nsVuha4zk1zlmU8XME0ps5cFrWf/YcQau1S32UA+rax+raP3oqdHWj7ZX57vqadnIz94j75q+gYq=\r\nu VHzptcVQvruob+TXecHDttIvj2+FEAYJdpF7byjqk4GKA2xSP+RHWjMExhh/lQ73SH1fWyGEq=\r\necJ m21iKw5z+bzkvzjXtg4dxrxR8e+jLzOHt03fQF1ijNMQwkJ+f9+Xlge31bIJs7RR3KOcrex=\r\nGTi1Z u6Ctgb21f6g20zRX2h/m5ZLwPOGYtbBZ0pnSLq8NVPEl0bcDGbzZA3+itOUFgyq/Oca4X=\r\nF7+meRu fncQQpizUUqSX3i5qOHnNPWy/yF/J7otxrgovdc8J+iWrR9ds1CpBat3F5gr1fQB0lZ=\r\ntLYk5aWNY lx46VYwTDztpY1iXHur/6O7ScfYQPlbajgqVN3jaz6PXMvZ50/WmTbMuEi4dYdS+c=\r\npULwno/WInM UNKZ86VcWz/auHP5h/VPMUaXfShd0srA3oETrlL/pZwnHq9WfT0EoW/sYZzdh7a=\r\nFKK8X66xirX1r WZ2tx4bNexWHp7Tt5X7b9A2gXlaHfagWtn4stWz0rlf/y+PshC5qZWAHgJTsx=\r\nepxemEvO8fYysKp w9BtDevoKZsQGKqe1o/zqs+aEMLA6vC9uyPdqGjZOHe+TmcQ2AGgMJbPS3V=\r\nLfh1SslOqefXg2REG cGF/Z4fymRQo21XR+nGtcsEaWzZexBi3+fBeDYEdAPRQsjOSz/L1gbVE6=\r\n7RSNwmPZfQzasDRVlbX PpJ/B7INST9Xbf1YY8vGQzporYfADgDGeRP0Z2sl2WVT+czOXdGXGV1=\r\ngnY3+km9du1S0fpy+ViIT QngfQphJ+ux8P3cqytmmztfpLAI7AJRYTaVX55jpusvVubNNbx59m=\r\nm/EgWjoEHvGbMu/rv1ARReZ J5859usL+fdXv5K0TTlbNQR2AHjEZoE8jhrv5CZUa/925DD08ow=\r\nJal3RKbaaN5TPc6Zs2frxt9W9 Gls2fqFlYxoEdgB4gtVZXjsMval2nUj8IpulO3cafkjbV3SV1=\r\nbWPJX1yvtSGpG/L1o81tmz8m0MI 0yGwA8DzRvJZtt5N3Te5CbZSMHca/pAldPSB9SH/IP+69qM=\r\nQwi/V07JxuwNn5mSFwA4Az7Bl3LF8 XqRHXicU1qEU1ukIA1RkH6cD+de1e86qS0WJDytjDgjsA=\r\nPACe5F6dXc5b/Em1InoCAMkYyUy2/I7 ednbYYxxTL26DwI7ALzCujp41ZlWPp2wbtbj2WNZnY4=\r\nw6D37YD2Uf4lMKveSPrAq5utd0zcA5KgP h9w0ZND0Dawrxjix2fDUQXVDRWgftmFmyrpNnDoMf=\r\nS+J2TlARaeqEMJCxQZ1704uVVyLTk61ILAD T/M+RAItFGMcW2hPXQqypaLEZJx43KTsn33qNPy=\r\nITabA/8QYF6WfOe9e6es4o3ytPpTEAMBqhipO 7UvtYNXjxOtkZTtT+WxaO7SyIwAlVtc+kvSl6=\r\nXspWbZszPZ51UUEdgBYgS39juRTX3r6+ICTjMzk s8n0gtpX4GXWz/xvNV/XfqOiCwwtG2tGYAe=\r\nAFVnpxthp+GlunWOsZ/yuw9DXdnAMgFdYSN6Wf+vH 51ypCOuUrjWAwA4Aa7CXp0fnmA0VoT2Lz=\r\njHWK/7IYegb+bXLBDrJ+psPVfQ7r9OnGCObSxtEYAeA NdkJhR4vzi35be58M5vpP3cYmo4wwJq=\r\nsrn2s+mbaz+xZhwYR2AGgAscX556VojSidJKphzHL6sB6 QgjvQwhz+ewpecpRk88iFAjsAFDdU=\r\nD6bwY6sJKVWpbDu0RHmExvWgPXYqtdcPntKXnIUQmjdIW9d QmAHgIqstGMon9A+aWAT6kR+HWG=\r\nYqQPWYB2k5qpvZv2xXUmL3DbF9wWBHQASsBIPj77Ey5NQa5nZ sl7wqU9zlaQbOsIA67HTt7/JZ=\r\n9VrFZsqnkdsGK8ZgR0AErF+4h4HnGzIr578gb2ETx2GvlOxAgFg BVavPlVep29vSPpmHxGoCYE=\r\ndABKyA05cOsfYi9tF6Qj01O4l0Q4OWFEIYaDiQ91jxSuFzyGEGXXt 9XjX9A0APXCtGmZHW2KsY=\r\nkm1645VHHCSutb0IISwSF0Hbi/cqXyW2+kIA6yotLm06RKY1+zJSmSs RzycENgBf3Obde29EMJ=\r\nQPQjsMcZf9s96q/Qv3FML7fOEY87ks5HtCx1hgNVYZyiP8w+8bKnYjDpK /FxCCSUxAOCg1DnGw=\r\n8yWyyuz/soeLeIu+FAFVmNlb20K60sbkr7bpnU4ILADgBMrBTl0GHpDRWiv VDtqM3lHSe7odzf=\r\ny6ZgDdJJtLl3Iv179znn8U8+9Nn1GYAcAR9Y55sxh6C1V2CRqNbIeM3n3koZs MgXexn4WF/Lvr=\r\n/4pxjiQTyersoMQwoLNqGkR2AHAWYzxWNKVw9B767RWK51kmhphHViBrXLN5bu3 517SX8vN6la=\r\nq9rd8Dnpb2pJ0yyFL6RDYAaAeYxWlIql9tpf+m5TCukf3iWM6wgBvYx/b5/LtBHOj 4iN6Xv5F2=\r\nww+lG+JzIakn6s8n/A8AjsA1MBmnUfymdWarDCTNZFfR5ipw7hAp1i9+kz+hyFdqQjr T35E269=\r\nvq2g97OmcuvbqCOwAUBPrUzx0GPpNm1Ctg4PHprYrOsIAryv1V99zvtRZjPHVA8tijL9i jEP5H=\r\nPZWdhBCmFPXvj4COwDUyLFzzKZeqEsPIYwknTpc90ZFuQ+AF9jZDHP5bi69l3Ro+2beLMY4 ls9=\r\nzqWxXRb926trXQGAHgJpZ6YjHjNbWU0vP9oL849cTuJf06iwe0He2uvVdvvXqy03f03V+s/2+ D=\r\n/LdjLqp4mTUseM1OonADgANsBktj9rRg/LL0Jagp/IJCkOOIwdeZh/RHqtbZTeSBlU3fZfq2j02=\r\n yC9tqKhrP3G8RucQ2AGgOSP5vBjPS8vOM/kswR/SEQZ4Xo2HIV3EGLdTrXSV9tp417V/DiFUPg=\r\nCu LwjsgL9R0zeAPNkLdiyfJei5daLYdRj7jI4wwPPsg/lW9RyGNE49qG1GHcv/kKU9Fc8q6tpf=\r\nQWAH npayVGHL6heBP9gstcdH3YZ8OlFcrbqhDegTK0n7Kf969YfDkLzUeMjS3Dbl4hnvmr4BIF=\r\nOpN9Gd WmifJh63bQZN30COYozzEMKhikNUckZHGOAFIYSJpCPny9xIGtdVkhZjnFmYnsnvRNYN=\r\nSd9DCJ+8 P0LaisAOPG2m9LOTm/I/KAMtFWOc2kvRu951XfcqQgIdYYBHrA7bqwSt7EoN/BzGGJ=\r\nftGL3/GU/t Osc8a35HSQzwtJl8lwCBP1jNqGd3hipGbDIF/lQ6DMk7rL/pMCQvdR6ypKJEhs2o=\r\nJQR24An2QGRZ Dk0YSrpr+iYeOYwxzpu+CSA3diDZXBkehuSlpkOWtiTdshn1fwjswPMmyi84oe=\r\nPsY3GkfFZ4LugI A/zJ+oh/U8aHIXmp6ZClDUk/OWSpQGAHnlEKTkCtrPRk3PR9SLr2aBkHtJn1=\r\nV5/Kf09SksOQvNR0 yJJUnCsxdb5G9gjswAvsgeS99Af8IcY4k/SpwVu4ER+swG9CCAMVJTCtOg=\r\nzJS42HLB2EEBZ9rmsn sAOvsKW/Q+VTooCesPZm3i/Cp9ARBnjE6qkXaulhSF5qPGRpS9Kir3Xt=\r\nBHbgDSy0D5VvBw90VEOd Y2rr8Qy0QZcOQ/JS0yFLmyo6yIwdr5ElAjvwRhZghpLOGr4V9M9Q9a=\r\n3wfLJyHACSrH7a+1CzGxWb S+fO13Flz46hfBs2bKioa2/lh826COzACmzp71jSP9RMqQJ6yEpT=\r\nhvIP7Rdtnd0DUrPNpQv516tf qQjrnVjVKm1GvXa+1FEIYdaXunYCO7CGGOOtlSr8Q8WMO+0f4c=\r\npegp59mG/aVDcLeLLNpXXUqzd6 GJKXGg9Z2lNRIjNwvk7jCOxABRbcj2OMAxU9ab/If1YBPWV7=\r\nKTw2dt2pmMEHUBioqJf2ktVhSF5q PGRp4HyNxr2r6Tq3IsSU/VLafx9d+DJv/b8PmwF9WNK0ne=\r\nwDFUuDsv89qPu+OqwTy8erijGe2BJw yk4Jx12b4Usk5XPpNuFYXZTbz3Pq9/Rjx10pgXlNjHFq=\r\npUWe5Xa5P78q/1mHf/7r30NJ3yuMcf3j 68dh1RsBAAAAumZn/3KoalmbkhgAAAAgZwR2AAAAIG=\r\nMEdgAAACBjBHYAAAAgYwR2AAAAIGMEdgAA ACBjBHYAAAAgYwR2AAAAIGMEdgAAACBjBHYAAAAg=\r\nYwR2AAAAIGMEdgAAACBjBHYAAAAgYwR2AAAA IGPvEoyxu7N/GROMAwAAAOARZtgBAACAjBHYAQ=\r\nAAgIwR2AEAAICMEdgBAACAjBHYAQAAgIwR2AEA AICMEdgBAACAjBHYAQAAgIwR2AEAAICMEdgB=\r\nAACAjBHYAQAAgIwR2AEAAICMEdgBAACAjBHYAQAA gIwR2AEAAICMvZN0K+lLw/cBAAAA4An/D+=\r\npVjENe+oQjAAAAAElFTkSuQmCC --b2=3D_A8XnifFXRzA0dUmkccjmOCoLbTFRFN7hRpd9cKY-=\r\n-</company_logo></p>\r\n--b2=_umIv8wt6HaFV1KXO8rssMAieLQxUAQNfpuIzUNLlUWM\r\nContent-Type: image/png; name=logo_1762869843.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <company_logo>\r\nContent-Disposition: inline; filename=logo_1762869843.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAuwAAACiCAYAAAAa7ZjJAAAACXBIWXMAAAsSAAALEgHS3X78AAAV\r\nP0lEQVR4nO3dT1LcStbG4Te/8BzvgOoVgGfNiLoroG40Mw8oVgBegfEKKFZAEdHMHOFiBS5GHrpY\r\nQcMK2qwgv4FO0TLmX5XySCnp90R0dIejndK9NtKrzJMnQ4xRAAAAAHzt7F+OJU0kbazy+/7P5W4A\r\nAAAAPNjZvzyRdK4Vw7okvUt+NwAAAAAkSTv7l+9VzKofrDsGgR0AAABwYGF9LmmryjiUxAAAAACJ\r\n7exfbktaqGJYlwjsAAAAQFI7+5cjFTPrmynGI7ADAAAAiezsXx5L+qY1Npc+hxp2AAAAIIGd/cup\r\nKmwufQ6BHQAAAKjANpfOJO16jE9JDAAAALAm21w6l1NYl5hhBwAAANays385VDGznqxe/SnMsAMA\r\nAAAr2tm/HEv6LuewLhHYAQAAgJXs7F9OJJ3XdT1KYgAAAIA3sM2lU0l7dV6XwA4AAAC8Ymf/cqCi\r\nXr3yyaWrIrADAAAALyh1gnGvV38KNewAAADAM2xz6U81FNYlAjsAAADwpJ39yxPVuLn0OZTEAAAA\r\nACW2uXQi6aDpe5EI7AAAAMADC+tzNbC59DmUxAAAAAB62Fx6q4zCukRgBwAAALSzfzlSg51gXkJg\r\nBwAAQK/t7F8eS/qmDMO6RA07AAAAemxn/3KqTDaXPofADgAAgN7JcXPpc8I///XvgaRxw/cBAAAA\r\nPOnH148nKcezzaVTtSCsS8UM+0DS54bvAwAAAHjsXtIo5YA7+5dDSTPVU69+Z/+9WWUQNp0CAAAg\r\nRzeShj++fpynGnBn/3Is6bvqCetXkpZtIiuhhh0AAAC5uZY0+vH1469UA9a8ufTTj68fJ3bdyoMR\r\n2AEAAJCTsx9fPx6nGsw2l84k7aYa8wV3Kj40FikHpSQGAAAAuThMHNYHKjrB1BHWryRtpw7rEjPs\r\nAAAAaN69inr1ZGHXOsHMVU+9+kMJjAdm2AEAANCkGyWembbNpT/lH9bvJH3wDOsSgR0AAADNuVIx\r\ns36basCd/cuJpPNU473ArQTmMUpiAAAA0ASPzaUT+XeCuZd04j2rXkZgBwAAQJ3uJR3/+PpxmmpA\r\nC+tz+Z9ceiNpXMesehmBHQAAAHVp8+bSCxUfGsl6w78VgR0AAAB1WJ5cmvIwpLGKMhjPsJ58RWBV\r\nbDoFAACAtwulD+vHKjaXeob15UfG1PEar2KGHQAAAJ6+/Pj68STlgDv7l1P5by5trATmMQI7AAAA\r\nPNyr2KA5SzVgTZtLU5fAVA78KQL7vaRad8oCAAAge8cOm0tnkjZTjfkEjy4wC0l7VQZIEdgXP75+\r\nHCYYBwAAAHjJ2Hn8RQ4lMI9REgMAAIDs1d37PCd0iQEAAAAyRmAHAAAAMkZgBwAAADJGYAcAAAAy\r\nRmAHAAAAMkZgBwAAADJGYAcAAAAyRmAHAAAAMkZgBwAAADJGYAcAAAAyRmAHAAAAMkZgBwAAADJG\r\nYAcAAAAyRmAHAAAAMkZgBwAAADJGYAcAAAAy9q6Oi4QQhpKGdVwLrbWQ9CvGOG/6RiQphHDS9D10\r\n1K39ZxFj/OVxgRDCSNK2x9iSJl73jW7+2YUQtiW9V3/fgdMY4+1r/6cQwljSINVFY4wnVX5/CGEg\r\naZzgVp4zizEuHMfPiv0cjBwv8aa/Z21WS2BX8aD6XNO10GIhBEm6kTRf/qehgMTfV2chhDsVH2oz\r\nFX/Ot4mGnkuaSNpMNF6ZZ6DsNXuhTyVtOAx/WNdzpBRMhpJ267hm5uYqPtJfM1baf18nFX//QL7v\r\ngeMQwnGMcep4jSzYx9i582Xmetvfs9aiJAY52pJ0JOmbpP+GEKa2SoNu2ZS0p+JB/p8QwiKEMA4h\r\nvK8yqAWzkaT7BPf42FYIYeowbq/Zn/lcPmH9wjsUhRAGIYRJCOFW0k8VQY+w3m638nmGLG1IOg8h\r\nTByv0agQwnt7XnqH9Tt1PKxLBHa0w4Gk7yGEW1syRzdtqXiw34YQTqoEd1tqHqe6sUcOQgjHTmP3\r\n1Vw+Yf06xjh2GFfSQ1CfSvqPikkGj1UdNMBW/AaSrp0vdWSTFZUmKnJjJUVzFe9vT1eStrteDiMR\r\n2NEum5K+hRDmtuyMbtpQMUNZ6QMtxjiT9CnZXf3ulFWfNCzwbjkMfSenmlmbOZyoCOregQQNiTH+\r\nijEOJZ05X2pLxfNu6HydWthzeyGfn+uyLzHGUV/2FRHY0Ua7kn4yy9l5Gyo+0Gbrzj7FGCeSLtLe\r\n1oMZH47V2M+wR+C9l+TyIrc/84WKGXX0QIzxWNKh/Etkvrf9vWYNG77JZ8Vs6V7S31U3FrcNgR1t\r\ndko9cS/sSZrbEus6jlVsZE5tQ9K0a0vZdbHZxFOn4cceHThs89xPUfrSO7YPYiifZ0nZaZVJiqbY\r\nqtNc/g0bblSUwMycr5MdAjva7oDQ3gtbkhbrzGjbLOtQTptQVXQ2wQrsz9HrhfvJ42VeU6cLZMw+\r\nAocq6qY9LScpWrGCV1p18t5ofSFp2Id69acQ2NEFhPZ+WHtG2zm079G3/+3sz28qv44wybtuWE0u\r\nYR3LuvaRpC/Ol9pSEdrHzteppMZVp8MY47gv9epPIbCjKw7oINMLa89o2+yYV33o59xfrBmZymcz\r\n2o1HRxgrxZqmHhftZvXTf6mnrR9rbNl4L+lDH/rVv4bAji6ZtK3uD2vZW7ebgj30vWbGJm1Zwm6K\r\nBY89h6Hv5HeS6Il8N9Chpexk7m3517Vn1fqxxpaN15IGfToR9iUEdnTJpnyPkkY+Ttb9jTYz5tE5\r\nZkNF55gsXqq5sRUIj84qnh1hBqJtI15g9dRD+XWjWsqi9aNdv46WjWcxxmGfS2AeI7Cja8ZN3wBq\r\nsVuha4zk1zlmU8XME0ps5cFrWf/YcQau1S32UA+rax+raP3oqdHWj7ZX57vqadnIz94j75q+gYqu\r\nVHzptcVQvruob+TXecHDttIvj2+FEAYJdpF7byjqk4GKA2xSP+RHWjMExhh/lQ73SH1fWyGEqecJ\r\nm21iKw5z+bzkvzjXtg4dxrxR8e+jLzOHt03fQF1ijNMQwkJ+f9+Xlge31bIJs7RR3KOcrexGTi1Z\r\nu6Ctgb21f6g20zRX2h/m5ZLwPOGYtbBZ0pnSLq8NVPEl0bcDGbzZA3+itOUFgyq/Oca4XF7+meRu\r\nfncQQpizUUqSX3i5qOHnNPWy/yF/J7otxrgovdc8J+iWrR9ds1CpBat3F5gr1fQB0lZtLYk5aWNY\r\nlx46VYwTDztpY1iXHur/6O7ScfYQPlbajgqVN3jaz6PXMvZ50/WmTbMuEi4dYdS+cpULwno/WInM\r\nUNKZ86VcWz/auHP5h/VPMUaXfShd0srA3oETrlL/pZwnHq9WfT0EoW/sYZzdh7aFKK8X66xirX1r\r\nWZ2tx4bNexWHp7Tt5X7b9A2gXlaHfagWtn4stWz0rlf/y+PshC5qZWAHgJTsxepxemEvO8fYysKp\r\nw9BtDevoKZsQGKqe1o/zqs+aEMLA6vC9uyPdqGjZOHe+TmcQ2AGgMJbPS3VLfh1SslOqefXg2REG\r\ncGF/Z4fymRQo21XR+nGtcsEaWzZexBi3+fBeDYEdAPRQsjOSz/L1gbVE67RSNwmPZfQzasDRVlbX\r\nPpJ/B7INST9Xbf1YY8vGQzporYfADgDGeRP0Z2sl2WVT+czOXdGXGV1gnY3+km9du1S0fpy+ViIT\r\nQngfQphJ+ux8P3cqytmmztfpLAI7AJRYTaVX55jpusvVubNNbx59mm/EgWjoEHvGbMu/rv1ARReZ\r\nJ5859usL+fdXv5K0TTlbNQR2AHjEZoE8jhrv5CZUa/925DD08owJal3RKbaaN5TPc6Zs2frxt9W9\r\nGls2fqFlYxoEdgB4gtVZXjsMval2nUj8IpulO3cafkjbV3SV1bWPJX1yvtSGpG/L1o81tmz8m0MI\r\n0yGwA8DzRvJZtt5N3Te5CbZSMHca/pAldPSB9SH/IP+69qMQwi/V07JxuwNn5mSFwA4Az7Bl3LF8\r\nXqRHXicU1qEU1ukIA1RkH6cD+de1e86qS0WJDytjDgjsAPACe5F6dXc5b/Em1InoCAMkYyUy2/I7\r\nednbYYxxTL26DwI7ALzCujp41ZlWPp2wbtbj2WNZnY4w6D37YD2Uf4lMKveSPrAq5utd0zcA5KgP\r\nh9w0ZND0Dawrxjix2fDUQXVDRWgftmFmyrpNnDoMfS+J2TlARaeqEMJCxQZ1704uVVyLTk61ILAD\r\nT/M+RAItFGMcW2hPXQqypaLEZJx43KTsn33qNPyITabA/8QYF6WfOe9e6es4o3ytPpTEAMBqhipO\r\n7UvtYNXjxOtkZTtT+WxaO7SyIwAlVtc+kvSl6XspWbZszPZ51UUEdgBYgS39juRTX3r6+ICTjMzk\r\ns8n0gtpX4GXWz/xvNV/XfqOiCwwtG2tGYAeAFVnpxthp+GlunWOsZ/yuw9DXdnAMgFdYSN6Wf+vH\r\n51ypCOuUrjWAwA4Aa7CXp0fnmA0VoT2LzjHWK/7IYegb+bXLBDrJ+psPVfQ7r9OnGCObSxtEYAeA\r\nNdkJhR4vzi35be58M5vpP3cYmo4wwJqsrn2s+mbaz+xZhwYR2AGgAscX556VojSidJKphzHL6sB6\r\nQgjvQwhz+ewpecpRk88iFAjsAFDdUD6bwY6sJKVWpbDu0RHmExvWgPXYqtdcPntKXnIUQmjdIW9d\r\nQmAHgIqstGMon9A+aWAT6kR+HWGYqQPWYB2k5qpvZv2xXUmL3DbF9wWBHQASsBIPj77Ey5NQa5nZ\r\nsl7wqU9zlaQbOsIA67HTt7/JZ9VrFZsqnkdsGK8ZgR0AErF+4h4HnGzIr578gb2ETx2GvlOxAgFg\r\nBVavPlVep29vSPpmHxGoCYEdABKyA05cOsfYi9tF6Qj01O4l0Q4OWFEIYaDiQ91jxSuFzyGEGXXt\r\n9XjX9A0APXCtGmZHW2KsYkm1645VHHCSutb0IISwSF0Hbi/cqXyW2+kIA6yotLm06RKY1+zJSmSs\r\nRzycENgBf3Obde29EMJQPQjsMcZf9s96q/Qv3FML7fOEY87ks5HtCx1hgNVYZyiP8w+8bKnYjDpK\r\n/FxCCSUxAOCg1DnGw8yWyyuz/soeLeIu+FAFVmNlb20K60sbkr7bpnU4ILADgBMrBTl0GHpDRWiv\r\nVDtqM3lHSe7odzfy6ZgDdJJtLl3Iv179znn8U8+9Nn1GYAcAR9Y55sxh6C1V2CRqNbIeM3n3koZs\r\nMgXexn4WF/Lvr/4pxjiQTyersoMQwoLNqGkR2AHAWYzxWNKVw9B767RWK51kmhphHViBrXLN5bu3\r\n517SX8vN6laq9rd8Dnpb2pJ0yyFL6RDYAaAeYxWlIql9tpf+m5TCukf3iWM6wgBvYx/b5/LtBHOj\r\n4iN6Xv5F2ww+lG+JzIakn6s8n/A8AjsA1MBmnUfymdWarDCTNZFfR5ipw7hAp1i9+kz+hyFdqQjr\r\nT35E269vq2g97OmcuvbqCOwAUBPrUzx0GPpNm1Ctg4PHprYrOsIAryv1V99zvtRZjPHVA8tijL9i\r\njEP5HPZWdhBCmFPXvj4COwDUyLFzzKZeqEsPIYwknTpc90ZFuQ+AF9jZDHP5bi69l3Ro+2beLMY4\r\nls9zqWxXRb926trXQGAHgJpZ6YjHjNbWU0vP9oL849cTuJf06iwe0He2uvVdvvXqy03f03V+s/2+\r\nD/LdjLqp4mTUseM1OonADgANsBktj9rRg/LL0Jagp/IJCkOOIwdeZh/RHqtbZTeSBlU3fZfq2j02\r\nyC9tqKhrP3G8RucQ2AGgOSP5vBjPS8vOM/kswR/SEQZ4Xo2HIV3EGLdTrXSV9tp417V/DiFUPgCu\r\nLwjsgL9R0zeAPNkLdiyfJei5daLYdRj7jI4wwPPsg/lW9RyGNE49qG1GHcv/kKU9Fc8q6tpfQWAH\r\nnpayVGHL6heBP9gstcdH3YZ8OlFcrbqhDegTK0n7Kf969YfDkLzUeMjS3Dbl4hnvmr4BIFOpN9Gd\r\nWmifJh63bQZN30COYozzEMKhikNUckZHGOAFIYSJpCPny9xIGtdVkhZjnFmYnsnvRNYNSd9DCJ+8\r\nP0LaisAOPG2m9LOTm/I/KAMtFWOc2kvRu951XfcqQgIdYYBHrA7bqwSt7EoN/BzGGJftGL3/GU/t\r\nOsc8a35HSQzwtJl8lwCBP1jNqGd3hipGbDIF/lQ6DMk7rL/pMCQvdR6ypKJEhs2oJQR24An2QGRZ\r\nDk0YSrpr+iYeOYwxzpu+CSA3diDZXBkehuSlpkOWtiTdshn1fwjswPMmyi84oePsY3GkfFZ4LugI\r\nA/zJ+oh/U8aHIXmp6ZClDUk/OWSpQGAHnlEKTkCtrPRk3PR9SLr2aBkHtJn1V5/Kf09SksOQvNR0\r\nyJJUnCsxdb5G9gjswAvsgeS99Af8IcY4k/SpwVu4ER+swG9CCAMVJTCtOgzJS42HLB2EEBZ9rmsn\r\nsAOvsKW/Q+VTooCesPZm3i/Cp9ARBnjE6qkXaulhSF5qPGRpS9Kir3XtBHbgDSy0D5VvBw90VEOd\r\nY2rr8Qy0QZcOQ/JS0yFLmyo6yIwdr5ElAjvwRhZghpLOGr4V9M9Q9a3wfLJyHACSrH7a+1CzGxWb\r\nS+fO13Flz46hfBs2bKioa2/lh826COzACmzp71jSP9RMqQJ6yEpThvIP7Rdtnd0DUrPNpQv516tf\r\nqQjrnVjVKm1GvXa+1FEIYdaXunYCO7CGGOOtlSr8Q8WMO+0f4cpegp59mG/aVDcLeLLNpXXUqzd6\r\nGJKXGg9Z2lNRIjNwvk7jCOxABRbcj2OMAxU9ab/If1YBPWV7KTw2dt2pmMEHUBioqJf2ktVhSF5q\r\nPGRp4HyNxr2r6Tq3IsSU/VLafx9d+DJv/b8PmwF9WNK0newDFUuDsv89qPu+OqwTy8erijGe2BJw\r\nyk4Jx12b4Usk5XPpNuFYXZTbz3Pq9/Rjx10pgXlNjHFqpUWe5Xa5P78q/1mHf/7r30NJ3yuMcf3j\r\n68dh1RsBAAAAumZn/3KoalmbkhgAAAAgZwR2AAAAIGMEdgAAACBjBHYAAAAgYwR2AAAAIGMEdgAA\r\nACBjBHYAAAAgYwR2AAAAIGMEdgAAACBjBHYAAAAgYwR2AAAAIGMEdgAAACBjBHYAAAAgYwR2AAAA\r\nIGPvEoyxu7N/GROMAwAAAOARZtgBAACAjBHYAQAAgIwR2AEAAICMEdgBAACAjBHYAQAAgIwR2AEA\r\nAICMEdgBAACAjBHYAQAAgIwR2AEAAICMEdgBAACAjBHYAQAAgIwR2AEAAICMEdgBAACAjBHYAQAA\r\ngIwR2AEAAICMvZN0K+lLw/cBAAAA4An/D+pVjENe+oQjAAAAAElFTkSuQmCC\r\n\r\n--b2=_umIv8wt6HaFV1KXO8rssMAieLQxUAQNfpuIzUNLlUWM--','\r\nTest\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nAdmin UserAdministrator\r\n\r\nadmin@mavrix.one\r\nMobile: 906-123-4567\r\nOffice: 906-555-4567\r\nhttps://mavrix1.com\r\n\r\n\r\n\r\n\r\n3900 W. Coachman Ave.Tampa, FL 33611\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE:This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n\r\n\r\n\r\n\r\n\r\n\r\nOn Dec 4, 2025, Mavrix1 wrote:\r\n--b2=_A8XnifFXRzA0dUmkccjmOCoLbTFRFN7hRpd9cKY Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable\r\nHey Admin!',0,0,0,0,0,0,'2025-12-04 12:01:24','2025-12-04 12:01:31','2025-12-04 12:01:31','2025-12-04 12:01:31',NULL,NULL,NULL),
(57,1,'<1764851691.1@erp>',NULL,NULL,'Test','admin@mavrix.one','Admin User','<p>See ya </p>\r\n<p></p>\r\n<table style=\"width: 100%; max-width: 600px; border-collapse: collapse; font-family: Helvetica, Arial, sans-serif;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 0; border-top: 3px solid #0066cc;\">\r\n<table style=\"width: 100%; border-collapse: collapse; padding-top: 15px;\">\r\n<tbody>\r\n<tr><!-- LEFT COLUMN -->\r\n<td style=\"vertical-align: top; padding-left: 20px; border-left: 2px solid #e0e0e0;\">\r\n<div style=\"margin-bottom: 10px;\"><strong style=\"font-size: 14px; color: #0066cc;\">Admin User</strong><br><span style=\"font-size: 12px; color: #666;\">Administrator</span></div>\r\n<div style=\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n<div><a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></div>\r\n<div>Mobile: 906-123-4567</div>\r\n<div>Office: 906-555-4567</div>\r\n<div><a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></div>\r\n</div>\r\n</td>\r\n<!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n<td style=\"width: 200px; vertical-align: middle; text-align: center; padding-top: 10px;\"><img src=\"cid:company_logo\" alt=\"Mavrix1\" style=\"max-width: 150px; height: auto; display: block; margin: 0 auto;\">\r\n<div style=\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1.3;\">3900 W. Coachman Ave.<br>Tampa, FL 33611</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n<div style=\"font-size: 9px; color: #888; line-height: 1.4;\"><strong>CONFIDENTIALITY NOTICE:</strong><br><em>This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.</em><br><br><em>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</em><br><br><em>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</em><br><br><em>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','See ya \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nAdmin UserAdministrator\r\n\r\nadmin@mavrix.one\r\nMobile: 906-123-4567\r\nOffice: 906-555-4567\r\nhttps://mavrix1.com\r\n\r\n\r\n\r\n\r\n3900 W. Coachman Ave.Tampa, FL 33611\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE:This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n\r\n\r\n\r\n',1,0,0,0,0,0,'2025-12-04 12:34:51','2025-12-04 12:34:51','2025-12-04 12:34:51','2025-12-04 12:34:51',NULL,NULL,NULL),
(58,1,'<wnivrE434LMeRopgRwsUIsPLKZ0jeArvOAgjrlU7U@localhost>',NULL,NULL,'Test','contact@mavrix.one','Mavrix1','--b2=_wnivrE434LMeRopgRwsUIsPLKZ0jeArvOAgjrlU7U\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Transfer-Encoding: quoted-printable\r\n\r\n<p>See ya=C2=A0</p>\r\n<p></p>\r\n<table style=3D\"width: 100%; max-width: 600px; border-collapse: collapse; f=\r\nont-family: Helvetica, Arial, sans-serif;\">\r\n<tbody>\r\n<tr>\r\n<td style=3D\"padding: 0; border-top: 3px solid #0066cc;\">\r\n<table style=3D\"width: 100%; border-collapse: collapse; padding-top: 15px;\"=\r\n>\r\n<tbody>\r\n<tr><!-- LEFT COLUMN -->\r\n<td style=3D\"vertical-align: top; padding-left: 20px; border-left: 2px soli=\r\nd #e0e0e0;\">\r\n<div style=3D\"margin-bottom: 10px;\"><strong style=3D\"font-size: 14px; color=\r\n: #0066cc;\">Admin User</strong><br><span style=3D\"font-size: 12px; color: #=\r\n666;\">Administrator</span></div>\r\n<div style=3D\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n<div><a href=3D\"mailto:admin@mavrix.one\" style=3D\"color: #0066cc; text-deco=\r\nration: none;\">admin@mavrix.one</a></div>\r\n<div>Mobile: 906-123-4567</div>\r\n<div>Office: 906-555-4567</div>\r\n<div><a href=3D\"https://mavrix1.com\" style=3D\"color: #0066cc; text-decorati=\r\non: none;\">https://mavrix1.com</a></div>\r\n</div>\r\n</td>\r\n<!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n<td style=3D\"width: 200px; vertical-align: middle; text-align: center; padd=\r\ning-top: 10px;\"><img src=3D\"cid:company_logo\" alt=3D\"Mavrix1\" style=3D\"max-=\r\nwidth: 150px; height: auto; display: block; margin: 0 auto;\">\r\n<div style=3D\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1=\r\n.3;\">3900 W. Coachman Ave.<br>Tampa, FL 33611</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=3D\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n<div style=3D\"font-size: 9px; color: #888; line-height: 1.4;\"><strong>CONFI=\r\nDENTIALITY NOTICE:</strong><br><em>This communication may contain confident=\r\nial information. Unauthorized review, use, disclosure, or distribution is p=\r\nrohibited.</em><br><br><em>This communication, including any attachments, m=\r\nay contain confidential, privileged, or Controlled Unclassified Information=\r\n (CUI) protected under federal law. It is intended solely for the use of th=\r\ne designated recipient(s). Any unauthorized review, use, disclosure, distri=\r\nbution, or copying is strictly prohibited and may be unlawful.</em><br><br>=\r\n<em>If you are not the intended recipient, please notify the sender immedia=\r\ntely, delete this email, and destroy all copies.</em><br><br><em>Unless exp=\r\nressly stated, the views and opinions expressed herein are those of the sen=\r\nder and do not necessarily reflect those of the sender=E2=80=99s employer o=\r\nr any U.S. Government agency. All recipients are responsible for handling i=\r\nnformation in accordance with applicable federal regulations, including but=\r\n not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n--b2=_wnivrE434LMeRopgRwsUIsPLKZ0jeArvOAgjrlU7U\r\nContent-Type: image/png; name=logo_1762869843.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <company_logo>\r\nContent-Disposition: inline; filename=logo_1762869843.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAuwAAACiCAYAAAAa7ZjJAAAACXBIWXMAAAsSAAALEgHS3X78AAAV\r\nP0lEQVR4nO3dT1LcStbG4Te/8BzvgOoVgGfNiLoroG40Mw8oVgBegfEKKFZAEdHMHOFiBS5GHrpY\r\nQcMK2qwgv4FO0TLmX5XySCnp90R0dIejndK9NtKrzJMnQ4xRAAAAAHzt7F+OJU0kbazy+/7P5W4A\r\nAAAAPNjZvzyRdK4Vw7okvUt+NwAAAAAkSTv7l+9VzKofrDsGgR0AAABwYGF9LmmryjiUxAAAAACJ\r\n7exfbktaqGJYlwjsAAAAQFI7+5cjFTPrmynGI7ADAAAAiezsXx5L+qY1Npc+hxp2AAAAIIGd/cup\r\nKmwufQ6BHQAAAKjANpfOJO16jE9JDAAAALAm21w6l1NYl5hhBwAAANays385VDGznqxe/SnMsAMA\r\nAAAr2tm/HEv6LuewLhHYAQAAgJXs7F9OJJ3XdT1KYgAAAIA3sM2lU0l7dV6XwA4AAAC8Ymf/cqCi\r\nXr3yyaWrIrADAAAALyh1gnGvV38KNewAAADAM2xz6U81FNYlAjsAAADwpJ39yxPVuLn0OZTEAAAA\r\nACW2uXQi6aDpe5EI7AAAAMADC+tzNbC59DmUxAAAAAB62Fx6q4zCukRgBwAAALSzfzlSg51gXkJg\r\nBwAAQK/t7F8eS/qmDMO6RA07AAAAemxn/3KqTDaXPofADgAAgN7JcXPpc8I///XvgaRxw/cBAAAA\r\nPOnH148nKcezzaVTtSCsS8UM+0DS54bvAwAAAHjsXtIo5YA7+5dDSTPVU69+Z/+9WWUQNp0CAAAg\r\nRzeShj++fpynGnBn/3Is6bvqCetXkpZtIiuhhh0AAAC5uZY0+vH1469UA9a8ufTTj68fJ3bdyoMR\r\n2AEAAJCTsx9fPx6nGsw2l84k7aYa8wV3Kj40FikHpSQGAAAAuThMHNYHKjrB1BHWryRtpw7rEjPs\r\nAAAAaN69inr1ZGHXOsHMVU+9+kMJjAdm2AEAANCkGyWembbNpT/lH9bvJH3wDOsSgR0AAADNuVIx\r\ns36basCd/cuJpPNU473ArQTmMUpiAAAA0ASPzaUT+XeCuZd04j2rXkZgBwAAQJ3uJR3/+PpxmmpA\r\nC+tz+Z9ceiNpXMesehmBHQAAAHVp8+bSCxUfGsl6w78VgR0AAAB1WJ5cmvIwpLGKMhjPsJ58RWBV\r\nbDoFAACAtwulD+vHKjaXeob15UfG1PEar2KGHQAAAJ6+/Pj68STlgDv7l1P5by5trATmMQI7AAAA\r\nPNyr2KA5SzVgTZtLU5fAVA78KQL7vaRad8oCAAAge8cOm0tnkjZTjfkEjy4wC0l7VQZIEdgXP75+\r\nHCYYBwAAAHjJ2Hn8RQ4lMI9REgMAAIDs1d37PCd0iQEAAAAyRmAHAAAAMkZgBwAAADJGYAcAAAAy\r\nRmAHAAAAMkZgBwAAADJGYAcAAAAyRmAHAAAAMkZgBwAAADJGYAcAAAAyRmAHAAAAMkZgBwAAADJG\r\nYAcAAAAyRmAHAAAAMkZgBwAAADJGYAcAAAAy9q6Oi4QQhpKGdVwLrbWQ9CvGOG/6RiQphHDS9D10\r\n1K39ZxFj/OVxgRDCSNK2x9iSJl73jW7+2YUQtiW9V3/fgdMY4+1r/6cQwljSINVFY4wnVX5/CGEg\r\naZzgVp4zizEuHMfPiv0cjBwv8aa/Z21WS2BX8aD6XNO10GIhBEm6kTRf/qehgMTfV2chhDsVH2oz\r\nFX/Ot4mGnkuaSNpMNF6ZZ6DsNXuhTyVtOAx/WNdzpBRMhpJ267hm5uYqPtJfM1baf18nFX//QL7v\r\ngeMQwnGMcep4jSzYx9i582Xmetvfs9aiJAY52pJ0JOmbpP+GEKa2SoNu2ZS0p+JB/p8QwiKEMA4h\r\nvK8yqAWzkaT7BPf42FYIYeowbq/Zn/lcPmH9wjsUhRAGIYRJCOFW0k8VQY+w3m638nmGLG1IOg8h\r\nTByv0agQwnt7XnqH9Tt1PKxLBHa0w4Gk7yGEW1syRzdtqXiw34YQTqoEd1tqHqe6sUcOQgjHTmP3\r\n1Vw+Yf06xjh2GFfSQ1CfSvqPikkGj1UdNMBW/AaSrp0vdWSTFZUmKnJjJUVzFe9vT1eStrteDiMR\r\n2NEum5K+hRDmtuyMbtpQMUNZ6QMtxjiT9CnZXf3ulFWfNCzwbjkMfSenmlmbOZyoCOregQQNiTH+\r\nijEOJZ05X2pLxfNu6HydWthzeyGfn+uyLzHGUV/2FRHY0Ua7kn4yy9l5Gyo+0Gbrzj7FGCeSLtLe\r\n1oMZH47V2M+wR+C9l+TyIrc/84WKGXX0QIzxWNKh/Etkvrf9vWYNG77JZ8Vs6V7S31U3FrcNgR1t\r\ndko9cS/sSZrbEus6jlVsZE5tQ9K0a0vZdbHZxFOn4cceHThs89xPUfrSO7YPYiifZ0nZaZVJiqbY\r\nqtNc/g0bblSUwMycr5MdAjva7oDQ3gtbkhbrzGjbLOtQTptQVXQ2wQrsz9HrhfvJ42VeU6cLZMw+\r\nAocq6qY9LScpWrGCV1p18t5ofSFp2Id69acQ2NEFhPZ+WHtG2zm079G3/+3sz28qv44wybtuWE0u\r\nYR3LuvaRpC/Ol9pSEdrHzteppMZVp8MY47gv9epPIbCjKw7oINMLa89o2+yYV33o59xfrBmZymcz\r\n2o1HRxgrxZqmHhftZvXTf6mnrR9rbNl4L+lDH/rVv4bAji6ZtK3uD2vZW7ebgj30vWbGJm1Zwm6K\r\nBY89h6Hv5HeS6Il8N9Chpexk7m3517Vn1fqxxpaN15IGfToR9iUEdnTJpnyPkkY+Ttb9jTYz5tE5\r\nZkNF55gsXqq5sRUIj84qnh1hBqJtI15g9dRD+XWjWsqi9aNdv46WjWcxxmGfS2AeI7Cja8ZN3wBq\r\nsVuha4zk1zlmU8XME0ps5cFrWf/YcQau1S32UA+rax+raP3oqdHWj7ZX57vqadnIz94j75q+gYqu\r\nVHzptcVQvruob+TXecHDttIvj2+FEAYJdpF7byjqk4GKA2xSP+RHWjMExhh/lQ73SH1fWyGEqecJ\r\nm21iKw5z+bzkvzjXtg4dxrxR8e+jLzOHt03fQF1ijNMQwkJ+f9+Xlge31bIJs7RR3KOcrexGTi1Z\r\nu6Ctgb21f6g20zRX2h/m5ZLwPOGYtbBZ0pnSLq8NVPEl0bcDGbzZA3+itOUFgyq/Oca4XF7+meRu\r\nfncQQpizUUqSX3i5qOHnNPWy/yF/J7otxrgovdc8J+iWrR9ds1CpBat3F5gr1fQB0lZtLYk5aWNY\r\nlx46VYwTDztpY1iXHur/6O7ScfYQPlbajgqVN3jaz6PXMvZ50/WmTbMuEi4dYdS+cpULwno/WInM\r\nUNKZ86VcWz/auHP5h/VPMUaXfShd0srA3oETrlL/pZwnHq9WfT0EoW/sYZzdh7aFKK8X66xirX1r\r\nWZ2tx4bNexWHp7Tt5X7b9A2gXlaHfagWtn4stWz0rlf/y+PshC5qZWAHgJTsxepxemEvO8fYysKp\r\nw9BtDevoKZsQGKqe1o/zqs+aEMLA6vC9uyPdqGjZOHe+TmcQ2AGgMJbPS3VLfh1SslOqefXg2REG\r\ncGF/Z4fymRQo21XR+nGtcsEaWzZexBi3+fBeDYEdAPRQsjOSz/L1gbVE67RSNwmPZfQzasDRVlbX\r\nPpJ/B7INST9Xbf1YY8vGQzporYfADgDGeRP0Z2sl2WVT+czOXdGXGV1gnY3+km9du1S0fpy+ViIT\r\nQngfQphJ+ux8P3cqytmmztfpLAI7AJRYTaVX55jpusvVubNNbx59mm/EgWjoEHvGbMu/rv1ARReZ\r\nJ5859usL+fdXv5K0TTlbNQR2AHjEZoE8jhrv5CZUa/925DD08owJal3RKbaaN5TPc6Zs2frxt9W9\r\nGls2fqFlYxoEdgB4gtVZXjsMval2nUj8IpulO3cafkjbV3SV1bWPJX1yvtSGpG/L1o81tmz8m0MI\r\n0yGwA8DzRvJZtt5N3Te5CbZSMHca/pAldPSB9SH/IP+69qMQwi/V07JxuwNn5mSFwA4Az7Bl3LF8\r\nXqRHXicU1qEU1ukIA1RkH6cD+de1e86qS0WJDytjDgjsAPACe5F6dXc5b/Em1InoCAMkYyUy2/I7\r\nednbYYxxTL26DwI7ALzCujp41ZlWPp2wbtbj2WNZnY4w6D37YD2Uf4lMKveSPrAq5utd0zcA5KgP\r\nh9w0ZND0Dawrxjix2fDUQXVDRWgftmFmyrpNnDoMfS+J2TlARaeqEMJCxQZ1704uVVyLTk61ILAD\r\nT/M+RAItFGMcW2hPXQqypaLEZJx43KTsn33qNPyITabA/8QYF6WfOe9e6es4o3ytPpTEAMBqhipO\r\n7UvtYNXjxOtkZTtT+WxaO7SyIwAlVtc+kvSl6XspWbZszPZ51UUEdgBYgS39juRTX3r6+ICTjMzk\r\ns8n0gtpX4GXWz/xvNV/XfqOiCwwtG2tGYAeAFVnpxthp+GlunWOsZ/yuw9DXdnAMgFdYSN6Wf+vH\r\n51ypCOuUrjWAwA4Aa7CXp0fnmA0VoT2LzjHWK/7IYegb+bXLBDrJ+psPVfQ7r9OnGCObSxtEYAeA\r\nNdkJhR4vzi35be58M5vpP3cYmo4wwJqsrn2s+mbaz+xZhwYR2AGgAscX556VojSidJKphzHL6sB6\r\nQgjvQwhz+ewpecpRk88iFAjsAFDdUD6bwY6sJKVWpbDu0RHmExvWgPXYqtdcPntKXnIUQmjdIW9d\r\nQmAHgIqstGMon9A+aWAT6kR+HWGYqQPWYB2k5qpvZv2xXUmL3DbF9wWBHQASsBIPj77Ey5NQa5nZ\r\nsl7wqU9zlaQbOsIA67HTt7/JZ9VrFZsqnkdsGK8ZgR0AErF+4h4HnGzIr578gb2ETx2GvlOxAgFg\r\nBVavPlVep29vSPpmHxGoCYEdABKyA05cOsfYi9tF6Qj01O4l0Q4OWFEIYaDiQ91jxSuFzyGEGXXt\r\n9XjX9A0APXCtGmZHW2KsYkm1645VHHCSutb0IISwSF0Hbi/cqXyW2+kIA6yotLm06RKY1+zJSmSs\r\nRzycENgBf3Obde29EMJQPQjsMcZf9s96q/Qv3FML7fOEY87ks5HtCx1hgNVYZyiP8w+8bKnYjDpK\r\n/FxCCSUxAOCg1DnGw8yWyyuz/soeLeIu+FAFVmNlb20K60sbkr7bpnU4ILADgBMrBTl0GHpDRWiv\r\nVDtqM3lHSe7odzfy6ZgDdJJtLl3Iv179znn8U8+9Nn1GYAcAR9Y55sxh6C1V2CRqNbIeM3n3koZs\r\nMgXexn4WF/Lvr/4pxjiQTyersoMQwoLNqGkR2AHAWYzxWNKVw9B767RWK51kmhphHViBrXLN5bu3\r\n517SX8vN6laq9rd8Dnpb2pJ0yyFL6RDYAaAeYxWlIql9tpf+m5TCukf3iWM6wgBvYx/b5/LtBHOj\r\n4iN6Xv5F2ww+lG+JzIakn6s8n/A8AjsA1MBmnUfymdWarDCTNZFfR5ipw7hAp1i9+kz+hyFdqQjr\r\nT35E269vq2g97OmcuvbqCOwAUBPrUzx0GPpNm1Ctg4PHprYrOsIAryv1V99zvtRZjPHVA8tijL9i\r\njEP5HPZWdhBCmFPXvj4COwDUyLFzzKZeqEsPIYwknTpc90ZFuQ+AF9jZDHP5bi69l3Ro+2beLMY4\r\nls9zqWxXRb926trXQGAHgJpZ6YjHjNbWU0vP9oL849cTuJf06iwe0He2uvVdvvXqy03f03V+s/2+\r\nD/LdjLqp4mTUseM1OonADgANsBktj9rRg/LL0Jagp/IJCkOOIwdeZh/RHqtbZTeSBlU3fZfq2j02\r\nyC9tqKhrP3G8RucQ2AGgOSP5vBjPS8vOM/kswR/SEQZ4Xo2HIV3EGLdTrXSV9tp417V/DiFUPgCu\r\nLwjsgL9R0zeAPNkLdiyfJei5daLYdRj7jI4wwPPsg/lW9RyGNE49qG1GHcv/kKU9Fc8q6tpfQWAH\r\nnpayVGHL6heBP9gstcdH3YZ8OlFcrbqhDegTK0n7Kf969YfDkLzUeMjS3Dbl4hnvmr4BIFOpN9Gd\r\nWmifJh63bQZN30COYozzEMKhikNUckZHGOAFIYSJpCPny9xIGtdVkhZjnFmYnsnvRNYNSd9DCJ+8\r\nP0LaisAOPG2m9LOTm/I/KAMtFWOc2kvRu951XfcqQgIdYYBHrA7bqwSt7EoN/BzGGJftGL3/GU/t\r\nOsc8a35HSQzwtJl8lwCBP1jNqGd3hipGbDIF/lQ6DMk7rL/pMCQvdR6ypKJEhs2oJQR24An2QGRZ\r\nDk0YSrpr+iYeOYwxzpu+CSA3diDZXBkehuSlpkOWtiTdshn1fwjswPMmyi84oePsY3GkfFZ4LugI\r\nA/zJ+oh/U8aHIXmp6ZClDUk/OWSpQGAHnlEKTkCtrPRk3PR9SLr2aBkHtJn1V5/Kf09SksOQvNR0\r\nyJJUnCsxdb5G9gjswAvsgeS99Af8IcY4k/SpwVu4ER+swG9CCAMVJTCtOgzJS42HLB2EEBZ9rmsn\r\nsAOvsKW/Q+VTooCesPZm3i/Cp9ARBnjE6qkXaulhSF5qPGRpS9Kir3XtBHbgDSy0D5VvBw90VEOd\r\nY2rr8Qy0QZcOQ/JS0yFLmyo6yIwdr5ElAjvwRhZghpLOGr4V9M9Q9a3wfLJyHACSrH7a+1CzGxWb\r\nS+fO13Flz46hfBs2bKioa2/lh826COzACmzp71jSP9RMqQJ6yEpThvIP7Rdtnd0DUrPNpQv516tf\r\nqQjrnVjVKm1GvXa+1FEIYdaXunYCO7CGGOOtlSr8Q8WMO+0f4cpegp59mG/aVDcLeLLNpXXUqzd6\r\nGJKXGg9Z2lNRIjNwvk7jCOxABRbcj2OMAxU9ab/If1YBPWV7KTw2dt2pmMEHUBioqJf2ktVhSF5q\r\nPGRp4HyNxr2r6Tq3IsSU/VLafx9d+DJv/b8PmwF9WNK0newDFUuDsv89qPu+OqwTy8erijGe2BJw\r\nyk4Jx12b4Usk5XPpNuFYXZTbz3Pq9/Rjx10pgXlNjHFqpUWe5Xa5P78q/1mHf/7r30NJ3yuMcf3j\r\n68dh1RsBAAAAumZn/3KoalmbkhgAAAAgZwR2AAAAIGMEdgAAACBjBHYAAAAgYwR2AAAAIGMEdgAA\r\nACBjBHYAAAAgYwR2AAAAIGMEdgAAACBjBHYAAAAgYwR2AAAAIGMEdgAAACBjBHYAAAAgYwR2AAAA\r\nIGPvEoyxu7N/GROMAwAAAOARZtgBAACAjBHYAQAAgIwR2AEAAICMEdgBAACAjBHYAQAAgIwR2AEA\r\nAICMEdgBAACAjBHYAQAAgIwR2AEAAICMEdgBAACAjBHYAQAAgIwR2AEAAICMEdgBAACAjBHYAQAA\r\ngIwR2AEAAICMvZN0K+lLw/cBAAAA4An/D+pVjENe+oQjAAAAAElFTkSuQmCC\r\n\r\n--b2=_wnivrE434LMeRopgRwsUIsPLKZ0jeArvOAgjrlU7U--','See ya \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nAdmin UserAdministrator\r\n\r\nadmin@mavrix.one\r\nMobile: 906-123-4567\r\nOffice: 906-555-4567\r\nhttps://mavrix1.com\r\n\r\n\r\n\r\n\r\n3900 W. Coachman Ave.Tampa, FL 33611\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE:This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.',1,0,0,0,0,0,'2025-12-04 12:34:50','2025-12-04 12:35:11','2025-12-04 12:35:11','2025-12-04 12:35:15',NULL,NULL,NULL),
(59,1,'<1764852353.1@erp>',NULL,NULL,'Test to Admin','admin@mavrix.one','Admin User','<p>Hey y\'all Admin dudeds,<br>What\'s Up???</p>\r\n<p></p>\r\n<table style=\"width: 100%; max-width: 600px; border-collapse: collapse; font-family: Helvetica, Arial, sans-serif;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 0; border-top: 3px solid #0066cc;\">\r\n<table style=\"width: 100%; border-collapse: collapse; padding-top: 15px;\">\r\n<tbody>\r\n<tr><!-- LEFT COLUMN -->\r\n<td style=\"vertical-align: top; padding-left: 20px; border-left: 2px solid #e0e0e0;\">\r\n<div style=\"margin-bottom: 10px;\"><strong style=\"font-size: 14px; color: #0066cc;\">Admin User</strong><br><span style=\"font-size: 12px; color: #666;\">Administrator</span></div>\r\n<div style=\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n<div><a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></div>\r\n<div>Mobile: 906-123-4567</div>\r\n<div>Office: 906-555-4567</div>\r\n<div><a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></div>\r\n</div>\r\n</td>\r\n<!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n<td style=\"width: 200px; vertical-align: middle; text-align: center; padding-top: 10px;\"><img src=\"cid:company_logo\" alt=\"Mavrix1\" style=\"max-width: 150px; height: auto; display: block; margin: 0 auto;\">\r\n<div style=\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1.3;\">3900 W. Coachman Ave.<br>Tampa, FL 33611</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n<div style=\"font-size: 9px; color: #888; line-height: 1.4;\"><strong>CONFIDENTIALITY NOTICE:</strong><br><em>This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.</em><br><br><em>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</em><br><br><em>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</em><br><br><em>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Hey y\'all Admin dudeds,What\'s Up???\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nAdmin UserAdministrator\r\n\r\nadmin@mavrix.one\r\nMobile: 906-123-4567\r\nOffice: 906-555-4567\r\nhttps://mavrix1.com\r\n\r\n\r\n\r\n\r\n3900 W. Coachman Ave.Tampa, FL 33611\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE:This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n\r\n\r\n\r\n',1,0,0,0,0,0,'2025-12-04 12:45:53','2025-12-04 12:45:53','2025-12-04 12:45:53','2025-12-04 12:45:53',NULL,NULL,NULL),
(60,1,'<pzqsjAwYuwiue7B4v1apfwkBlj7ytnZ8PijSK3qggNw@localhost>',NULL,NULL,'Test to Admin','contact@mavrix.one','Mavrix1','--b2=_pzqsjAwYuwiue7B4v1apfwkBlj7ytnZ8PijSK3qggNw\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Transfer-Encoding: quoted-printable\r\n\r\n<p>Hey y\'all Admin dudeds,<br>What\'s Up???</p>\r\n<p></p>\r\n<table style=3D\"width: 100%; max-width: 600px; border-collapse: collapse; f=\r\nont-family: Helvetica, Arial, sans-serif;\">\r\n<tbody>\r\n<tr>\r\n<td style=3D\"padding: 0; border-top: 3px solid #0066cc;\">\r\n<table style=3D\"width: 100%; border-collapse: collapse; padding-top: 15px;\"=\r\n>\r\n<tbody>\r\n<tr><!-- LEFT COLUMN -->\r\n<td style=3D\"vertical-align: top; padding-left: 20px; border-left: 2px soli=\r\nd #e0e0e0;\">\r\n<div style=3D\"margin-bottom: 10px;\"><strong style=3D\"font-size: 14px; color=\r\n: #0066cc;\">Admin User</strong><br><span style=3D\"font-size: 12px; color: #=\r\n666;\">Administrator</span></div>\r\n<div style=3D\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n<div><a href=3D\"mailto:admin@mavrix.one\" style=3D\"color: #0066cc; text-deco=\r\nration: none;\">admin@mavrix.one</a></div>\r\n<div>Mobile: 906-123-4567</div>\r\n<div>Office: 906-555-4567</div>\r\n<div><a href=3D\"https://mavrix1.com\" style=3D\"color: #0066cc; text-decorati=\r\non: none;\">https://mavrix1.com</a></div>\r\n</div>\r\n</td>\r\n<!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n<td style=3D\"width: 200px; vertical-align: middle; text-align: center; padd=\r\ning-top: 10px;\"><img src=3D\"cid:company_logo\" alt=3D\"Mavrix1\" style=3D\"max-=\r\nwidth: 150px; height: auto; display: block; margin: 0 auto;\">\r\n<div style=3D\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1=\r\n.3;\">3900 W. Coachman Ave.<br>Tampa, FL 33611</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=3D\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n<div style=3D\"font-size: 9px; color: #888; line-height: 1.4;\"><strong>CONFI=\r\nDENTIALITY NOTICE:</strong><br><em>This communication may contain confident=\r\nial information. Unauthorized review, use, disclosure, or distribution is p=\r\nrohibited.</em><br><br><em>This communication, including any attachments, m=\r\nay contain confidential, privileged, or Controlled Unclassified Information=\r\n (CUI) protected under federal law. It is intended solely for the use of th=\r\ne designated recipient(s). Any unauthorized review, use, disclosure, distri=\r\nbution, or copying is strictly prohibited and may be unlawful.</em><br><br>=\r\n<em>If you are not the intended recipient, please notify the sender immedia=\r\ntely, delete this email, and destroy all copies.</em><br><br><em>Unless exp=\r\nressly stated, the views and opinions expressed herein are those of the sen=\r\nder and do not necessarily reflect those of the sender=E2=80=99s employer o=\r\nr any U.S. Government agency. All recipients are responsible for handling i=\r\nnformation in accordance with applicable federal regulations, including but=\r\n not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n--b2=_pzqsjAwYuwiue7B4v1apfwkBlj7ytnZ8PijSK3qggNw\r\nContent-Type: image/png; name=logo_1762869843.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <company_logo>\r\nContent-Disposition: inline; filename=logo_1762869843.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAuwAAACiCAYAAAAa7ZjJAAAACXBIWXMAAAsSAAALEgHS3X78AAAV\r\nP0lEQVR4nO3dT1LcStbG4Te/8BzvgOoVgGfNiLoroG40Mw8oVgBegfEKKFZAEdHMHOFiBS5GHrpY\r\nQcMK2qwgv4FO0TLmX5XySCnp90R0dIejndK9NtKrzJMnQ4xRAAAAAHzt7F+OJU0kbazy+/7P5W4A\r\nAAAAPNjZvzyRdK4Vw7okvUt+NwAAAAAkSTv7l+9VzKofrDsGgR0AAABwYGF9LmmryjiUxAAAAACJ\r\n7exfbktaqGJYlwjsAAAAQFI7+5cjFTPrmynGI7ADAAAAiezsXx5L+qY1Npc+hxp2AAAAIIGd/cup\r\nKmwufQ6BHQAAAKjANpfOJO16jE9JDAAAALAm21w6l1NYl5hhBwAAANays385VDGznqxe/SnMsAMA\r\nAAAr2tm/HEv6LuewLhHYAQAAgJXs7F9OJJ3XdT1KYgAAAIA3sM2lU0l7dV6XwA4AAAC8Ymf/cqCi\r\nXr3yyaWrIrADAAAALyh1gnGvV38KNewAAADAM2xz6U81FNYlAjsAAADwpJ39yxPVuLn0OZTEAAAA\r\nACW2uXQi6aDpe5EI7AAAAMADC+tzNbC59DmUxAAAAAB62Fx6q4zCukRgBwAAALSzfzlSg51gXkJg\r\nBwAAQK/t7F8eS/qmDMO6RA07AAAAemxn/3KqTDaXPofADgAAgN7JcXPpc8I///XvgaRxw/cBAAAA\r\nPOnH148nKcezzaVTtSCsS8UM+0DS54bvAwAAAHjsXtIo5YA7+5dDSTPVU69+Z/+9WWUQNp0CAAAg\r\nRzeShj++fpynGnBn/3Is6bvqCetXkpZtIiuhhh0AAAC5uZY0+vH1469UA9a8ufTTj68fJ3bdyoMR\r\n2AEAAJCTsx9fPx6nGsw2l84k7aYa8wV3Kj40FikHpSQGAAAAuThMHNYHKjrB1BHWryRtpw7rEjPs\r\nAAAAaN69inr1ZGHXOsHMVU+9+kMJjAdm2AEAANCkGyWembbNpT/lH9bvJH3wDOsSgR0AAADNuVIx\r\ns36basCd/cuJpPNU473ArQTmMUpiAAAA0ASPzaUT+XeCuZd04j2rXkZgBwAAQJ3uJR3/+PpxmmpA\r\nC+tz+Z9ceiNpXMesehmBHQAAAHVp8+bSCxUfGsl6w78VgR0AAAB1WJ5cmvIwpLGKMhjPsJ58RWBV\r\nbDoFAACAtwulD+vHKjaXeob15UfG1PEar2KGHQAAAJ6+/Pj68STlgDv7l1P5by5trATmMQI7AAAA\r\nPNyr2KA5SzVgTZtLU5fAVA78KQL7vaRad8oCAAAge8cOm0tnkjZTjfkEjy4wC0l7VQZIEdgXP75+\r\nHCYYBwAAAHjJ2Hn8RQ4lMI9REgMAAIDs1d37PCd0iQEAAAAyRmAHAAAAMkZgBwAAADJGYAcAAAAy\r\nRmAHAAAAMkZgBwAAADJGYAcAAAAyRmAHAAAAMkZgBwAAADJGYAcAAAAyRmAHAAAAMkZgBwAAADJG\r\nYAcAAAAyRmAHAAAAMkZgBwAAADJGYAcAAAAy9q6Oi4QQhpKGdVwLrbWQ9CvGOG/6RiQphHDS9D10\r\n1K39ZxFj/OVxgRDCSNK2x9iSJl73jW7+2YUQtiW9V3/fgdMY4+1r/6cQwljSINVFY4wnVX5/CGEg\r\naZzgVp4zizEuHMfPiv0cjBwv8aa/Z21WS2BX8aD6XNO10GIhBEm6kTRf/qehgMTfV2chhDsVH2oz\r\nFX/Ot4mGnkuaSNpMNF6ZZ6DsNXuhTyVtOAx/WNdzpBRMhpJ267hm5uYqPtJfM1baf18nFX//QL7v\r\ngeMQwnGMcep4jSzYx9i582Xmetvfs9aiJAY52pJ0JOmbpP+GEKa2SoNu2ZS0p+JB/p8QwiKEMA4h\r\nvK8yqAWzkaT7BPf42FYIYeowbq/Zn/lcPmH9wjsUhRAGIYRJCOFW0k8VQY+w3m638nmGLG1IOg8h\r\nTByv0agQwnt7XnqH9Tt1PKxLBHa0w4Gk7yGEW1syRzdtqXiw34YQTqoEd1tqHqe6sUcOQgjHTmP3\r\n1Vw+Yf06xjh2GFfSQ1CfSvqPikkGj1UdNMBW/AaSrp0vdWSTFZUmKnJjJUVzFe9vT1eStrteDiMR\r\n2NEum5K+hRDmtuyMbtpQMUNZ6QMtxjiT9CnZXf3ulFWfNCzwbjkMfSenmlmbOZyoCOregQQNiTH+\r\nijEOJZ05X2pLxfNu6HydWthzeyGfn+uyLzHGUV/2FRHY0Ua7kn4yy9l5Gyo+0Gbrzj7FGCeSLtLe\r\n1oMZH47V2M+wR+C9l+TyIrc/84WKGXX0QIzxWNKh/Etkvrf9vWYNG77JZ8Vs6V7S31U3FrcNgR1t\r\ndko9cS/sSZrbEus6jlVsZE5tQ9K0a0vZdbHZxFOn4cceHThs89xPUfrSO7YPYiifZ0nZaZVJiqbY\r\nqtNc/g0bblSUwMycr5MdAjva7oDQ3gtbkhbrzGjbLOtQTptQVXQ2wQrsz9HrhfvJ42VeU6cLZMw+\r\nAocq6qY9LScpWrGCV1p18t5ofSFp2Id69acQ2NEFhPZ+WHtG2zm079G3/+3sz28qv44wybtuWE0u\r\nYR3LuvaRpC/Ol9pSEdrHzteppMZVp8MY47gv9epPIbCjKw7oINMLa89o2+yYV33o59xfrBmZymcz\r\n2o1HRxgrxZqmHhftZvXTf6mnrR9rbNl4L+lDH/rVv4bAji6ZtK3uD2vZW7ebgj30vWbGJm1Zwm6K\r\nBY89h6Hv5HeS6Il8N9Chpexk7m3517Vn1fqxxpaN15IGfToR9iUEdnTJpnyPkkY+Ttb9jTYz5tE5\r\nZkNF55gsXqq5sRUIj84qnh1hBqJtI15g9dRD+XWjWsqi9aNdv46WjWcxxmGfS2AeI7Cja8ZN3wBq\r\nsVuha4zk1zlmU8XME0ps5cFrWf/YcQau1S32UA+rax+raP3oqdHWj7ZX57vqadnIz94j75q+gYqu\r\nVHzptcVQvruob+TXecHDttIvj2+FEAYJdpF7byjqk4GKA2xSP+RHWjMExhh/lQ73SH1fWyGEqecJ\r\nm21iKw5z+bzkvzjXtg4dxrxR8e+jLzOHt03fQF1ijNMQwkJ+f9+Xlge31bIJs7RR3KOcrexGTi1Z\r\nu6Ctgb21f6g20zRX2h/m5ZLwPOGYtbBZ0pnSLq8NVPEl0bcDGbzZA3+itOUFgyq/Oca4XF7+meRu\r\nfncQQpizUUqSX3i5qOHnNPWy/yF/J7otxrgovdc8J+iWrR9ds1CpBat3F5gr1fQB0lZtLYk5aWNY\r\nlx46VYwTDztpY1iXHur/6O7ScfYQPlbajgqVN3jaz6PXMvZ50/WmTbMuEi4dYdS+cpULwno/WInM\r\nUNKZ86VcWz/auHP5h/VPMUaXfShd0srA3oETrlL/pZwnHq9WfT0EoW/sYZzdh7aFKK8X66xirX1r\r\nWZ2tx4bNexWHp7Tt5X7b9A2gXlaHfagWtn4stWz0rlf/y+PshC5qZWAHgJTsxepxemEvO8fYysKp\r\nw9BtDevoKZsQGKqe1o/zqs+aEMLA6vC9uyPdqGjZOHe+TmcQ2AGgMJbPS3VLfh1SslOqefXg2REG\r\ncGF/Z4fymRQo21XR+nGtcsEaWzZexBi3+fBeDYEdAPRQsjOSz/L1gbVE67RSNwmPZfQzasDRVlbX\r\nPpJ/B7INST9Xbf1YY8vGQzporYfADgDGeRP0Z2sl2WVT+czOXdGXGV1gnY3+km9du1S0fpy+ViIT\r\nQngfQphJ+ux8P3cqytmmztfpLAI7AJRYTaVX55jpusvVubNNbx59mm/EgWjoEHvGbMu/rv1ARReZ\r\nJ5859usL+fdXv5K0TTlbNQR2AHjEZoE8jhrv5CZUa/925DD08owJal3RKbaaN5TPc6Zs2frxt9W9\r\nGls2fqFlYxoEdgB4gtVZXjsMval2nUj8IpulO3cafkjbV3SV1bWPJX1yvtSGpG/L1o81tmz8m0MI\r\n0yGwA8DzRvJZtt5N3Te5CbZSMHca/pAldPSB9SH/IP+69qMQwi/V07JxuwNn5mSFwA4Az7Bl3LF8\r\nXqRHXicU1qEU1ukIA1RkH6cD+de1e86qS0WJDytjDgjsAPACe5F6dXc5b/Em1InoCAMkYyUy2/I7\r\nednbYYxxTL26DwI7ALzCujp41ZlWPp2wbtbj2WNZnY4w6D37YD2Uf4lMKveSPrAq5utd0zcA5KgP\r\nh9w0ZND0Dawrxjix2fDUQXVDRWgftmFmyrpNnDoMfS+J2TlARaeqEMJCxQZ1704uVVyLTk61ILAD\r\nT/M+RAItFGMcW2hPXQqypaLEZJx43KTsn33qNPyITabA/8QYF6WfOe9e6es4o3ytPpTEAMBqhipO\r\n7UvtYNXjxOtkZTtT+WxaO7SyIwAlVtc+kvSl6XspWbZszPZ51UUEdgBYgS39juRTX3r6+ICTjMzk\r\ns8n0gtpX4GXWz/xvNV/XfqOiCwwtG2tGYAeAFVnpxthp+GlunWOsZ/yuw9DXdnAMgFdYSN6Wf+vH\r\n51ypCOuUrjWAwA4Aa7CXp0fnmA0VoT2LzjHWK/7IYegb+bXLBDrJ+psPVfQ7r9OnGCObSxtEYAeA\r\nNdkJhR4vzi35be58M5vpP3cYmo4wwJqsrn2s+mbaz+xZhwYR2AGgAscX556VojSidJKphzHL6sB6\r\nQgjvQwhz+ewpecpRk88iFAjsAFDdUD6bwY6sJKVWpbDu0RHmExvWgPXYqtdcPntKXnIUQmjdIW9d\r\nQmAHgIqstGMon9A+aWAT6kR+HWGYqQPWYB2k5qpvZv2xXUmL3DbF9wWBHQASsBIPj77Ey5NQa5nZ\r\nsl7wqU9zlaQbOsIA67HTt7/JZ9VrFZsqnkdsGK8ZgR0AErF+4h4HnGzIr578gb2ETx2GvlOxAgFg\r\nBVavPlVep29vSPpmHxGoCYEdABKyA05cOsfYi9tF6Qj01O4l0Q4OWFEIYaDiQ91jxSuFzyGEGXXt\r\n9XjX9A0APXCtGmZHW2KsYkm1645VHHCSutb0IISwSF0Hbi/cqXyW2+kIA6yotLm06RKY1+zJSmSs\r\nRzycENgBf3Obde29EMJQPQjsMcZf9s96q/Qv3FML7fOEY87ks5HtCx1hgNVYZyiP8w+8bKnYjDpK\r\n/FxCCSUxAOCg1DnGw8yWyyuz/soeLeIu+FAFVmNlb20K60sbkr7bpnU4ILADgBMrBTl0GHpDRWiv\r\nVDtqM3lHSe7odzfy6ZgDdJJtLl3Iv179znn8U8+9Nn1GYAcAR9Y55sxh6C1V2CRqNbIeM3n3koZs\r\nMgXexn4WF/Lvr/4pxjiQTyersoMQwoLNqGkR2AHAWYzxWNKVw9B767RWK51kmhphHViBrXLN5bu3\r\n517SX8vN6laq9rd8Dnpb2pJ0yyFL6RDYAaAeYxWlIql9tpf+m5TCukf3iWM6wgBvYx/b5/LtBHOj\r\n4iN6Xv5F2ww+lG+JzIakn6s8n/A8AjsA1MBmnUfymdWarDCTNZFfR5ipw7hAp1i9+kz+hyFdqQjr\r\nT35E269vq2g97OmcuvbqCOwAUBPrUzx0GPpNm1Ctg4PHprYrOsIAryv1V99zvtRZjPHVA8tijL9i\r\njEP5HPZWdhBCmFPXvj4COwDUyLFzzKZeqEsPIYwknTpc90ZFuQ+AF9jZDHP5bi69l3Ro+2beLMY4\r\nls9zqWxXRb926trXQGAHgJpZ6YjHjNbWU0vP9oL849cTuJf06iwe0He2uvVdvvXqy03f03V+s/2+\r\nD/LdjLqp4mTUseM1OonADgANsBktj9rRg/LL0Jagp/IJCkOOIwdeZh/RHqtbZTeSBlU3fZfq2j02\r\nyC9tqKhrP3G8RucQ2AGgOSP5vBjPS8vOM/kswR/SEQZ4Xo2HIV3EGLdTrXSV9tp417V/DiFUPgCu\r\nLwjsgL9R0zeAPNkLdiyfJei5daLYdRj7jI4wwPPsg/lW9RyGNE49qG1GHcv/kKU9Fc8q6tpfQWAH\r\nnpayVGHL6heBP9gstcdH3YZ8OlFcrbqhDegTK0n7Kf969YfDkLzUeMjS3Dbl4hnvmr4BIFOpN9Gd\r\nWmifJh63bQZN30COYozzEMKhikNUckZHGOAFIYSJpCPny9xIGtdVkhZjnFmYnsnvRNYNSd9DCJ+8\r\nP0LaisAOPG2m9LOTm/I/KAMtFWOc2kvRu951XfcqQgIdYYBHrA7bqwSt7EoN/BzGGJftGL3/GU/t\r\nOsc8a35HSQzwtJl8lwCBP1jNqGd3hipGbDIF/lQ6DMk7rL/pMCQvdR6ypKJEhs2oJQR24An2QGRZ\r\nDk0YSrpr+iYeOYwxzpu+CSA3diDZXBkehuSlpkOWtiTdshn1fwjswPMmyi84oePsY3GkfFZ4LugI\r\nA/zJ+oh/U8aHIXmp6ZClDUk/OWSpQGAHnlEKTkCtrPRk3PR9SLr2aBkHtJn1V5/Kf09SksOQvNR0\r\nyJJUnCsxdb5G9gjswAvsgeS99Af8IcY4k/SpwVu4ER+swG9CCAMVJTCtOgzJS42HLB2EEBZ9rmsn\r\nsAOvsKW/Q+VTooCesPZm3i/Cp9ARBnjE6qkXaulhSF5qPGRpS9Kir3XtBHbgDSy0D5VvBw90VEOd\r\nY2rr8Qy0QZcOQ/JS0yFLmyo6yIwdr5ElAjvwRhZghpLOGr4V9M9Q9a3wfLJyHACSrH7a+1CzGxWb\r\nS+fO13Flz46hfBs2bKioa2/lh826COzACmzp71jSP9RMqQJ6yEpThvIP7Rdtnd0DUrPNpQv516tf\r\nqQjrnVjVKm1GvXa+1FEIYdaXunYCO7CGGOOtlSr8Q8WMO+0f4cpegp59mG/aVDcLeLLNpXXUqzd6\r\nGJKXGg9Z2lNRIjNwvk7jCOxABRbcj2OMAxU9ab/If1YBPWV7KTw2dt2pmMEHUBioqJf2ktVhSF5q\r\nPGRp4HyNxr2r6Tq3IsSU/VLafx9d+DJv/b8PmwF9WNK0newDFUuDsv89qPu+OqwTy8erijGe2BJw\r\nyk4Jx12b4Usk5XPpNuFYXZTbz3Pq9/Rjx10pgXlNjHFqpUWe5Xa5P78q/1mHf/7r30NJ3yuMcf3j\r\n68dh1RsBAAAAumZn/3KoalmbkhgAAAAgZwR2AAAAIGMEdgAAACBjBHYAAAAgYwR2AAAAIGMEdgAA\r\nACBjBHYAAAAgYwR2AAAAIGMEdgAAACBjBHYAAAAgYwR2AAAAIGMEdgAAACBjBHYAAAAgYwR2AAAA\r\nIGPvEoyxu7N/GROMAwAAAOARZtgBAACAjBHYAQAAgIwR2AEAAICMEdgBAACAjBHYAQAAgIwR2AEA\r\nAICMEdgBAACAjBHYAQAAgIwR2AEAAICMEdgBAACAjBHYAQAAgIwR2AEAAICMEdgBAACAjBHYAQAA\r\ngIwR2AEAAICMvZN0K+lLw/cBAAAA4An/D+pVjENe+oQjAAAAAElFTkSuQmCC\r\n\r\n--b2=_pzqsjAwYuwiue7B4v1apfwkBlj7ytnZ8PijSK3qggNw--','Hey y\'all Admin dudeds,What\'s Up???\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nAdmin UserAdministrator\r\n\r\nadmin@mavrix.one\r\nMobile: 906-123-4567\r\nOffice: 906-555-4567\r\nhttps://mavrix1.com\r\n\r\n\r\n\r\n\r\n3900 W. Coachman Ave.Tampa, FL 33611\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE:This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.',1,0,0,0,0,0,'2025-12-04 12:45:52','2025-12-04 12:46:36','2025-12-04 12:46:36','2025-12-04 12:46:39',NULL,NULL,NULL),
(61,1,'<1764854108.1@erp>',NULL,NULL,'Test Admin','admin@mavrix.one','Admin User','<p>Hey y\'all!</p>\r\n<p></p>\r\n<table style=\"width: 100%; max-width: 600px; border-collapse: collapse; font-family: Helvetica, Arial, sans-serif;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 0; border-top: 3px solid #0066cc;\">\r\n<table style=\"width: 100%; border-collapse: collapse; padding-top: 15px;\">\r\n<tbody>\r\n<tr><!-- LEFT COLUMN -->\r\n<td style=\"vertical-align: top; padding-left: 20px; border-left: 2px solid #e0e0e0;\">\r\n<div style=\"margin-bottom: 10px;\"><strong style=\"font-size: 14px; color: #0066cc;\">Admin User</strong><br><span style=\"font-size: 12px; color: #666;\">Administrator</span></div>\r\n<div style=\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n<div><a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></div>\r\n<div>Mobile: 906-123-4567</div>\r\n<div>Office: 906-555-4567</div>\r\n<div><a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></div>\r\n</div>\r\n</td>\r\n<!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n<td style=\"width: 200px; vertical-align: middle; text-align: center; padding-top: 10px;\"><img src=\"cid:company_logo\" alt=\"Mavrix1\" style=\"max-width: 150px; height: auto; display: block; margin: 0 auto;\">\r\n<div style=\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1.3;\">3900 W. Coachman Ave.<br>Tampa, FL 33611</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n<div style=\"font-size: 9px; color: #888; line-height: 1.4;\"><strong>CONFIDENTIALITY NOTICE:</strong><br><em>This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.</em><br><br><em>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</em><br><br><em>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</em><br><br><em>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Hey y\'all!\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nAdmin UserAdministrator\r\n\r\nadmin@mavrix.one\r\nMobile: 906-123-4567\r\nOffice: 906-555-4567\r\nhttps://mavrix1.com\r\n\r\n\r\n\r\n\r\n3900 W. Coachman Ave.Tampa, FL 33611\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE:This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n\r\n\r\n\r\n',1,0,0,0,0,0,'2025-12-04 13:15:08','2025-12-04 13:15:08','2025-12-04 13:15:08','2025-12-04 13:15:08',NULL,NULL,NULL),
(62,1,'<TTurHBbe3GmAkvst0W9dYEGrIM3qEBbBkdKpP0DE@localhost>',NULL,NULL,'Test Admin','contact@mavrix.one','Mavrix1','--b2=_TTurHBbe3GmAkvst0W9dYEGrIM3qEBbBkdKpP0DE\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Transfer-Encoding: quoted-printable\r\n\r\n<p>Hey y\'all!</p>\r\n<p></p>\r\n<table style=3D\"width: 100%; max-width: 600px; border-collapse: collapse; f=\r\nont-family: Helvetica, Arial, sans-serif;\">\r\n<tbody>\r\n<tr>\r\n<td style=3D\"padding: 0; border-top: 3px solid #0066cc;\">\r\n<table style=3D\"width: 100%; border-collapse: collapse; padding-top: 15px;\"=\r\n>\r\n<tbody>\r\n<tr><!-- LEFT COLUMN -->\r\n<td style=3D\"vertical-align: top; padding-left: 20px; border-left: 2px soli=\r\nd #e0e0e0;\">\r\n<div style=3D\"margin-bottom: 10px;\"><strong style=3D\"font-size: 14px; color=\r\n: #0066cc;\">Admin User</strong><br><span style=3D\"font-size: 12px; color: #=\r\n666;\">Administrator</span></div>\r\n<div style=3D\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n<div><a href=3D\"mailto:admin@mavrix.one\" style=3D\"color: #0066cc; text-deco=\r\nration: none;\">admin@mavrix.one</a></div>\r\n<div>Mobile: 906-123-4567</div>\r\n<div>Office: 906-555-4567</div>\r\n<div><a href=3D\"https://mavrix1.com\" style=3D\"color: #0066cc; text-decorati=\r\non: none;\">https://mavrix1.com</a></div>\r\n</div>\r\n</td>\r\n<!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n<td style=3D\"width: 200px; vertical-align: middle; text-align: center; padd=\r\ning-top: 10px;\"><img src=3D\"cid:company_logo\" alt=3D\"Mavrix1\" style=3D\"max-=\r\nwidth: 150px; height: auto; display: block; margin: 0 auto;\">\r\n<div style=3D\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1=\r\n.3;\">3900 W. Coachman Ave.<br>Tampa, FL 33611</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=3D\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n<div style=3D\"font-size: 9px; color: #888; line-height: 1.4;\"><strong>CONFI=\r\nDENTIALITY NOTICE:</strong><br><em>This communication may contain confident=\r\nial information. Unauthorized review, use, disclosure, or distribution is p=\r\nrohibited.</em><br><br><em>This communication, including any attachments, m=\r\nay contain confidential, privileged, or Controlled Unclassified Information=\r\n (CUI) protected under federal law. It is intended solely for the use of th=\r\ne designated recipient(s). Any unauthorized review, use, disclosure, distri=\r\nbution, or copying is strictly prohibited and may be unlawful.</em><br><br>=\r\n<em>If you are not the intended recipient, please notify the sender immedia=\r\ntely, delete this email, and destroy all copies.</em><br><br><em>Unless exp=\r\nressly stated, the views and opinions expressed herein are those of the sen=\r\nder and do not necessarily reflect those of the sender=E2=80=99s employer o=\r\nr any U.S. Government agency. All recipients are responsible for handling i=\r\nnformation in accordance with applicable federal regulations, including but=\r\n not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n--b2=_TTurHBbe3GmAkvst0W9dYEGrIM3qEBbBkdKpP0DE\r\nContent-Type: image/png; name=logo_1762869843.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <company_logo>\r\nContent-Disposition: inline; filename=logo_1762869843.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAuwAAACiCAYAAAAa7ZjJAAAACXBIWXMAAAsSAAALEgHS3X78AAAV\r\nP0lEQVR4nO3dT1LcStbG4Te/8BzvgOoVgGfNiLoroG40Mw8oVgBegfEKKFZAEdHMHOFiBS5GHrpY\r\nQcMK2qwgv4FO0TLmX5XySCnp90R0dIejndK9NtKrzJMnQ4xRAAAAAHzt7F+OJU0kbazy+/7P5W4A\r\nAAAAPNjZvzyRdK4Vw7okvUt+NwAAAAAkSTv7l+9VzKofrDsGgR0AAABwYGF9LmmryjiUxAAAAACJ\r\n7exfbktaqGJYlwjsAAAAQFI7+5cjFTPrmynGI7ADAAAAiezsXx5L+qY1Npc+hxp2AAAAIIGd/cup\r\nKmwufQ6BHQAAAKjANpfOJO16jE9JDAAAALAm21w6l1NYl5hhBwAAANays385VDGznqxe/SnMsAMA\r\nAAAr2tm/HEv6LuewLhHYAQAAgJXs7F9OJJ3XdT1KYgAAAIA3sM2lU0l7dV6XwA4AAAC8Ymf/cqCi\r\nXr3yyaWrIrADAAAALyh1gnGvV38KNewAAADAM2xz6U81FNYlAjsAAADwpJ39yxPVuLn0OZTEAAAA\r\nACW2uXQi6aDpe5EI7AAAAMADC+tzNbC59DmUxAAAAAB62Fx6q4zCukRgBwAAALSzfzlSg51gXkJg\r\nBwAAQK/t7F8eS/qmDMO6RA07AAAAemxn/3KqTDaXPofADgAAgN7JcXPpc8I///XvgaRxw/cBAAAA\r\nPOnH148nKcezzaVTtSCsS8UM+0DS54bvAwAAAHjsXtIo5YA7+5dDSTPVU69+Z/+9WWUQNp0CAAAg\r\nRzeShj++fpynGnBn/3Is6bvqCetXkpZtIiuhhh0AAAC5uZY0+vH1469UA9a8ufTTj68fJ3bdyoMR\r\n2AEAAJCTsx9fPx6nGsw2l84k7aYa8wV3Kj40FikHpSQGAAAAuThMHNYHKjrB1BHWryRtpw7rEjPs\r\nAAAAaN69inr1ZGHXOsHMVU+9+kMJjAdm2AEAANCkGyWembbNpT/lH9bvJH3wDOsSgR0AAADNuVIx\r\ns36basCd/cuJpPNU473ArQTmMUpiAAAA0ASPzaUT+XeCuZd04j2rXkZgBwAAQJ3uJR3/+PpxmmpA\r\nC+tz+Z9ceiNpXMesehmBHQAAAHVp8+bSCxUfGsl6w78VgR0AAAB1WJ5cmvIwpLGKMhjPsJ58RWBV\r\nbDoFAACAtwulD+vHKjaXeob15UfG1PEar2KGHQAAAJ6+/Pj68STlgDv7l1P5by5trATmMQI7AAAA\r\nPNyr2KA5SzVgTZtLU5fAVA78KQL7vaRad8oCAAAge8cOm0tnkjZTjfkEjy4wC0l7VQZIEdgXP75+\r\nHCYYBwAAAHjJ2Hn8RQ4lMI9REgMAAIDs1d37PCd0iQEAAAAyRmAHAAAAMkZgBwAAADJGYAcAAAAy\r\nRmAHAAAAMkZgBwAAADJGYAcAAAAyRmAHAAAAMkZgBwAAADJGYAcAAAAyRmAHAAAAMkZgBwAAADJG\r\nYAcAAAAyRmAHAAAAMkZgBwAAADJGYAcAAAAy9q6Oi4QQhpKGdVwLrbWQ9CvGOG/6RiQphHDS9D10\r\n1K39ZxFj/OVxgRDCSNK2x9iSJl73jW7+2YUQtiW9V3/fgdMY4+1r/6cQwljSINVFY4wnVX5/CGEg\r\naZzgVp4zizEuHMfPiv0cjBwv8aa/Z21WS2BX8aD6XNO10GIhBEm6kTRf/qehgMTfV2chhDsVH2oz\r\nFX/Ot4mGnkuaSNpMNF6ZZ6DsNXuhTyVtOAx/WNdzpBRMhpJ267hm5uYqPtJfM1baf18nFX//QL7v\r\ngeMQwnGMcep4jSzYx9i582Xmetvfs9aiJAY52pJ0JOmbpP+GEKa2SoNu2ZS0p+JB/p8QwiKEMA4h\r\nvK8yqAWzkaT7BPf42FYIYeowbq/Zn/lcPmH9wjsUhRAGIYRJCOFW0k8VQY+w3m638nmGLG1IOg8h\r\nTByv0agQwnt7XnqH9Tt1PKxLBHa0w4Gk7yGEW1syRzdtqXiw34YQTqoEd1tqHqe6sUcOQgjHTmP3\r\n1Vw+Yf06xjh2GFfSQ1CfSvqPikkGj1UdNMBW/AaSrp0vdWSTFZUmKnJjJUVzFe9vT1eStrteDiMR\r\n2NEum5K+hRDmtuyMbtpQMUNZ6QMtxjiT9CnZXf3ulFWfNCzwbjkMfSenmlmbOZyoCOregQQNiTH+\r\nijEOJZ05X2pLxfNu6HydWthzeyGfn+uyLzHGUV/2FRHY0Ua7kn4yy9l5Gyo+0Gbrzj7FGCeSLtLe\r\n1oMZH47V2M+wR+C9l+TyIrc/84WKGXX0QIzxWNKh/Etkvrf9vWYNG77JZ8Vs6V7S31U3FrcNgR1t\r\ndko9cS/sSZrbEus6jlVsZE5tQ9K0a0vZdbHZxFOn4cceHThs89xPUfrSO7YPYiifZ0nZaZVJiqbY\r\nqtNc/g0bblSUwMycr5MdAjva7oDQ3gtbkhbrzGjbLOtQTptQVXQ2wQrsz9HrhfvJ42VeU6cLZMw+\r\nAocq6qY9LScpWrGCV1p18t5ofSFp2Id69acQ2NEFhPZ+WHtG2zm079G3/+3sz28qv44wybtuWE0u\r\nYR3LuvaRpC/Ol9pSEdrHzteppMZVp8MY47gv9epPIbCjKw7oINMLa89o2+yYV33o59xfrBmZymcz\r\n2o1HRxgrxZqmHhftZvXTf6mnrR9rbNl4L+lDH/rVv4bAji6ZtK3uD2vZW7ebgj30vWbGJm1Zwm6K\r\nBY89h6Hv5HeS6Il8N9Chpexk7m3517Vn1fqxxpaN15IGfToR9iUEdnTJpnyPkkY+Ttb9jTYz5tE5\r\nZkNF55gsXqq5sRUIj84qnh1hBqJtI15g9dRD+XWjWsqi9aNdv46WjWcxxmGfS2AeI7Cja8ZN3wBq\r\nsVuha4zk1zlmU8XME0ps5cFrWf/YcQau1S32UA+rax+raP3oqdHWj7ZX57vqadnIz94j75q+gYqu\r\nVHzptcVQvruob+TXecHDttIvj2+FEAYJdpF7byjqk4GKA2xSP+RHWjMExhh/lQ73SH1fWyGEqecJ\r\nm21iKw5z+bzkvzjXtg4dxrxR8e+jLzOHt03fQF1ijNMQwkJ+f9+Xlge31bIJs7RR3KOcrexGTi1Z\r\nu6Ctgb21f6g20zRX2h/m5ZLwPOGYtbBZ0pnSLq8NVPEl0bcDGbzZA3+itOUFgyq/Oca4XF7+meRu\r\nfncQQpizUUqSX3i5qOHnNPWy/yF/J7otxrgovdc8J+iWrR9ds1CpBat3F5gr1fQB0lZtLYk5aWNY\r\nlx46VYwTDztpY1iXHur/6O7ScfYQPlbajgqVN3jaz6PXMvZ50/WmTbMuEi4dYdS+cpULwno/WInM\r\nUNKZ86VcWz/auHP5h/VPMUaXfShd0srA3oETrlL/pZwnHq9WfT0EoW/sYZzdh7aFKK8X66xirX1r\r\nWZ2tx4bNexWHp7Tt5X7b9A2gXlaHfagWtn4stWz0rlf/y+PshC5qZWAHgJTsxepxemEvO8fYysKp\r\nw9BtDevoKZsQGKqe1o/zqs+aEMLA6vC9uyPdqGjZOHe+TmcQ2AGgMJbPS3VLfh1SslOqefXg2REG\r\ncGF/Z4fymRQo21XR+nGtcsEaWzZexBi3+fBeDYEdAPRQsjOSz/L1gbVE67RSNwmPZfQzasDRVlbX\r\nPpJ/B7INST9Xbf1YY8vGQzporYfADgDGeRP0Z2sl2WVT+czOXdGXGV1gnY3+km9du1S0fpy+ViIT\r\nQngfQphJ+ux8P3cqytmmztfpLAI7AJRYTaVX55jpusvVubNNbx59mm/EgWjoEHvGbMu/rv1ARReZ\r\nJ5859usL+fdXv5K0TTlbNQR2AHjEZoE8jhrv5CZUa/925DD08owJal3RKbaaN5TPc6Zs2frxt9W9\r\nGls2fqFlYxoEdgB4gtVZXjsMval2nUj8IpulO3cafkjbV3SV1bWPJX1yvtSGpG/L1o81tmz8m0MI\r\n0yGwA8DzRvJZtt5N3Te5CbZSMHca/pAldPSB9SH/IP+69qMQwi/V07JxuwNn5mSFwA4Az7Bl3LF8\r\nXqRHXicU1qEU1ukIA1RkH6cD+de1e86qS0WJDytjDgjsAPACe5F6dXc5b/Em1InoCAMkYyUy2/I7\r\nednbYYxxTL26DwI7ALzCujp41ZlWPp2wbtbj2WNZnY4w6D37YD2Uf4lMKveSPrAq5utd0zcA5KgP\r\nh9w0ZND0Dawrxjix2fDUQXVDRWgftmFmyrpNnDoMfS+J2TlARaeqEMJCxQZ1704uVVyLTk61ILAD\r\nT/M+RAItFGMcW2hPXQqypaLEZJx43KTsn33qNPyITabA/8QYF6WfOe9e6es4o3ytPpTEAMBqhipO\r\n7UvtYNXjxOtkZTtT+WxaO7SyIwAlVtc+kvSl6XspWbZszPZ51UUEdgBYgS39juRTX3r6+ICTjMzk\r\ns8n0gtpX4GXWz/xvNV/XfqOiCwwtG2tGYAeAFVnpxthp+GlunWOsZ/yuw9DXdnAMgFdYSN6Wf+vH\r\n51ypCOuUrjWAwA4Aa7CXp0fnmA0VoT2LzjHWK/7IYegb+bXLBDrJ+psPVfQ7r9OnGCObSxtEYAeA\r\nNdkJhR4vzi35be58M5vpP3cYmo4wwJqsrn2s+mbaz+xZhwYR2AGgAscX556VojSidJKphzHL6sB6\r\nQgjvQwhz+ewpecpRk88iFAjsAFDdUD6bwY6sJKVWpbDu0RHmExvWgPXYqtdcPntKXnIUQmjdIW9d\r\nQmAHgIqstGMon9A+aWAT6kR+HWGYqQPWYB2k5qpvZv2xXUmL3DbF9wWBHQASsBIPj77Ey5NQa5nZ\r\nsl7wqU9zlaQbOsIA67HTt7/JZ9VrFZsqnkdsGK8ZgR0AErF+4h4HnGzIr578gb2ETx2GvlOxAgFg\r\nBVavPlVep29vSPpmHxGoCYEdABKyA05cOsfYi9tF6Qj01O4l0Q4OWFEIYaDiQ91jxSuFzyGEGXXt\r\n9XjX9A0APXCtGmZHW2KsYkm1645VHHCSutb0IISwSF0Hbi/cqXyW2+kIA6yotLm06RKY1+zJSmSs\r\nRzycENgBf3Obde29EMJQPQjsMcZf9s96q/Qv3FML7fOEY87ks5HtCx1hgNVYZyiP8w+8bKnYjDpK\r\n/FxCCSUxAOCg1DnGw8yWyyuz/soeLeIu+FAFVmNlb20K60sbkr7bpnU4ILADgBMrBTl0GHpDRWiv\r\nVDtqM3lHSe7odzfy6ZgDdJJtLl3Iv179znn8U8+9Nn1GYAcAR9Y55sxh6C1V2CRqNbIeM3n3koZs\r\nMgXexn4WF/Lvr/4pxjiQTyersoMQwoLNqGkR2AHAWYzxWNKVw9B767RWK51kmhphHViBrXLN5bu3\r\n517SX8vN6laq9rd8Dnpb2pJ0yyFL6RDYAaAeYxWlIql9tpf+m5TCukf3iWM6wgBvYx/b5/LtBHOj\r\n4iN6Xv5F2ww+lG+JzIakn6s8n/A8AjsA1MBmnUfymdWarDCTNZFfR5ipw7hAp1i9+kz+hyFdqQjr\r\nT35E269vq2g97OmcuvbqCOwAUBPrUzx0GPpNm1Ctg4PHprYrOsIAryv1V99zvtRZjPHVA8tijL9i\r\njEP5HPZWdhBCmFPXvj4COwDUyLFzzKZeqEsPIYwknTpc90ZFuQ+AF9jZDHP5bi69l3Ro+2beLMY4\r\nls9zqWxXRb926trXQGAHgJpZ6YjHjNbWU0vP9oL849cTuJf06iwe0He2uvVdvvXqy03f03V+s/2+\r\nD/LdjLqp4mTUseM1OonADgANsBktj9rRg/LL0Jagp/IJCkOOIwdeZh/RHqtbZTeSBlU3fZfq2j02\r\nyC9tqKhrP3G8RucQ2AGgOSP5vBjPS8vOM/kswR/SEQZ4Xo2HIV3EGLdTrXSV9tp417V/DiFUPgCu\r\nLwjsgL9R0zeAPNkLdiyfJei5daLYdRj7jI4wwPPsg/lW9RyGNE49qG1GHcv/kKU9Fc8q6tpfQWAH\r\nnpayVGHL6heBP9gstcdH3YZ8OlFcrbqhDegTK0n7Kf969YfDkLzUeMjS3Dbl4hnvmr4BIFOpN9Gd\r\nWmifJh63bQZN30COYozzEMKhikNUckZHGOAFIYSJpCPny9xIGtdVkhZjnFmYnsnvRNYNSd9DCJ+8\r\nP0LaisAOPG2m9LOTm/I/KAMtFWOc2kvRu951XfcqQgIdYYBHrA7bqwSt7EoN/BzGGJftGL3/GU/t\r\nOsc8a35HSQzwtJl8lwCBP1jNqGd3hipGbDIF/lQ6DMk7rL/pMCQvdR6ypKJEhs2oJQR24An2QGRZ\r\nDk0YSrpr+iYeOYwxzpu+CSA3diDZXBkehuSlpkOWtiTdshn1fwjswPMmyi84oePsY3GkfFZ4LugI\r\nA/zJ+oh/U8aHIXmp6ZClDUk/OWSpQGAHnlEKTkCtrPRk3PR9SLr2aBkHtJn1V5/Kf09SksOQvNR0\r\nyJJUnCsxdb5G9gjswAvsgeS99Af8IcY4k/SpwVu4ER+swG9CCAMVJTCtOgzJS42HLB2EEBZ9rmsn\r\nsAOvsKW/Q+VTooCesPZm3i/Cp9ARBnjE6qkXaulhSF5qPGRpS9Kir3XtBHbgDSy0D5VvBw90VEOd\r\nY2rr8Qy0QZcOQ/JS0yFLmyo6yIwdr5ElAjvwRhZghpLOGr4V9M9Q9a3wfLJyHACSrH7a+1CzGxWb\r\nS+fO13Flz46hfBs2bKioa2/lh826COzACmzp71jSP9RMqQJ6yEpThvIP7Rdtnd0DUrPNpQv516tf\r\nqQjrnVjVKm1GvXa+1FEIYdaXunYCO7CGGOOtlSr8Q8WMO+0f4cpegp59mG/aVDcLeLLNpXXUqzd6\r\nGJKXGg9Z2lNRIjNwvk7jCOxABRbcj2OMAxU9ab/If1YBPWV7KTw2dt2pmMEHUBioqJf2ktVhSF5q\r\nPGRp4HyNxr2r6Tq3IsSU/VLafx9d+DJv/b8PmwF9WNK0newDFUuDsv89qPu+OqwTy8erijGe2BJw\r\nyk4Jx12b4Usk5XPpNuFYXZTbz3Pq9/Rjx10pgXlNjHFqpUWe5Xa5P78q/1mHf/7r30NJ3yuMcf3j\r\n68dh1RsBAAAAumZn/3KoalmbkhgAAAAgZwR2AAAAIGMEdgAAACBjBHYAAAAgYwR2AAAAIGMEdgAA\r\nACBjBHYAAAAgYwR2AAAAIGMEdgAAACBjBHYAAAAgYwR2AAAAIGMEdgAAACBjBHYAAAAgYwR2AAAA\r\nIGPvEoyxu7N/GROMAwAAAOARZtgBAACAjBHYAQAAgIwR2AEAAICMEdgBAACAjBHYAQAAgIwR2AEA\r\nAICMEdgBAACAjBHYAQAAgIwR2AEAAICMEdgBAACAjBHYAQAAgIwR2AEAAICMEdgBAACAjBHYAQAA\r\ngIwR2AEAAICMvZN0K+lLw/cBAAAA4An/D+pVjENe+oQjAAAAAElFTkSuQmCC\r\n\r\n--b2=_TTurHBbe3GmAkvst0W9dYEGrIM3qEBbBkdKpP0DE--','Hey y\'all!\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nAdmin UserAdministrator\r\n\r\nadmin@mavrix.one\r\nMobile: 906-123-4567\r\nOffice: 906-555-4567\r\nhttps://mavrix1.com\r\n\r\n\r\n\r\n\r\n3900 W. Coachman Ave.Tampa, FL 33611\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE:This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.',1,0,0,0,0,0,'2025-12-04 13:15:07','2025-12-04 13:15:17','2025-12-04 13:15:17','2025-12-04 13:15:21',NULL,NULL,NULL),
(63,4,'<CANZ1scvVP2fcOtcXukOQNZ_n8DxqCBE=rr5bKQJyJMnNkd91zg@mail.gmail.com>',NULL,NULL,'Ashby - revisit?','jake@ashbyhq.com','Jake McLinden','<html><head></head><body><div dir=\"auto\">\r\n   <p style=\"margin:0\">Hi Rick,</p>\r\n   <p style=\"margin:0\"><br class=\"hs-trailingbreak\"></p>\r\n   <p style=\"margin:0\">With the last quarter of the year under way, many of the TA leaders I&#39;m speaking with are in the midst of planning for 2026 – including the tools that&#39;ll make their teams most successful. You had expressed interest in Ashby earlier this year but the timing wasn&#39;t right.</p>\r\n   <p style=\"text-align:start;margin:0\"><br class=\"hs-trailingbreak\"></p>\r\n   <p style=\"text-align:start;margin:0\">Curious if it makes sense to revisit and explore how Ashby can help streamline your hiring workflows and set your process up for scale in the new year?</p>\r\n   <p style=\"text-align:start;margin:0\"><br class=\"hs-trailingbreak\"></p>\r\n   <p style=\"text-align:start;margin:0\">Ashby is quickly becoming <a href=\"https://sales.ashbyhq.com/e3t/Ctc/ZS+23284/cBJBm04/JkM2-6qcW6N1vHY6lZ3kzW7XlCCc4xKPd-W32C-KM7hVYsfW3RMjCL8rgs68W1f10NV3xrzYRW7thkTK20bdRbN5dXHGNbjSThW97mS6J3sXZ3rN8yh8vS2prJrV4ZJ381Vlf2VW3sKrpj36pyv5V5DNPk77gJ3VN5dnTsHdZ_cbN2ks7fzgXsX0W23fZ6X57SLftW4NRwjz2rB4kbW7lC2T-4-lY36W1hPlDY5-hmZ9W63PXXl7dN_2bV80fK_1PXtPnN5NY6RV60XBbN11XGSVh6SzVW1jcMXt7S5GQzf5fGkG204\" title=\"the default ATS of choice\" target=\"_blank\">the default ATS of choice</a> for growing teams.</p>\r\n   <p style=\"text-align:start;margin:0\"><br class=\"hs-trailingbreak\"></p>\r\n   <p style=\"text-align:start;margin:0\">Shoot me a note if you&#39;d like to learn more or feel free to find some time in <a href=\"https://sales.ashbyhq.com/e3t/Ctc/ZS+23284/cBJBm04/Jks2-6qcW69sMD-6lZ3krW5hvX6H5d-24vW1QfVsP77nHjyW4gc-h02p-D62N5Fwm4-_8MD1W5zK1Ft7sbTwdW6b_pQB28NlzfVVsChf6QHKgRW5Yw1db92PKW8W2NT1B55Rv4mqW4KNbkr7ZdTvmW3H_s1g8lRHLkW5b2hqz6L2-zsW3VS3Td6NF8cXW3Pl9Nr40bLj1W8bkds44S7QySW7H62yK6D7mzWW6NM-k_6YjdbpVnlw292lvXt3W3tZhWP8yNGcjW5NX2Qs8p6h3bf3SkfXg04\" target=\"_blank\" rel=\"nofollow noopener noreferrer\" style=\"box-sizing:border-box;font-weight:600;text-decoration:none\"><strong>on my calendar.</strong></a></p>\r\n   <p style=\"text-align:start;margin:0\"><br class=\"hs-trailingbreak\"></p>\r\n   <p style=\"text-align:start;margin:0\">Best,</p>\r\n   <p style=\"text-align:start;margin:0\">Jake</p>\r\n   <p style=\"margin:0\"><br class=\"hs-trailingbreak\"></p>\r\n   <div>\r\n    <div dir=\"ltr\">\r\n     <div dir=\"ltr\">\r\n      <table style=\"font-size:13px;color:rgb(136,136,136);font-family:sans-serif;border:none;border-collapse:collapse\">\r\n       <tbody>\r\n        <tr style=\"height:48pt\">\r\n         <td style=\"border-right:0.75pt solid rgb(213,213,213);vertical-align:middle;padding:0pt 15pt 0pt 0pt\"><p style=\"text-align:center;line-height:1.38;margin-top:0pt;margin-bottom:0pt\"><font color=\"#000000\"><img alt=\"\"><img src=\"cid:6c38d966cbcebfbe09553b99d74f75be\" width=\"96\" height=\"31\"><br></font></p></td>\r\n         <td style=\"border-left:0.75pt solid rgb(213,213,213);vertical-align:top;padding:0pt 0pt 0pt 15pt\"><p style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\">Jake McLinden</font></p><p style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\">Account Executive</font></p><p style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\">774.277.1507 | <a href=\"https://sales.ashbyhq.com/e3t/Ctc/ZS+23284/cBJBm04/JkM2-6qcW6N1vHY6lZ3p4W3j2fd421RyXBN38qMfDXtC2PW6-CCyB7F7K9qMcGsXG-wbQMW6r74-y5BYLylW21pCGx80xcl3W8sjB1x98nsvhN1h01s0hRQwTW460cP67-qmW1W3hnK4729xfkRW82YLVn442r7YW3CJWKr5HjkXqN5_wnGl2TpMVW17wfMP4dfT8nW3YFX4C3cCcCGW82wTPX4NHMh2W78zTXz4vQ6P4N21TZMcyR4wKN8LP1NSmg6lVW7nmd_w8frdQ5W8s-53L1L5BmsW69rXlJ56PZfmf79QrZb04\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">LinkedIn</a></font></p><p style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\"><a href=\"https://sales.ashbyhq.com/e3t/Ctc/ZS+23284/cBJBm04/JlF2-6qcW8wLKSR6lZ3q6W4-3YFg8sN3GXW6TfNp_5Gf7gdW6Q4fJY3pd_c0W1XSwVt3CHhx_W1ZNWSK1W5hDCW1H2TKY3F_vHDW5jHQpF6FTgp2W5_tF9y36z6KFW1gn7vf1sMYCvW4TM02T1048QQW4h95dx3b2WqnN65lr7ZsnZ1cW61SKyq2bVgZyW8bhH7L8XghvcW5c0HC86t6GF8W8ywfgM38Q-jhW2rPsjK5cntqTW3kc2cf3kNHwHW2W0Jk85rTHqnW3XgmZs1FQ9SvW97H28P6X9G1yW6wvLT-10Yd-7W2xl5_58gRfScW25pRtX7Y-3CzVwx3Qw6HWWcJW7ZsTvL14674RW2mmBNR2NZL2ZN6cSnF7xgbPff15-Sfz04\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">Book a Meeting</a></font></p><p style=\"line-height:1.656;margin-top:0pt;margin-bottom:0pt\"><font size=\"2\" face=\"arial, sans-serif\" color=\"#000000\"><a href=\"http://www.ashbyhq.com/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">www.ashbyhq.com</a></font></p></td>\r\n        </tr>\r\n       </tbody>\r\n      </table>\r\n     </div>\r\n    </div>\r\n   </div>\r\n   <div style=\"color:#33475b;font-family:sans-serif;font-weight:400;font-size:14px\"></div>\r\n   <p style=\"margin:0\"><br class=\"hs-trailingbreak\"></p>\r\n  </div>\r\n \r\n<img width=\"1\" height=\"1\" style=\"display:none\" alt=\"\" src=\"https://sales.ashbyhq.com/e3t/Cto/ZS+23284/cBJBm04/R5X8b4bTZN6rhp1Z2fDgXW3JK_7c1X0ykbW1X07gf1XlT-MW1Gy20J20TYH8W25cCC91X0cRWW1NsCXX1W-W13N22XzNXhPQZqf8Xjkl004\"></body></html>','Hi Rick,\r\n\r\n\r\nWith the last quarter of the year under way, many of the TA leaders I\'m\r\nspeaking with are in the midst of planning for 2026 – including the tools\r\nthat\'ll make their teams most successful. You had expressed interest in\r\nAshby earlier this year but the timing wasn\'t right.\r\n\r\n\r\nCurious if it makes sense to revisit and explore how Ashby can help\r\nstreamline your hiring workflows and set your process up for scale in the\r\nnew year?\r\n\r\n\r\nAshby is quickly becoming the default ATS of choice\r\n<https://sales.ashbyhq.com/e3t/Ctc/ZS+23284/cBJBm04/JkM2-6qcW6N1vHY6lZ3kzW7XlCCc4xKPd-W32C-KM7hVYsfW3RMjCL8rgs68W1f10NV3xrzYRW7thkTK20bdRbN5dXHGNbjSThW97mS6J3sXZ3rN8yh8vS2prJrV4ZJ381Vlf2VW3sKrpj36pyv5V5DNPk77gJ3VN5dnTsHdZ_cbN2ks7fzgXsX0W23fZ6X57SLftW4NRwjz2rB4kbW7lC2T-4-lY36W1hPlDY5-hmZ9W63PXXl7dN_2bV80fK_1PXtPnN5NY6RV60XBbN11XGSVh6SzVW1jcMXt7S5GQzf5fGkG204>\r\nfor growing teams.\r\n\r\n\r\nShoot me a note if you\'d like to learn more or feel free to find some time\r\nin *on my calendar.*\r\n<https://sales.ashbyhq.com/e3t/Ctc/ZS+23284/cBJBm04/Jks2-6qcW69sMD-6lZ3krW5hvX6H5d-24vW1QfVsP77nHjyW4gc-h02p-D62N5Fwm4-_8MD1W5zK1Ft7sbTwdW6b_pQB28NlzfVVsChf6QHKgRW5Yw1db92PKW8W2NT1B55Rv4mqW4KNbkr7ZdTvmW3H_s1g8lRHLkW5b2hqz6L2-zsW3VS3Td6NF8cXW3Pl9Nr40bLj1W8bkds44S7QySW7H62yK6D7mzWW6NM-k_6YjdbpVnlw292lvXt3W3tZhWP8yNGcjW5NX2Qs8p6h3bf3SkfXg04>\r\n\r\n\r\nBest,\r\n\r\nJake\r\n\r\n\r\n\r\nJake McLinden\r\n\r\nAccount Executive\r\n\r\n774.277.1507 | LinkedIn\r\n<https://sales.ashbyhq.com/e3t/Ctc/ZS+23284/cBJBm04/JkM2-6qcW6N1vHY6lZ3p4W3j2fd421RyXBN38qMfDXtC2PW6-CCyB7F7K9qMcGsXG-wbQMW6r74-y5BYLylW21pCGx80xcl3W8sjB1x98nsvhN1h01s0hRQwTW460cP67-qmW1W3hnK4729xfkRW82YLVn442r7YW3CJWKr5HjkXqN5_wnGl2TpMVW17wfMP4dfT8nW3YFX4C3cCcCGW82wTPX4NHMh2W78zTXz4vQ6P4N21TZMcyR4wKN8LP1NSmg6lVW7nmd_w8frdQ5W8s-53L1L5BmsW69rXlJ56PZfmf79QrZb04>\r\n\r\nBook a Meeting\r\n<https://sales.ashbyhq.com/e3t/Ctc/ZS+23284/cBJBm04/JlF2-6qcW8wLKSR6lZ3q6W4-3YFg8sN3GXW6TfNp_5Gf7gdW6Q4fJY3pd_c0W1XSwVt3CHhx_W1ZNWSK1W5hDCW1H2TKY3F_vHDW5jHQpF6FTgp2W5_tF9y36z6KFW1gn7vf1sMYCvW4TM02T1048QQW4h95dx3b2WqnN65lr7ZsnZ1cW61SKyq2bVgZyW8bhH7L8XghvcW5c0HC86t6GF8W8ywfgM38Q-jhW2rPsjK5cntqTW3kc2cf3kNHwHW2W0Jk85rTHqnW3XgmZs1FQ9SvW97H28P6X9G1yW6wvLT-10Yd-7W2xl5_58gRfScW25pRtX7Y-3CzVwx3Qw6HWWcJW7ZsTvL14674RW2mmBNR2NZL2ZN6cSnF7xgbPff15-Sfz04>\r\n\r\nwww.ashbyhq.com',0,0,0,0,0,0,'2025-11-19 16:04:48','2025-12-04 14:04:32','2025-12-04 14:04:32','2025-12-04 14:04:32',NULL,NULL,NULL),
(64,4,'<CAGgBgfBEg_KetPeMpSKmyPyWTJ-w=OgnXMcoL=zNsoqi8Q6oWw@mail.gmail.com>',NULL,NULL,'Extra Work? (11/19/25 1115)','tpownall@cadxservices.com','Thomas Pownall','<div dir=\"ltr\"><div><div class=\"gmail_default\" style=\"font-size:small\">Rick:</div><div><br></div><div><div class=\"gmail_default\" style=\"font-size:small\">Joel&#39;s made everything I have for him to do work -- so I need to find him some work or find another client project I can include him on. Do you know of someone?</div></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">When that money comes in we&#39;re going to want to clone Joel, but I also don&#39;t want to lose him.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><span class=\"gmail_default\" style=\"font-size:small\">Joel has </span>over 20 years of industry experience. Joel is proficient in a wide range of programming languages, with deep expertise in C and assembly. His typical workflow involves developing in C and then optimizing performance-critical sections directly in assembly when needed.<br><br>Joel has extensive hands-on experience with 8-bit and 16-bit microcontrollers, including both ARM-based devices and proprietary architectures such as Microchip’s PIC family. He is also familiar with higher-performance processors from NXP and has some background in FPGA design. In addition, he is a long-time Linux enthusiast, comfortable working close to the metal across a variety of environments.<br><br>He prefers remote engagements but is open to on-site work for firms in the Rochester, NY area.<br><br>If you have upcoming projects that could benefit from his skill set, please feel free to <span class=\"gmail_default\" style=\"font-size:small\"></span>l<span class=\"gmail_default\" style=\"font-size:small\">et me know.</span><br><span style=\"font-family:&quot;courier new&quot;,monospace\"><br></span></div><div><span style=\"font-family:&quot;courier new&quot;,monospace\">Regards,</span><br></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><div dir=\"ltr\"><div><font face=\"courier new, monospace\">Thomas Pownall</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">CADX Services, Inc.</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">Tel: 585-624-1491 X101</font></div><div><font face=\"courier new, monospace\">Fax: 585-582-1101</font></div><div><font face=\"courier new, monospace\">E-Mail: <a href=\"mailto:tpownall@cadxservices.com\" target=\"_blank\">tpownall@cadxservices.com</a></font></div><div><font face=\"courier new, monospace\">Web: <a href=\"http://www.cadxservices.com\" target=\"_blank\">http://www.cadxservices.com</a></font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">***********************************************************</font></div><div><font face=\"courier new, monospace\">**************** Confidentiality Statement ****************</font></div><div><font face=\"courier new, monospace\">***********************************************************</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">Privileged/Confidential Information may be contained in this</font></div><div><font face=\"courier new, monospace\">message. If you are not the addressee indicated in this message</font></div><div><font face=\"courier new, monospace\">(or responsible for delivery of the message to such person),</font></div><div><font face=\"courier new, monospace\">you may not copy or deliver this message to anyone. In such</font></div><div><font face=\"courier new, monospace\">case, you should destroy this message, and notify us</font></div><div><font face=\"courier new, monospace\">immediately. If you or your employer does not consent to</font></div><div><font face=\"courier new, monospace\">Internet email messages of this kind, please advise us</font></div><div><font face=\"courier new, monospace\">immediately. Opinions, conclusions and other information</font></div><div><font face=\"courier new, monospace\">expressed in this message are not given or endorsed by my firm</font></div><div><font face=\"courier new, monospace\">or employer unless otherwise indicated by an authorized</font></div><div><font face=\"courier new, monospace\">representative independent of this message.</font></div></div></div></div></div></div>','Rick:\r\n\r\nJoel\'s made everything I have for him to do work -- so I need to find him\r\nsome work or find another client project I can include him on. Do you know\r\nof someone?\r\n\r\nWhen that money comes in we\'re going to want to clone Joel, but I also\r\ndon\'t want to lose him.\r\n\r\nJoel has over 20 years of industry experience. Joel is proficient in a wide\r\nrange of programming languages, with deep expertise in C and assembly. His\r\ntypical workflow involves developing in C and then optimizing\r\nperformance-critical sections directly in assembly when needed.\r\n\r\nJoel has extensive hands-on experience with 8-bit and 16-bit\r\nmicrocontrollers, including both ARM-based devices and proprietary\r\narchitectures such as Microchip’s PIC family. He is also familiar with\r\nhigher-performance processors from NXP and has some background in FPGA\r\ndesign. In addition, he is a long-time Linux enthusiast, comfortable\r\nworking close to the metal across a variety of environments.\r\n\r\nHe prefers remote engagements but is open to on-site work for firms in the\r\nRochester, NY area.\r\n\r\nIf you have upcoming projects that could benefit from his skill set, please\r\nfeel free to let me know.\r\n\r\nRegards,\r\nThomas Pownall\r\n\r\nCADX Services, Inc.\r\n\r\nTel: 585-624-1491 X101\r\nFax: 585-582-1101\r\nE-Mail: tpownall@cadxservices.com\r\nWeb: http://www.cadxservices.com\r\n\r\n***********************************************************\r\n**************** Confidentiality Statement ****************\r\n***********************************************************\r\n\r\nPrivileged/Confidential Information may be contained in this\r\nmessage. If you are not the addressee indicated in this message\r\n(or responsible for delivery of the message to such person),\r\nyou may not copy or deliver this message to anyone. In such\r\ncase, you should destroy this message, and notify us\r\nimmediately. If you or your employer does not consent to\r\nInternet email messages of this kind, please advise us\r\nimmediately. Opinions, conclusions and other information\r\nexpressed in this message are not given or endorsed by my firm\r\nor employer unless otherwise indicated by an authorized\r\nrepresentative independent of this message.',0,0,0,0,0,0,'2025-11-19 16:12:17','2025-12-04 14:04:32','2025-12-04 14:04:32','2025-12-04 14:04:32',NULL,NULL,NULL),
(65,4,'<CAGgBgfBOr7JdtebH_KwTAhK_gxgGJ=JqjZZwv6ksmbNQYX4uDQ@mail.gmail.com>',NULL,NULL,'Re: Extra Work? (11/19/25 1115)','tpownall@cadxservices.com','Thomas Pownall','<div dir=\"ltr\"><div><div class=\"gmail_default\" style=\"font-size:small\">That&#39;s awesome, but I cleared out my piggy bank paying him for other jobs around here, so I&#39;m looking for a stopgap for him.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">I want to keep him, and you want to keep him (even if you haven&#39;t experienced why yet), but that costs money.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">The products I went out to find are mostly production -- I made my money on selling quantities of things.  I just got another order for 500 pieces of a thing, but delivery won&#39;t be here for another week and then payment&#39;s another 14 days out.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">The moral of the story is I focused too long on the drone project without mining for money -- if I had shifted my focus a month earlier it would be different.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">I&#39;m also trying to avoid 2 big boys that would eat me up if they decide they like me, and Joel alone won&#39;t be enough for them -- they would need mechanical, hardware and firmware.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">That&#39;s just FYI.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">-- Tom</div><div class=\"gmail_default\" style=\"font-size:small\"></div></div><br><div><br></div></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Nov 19, 2025 at 12:25 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"> Good news is coming soon….like within the next 15 days… ok? <br> <br><p>On November 19, 2025 at 11:13:35 AM, Thomas Pownall (<a href=\"mailto:tpownall@cadxservices.com\" target=\"_blank\">tpownall@cadxservices.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"ltr\"><div><div class=\"gmail_default\" style=\"font-size:small\">Rick:</div><div><br></div><div><div class=\"gmail_default\" style=\"font-size:small\">Joel&#39;s made everything I have for him to do work -- so I need to find him some work or find another client project I can include him on. Do you know of someone?</div></div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><div class=\"gmail_default\" style=\"font-size:small\">When that money comes in we&#39;re going to want to clone Joel, but I also don&#39;t want to lose him.</div><div class=\"gmail_default\" style=\"font-size:small\"><br></div><span class=\"gmail_default\" style=\"font-size:small\">Joel has </span>over 20 years of industry experience. Joel is proficient in a wide range of programming languages, with deep expertise in C and assembly. His typical workflow involves developing in C and then optimizing performance-critical sections directly in assembly when needed.<br><br>Joel has extensive hands-on experience with 8-bit and 16-bit microcontrollers, including both ARM-based devices and proprietary architectures such as Microchip’s PIC family. He is also familiar with higher-performance processors from NXP and has some background in FPGA design. In addition, he is a long-time Linux enthusiast, comfortable working close to the metal across a variety of environments.<br><br>He prefers remote engagements but is open to on-site work for firms in the Rochester, NY area.<br><br>If you have upcoming projects that could benefit from his skill set, please feel free to <span class=\"gmail_default\" style=\"font-size:small\"></span>l<span class=\"gmail_default\" style=\"font-size:small\">et me know.</span><br><span style=\"font-family:&quot;courier new&quot;,monospace\"><br></span></div><div><span style=\"font-family:&quot;courier new&quot;,monospace\">Regards,</span><br></div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div dir=\"ltr\"><div><font face=\"courier new, monospace\">Thomas Pownall</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">CADX Services, Inc.</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">Tel: 585-624-1491 X101</font></div><div><font face=\"courier new, monospace\">Fax: 585-582-1101</font></div><div><font face=\"courier new, monospace\">E-Mail: <a href=\"mailto:tpownall@cadxservices.com\" target=\"_blank\">tpownall@cadxservices.com</a></font></div><div><font face=\"courier new, monospace\">Web: <a href=\"http://www.cadxservices.com\" target=\"_blank\">http://www.cadxservices.com</a></font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">***********************************************************</font></div><div><font face=\"courier new, monospace\">**************** Confidentiality Statement ****************</font></div><div><font face=\"courier new, monospace\">***********************************************************</font></div><div><font face=\"courier new, monospace\"><br></font></div><div><font face=\"courier new, monospace\">Privileged/Confidential Information may be contained in this</font></div><div><font face=\"courier new, monospace\">message. If you are not the addressee indicated in this message</font></div><div><font face=\"courier new, monospace\">(or responsible for delivery of the message to such person),</font></div><div><font face=\"courier new, monospace\">you may not copy or deliver this message to anyone. In such</font></div><div><font face=\"courier new, monospace\">case, you should destroy this message, and notify us</font></div><div><font face=\"courier new, monospace\">immediately. If you or your employer does not consent to</font></div><div><font face=\"courier new, monospace\">Internet email messages of this kind, please advise us</font></div><div><font face=\"courier new, monospace\">immediately. Opinions, conclusions and other information</font></div><div><font face=\"courier new, monospace\">expressed in this message are not given or endorsed by my firm</font></div><div><font face=\"courier new, monospace\">or employer unless otherwise indicated by an authorized</font></div><div><font face=\"courier new, monospace\">representative independent of this message.</font></div></div></div></div></div></div>\r\n\r\n</div></div></span></blockquote></blockquote></div>','That\'s awesome, but I cleared out my piggy bank paying him for other jobs\r\naround here, so I\'m looking for a stopgap for him.\r\n\r\nI want to keep him, and you want to keep him (even if you haven\'t\r\nexperienced why yet), but that costs money.\r\n\r\nThe products I went out to find are mostly production -- I made my money on\r\nselling quantities of things.  I just got another order for 500 pieces of a\r\nthing, but delivery won\'t be here for another week and then payment\'s\r\nanother 14 days out.\r\n\r\nThe moral of the story is I focused too long on the drone project without\r\nmining for money -- if I had shifted my focus a month earlier it would be\r\ndifferent.\r\n\r\nI\'m also trying to avoid 2 big boys that would eat me up if they decide\r\nthey like me, and Joel alone won\'t be enough for them -- they would need\r\nmechanical, hardware and firmware.\r\n\r\nThat\'s just FYI.\r\n\r\n-- Tom\r\n\r\n\r\n\r\nOn Wed, Nov 19, 2025 at 12:25 PM Rick <rick@mavrix.one> wrote:\r\n\r\n> Good news is coming soon….like within the next 15 days… ok?\r\n>\r\n> On November 19, 2025 at 11:13:35 AM, Thomas Pownall (\r\n> tpownall@cadxservices.com) wrote:\r\n>\r\n> Rick:\r\n>\r\n> Joel\'s made everything I have for him to do work -- so I need to find him\r\n> some work or find another client project I can include him on. Do you know\r\n> of someone?\r\n>\r\n> When that money comes in we\'re going to want to clone Joel, but I also\r\n> don\'t want to lose him.\r\n>\r\n> Joel has over 20 years of industry experience. Joel is proficient in a\r\n> wide range of programming languages, with deep expertise in C and assembly.\r\n> His typical workflow involves developing in C and then optimizing\r\n> performance-critical sections directly in assembly when needed.\r\n>\r\n> Joel has extensive hands-on experience with 8-bit and 16-bit\r\n> microcontrollers, including both ARM-based devices and proprietary\r\n> architectures such as Microchip’s PIC family. He is also familiar with\r\n> higher-performance processors from NXP and has some background in FPGA\r\n> design. In addition, he is a long-time Linux enthusiast, comfortable\r\n> working close to the metal across a variety of environments.\r\n>\r\n> He prefers remote engagements but is open to on-site work for firms in the\r\n> Rochester, NY area.\r\n>\r\n> If you have upcoming projects that could benefit from his skill set,\r\n> please feel free to let me know.\r\n>\r\n> Regards,\r\n> Thomas Pownall\r\n>\r\n> CADX Services, Inc.\r\n>\r\n> Tel: 585-624-1491 X101\r\n> Fax: 585-582-1101\r\n> E-Mail: tpownall@cadxservices.com\r\n> Web: http://www.cadxservices.com\r\n>\r\n> ***********************************************************\r\n> **************** Confidentiality Statement ****************\r\n> ***********************************************************\r\n>\r\n> Privileged/Confidential Information may be contained in this\r\n> message. If you are not the addressee indicated in this message\r\n> (or responsible for delivery of the message to such person),\r\n> you may not copy or deliver this message to anyone. In such\r\n> case, you should destroy this message, and notify us\r\n> immediately. If you or your employer does not consent to\r\n> Internet email messages of this kind, please advise us\r\n> immediately. Opinions, conclusions and other information\r\n> expressed in this message are not given or endorsed by my firm\r\n> or employer unless otherwise indicated by an authorized\r\n> representative independent of this message.\r\n>\r\n>',0,0,0,0,0,0,'2025-11-19 17:30:49','2025-12-04 14:04:32','2025-12-04 14:04:32','2025-12-04 14:04:32',NULL,NULL,NULL),
(66,4,'<CAGOCFXisPuQe5-7UjuOYZNjrK_GDaS1G3HjWJsg+3KvAy8SPfA@mail.gmail.com>',NULL,NULL,'Fwd: Recap of your meeting with Lithium Battery Co','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div><br clear=\"all\"></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">---------- Forwarded message ---------<br>From: <strong class=\"gmail_sendername\" dir=\"auto\">Fathom</strong> <span dir=\"auto\">&lt;no-reply@fathom.video&gt;</span><br>Date: Wed, Nov 19, 2025 at 3:06 PM<br>Subject: Recap of your meeting with Lithium Battery Co<br>To: Nathan Staron &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\">nathan@lithiumbatterycompany.com</a>&gt;<br></div><br><br><div class=\"msg2037099574913418531\"><u></u>\r\n\r\n  \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n  \r\n  <div id=\"m_3925713835082034958emailBody\" style=\"margin:0;padding:0\">\r\n    <div style=\"display:none\">Meeting Purpose\r\n\r\nKick off the Lithium Battery Company (LBC) manufacturing facility fit-out project.\r\n\r\nKey Takeaways\r\n\r\n  - Suite 3 is the critical path: Its manufacturing equipment requires 380V/60Hz power, a 40–60% humidity range, and an ISO Class 8 cleanroom environment.\r\n  - Side-mounted HVAC is the preferred solution: It avoids roof penetrations, simplifies maintenance, and allows LBC to retain the equipment if they relocate.\r\n  - A 3rd-party plan review will accelerate permitting: This strategy is expected to cut the timeline from a typical 30+ days to ~10 days, bypassing city backlogs.\r\n  - The facility layout is confirmed: The large prismatic line will move to the left side of Suite 3, creating a central logistics channel.\r\n\r\nTopics\r\n\r\nFacility Layout &amp; Workflow\r\n\r\n  - Suite 3 (Manufacturing):\r\n      - Houses five production lines (Kukurova, prismatic, cylindrical).\r\n      - Layout Change: The large prismatic line will move to the left side and rotate 180 degrees to create a central logistics channel.\r\n      - Personnel: ~40 people (10 per line + supervisors).\r\n  - Suite 1 (Testing &amp; Aging):\r\n      - Function: Post-production testing and aging of battery modules.\r\n      - Equipment: Runs on the building&#39;s existing 480V/3-phase power.\r\n      - Personnel: 10–30 people.\r\n  - Suite 2 (Shipping &amp; Receiving):\r\n      - Function: Unboxing and staging equipment before moving it to Suite 3.\r\n      - Storage: Home Depot-style racks for lightweight components (&lt;15 ft high).\r\n      - Logistics: Electric pallet jacks only; forklifts are restricted to Suite 2 to protect floors.\r\n\r\nHVAC &amp; Environmental Control\r\n\r\n  - Suite 3 Requirements:\r\n      - Temperature: 18–25°C (64.4–77°F).\r\n      - Humidity: 40–60% RH.\r\n      - Filtration: ISO Class 8 cleanroom environment.\r\n      - Pressure: Positive pressure to prevent contamination.\r\n  - HVAC Solution → Side-Mounted Units:\r\n      - Rationale: Avoids roof penetrations, simplifies maintenance, and allows LBC to retain the equipment upon relocation.\r\n      - Implementation: Units on exterior walls with interior air handlers and ductwork.\r\n      - Flood Protection: Units must be raised above the Base Flood Elevation (BFE) on pads or brackets.\r\n  - Ventilation &amp; Gas Control:\r\n      - Challenge: The building&#39;s existing wall vents will compromise conditioned air.\r\n      - Solution: Isolate vents with ductwork to direct exhaust outside.\r\n      - Gas Lines: Compressed air, nitrogen, and oxygen lines are required.\r\n          - Nitrogen: Gaseous form. Options include portable tanks, a bulk tank, or a nitrogen generator.\r\n\r\nPower &amp; Electrical\r\n\r\n  - Suite 3 Equipment Power:\r\n      - Requirement: 380V/60Hz, 3-phase.\r\n      - Solution: Three readily available Maddox step-down transformers (4-week lead time) will convert the building&#39;s 480V supply.\r\n  - Power Capacity:\r\n      - Initial: Sufficient for day-one operations.\r\n      - Future: The Main Distribution Panel (MDP) must be sized for future expansion (e.g., CNC machines).\r\n      - Strategy: LBC will request TECO to pay for future power upgrades.\r\n  - Lighting:\r\n      - Requirement: Replace existing motion-sensor LEDs with a new, higher-output system.\r\n      - Rationale: Improve visibility and ensure safety, especially with potential nitrogen leaks.\r\n\r\nPermitting &amp; Schedule\r\n\r\n  - Permitting Strategy → 3rd-Party Review:\r\n      - Rationale: Accelerates the timeline by bypassing city backlogs.\r\n      - Timeline: Expected to reduce review from 30+ days to ~10 days.\r\n  - Construction Sequencing:\r\n      - Phase 1: Complete Suite 3 (flooring, HVAC, electrical).\r\n      - Phase 2: Unbox and stage equipment in Suite 2.\r\n      - Phase 3: Move equipment into Suite 3, then complete Suite 2 flooring.\r\n  - Occupancy: LBC can assemble equipment before receiving the Certificate of Occupancy (CO), but cannot begin production.\r\n\r\nFacility Enhancements\r\n\r\n  - Flooring: Anti-static epoxy floor required throughout.\r\n  - Material Handling:\r\n      - Bridge Crane: A mobile or monorail system is needed to move heavy battery packs.\r\n      - Ramps: The exterior ramp for container loading needs security enhancements.\r\n  - Office &amp; Break Areas:\r\n      - Reception: Add a foyer at the main entrance.\r\n      - Break Room: Convert a corner of Suite 1 into a break room.\r\n      - Conference Rooms: Several smaller rooms and one large collaboration space are needed.\r\n\r\nNext Steps\r\n\r\n  - Jordan/Nathan:\r\n      - Distribute all equipment spec sheets to the design team.\r\n      - Confirm the final Suite 3 layout with the design team.\r\n      - Research and propose a nitrogen supply solution (tanks vs. generator).\r\n  - Jeff (MEP):\r\n      - Analyze HVAC and power requirements based on specs.\r\n      - Propose side-mounted HVAC unit sizes and locations.\r\n      - Size the MDP for current and future power loads.\r\n  - James/Steve (LDDBlueline):\r\n      - Update the facility layout with the Suite 3 changes.\r\n      - Incorporate new office/breakroom areas into the design.\r\n  - Choate Construction:\r\n      - Secure a 3rd-party plan review consultant (e.g., NOVA).\r\n      - Develop a phased construction schedule.\r\n</div>\r\n    <table id=\"m_3925713835082034958emailWrapper\" width=\"100%\" style=\"min-width:320px\" cellspacing=\"0\" cellpadding=\"0\">\r\n      <tbody><tr>\r\n        <td class=\"m_3925713835082034958p-0\" style=\"padding:30px 0\">\r\n          <table class=\"m_3925713835082034958w-100p\" width=\"560\" align=\"center\" style=\"max-width:560px;margin:0 auto\" cellpadding=\"0\" cellspacing=\"0\">\r\n            <tbody><tr>\r\n              <td class=\"m_3925713835082034958pt-15\" style=\"padding:18px 0px 20px\">\r\n                <table class=\"m_3925713835082034958maxw-560\" style=\"max-width:640px;width:100%!important;margin:0\" cellpadding=\"0\" cellspacing=\"0\">\r\n                  <tbody><tr>\r\n                    <td>\r\n                      <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                        <tbody><tr>\r\n                          <td align=\"left\">\r\n                            <a style=\"text-decoration:none\" href=\"https://fathom.video/?utm_campaign=postmeetingsummary&amp;utm_content=header&amp;utm_medium=email\" target=\"_blank\">\r\n                              <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/fathom-logo-black-2025.png\" width=\"152\" alt=\"FATHOM\">\r\n                            </a>\r\n                          </td>\r\n                        </tr>\r\n                      </tbody></table>\r\n                    </td>\r\n                  </tr>\r\n                </tbody></table>\r\n              </td>\r\n            </tr>\r\n            <tr>\r\n              <td class=\"m_3925713835082034958pt-15\">\r\n                <table class=\"m_3925713835082034958maxw-560\" style=\"max-width:640px;width:100%!important;margin:0\" cellpadding=\"0\" cellspacing=\"0\">\r\n                  <tbody><tr>\r\n                    <td style=\"padding:0 0 20px\">\r\n                      <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                        <tbody><tr>\r\n                          <th class=\"m_3925713835082034958tflex\" align=\"left\" style=\"vertical-align:top\">\r\n                            <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                              <tbody><tr>\r\n                                <td class=\"m_3925713835082034958pt-0 m_3925713835082034958pb-9\" style=\"padding:8px 0 5px\">\r\n                                  <table cellpadding=\"0\" cellspacing=\"0\">\r\n                                    <tbody><tr>\r\n                                      <td style=\"font:600 16px/20px Arial,Helvetica,sans-serif,Inter;color:#606167\">\r\n                                        Meeting with Lithium Battery Co\r\n                                      </td>\r\n                                    </tr>\r\n                                  </tbody></table>\r\n                                </td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td class=\"m_3925713835082034958fs-24 m_3925713835082034958lh-30\" style=\"padding:0 0 3px;font:700 28px/35px Arial,Helvetica,sans-serif,Inter;color:#000;letter-spacing:-.6px\">\r\n                                  Lithium / Garage - Kick Off Meeting  \r\n                                </td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td style=\"font:500 13px/17px Arial,Helvetica,sans-serif,Inter;color:#6c6d72;letter-spacing:-.2px\">\r\n                                  November 19, 2025  <span style=\"color:#d3d3d3\">•</span> \r\n                                  95 mins  <span style=\"color:#d3d3d3\">•</span> \r\n                                  <a class=\"m_3925713835082034958underline\" style=\"color:#0070ac\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;utm_campaign=postmeetingsummary&amp;utm_content=view_recording_link&amp;utm_medium=email\" target=\"_blank\">View Meeting</a>\r\n                                  or <a class=\"m_3925713835082034958underline\" style=\"color:#0070ac\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=ask_fathom&amp;utm_campaign=postmeetingsummary&amp;utm_content=ask_fathom&amp;utm_medium=email\" target=\"_blank\">Ask Fathom</a>\r\n                                </td>\r\n                              </tr>\r\n                            </tbody></table>\r\n                          </th>\r\n                        </tr>\r\n                      </tbody></table>\r\n                    </td>\r\n                  </tr>\r\n                  <tr>\r\n                    <td class=\"m_3925713835082034958ptb-20\" style=\"border-radius:10px\">\r\n                      <table width=\"560\" align=\"center\" style=\"max-width:560px;width:100%!important;margin:0px\" cellpadding=\"0\" cellspacing=\"0\">\r\n                        <tbody><tr>\r\n                          <td class=\"m_3925713835082034958fs-20 m_3925713835082034958lh-25\" style=\"padding:19px 0 10px;font:700 14px/17px Arial,Helvetica,sans-serif,Inter;color:#9c9c9c;letter-spacing:-.28px;text-transform:uppercase\">\r\n                            Action Items ✨\r\n                          </td>\r\n                        </tr>\r\n                        <tr>\r\n                          <td class=\"m_3925713835082034958pb-10\" style=\"padding:0 0 15px\">\r\n                            <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                              <tbody><tr>\r\n                                <td width=\"16\" valign=\"top\" style=\"padding:0 0 15px;line-height:1px;font-size:1px\">\r\n                                  <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-05.png\" width=\"16\" style=\"width:16px;display:block;vertical-align:top\" alt=\"\">\r\n                                </td>\r\n                                <td width=\"12\" style=\"padding:0 0 15px\"></td>\r\n                                <td valign=\"top\" style=\"padding:0 0 15px\">\r\n                                  <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                                    <tbody><tr>\r\n                                      <td class=\"m_3925713835082034958ico-block-03 m_3925713835082034958fs-14 m_3925713835082034958lh-18\" style=\"padding:0 0 3px;font:600 14px/18px Arial,Helvetica,sans-serif,Inter;color:#000;letter-spacing:-.14px\">\r\n                                        <a style=\"color:#000;text-decoration:none\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=899.9999&amp;utm_campaign=postmeetingsummary&amp;utm_content=action_item&amp;utm_medium=email\" target=\"_blank\">\r\n                                          Email Jordan equipment layout + specs; request LBC add missing items<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle;margin:0 0 0 5px\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;border:none\" alt=\"\"></span><span style=\"font:600 10px/12px Arial,Helvetica,sans-serif,Inter\"></span>\r\n                                        </a>\r\n                                      </td>\r\n                                    </tr>\r\n                                    <tr>\r\n                                      <td class=\"m_3925713835082034958ico-block-02\" style=\"font:12px/15.6px Arial,Helvetica,sans-serif,Inter;color:#6c6d72;letter-spacing:-.12px\">\r\n                                        James Jacobik\r\n                                      </td>\r\n                                    </tr>\r\n                                  </tbody></table>\r\n                                </td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td width=\"16\" valign=\"top\" style=\"padding:0 0 15px;line-height:1px;font-size:1px\">\r\n                                  <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-05.png\" width=\"16\" style=\"width:16px;display:block;vertical-align:top\" alt=\"\">\r\n                                </td>\r\n                                <td width=\"12\" style=\"padding:0 0 15px\"></td>\r\n                                <td valign=\"top\" style=\"padding:0 0 15px\">\r\n                                  <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                                    <tbody><tr>\r\n                                      <td class=\"m_3925713835082034958ico-block-03 m_3925713835082034958fs-14 m_3925713835082034958lh-18\" style=\"padding:0 0 3px;font:600 14px/18px Arial,Helvetica,sans-serif,Inter;color:#000;letter-spacing:-.14px\">\r\n                                        <a style=\"color:#000;text-decoration:none\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=1189.9999&amp;utm_campaign=postmeetingsummary&amp;utm_content=action_item&amp;utm_medium=email\" target=\"_blank\">\r\n                                          Email HVAC/power Qs + prior Q list to Jordan; request LBC answers<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle;margin:0 0 0 5px\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;border:none\" alt=\"\"></span><span style=\"font:600 10px/12px Arial,Helvetica,sans-serif,Inter\"></span>\r\n                                        </a>\r\n                                      </td>\r\n                                    </tr>\r\n                                    <tr>\r\n                                      <td class=\"m_3925713835082034958ico-block-02\" style=\"font:12px/15.6px Arial,Helvetica,sans-serif,Inter;color:#6c6d72;letter-spacing:-.12px\">\r\n                                        Jeff Miller\r\n                                      </td>\r\n                                    </tr>\r\n                                  </tbody></table>\r\n                                </td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td width=\"16\" valign=\"top\" style=\"padding:0 0 15px;line-height:1px;font-size:1px\">\r\n                                  <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-05.png\" width=\"16\" style=\"width:16px;display:block;vertical-align:top\" alt=\"\">\r\n                                </td>\r\n                                <td width=\"12\" style=\"padding:0 0 15px\"></td>\r\n                                <td valign=\"top\" style=\"padding:0 0 15px\">\r\n                                  <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                                    <tbody><tr>\r\n                                      <td class=\"m_3925713835082034958ico-block-03 m_3925713835082034958fs-14 m_3925713835082034958lh-18\" style=\"padding:0 0 3px;font:600 14px/18px Arial,Helvetica,sans-serif,Inter;color:#000;letter-spacing:-.14px\">\r\n                                        <a style=\"color:#000;text-decoration:none\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=1451.9999&amp;utm_campaign=postmeetingsummary&amp;utm_content=action_item&amp;utm_medium=email\" target=\"_blank\">\r\n                                          Email background drawing to LDD/Choate; request updated layout<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle;margin:0 0 0 5px\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;border:none\" alt=\"\"></span><span style=\"font:600 10px/12px Arial,Helvetica,sans-serif,Inter\"></span>\r\n                                        </a>\r\n                                      </td>\r\n                                    </tr>\r\n                                    <tr>\r\n                                      <td class=\"m_3925713835082034958ico-block-02\" style=\"font:12px/15.6px Arial,Helvetica,sans-serif,Inter;color:#6c6d72;letter-spacing:-.12px\">\r\n                                        Jordan Wroblewski - LBC\r\n                                      </td>\r\n                                    </tr>\r\n                                  </tbody></table>\r\n                                </td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td width=\"16\" valign=\"top\" style=\"padding:0 0 15px;line-height:1px;font-size:1px\">\r\n                                  <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-05.png\" width=\"16\" style=\"width:16px;display:block;vertical-align:top\" alt=\"\">\r\n                                </td>\r\n                                <td width=\"12\" style=\"padding:0 0 15px\"></td>\r\n                                <td valign=\"top\" style=\"padding:0 0 15px\">\r\n                                  <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                                    <tbody><tr>\r\n                                      <td class=\"m_3925713835082034958ico-block-03 m_3925713835082034958fs-14 m_3925713835082034958lh-18\" style=\"padding:0 0 3px;font:600 14px/18px Arial,Helvetica,sans-serif,Inter;color:#000;letter-spacing:-.14px\">\r\n                                        <a style=\"color:#000;text-decoration:none\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=2245.9999&amp;utm_campaign=postmeetingsummary&amp;utm_content=action_item&amp;utm_medium=email\" target=\"_blank\">\r\n                                          Email LDD/Choate high-bay rack heights/locations; request sprinkler review/options<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle;margin:0 0 0 5px\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;border:none\" alt=\"\"></span><span style=\"font:600 10px/12px Arial,Helvetica,sans-serif,Inter\"></span>\r\n                                        </a>\r\n                                      </td>\r\n                                    </tr>\r\n                                    <tr>\r\n                                      <td class=\"m_3925713835082034958ico-block-02\" style=\"font:12px/15.6px Arial,Helvetica,sans-serif,Inter;color:#6c6d72;letter-spacing:-.12px\">\r\n                                        Jordan Wroblewski - LBC\r\n                                      </td>\r\n                                    </tr>\r\n                                  </tbody></table>\r\n                                </td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td width=\"16\" valign=\"top\" style=\"padding:0 0 15px;line-height:1px;font-size:1px\">\r\n                                  <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-05.png\" width=\"16\" style=\"width:16px;display:block;vertical-align:top\" alt=\"\">\r\n                                </td>\r\n                                <td width=\"12\" style=\"padding:0 0 15px\"></td>\r\n                                <td valign=\"top\" style=\"padding:0 0 15px\">\r\n                                  <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                                    <tbody><tr>\r\n                                      <td class=\"m_3925713835082034958ico-block-03 m_3925713835082034958fs-14 m_3925713835082034958lh-18\" style=\"padding:0 0 3px;font:600 14px/18px Arial,Helvetica,sans-serif,Inter;color:#000;letter-spacing:-.14px\">\r\n                                        <a style=\"color:#000;text-decoration:none\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=2366.9999&amp;utm_campaign=postmeetingsummary&amp;utm_content=action_item&amp;utm_medium=email\" target=\"_blank\">\r\n                                          Email LDD/Choate forklift charging qty/locations; request layout<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle;margin:0 0 0 5px\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;border:none\" alt=\"\"></span><span style=\"font:600 10px/12px Arial,Helvetica,sans-serif,Inter\"></span>\r\n                                        </a>\r\n                                      </td>\r\n                                    </tr>\r\n                                    <tr>\r\n                                      <td class=\"m_3925713835082034958ico-block-02\" style=\"font:12px/15.6px Arial,Helvetica,sans-serif,Inter;color:#6c6d72;letter-spacing:-.12px\">\r\n                                        Jordan Wroblewski - LBC\r\n                                      </td>\r\n                                    </tr>\r\n                                  </tbody></table>\r\n                                </td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td width=\"16\" valign=\"top\" style=\"padding:0 0 15px;line-height:1px;font-size:1px\">\r\n                                  <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-05.png\" width=\"16\" style=\"width:16px;display:block;vertical-align:top\" alt=\"\">\r\n                                </td>\r\n                                <td width=\"12\" style=\"padding:0 0 15px\"></td>\r\n                                <td valign=\"top\" style=\"padding:0 0 15px\">\r\n                                  <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                                    <tbody><tr>\r\n                                      <td class=\"m_3925713835082034958ico-block-03 m_3925713835082034958fs-14 m_3925713835082034958lh-18\" style=\"padding:0 0 3px;font:600 14px/18px Arial,Helvetica,sans-serif,Inter;color:#000;letter-spacing:-.14px\">\r\n                                        <a style=\"color:#000;text-decoration:none\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=2450.9999&amp;utm_campaign=postmeetingsummary&amp;utm_content=action_item&amp;utm_medium=email\" target=\"_blank\">\r\n                                          Email LDD/Choate monorail/hoist lift points/loads; request design<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle;margin:0 0 0 5px\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;border:none\" alt=\"\"></span><span style=\"font:600 10px/12px Arial,Helvetica,sans-serif,Inter\"></span>\r\n                                        </a>\r\n                                      </td>\r\n                                    </tr>\r\n                                    <tr>\r\n                                      <td class=\"m_3925713835082034958ico-block-02\" style=\"font:12px/15.6px Arial,Helvetica,sans-serif,Inter;color:#6c6d72;letter-spacing:-.12px\">\r\n                                        Jordan Wroblewski - LBC\r\n                                      </td>\r\n                                    </tr>\r\n                                  </tbody></table>\r\n                                </td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td width=\"16\" valign=\"top\" style=\"padding:0 0 15px;line-height:1px;font-size:1px\">\r\n                                  <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-05.png\" width=\"16\" style=\"width:16px;display:block;vertical-align:top\" alt=\"\">\r\n                                </td>\r\n                                <td width=\"12\" style=\"padding:0 0 15px\"></td>\r\n                                <td valign=\"top\" style=\"padding:0 0 15px\">\r\n                                  <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                                    <tbody><tr>\r\n                                      <td class=\"m_3925713835082034958ico-block-03 m_3925713835082034958fs-14 m_3925713835082034958lh-18\" style=\"padding:0 0 3px;font:600 14px/18px Arial,Helvetica,sans-serif,Inter;color:#000;letter-spacing:-.14px\">\r\n                                        <a style=\"color:#000;text-decoration:none\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=2597.9999&amp;utm_campaign=postmeetingsummary&amp;utm_content=action_item&amp;utm_medium=email\" target=\"_blank\">\r\n                                          Email LDD/Choate lighting plan w/ higher levels + N2-zone considerations<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle;margin:0 0 0 5px\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;border:none\" alt=\"\"></span><span style=\"font:600 10px/12px Arial,Helvetica,sans-serif,Inter\"></span>\r\n                                        </a>\r\n                                      </td>\r\n                                    </tr>\r\n                                    <tr>\r\n                                      <td class=\"m_3925713835082034958ico-block-02\" style=\"font:12px/15.6px Arial,Helvetica,sans-serif,Inter;color:#6c6d72;letter-spacing:-.12px\">\r\n                                        Jeff Miller\r\n                                      </td>\r\n                                    </tr>\r\n                                  </tbody></table>\r\n                                </td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td width=\"16\" valign=\"top\" style=\"padding:0 0 15px;line-height:1px;font-size:1px\">\r\n                                  <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-05.png\" width=\"16\" style=\"width:16px;display:block;vertical-align:top\" alt=\"\">\r\n                                </td>\r\n                                <td width=\"12\" style=\"padding:0 0 15px\"></td>\r\n                                <td valign=\"top\" style=\"padding:0 0 15px\">\r\n                                  <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                                    <tbody><tr>\r\n                                      <td class=\"m_3925713835082034958ico-block-03 m_3925713835082034958fs-14 m_3925713835082034958lh-18\" style=\"padding:0 0 3px;font:600 14px/18px Arial,Helvetica,sans-serif,Inter;color:#000;letter-spacing:-.14px\">\r\n                                        <a style=\"color:#000;text-decoration:none\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=2657.9999&amp;utm_campaign=postmeetingsummary&amp;utm_content=action_item&amp;utm_medium=email\" target=\"_blank\">\r\n                                          Email LDD/Choate N2 flow rates/pressures/drops + tank location/shading; request N2 design<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle;margin:0 0 0 5px\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;border:none\" alt=\"\"></span><span style=\"font:600 10px/12px Arial,Helvetica,sans-serif,Inter\"></span>\r\n                                        </a>\r\n                                      </td>\r\n                                    </tr>\r\n                                    <tr>\r\n                                      <td class=\"m_3925713835082034958ico-block-02\" style=\"font:12px/15.6px Arial,Helvetica,sans-serif,Inter;color:#6c6d72;letter-spacing:-.12px\">\r\n                                        Jordan Wroblewski - LBC\r\n                                      </td>\r\n                                    </tr>\r\n                                  </tbody></table>\r\n                                </td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td width=\"16\" valign=\"top\" style=\"padding:0 0 15px;line-height:1px;font-size:1px\">\r\n                                  <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-05.png\" width=\"16\" style=\"width:16px;display:block;vertical-align:top\" alt=\"\">\r\n                                </td>\r\n                                <td width=\"12\" style=\"padding:0 0 15px\"></td>\r\n                                <td valign=\"top\" style=\"padding:0 0 15px\">\r\n                                  <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                                    <tbody><tr>\r\n                                      <td class=\"m_3925713835082034958ico-block-03 m_3925713835082034958fs-14 m_3925713835082034958lh-18\" style=\"padding:0 0 3px;font:600 14px/18px Arial,Helvetica,sans-serif,Inter;color:#000;letter-spacing:-.14px\">\r\n                                        <a style=\"color:#000;text-decoration:none\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=2803.9999&amp;utm_campaign=postmeetingsummary&amp;utm_content=action_item&amp;utm_medium=email\" target=\"_blank\">\r\n                                          Email Airgas re: N2 supply/delivery/tank-swap; request proposal<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle;margin:0 0 0 5px\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;border:none\" alt=\"\"></span><span style=\"font:600 10px/12px Arial,Helvetica,sans-serif,Inter\"></span>\r\n                                        </a>\r\n                                      </td>\r\n                                    </tr>\r\n                                    <tr>\r\n                                      <td class=\"m_3925713835082034958ico-block-02\" style=\"font:12px/15.6px Arial,Helvetica,sans-serif,Inter;color:#6c6d72;letter-spacing:-.12px\">\r\n                                        Jordan Wroblewski - LBC\r\n                                      </td>\r\n                                    </tr>\r\n                                  </tbody></table>\r\n                                </td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td width=\"16\" valign=\"top\" style=\"padding:0 0 15px;line-height:1px;font-size:1px\">\r\n                                  <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-05.png\" width=\"16\" style=\"width:16px;display:block;vertical-align:top\" alt=\"\">\r\n                                </td>\r\n                                <td width=\"12\" style=\"padding:0 0 15px\"></td>\r\n                                <td valign=\"top\" style=\"padding:0 0 15px\">\r\n                                  <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                                    <tbody><tr>\r\n                                      <td class=\"m_3925713835082034958ico-block-03 m_3925713835082034958fs-14 m_3925713835082034958lh-18\" style=\"padding:0 0 3px;font:600 14px/18px Arial,Helvetica,sans-serif,Inter;color:#000;letter-spacing:-.14px\">\r\n                                        <a style=\"color:#000;text-decoration:none\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=3517.9999&amp;utm_campaign=postmeetingsummary&amp;utm_content=action_item&amp;utm_medium=email\" target=\"_blank\">\r\n                                          Email LDD/Choate bathroom counts/ADA + break/reception/training/server needs; request layout<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle;margin:0 0 0 5px\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;border:none\" alt=\"\"></span><span style=\"font:600 10px/12px Arial,Helvetica,sans-serif,Inter\"></span>\r\n                                        </a>\r\n                                      </td>\r\n                                    </tr>\r\n                                    <tr>\r\n                                      <td class=\"m_3925713835082034958ico-block-02\" style=\"font:12px/15.6px Arial,Helvetica,sans-serif,Inter;color:#6c6d72;letter-spacing:-.12px\">\r\n                                        Jordan Wroblewski - LBC\r\n                                      </td>\r\n                                    </tr>\r\n                                  </tbody></table>\r\n                                </td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td width=\"16\" valign=\"top\" style=\"padding:0 0 15px;line-height:1px;font-size:1px\">\r\n                                  <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-05.png\" width=\"16\" style=\"width:16px;display:block;vertical-align:top\" alt=\"\">\r\n                                </td>\r\n                                <td width=\"12\" style=\"padding:0 0 15px\"></td>\r\n                                <td valign=\"top\" style=\"padding:0 0 15px\">\r\n                                  <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                                    <tbody><tr>\r\n                                      <td class=\"m_3925713835082034958ico-block-03 m_3925713835082034958fs-14 m_3925713835082034958lh-18\" style=\"padding:0 0 3px;font:600 14px/18px Arial,Helvetica,sans-serif,Inter;color:#000;letter-spacing:-.14px\">\r\n                                        <a style=\"color:#000;text-decoration:none\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=5579.9999&amp;utm_campaign=postmeetingsummary&amp;utm_content=action_item&amp;utm_medium=email\" target=\"_blank\">\r\n                                          Email LDD/Choate fast-fabric door product data/lead times; request proposal<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle;margin:0 0 0 5px\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;border:none\" alt=\"\"></span><span style=\"font:600 10px/12px Arial,Helvetica,sans-serif,Inter\"></span>\r\n                                        </a>\r\n                                      </td>\r\n                                    </tr>\r\n                                    <tr>\r\n                                      <td class=\"m_3925713835082034958ico-block-02\" style=\"font:12px/15.6px Arial,Helvetica,sans-serif,Inter;color:#6c6d72;letter-spacing:-.12px\">\r\n                                        Jordan Wroblewski - LBC\r\n                                      </td>\r\n                                    </tr>\r\n                                  </tbody></table>\r\n                                </td>\r\n                              </tr>\r\n                            </tbody></table>\r\n                          </td>\r\n                        </tr>\r\n\r\n                        <tr>\r\n                          <td style=\"padding:0px\">\r\n                            <table cellpadding=\"0\" cellspacing=\"0\">\r\n                              <tbody><tr>\r\n                                <td colspan=\"3\" class=\"m_3925713835082034958fs-20 m_3925713835082034958lh-24 m_3925713835082034958fs-11-390\" style=\"font:700 14px/17px Arial,Helvetica,sans-serif,Inter;color:#9c9c9c;letter-spacing:-.28px;text-transform:uppercase\">\r\n                                  Meeting Summary ✨\r\n                                </td>\r\n                              </tr>\r\n                              <tr>\r\n                                <td height=\"12\"></td>\r\n                              </tr>\r\n                            </tbody></table>\r\n                          </td>\r\n                        </tr>\r\n\r\n                        <tr>\r\n                          <td style=\"padding:0 0 15px\">\r\n                            <div class=\"m_3925713835082034958ai_notes_html_content\">\r\n                              <h2 style=\"padding:0 0 5px;color:#000;letter-spacing:-0.3px;font:700 16px/20px Arial,Helvetica,sans-serif,Inter;margin:25px 0 0 0\">Meeting Purpose</h2>\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0 0 25px 0\">\r\nKick off the Lithium Battery Company (LBC) manufacturing facility fit-out project.\r\n</p>\r\n<h2 style=\"padding:0 0 5px;color:#000;letter-spacing:-0.3px;font:700 16px/20px Arial,Helvetica,sans-serif,Inter;margin:25px 0 0 0\">Key Takeaways</h2>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0 0 25px 0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=699.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Suite 3 is the critical path:</strong> Its manufacturing equipment requires 380V/60Hz power, a 40–60% humidity range, and an ISO Class 8 cleanroom environment.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=5032.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Side-mounted HVAC is the preferred solution:</strong> It avoids roof penetrations, simplifies maintenance, and allows LBC to retain the equipment if they relocate.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=4195.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>A 3rd-party plan review will accelerate permitting:</strong> This strategy is expected to cut the timeline from a typical 30+ days to ~10 days, bypassing city backlogs.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=1455.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>The facility layout is confirmed:</strong> The large prismatic line will move to the left side of Suite 3, creating a central logistics channel.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n<h2 style=\"padding:0 0 5px;color:#000;letter-spacing:-0.3px;font:700 16px/20px Arial,Helvetica,sans-serif,Inter;margin:25px 0 0 0\">Topics</h2>\r\n<h3 style=\"padding:0 0 5px;color:#000;letter-spacing:-0.3px;font:700 14px/18px Arial,Helvetica,sans-serif,Inter;margin:0\">Facility Layout &amp; Workflow</h3>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0 0 25px 0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=671.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Suite 3 (Manufacturing):</strong><span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=771.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\">Houses five production lines (Kukurova, prismatic, cylindrical).<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=1455.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Layout Change:</strong> The large prismatic line will move to the left side and rotate 180 degrees to create a central logistics channel.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=3481.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Personnel:</strong> ~40 people (10 per line + supervisors).<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=2114.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Suite 1 (Testing &amp; Aging):</strong><span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=2127.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Function:</strong> Post-production testing and aging of battery modules.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=846.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Equipment:</strong> Runs on the building&#39;s existing 480V/3-phase power.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=3017.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Personnel:</strong> 10–30 people.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=677.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Suite 2 (Shipping &amp; Receiving):</strong><span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=4835.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Function:</strong> Unboxing and staging equipment before moving it to Suite 3.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\"><strong>Storage:</strong> Home Depot-style racks for lightweight components (&lt;15 ft high).</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=2377.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Logistics:</strong> Electric pallet jacks only; forklifts are restricted to Suite 2 to protect floors.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h3 style=\"padding:0 0 5px;color:#000;letter-spacing:-0.3px;font:700 14px/18px Arial,Helvetica,sans-serif,Inter;margin:0\">HVAC &amp; Environmental Control</h3>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0 0 25px 0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=1711.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Suite 3 Requirements:</strong><span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=1719.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Temperature:</strong> 18–25°C (64.4–77°F).<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=1755.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Humidity:</strong> 40–60% RH.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=1968.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Filtration:</strong> ISO Class 8 cleanroom environment.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=2032.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Pressure:</strong> Positive pressure to prevent contamination.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=5032.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>HVAC Solution → Side-Mounted Units:</strong><span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=5032.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Rationale:</strong> Avoids roof penetrations, simplifies maintenance, and allows LBC to retain the equipment upon relocation.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=5091.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Implementation:</strong> Units on exterior walls with interior air handlers and ductwork.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=5276.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Flood Protection:</strong> Units must be raised above the Base Flood Elevation (BFE) on pads or brackets.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=1279.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Ventilation &amp; Gas Control:</strong><span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=1633.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Challenge:</strong> The building&#39;s existing wall vents will compromise conditioned air.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=1633.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Solution:</strong> Isolate vents with ductwork to direct exhaust outside.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=1032.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Gas Lines:</strong> Compressed air, nitrogen, and oxygen lines are required.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=2795.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Nitrogen:</strong> Gaseous form. Options include portable tanks, a bulk tank, or a nitrogen generator.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h3 style=\"padding:0 0 5px;color:#000;letter-spacing:-0.3px;font:700 14px/18px Arial,Helvetica,sans-serif,Inter;margin:0\">Power &amp; Electrical</h3>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0 0 25px 0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=742.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Suite 3 Equipment Power:</strong><span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=742.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Requirement:</strong> 380V/60Hz, 3-phase.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=795.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Solution:</strong> Three readily available Maddox step-down transformers (4-week lead time) will convert the building&#39;s 480V supply.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=3933.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Power Capacity:</strong><span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=3950.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Initial:</strong> Sufficient for day-one operations.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=3933.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Future:</strong> The Main Distribution Panel (MDP) must be sized for future expansion (e.g., CNC machines).<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=4054.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Strategy:</strong> LBC will request TECO to pay for future power upgrades.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=2608.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Lighting:</strong><span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=2608.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Requirement:</strong> Replace existing motion-sensor LEDs with a new, higher-output system.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=2608.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Rationale:</strong> Improve visibility and ensure safety, especially with potential nitrogen leaks.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h3 style=\"padding:0 0 5px;color:#000;letter-spacing:-0.3px;font:700 14px/18px Arial,Helvetica,sans-serif,Inter;margin:0\">Permitting &amp; Schedule</h3>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0 0 25px 0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=4195.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Permitting Strategy → 3rd-Party Review:</strong><span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=4195.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Rationale:</strong> Accelerates the timeline by bypassing city backlogs.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=4221.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Timeline:</strong> Expected to reduce review from 30+ days to ~10 days.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=4835.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Construction Sequencing:</strong><span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=4835.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Phase 1:</strong> Complete Suite 3 (flooring, HVAC, electrical).<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=4835.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Phase 2:</strong> Unbox and stage equipment in Suite 2.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=4835.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Phase 3:</strong> Move equipment into Suite 3, then complete Suite 2 flooring.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=4293.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Occupancy:</strong> LBC can assemble equipment before receiving the Certificate of Occupancy (CO), but cannot begin production.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n<h3 style=\"padding:0 0 5px;color:#000;letter-spacing:-0.3px;font:700 14px/18px Arial,Helvetica,sans-serif,Inter;margin:0\">Facility Enhancements</h3>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0 0 25px 0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=699.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Flooring:</strong> Anti-static epoxy floor required throughout.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=2330.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Material Handling:</strong><span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=2330.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Bridge Crane:</strong> A mobile or monorail system is needed to move heavy battery packs.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=3694.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Ramps:</strong> The exterior ramp for container loading needs security enhancements.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=4434.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Office &amp; Break Areas:</strong><span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=4434.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Reception:</strong> Add a foyer at the main entrance.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=4481.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Break Room:</strong> Convert a corner of Suite 1 into a break room.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=4620.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Conference Rooms:</strong> Several smaller rooms and one large collaboration space are needed.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h2 style=\"padding:0 0 5px;color:#000;letter-spacing:-0.3px;font:700 16px/20px Arial,Helvetica,sans-serif,Inter;margin:25px 0 0 0\">Next Steps</h2>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0 0 25px 0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=910.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Jordan/Nathan:</strong><span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=910.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\">Distribute all equipment spec sheets to the design team.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=1455.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\">Confirm the final Suite 3 layout with the design team.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=2795.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\">Research and propose a nitrogen supply solution (tanks vs. generator).<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=4715.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Jeff (MEP):</strong><span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=4715.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\">Analyze HVAC and power requirements based on specs.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=5032.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\">Propose side-mounted HVAC unit sizes and locations.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=3933.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\">Size the MDP for current and future power loads.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=4434.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>James/Steve (LDDBlueline):</strong><span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=1455.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\">Update the facility layout with the Suite 3 changes.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=4434.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\">Incorporate new office/breakroom areas into the design.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=4195.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\"><strong>Choate Construction:</strong><span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n<ul style=\"font:13px/18px Arial,Helvetica,sans-serif,Inter;color:#d3d3d3;padding:0;margin:0\">\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=4195.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\">Secure a 3rd-party plan review consultant (e.g., NOVA).<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n<li style=\"padding:0 0 0 3px;margin:0 0 0 23px;font-size:21px\">\r\n<p style=\"color:#606167;font:13px/18px Arial,Helvetica,sans-serif,Inter;letter-spacing:-0.2px;padding:0;margin:0\">\r\n<a style=\"color:#606167;text-decoration-line:underline!important;text-decoration-color:#60616780\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;timestamp=4835.0&amp;utm_campaign=postmeetingsummary&amp;utm_content=summary_item&amp;utm_medium=email\" target=\"_blank\">Develop a phased construction schedule.<span class=\"m_3925713835082034958ico-hover\" style=\"display:none;font-size:0;line-height:0;vertical-align:middle\"><img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ico-play-black.png\" width=\"30\" height=\"30\" style=\"width:30px;height:auto;vertical-align:top;margin:0 0 0 5px;border:none\"></span></a>\r\n</p>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n\r\n                            </div>\r\n                          </td>\r\n                        </tr>\r\n\r\n                        <tr>\r\n                          <td style=\"padding:1px 0 0\">\r\n                            <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                              <tbody><tr class=\"m_3925713835082034958active-t\">\r\n                                <td class=\"m_3925713835082034958fs-18 m_3925713835082034958lh-22\" align=\"center\" style=\"background:#00beff;font:bold 20px/24px Arial,Helvetica,sans-serif,Inter;border-radius:6px\">\r\n                                  <a style=\"color:#000;text-decoration:none;display:block;padding:13px 15px\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&amp;utm_campaign=postmeetingsummary&amp;utm_content=view_recording_button&amp;utm_medium=email\" target=\"_blank\">View Meeting →</a>\r\n                                </td>\r\n                              </tr>\r\n                            </tbody></table>\r\n                          </td>\r\n                        </tr>\r\n\r\n\r\n                        <tr height=\"25\"></tr>\r\n                        <tr>\r\n                          <td>\r\n                            <table width=\"560\" style=\"max-width:560px;width:560px;background-color:#00beff1a\">\r\n                              <tbody><tr>\r\n                                <td style=\"width:250px;padding:20px 5px 8px 20px;vertical-align:top\">\r\n                                  <table>\r\n                                    <tbody><tr>\r\n                                      <td>\r\n                                        <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/robot.png\" width=\"32\">\r\n                                      </td>\r\n                                    </tr>\r\n                                    <tr height=\"10\"></tr>\r\n                                    <tr>\r\n                                      <td style=\"font:700 14px/16px Arial,Helvetica,sans-serif,Inter;color:#2d2d31;letter-spacing:-.4px\">\r\n                                        Ask Fathom!\r\n                                      </td>\r\n                                    </tr>\r\n                                    <tr>\r\n                                      <td style=\"font:500 14px/16px Arial,Helvetica,sans-serif,Inter;color:#3d3d44;letter-spacing:-.28px\">\r\n                                        Ask our AI Assistant for answers and insights. It&#39;s ChatGPT for your meetings!\r\n                                      </td>\r\n                                    </tr>\r\n                                    <tr height=\"10\"></tr>\r\n                                    <tr>\r\n                                      <td>\r\n                                        <a class=\"m_3925713835082034958underline\" style=\"font:500 14px/16px Arial,Helvetica,sans-serif,Inter;color:#0070ac;letter-spacing:-.28px\" href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=ask_fathom&amp;utm_campaign=postmeetingsummary&amp;utm_content=ask_fathom_footer&amp;utm_medium=email\" target=\"_blank\">Try Ask Fathom →</a>\r\n                                      </td>\r\n                                    </tr>\r\n                                    </tbody></table>\r\n                                </td>\r\n                                <td style=\"padding:8px\">\r\n                                  <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/ask-fathom-screenshot.png\" width=\"310\">\r\n                                </td>\r\n                              </tr>\r\n                            </tbody></table>\r\n                          </td>\r\n                        </tr>\r\n                      </tbody></table>\r\n                    </td>\r\n                  </tr>\r\n\r\n                  <tr>\r\n                    <td style=\"padding:24px 0 0\">\r\n                      <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                        <tbody><tr>\r\n                          <th width=\"250\" align=\"center\" style=\"font:700 12px/17px Arial,Helvetica,sans-serif,Inter500;color:#6c6d72;vertical-align:top\">\r\n                              <table cellpadding=\"0\" cellspacing=\"0\">\r\n                                  <tbody><tr>\r\n                                    <td style=\"font:500 11px/13px Arial,Helvetica,sans-serif,Inter500;color:#6c6d72\">\r\n                                      © Fathom 2025. All Rights Reserved.\r\n                                    </td>\r\n                                  </tr>\r\n                              </tbody></table>\r\n                          </th>\r\n                        </tr>\r\n                      </tbody></table>\r\n                    </td>\r\n                  </tr>\r\n                  <tr>\r\n                    <td height=\"20\"></td>\r\n                  </tr>\r\n                  <tr>\r\n                    <td>\r\n                      <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n                        <tbody><tr>\r\n                          <td align=\"center\">\r\n                            <a style=\"text-decoration:none\" href=\"https://www.g2.com/products/fathom-2021-09-22/reviews\" target=\"_blank\">\r\n                              <img src=\"https://storage.googleapis.com/fathom-static-web-assets/courier/mailers/post-meeting/rating.png\" width=\"153\">\r\n                            </a>\r\n                          </td>\r\n                        </tr>\r\n                      </tbody></table>\r\n                    </td>\r\n                  </tr>\r\n                </tbody></table>\r\n              </td>\r\n            </tr>\r\n          </tbody></table>\r\n        </td>\r\n      </tr>\r\n    </tbody></table>\r\n  </div>\r\n\r\n</div></div></div>','<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\n---------- Forwarded message ---------\r\nFrom: Fathom <no-reply@fathom.video>\r\nDate: Wed, Nov 19, 2025 at 3:06 PM\r\nSubject: Recap of your meeting with Lithium Battery Co\r\nTo: Nathan Staron <nathan@lithiumbatterycompany.com>\r\n\r\n\r\nMeeting Purpose Kick off the Lithium Battery Company (LBC) manufacturing\r\nfacility fit-out project. Key Takeaways - Suite 3 is the critical path: Its\r\nmanufacturing equipment requires 380V/60Hz power, a 40–60% humidity range,\r\nand an ISO Class 8 cleanroom environment. - Side-mounted HVAC is the\r\npreferred solution: It avoids roof penetrations, simplifies maintenance,\r\nand allows LBC to retain the equipment if they relocate. - A 3rd-party plan\r\nreview will accelerate permitting: This strategy is expected to cut the\r\ntimeline from a typical 30+ days to ~10 days, bypassing city backlogs. -\r\nThe facility layout is confirmed: The large prismatic line will move to the\r\nleft side of Suite 3, creating a central logistics channel. Topics Facility\r\nLayout & Workflow - Suite 3 (Manufacturing): - Houses five production lines\r\n(Kukurova, prismatic, cylindrical). - Layout Change: The large prismatic\r\nline will move to the left side and rotate 180 degrees to create a central\r\nlogistics channel. - Personnel: ~40 people (10 per line + supervisors). -\r\nSuite 1 (Testing & Aging): - Function: Post-production testing and aging of\r\nbattery modules. - Equipment: Runs on the building\'s existing 480V/3-phase\r\npower. - Personnel: 10–30 people. - Suite 2 (Shipping & Receiving): -\r\nFunction: Unboxing and staging equipment before moving it to Suite 3. -\r\nStorage: Home Depot-style racks for lightweight components (<15 ft high). -\r\nLogistics: Electric pallet jacks only; forklifts are restricted to Suite 2\r\nto protect floors. HVAC & Environmental Control - Suite 3 Requirements: -\r\nTemperature: 18–25°C (64.4–77°F). - Humidity: 40–60% RH. - Filtration: ISO\r\nClass 8 cleanroom environment. - Pressure: Positive pressure to prevent\r\ncontamination. - HVAC Solution → Side-Mounted Units: - Rationale: Avoids\r\nroof penetrations, simplifies maintenance, and allows LBC to retain the\r\nequipment upon relocation. - Implementation: Units on exterior walls with\r\ninterior air handlers and ductwork. - Flood Protection: Units must be\r\nraised above the Base Flood Elevation (BFE) on pads or brackets. -\r\nVentilation & Gas Control: - Challenge: The building\'s existing wall vents\r\nwill compromise conditioned air. - Solution: Isolate vents with ductwork to\r\ndirect exhaust outside. - Gas Lines: Compressed air, nitrogen, and oxygen\r\nlines are required. - Nitrogen: Gaseous form. Options include portable\r\ntanks, a bulk tank, or a nitrogen generator. Power & Electrical - Suite 3\r\nEquipment Power: - Requirement: 380V/60Hz, 3-phase. - Solution: Three\r\nreadily available Maddox step-down transformers (4-week lead time) will\r\nconvert the building\'s 480V supply. - Power Capacity: - Initial: Sufficient\r\nfor day-one operations. - Future: The Main Distribution Panel (MDP) must be\r\nsized for future expansion (e.g., CNC machines). - Strategy: LBC will\r\nrequest TECO to pay for future power upgrades. - Lighting: - Requirement:\r\nReplace existing motion-sensor LEDs with a new, higher-output system. -\r\nRationale: Improve visibility and ensure safety, especially with potential\r\nnitrogen leaks. Permitting & Schedule - Permitting Strategy → 3rd-Party\r\nReview: - Rationale: Accelerates the timeline by bypassing city backlogs. -\r\nTimeline: Expected to reduce review from 30+ days to ~10 days. -\r\nConstruction Sequencing: - Phase 1: Complete Suite 3 (flooring, HVAC,\r\nelectrical). - Phase 2: Unbox and stage equipment in Suite 2. - Phase 3:\r\nMove equipment into Suite 3, then complete Suite 2 flooring. - Occupancy:\r\nLBC can assemble equipment before receiving the Certificate of Occupancy\r\n(CO), but cannot begin production. Facility Enhancements - Flooring:\r\nAnti-static epoxy floor required throughout. - Material Handling: - Bridge\r\nCrane: A mobile or monorail system is needed to move heavy battery packs. -\r\nRamps: The exterior ramp for container loading needs security enhancements.\r\n- Office & Break Areas: - Reception: Add a foyer at the main entrance. -\r\nBreak Room: Convert a corner of Suite 1 into a break room. - Conference\r\nRooms: Several smaller rooms and one large collaboration space are needed.\r\nNext Steps - Jordan/Nathan: - Distribute all equipment spec sheets to the\r\ndesign team. - Confirm the final Suite 3 layout with the design team. -\r\nResearch and propose a nitrogen supply solution (tanks vs. generator). -\r\nJeff (MEP): - Analyze HVAC and power requirements based on specs. - Propose\r\nside-mounted HVAC unit sizes and locations. - Size the MDP for current and\r\nfuture power loads. - James/Steve (LDDBlueline): - Update the facility\r\nlayout with the Suite 3 changes. - Incorporate new office/breakroom areas\r\ninto the design. - Choate Construction: - Secure a 3rd-party plan review\r\nconsultant (e.g., NOVA). - Develop a phased construction schedule.\r\n[image: FATHOM]\r\n<https://fathom.video/?utm_campaign=postmeetingsummary&utm_content=header&utm_medium=email>\r\nMeeting with Lithium Battery Co\r\nLithium / Garage - Kick Off Meeting\r\nNovember 19, 2025  •  95 mins  •  View Meeting\r\n<https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&utm_campaign=postmeetingsummary&utm_content=view_recording_link&utm_medium=email>\r\nor Ask Fathom\r\n<https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=ask_fathom&utm_campaign=postmeetingsummary&utm_content=ask_fathom&utm_medium=email>\r\nAction Items ✨\r\nEmail Jordan equipment layout + specs; request LBC add missing items\r\n<https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=899.9999&utm_campaign=postmeetingsummary&utm_content=action_item&utm_medium=email>\r\nJames Jacobik\r\nEmail HVAC/power Qs + prior Q list to Jordan; request LBC answers\r\n<https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=1189.9999&utm_campaign=postmeetingsummary&utm_content=action_item&utm_medium=email>\r\nJeff Miller\r\nEmail background drawing to LDD/Choate; request updated layout\r\n<https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=1451.9999&utm_campaign=postmeetingsummary&utm_content=action_item&utm_medium=email>\r\nJordan Wroblewski - LBC\r\nEmail LDD/Choate high-bay rack heights/locations; request sprinkler\r\nreview/options\r\n<https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=2245.9999&utm_campaign=postmeetingsummary&utm_content=action_item&utm_medium=email>\r\nJordan Wroblewski - LBC\r\nEmail LDD/Choate forklift charging qty/locations; request layout\r\n<https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=2366.9999&utm_campaign=postmeetingsummary&utm_content=action_item&utm_medium=email>\r\nJordan Wroblewski - LBC\r\nEmail LDD/Choate monorail/hoist lift points/loads; request design\r\n<https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=2450.9999&utm_campaign=postmeetingsummary&utm_content=action_item&utm_medium=email>\r\nJordan Wroblewski - LBC\r\nEmail LDD/Choate lighting plan w/ higher levels + N2-zone considerations\r\n<https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=2597.9999&utm_campaign=postmeetingsummary&utm_content=action_item&utm_medium=email>\r\nJeff Miller\r\nEmail LDD/Choate N2 flow rates/pressures/drops + tank location/shading;\r\nrequest N2 design\r\n<https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=2657.9999&utm_campaign=postmeetingsummary&utm_content=action_item&utm_medium=email>\r\nJordan Wroblewski - LBC\r\nEmail Airgas re: N2 supply/delivery/tank-swap; request proposal\r\n<https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=2803.9999&utm_campaign=postmeetingsummary&utm_content=action_item&utm_medium=email>\r\nJordan Wroblewski - LBC\r\nEmail LDD/Choate bathroom counts/ADA + break/reception/training/server\r\nneeds; request layout\r\n<https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=3517.9999&utm_campaign=postmeetingsummary&utm_content=action_item&utm_medium=email>\r\nJordan Wroblewski - LBC\r\nEmail LDD/Choate fast-fabric door product data/lead times; request proposal\r\n<https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=5579.9999&utm_campaign=postmeetingsummary&utm_content=action_item&utm_medium=email>\r\nJordan Wroblewski - LBC\r\nMeeting Summary ✨\r\n\r\nMeeting Purpose\r\n\r\nKick off the Lithium Battery Company (LBC) manufacturing facility fit-out\r\nproject.\r\nKey Takeaways\r\n\r\n   -\r\n\r\n   *Suite 3 is the critical path:* Its manufacturing equipment requires\r\n   380V/60Hz power, a 40–60% humidity range, and an ISO Class 8 cleanroom\r\n   environment.\r\n   <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=699.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n   -\r\n\r\n   *Side-mounted HVAC is the preferred solution:* It avoids roof\r\n   penetrations, simplifies maintenance, and allows LBC to retain the\r\n   equipment if they relocate.\r\n   <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=5032.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n   -\r\n\r\n   *A 3rd-party plan review will accelerate permitting:* This strategy is\r\n   expected to cut the timeline from a typical 30+ days to ~10 days, bypassing\r\n   city backlogs.\r\n   <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=4195.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n   -\r\n\r\n   *The facility layout is confirmed:* The large prismatic line will move\r\n   to the left side of Suite 3, creating a central logistics channel.\r\n   <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=1455.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n\r\nTopics Facility Layout & Workflow\r\n\r\n   -\r\n\r\n   *Suite 3 (Manufacturing):*\r\n   <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=671.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n   -\r\n\r\n      Houses five production lines (Kukurova, prismatic, cylindrical).\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=771.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      *Layout Change:* The large prismatic line will move to the left side\r\n      and rotate 180 degrees to create a central logistics channel.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=1455.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      *Personnel:* ~40 people (10 per line + supervisors).\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=3481.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n   *Suite 1 (Testing & Aging):*\r\n   <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=2114.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n   -\r\n\r\n      *Function:* Post-production testing and aging of battery modules.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=2127.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      *Equipment:* Runs on the building\'s existing 480V/3-phase power.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=846.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      *Personnel:* 10–30 people.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=3017.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n   *Suite 2 (Shipping & Receiving):*\r\n   <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=677.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n   -\r\n\r\n      *Function:* Unboxing and staging equipment before moving it to Suite\r\n      3.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=4835.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      *Storage:* Home Depot-style racks for lightweight components (<15 ft\r\n      high).\r\n      -\r\n\r\n      *Logistics:* Electric pallet jacks only; forklifts are restricted to\r\n      Suite 2 to protect floors.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=2377.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n\r\nHVAC & Environmental Control\r\n\r\n   -\r\n\r\n   *Suite 3 Requirements:*\r\n   <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=1711.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n   -\r\n\r\n      *Temperature:* 18–25°C (64.4–77°F).\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=1719.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      *Humidity:* 40–60% RH.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=1755.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      *Filtration:* ISO Class 8 cleanroom environment.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=1968.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      *Pressure:* Positive pressure to prevent contamination.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=2032.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n   *HVAC Solution → Side-Mounted Units:*\r\n   <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=5032.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n   -\r\n\r\n      *Rationale:* Avoids roof penetrations, simplifies maintenance, and\r\n      allows LBC to retain the equipment upon relocation.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=5032.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      *Implementation:* Units on exterior walls with interior air handlers\r\n      and ductwork.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=5091.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      *Flood Protection:* Units must be raised above the Base Flood\r\n      Elevation (BFE) on pads or brackets.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=5276.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n   *Ventilation & Gas Control:*\r\n   <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=1279.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n   -\r\n\r\n      *Challenge:* The building\'s existing wall vents will compromise\r\n      conditioned air.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=1633.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      *Solution:* Isolate vents with ductwork to direct exhaust outside.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=1633.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      *Gas Lines:* Compressed air, nitrogen, and oxygen lines are required.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=1032.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n         *Nitrogen:* Gaseous form. Options include portable tanks, a bulk\r\n         tank, or a nitrogen generator.\r\n         <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=2795.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n\r\nPower & Electrical\r\n\r\n   -\r\n\r\n   *Suite 3 Equipment Power:*\r\n   <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=742.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n   -\r\n\r\n      *Requirement:* 380V/60Hz, 3-phase.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=742.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      *Solution:* Three readily available Maddox step-down transformers\r\n      (4-week lead time) will convert the building\'s 480V supply.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=795.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n   *Power Capacity:*\r\n   <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=3933.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n   -\r\n\r\n      *Initial:* Sufficient for day-one operations.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=3950.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      *Future:* The Main Distribution Panel (MDP) must be sized for future\r\n      expansion (e.g., CNC machines).\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=3933.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      *Strategy:* LBC will request TECO to pay for future power upgrades.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=4054.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n   *Lighting:*\r\n   <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=2608.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n   -\r\n\r\n      *Requirement:* Replace existing motion-sensor LEDs with a new,\r\n      higher-output system.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=2608.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      *Rationale:* Improve visibility and ensure safety, especially with\r\n      potential nitrogen leaks.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=2608.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n\r\nPermitting & Schedule\r\n\r\n   -\r\n\r\n   *Permitting Strategy → 3rd-Party Review:*\r\n   <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=4195.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n   -\r\n\r\n      *Rationale:* Accelerates the timeline by bypassing city backlogs.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=4195.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      *Timeline:* Expected to reduce review from 30+ days to ~10 days.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=4221.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n   *Construction Sequencing:*\r\n   <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=4835.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n   -\r\n\r\n      *Phase 1:* Complete Suite 3 (flooring, HVAC, electrical).\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=4835.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      *Phase 2:* Unbox and stage equipment in Suite 2.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=4835.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      *Phase 3:* Move equipment into Suite 3, then complete Suite 2\r\n      flooring.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=4835.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n   *Occupancy:* LBC can assemble equipment before receiving the Certificate\r\n   of Occupancy (CO), but cannot begin production.\r\n   <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=4293.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n\r\nFacility Enhancements\r\n\r\n   -\r\n\r\n   *Flooring:* Anti-static epoxy floor required throughout.\r\n   <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=699.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n   -\r\n\r\n   *Material Handling:*\r\n   <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=2330.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n   -\r\n\r\n      *Bridge Crane:* A mobile or monorail system is needed to move heavy\r\n      battery packs.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=2330.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      *Ramps:* The exterior ramp for container loading needs security\r\n      enhancements.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=3694.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n   *Office & Break Areas:*\r\n   <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=4434.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n   -\r\n\r\n      *Reception:* Add a foyer at the main entrance.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=4434.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      *Break Room:* Convert a corner of Suite 1 into a break room.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=4481.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      *Conference Rooms:* Several smaller rooms and one large collaboration\r\n      space are needed.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=4620.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n\r\nNext Steps\r\n\r\n   -\r\n\r\n   *Jordan/Nathan:*\r\n   <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=910.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n   -\r\n\r\n      Distribute all equipment spec sheets to the design team.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=910.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      Confirm the final Suite 3 layout with the design team.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=1455.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      Research and propose a nitrogen supply solution (tanks vs. generator).\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=2795.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n   *Jeff (MEP):*\r\n   <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=4715.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n   -\r\n\r\n      Analyze HVAC and power requirements based on specs.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=4715.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      Propose side-mounted HVAC unit sizes and locations.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=5032.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      Size the MDP for current and future power loads.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=3933.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n   *James/Steve (LDDBlueline):*\r\n   <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=4434.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n   -\r\n\r\n      Update the facility layout with the Suite 3 changes.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=1455.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      Incorporate new office/breakroom areas into the design.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=4434.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n   *Choate Construction:*\r\n   <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=4195.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n   -\r\n\r\n      Secure a 3rd-party plan review consultant (e.g., NOVA).\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=4195.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n      -\r\n\r\n      Develop a phased construction schedule.\r\n      <https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&timestamp=4835.0&utm_campaign=postmeetingsummary&utm_content=summary_item&utm_medium=email>\r\n\r\nView Meeting →\r\n<https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=summary&utm_campaign=postmeetingsummary&utm_content=view_recording_button&utm_medium=email>\r\nAsk Fathom!\r\nAsk our AI Assistant for answers and insights. It\'s ChatGPT for your\r\nmeetings!\r\nTry Ask Fathom →\r\n<https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3?tab=ask_fathom&utm_campaign=postmeetingsummary&utm_content=ask_fathom_footer&utm_medium=email>\r\n© Fathom 2025. All Rights Reserved.\r\n<https://www.g2.com/products/fathom-2021-09-22/reviews>',0,0,0,0,0,0,'2025-11-19 22:18:50','2025-12-04 14:04:33','2025-12-04 14:04:33','2025-12-04 14:04:33',NULL,NULL,NULL),
(67,4,'<CAJO9__bfM5Lt_-E08ihByGH2eNYw6EaUidyBOJVMeMDduQuXgA@mail.gmail.com>',NULL,NULL,'Kick Off LBC Manufacturing Facility - Choate Construction - LDD','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<div dir=\"ltr\"><div>Hello Gentlemen,</div><div><br></div><div>For your reference, the recording of today&#39;s call.</div><div><br></div><div><a href=\"https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3\">https://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3</a></div><div><br></div><div>A lot of good work ahead of us.</div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div></div>','Hello Gentlemen,\r\n\r\nFor your reference, the recording of today\'s call.\r\n\r\nhttps://fathom.video/share/aw7QWbe_Nozt9VkrSkuxWE6yfsgCpT-3\r\n\r\nA lot of good work ahead of us.\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\n*jordan@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com>',0,0,0,0,0,0,'2025-11-19 22:37:02','2025-12-04 14:04:34','2025-12-04 14:04:34','2025-12-04 14:04:34',NULL,NULL,NULL),
(68,4,'<D20427C3-F1F6-49BB-81F2-38898658F57A@mavrix.one>',NULL,NULL,'Test email','Brian@mavrix.one','Brian Stufflebean','\r\n--Apple-Mail=_E032377D-1FC0-45F4-AFCC-0898B5E594E9\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Type: text/html;\r\n	charset=us-ascii\r\n\r\n<html><head><meta http-equiv=3D\"content-type\" content=3D\"text/html; =\r\ncharset=3Dus-ascii\"></head><body style=3D\"overflow-wrap: break-word; =\r\n-webkit-nbsp-mode: space; line-break: after-white-space;\"><meta =\r\nhttp-equiv=3D\"content-type\" content=3D\"text/html; charset=3Dus-ascii\"><div=\r\n style=3D\"overflow-wrap: break-word; -webkit-nbsp-mode: space; =\r\nline-break: after-white-space;\"><meta http-equiv=3D\"content-type\" =\r\ncontent=3D\"text/html; charset=3Dus-ascii\"><div style=3D\"overflow-wrap: =\r\nbreak-word; -webkit-nbsp-mode: space; line-break: =\r\nafter-white-space;\">Test<div><br></div><div><br><div>\r\n<div style=3D\"font-family: Helvetica; font-size: 12px; font-style: =\r\nnormal; font-variant-caps: normal; font-weight: 400; letter-spacing: =\r\nnormal; orphans: auto; text-align: start; text-indent: 0px; =\r\ntext-transform: none; white-space: normal; widows: auto; word-spacing: =\r\n0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><font size=3D\"2\">Best =\r\nregards,</font></div><div style=3D\"font-family: Helvetica; font-size: =\r\n12px; font-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><font =\r\nsize=3D\"2\"><br></font></div><div style=3D\"font-family: Helvetica; =\r\nfont-size: 12px; font-style: normal; font-variant-caps: normal; =\r\nfont-weight: 400; letter-spacing: normal; orphans: auto; text-align: =\r\nstart; text-indent: 0px; text-transform: none; white-space: normal; =\r\nwidows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\"><br></font></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\"><br></font></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\" style=3D\"font-family: Helvetica; font-style: =\r\nnormal; font-weight: 400; font-size: 12px;\"><b>Brian C. =\r\nStufflebean</b><br>CEO, Co-Founder</font><br><div><b>(941)545-4153 =\r\nDirect</b></div><div style=3D\"font-family: Helvetica; font-style: =\r\nnormal; font-weight: 400; font-size: 12px;\"><span style=3D\"font-size: =\r\n11px;\">(866)896-2423 Fax</span></div></div><span style=3D\"caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0); font-family: Helvetica; font-size: =\r\n12px; font-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone;\"></span><br class=3D\"Apple-interchange-newline\"><span><img =\r\nalt=3D\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\" =\r\nsrc=3D\"cid:CB596987-D3CC-4C61-B9D3-CE1C1DF1C723\"></span><meta =\r\ncharset=3D\"UTF-8\"><div style=3D\"font-family: Helvetica; font-size: 12px; =\r\nfont-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br =\r\nclass=3D\"Apple-interchange-newline\"><br =\r\nclass=3D\"Apple-interchange-newline\"><a =\r\nhref=3D\"mailto:brian@mavrix.one\">brian@mavrix.one</a></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><br><a =\r\nhref=3D\"https://mavrix1.com/\">https://mavrix1.com/</a></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><br></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><br><br><br><br><br><br><br><br><br><b>CONFIDENTIALITY =\r\nNOTICE:</b><span style=3D\"font-family: Helvetica; font-style: normal; =\r\nfont-weight: 400; font-size: =\r\n12px;\">&nbsp;This&nbsp;communication&nbsp;is =\r\nconfidential&nbsp;and&nbsp;intended only for the =\r\nintended&nbsp;recipient.&nbsp;&nbsp;If you are not the =\r\nintended&nbsp;recipient,&nbsp;you&nbsp;may not copy, disclose, =\r\nor&nbsp;distribute&nbsp;this message&nbsp;to anyone else;&nbsp;any =\r\nsuch&nbsp;actions may be unlawful. If&nbsp;you have&nbsp;received this =\r\ncommunication&nbsp;in error,&nbsp;please contact the sender =\r\nof&nbsp;the&nbsp;message to inform him or her of =\r\nthe&nbsp;error.<br><br></span></div>\r\n</div>\r\n\r\n<br></div></div></div></body></html>=\r\n\r\n--Apple-Mail=_E032377D-1FC0-45F4-AFCC-0898B5E594E9\r\nContent-Transfer-Encoding: base64\r\nContent-Disposition: inline;\r\n	filename=CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\r\nContent-Type: image/png;\r\n	x-unix-mode=0666;\r\n	name=\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\"\r\nContent-Id: <CB596987-D3CC-4C61-B9D3-CE1C1DF1C723>\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAGwAAAAYCAYAAAAf1RgaAAAAAXNSR0IArs4c6QAAAIRlWElmTU0A\r\nKgAAAAgABQESAAMAAAABAAEAAAEaAAUAAAABAAAASgEbAAUAAAABAAAAUgEoAAMAAAABAAIAAIdp\r\nAAQAAAABAAAAWgAAAAAAAABIAAAAAQAAAEgAAAABAAOgAQADAAAAAQABAACgAgAEAAAAAQAAAGyg\r\nAwAEAAAAAQAAABgAAAAABrPxEgAAAAlwSFlzAAALEwAACxMBAJqcGAAAAVlpVFh0WE1MOmNvbS5h\r\nZG9iZS54bXAAAAAAADx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9\r\nIlhNUCBDb3JlIDYuMC4wIj4KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9y\r\nZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6\r\nYWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZm\r\nLzEuMC8iPgogICAgICAgICA8dGlmZjpPcmllbnRhdGlvbj4xPC90aWZmOk9yaWVudGF0aW9uPgog\r\nICAgICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KGV7hBwAA\r\nC6FJREFUaAXtWnuMVUcZnznPe/fuZYEtDxHCQ1ADBNuuAlKh24dRaqURWFotj5haKAn9SxOaauRi\r\nxEBsMMFSAmnUCDTKWtDioyEm3RLKq6VKC7Rg20VA5Lmwz3vPa8bfN+ecu+fevbugjQQrX5g735n5\r\nvm++13wz5yyc3YKb0gP19a8YTU33+NNmbx0puHjJtGsm+U7beoMxyRsaGrUJE45JxlbclMp/1JXK\r\nsZWM5XLwP6PG6+tzOgVr8tzN0wWTjRq3hojAw6TU+EfdGf9T9uVyGsutQNC4nDpn8zz0m7lmWEwE\r\njm6mbd/r3MCnzNk6DlEbyRFCqfNbAbyBEeaBlJzrkula1mOFQ683fvMcLT917tblGF8dbTgmhe8a\r\nZsbyvY4NhsbEdwy7ZrHntDHOtBuo7q2lGLyvGSnmOe2/fH3S3//EGhGsOZuf03RrKRMC/3wBL30f\r\nW24uxm6XHhcaQuxjgrwXMNpgt9p/3wfYGsrPMmC+07H8wPYFiyYfHj1gypwtr+JysZROMiG80wjO\r\nPftfnL9KpTaxoFQakk4y3WKB13Wc+97DbuB5hm5qXAvoAPzQ4GmG1HxRlCUMjZvC/7dLL7SCnkKK\r\nAPxmN388fr2Klq8fCI2yGGAzYXjXpRvZxBzGknqEcmxUt3xJmeqWH64S/5rwg+dI9+DOhc00pjF3\r\nMJPp51y3bRWXwuaafHNv46J/1H11Z5XGWsPqCDqDosbDo6uwd8fCI7HAW/2N9cD+HY+/gxWpdQMu\r\nIa0HmoNaa2BxDNd6gMp/zsfcv7rm9Gs/+bRuZ1OMBwJnmsA+LO6OIpeUGjZmcZdwbMfinEI4piUK\r\ntPDM9ND32s7sa8G1FTegnMgMnjJEeBfHMcXTLaOUP34iOULXNf1yx+UT76IoyMygzw0N3Avjuaa7\r\nKCtiyqQFB5uaVgT0atKoXk1i3tK+volpTU05Pz1s4gjZ1fEJyBJcZ4UH711zSPFBt+zHJ9f6+Qvj\r\nmNR1kg3HFG0MpflSCs3UrcHHNcNHUWoZj+KlG1rmQkfLsaO3fWpWtv2fb35B0+02KQMzlep/8uq5\r\nv56sq1tsjhlzv4j1m9B41Dh6tNEdO3amffLMnsk8KLiala2pqhn97pWzh07hWm/U168QuRx0mLmu\r\nxBA+dc7Wn1rp/su8QuuBD97a+o1LzX98Q9MzA6T0wjpbQh49oI6WQG+XS6Lj/DwK8lrfdZ8Bj4AV\r\nizG6sYT/Wg9wE0j2aFI+4bruacO2D0HuJ5EUJP9HfqHwXczraGWJUxQczmUyQ0zf3weu0eCjg+Ip\r\n6LWGqEzbfhKlJgeZA9VckbUUURGUcikUOo3K9Hs1K+VO33FmAa+CfRshf36k20UpxJLAdXdgjlip\r\nXFLvs0xmqOH7vwJ+N60npfwAu2em4zgnQjplnBw7c51dWzVwv50acLtbuPpsuMNAEcqhHidhN7wB\r\nSXTVJDroES3G+Z0YHxaRBcD3AO9AI8cQHTUTbQrmhjBNW6Nb1gko/lsodgrjr6Ll0Uh5ar0B3YZG\r\noY2HUTME5z8HPpULMU9q2m7g/SD/aT2VeicoFLbgmfRUNyj0MZB8sonDQVsRlNE0AT2ehz4qWEYq\r\nNQMKr8MgTXWhfw09MlY5WA3SBECAvz90OY5g91MjYbJG5yDLe4XCAiTUYcz9GG0Qgrod8lcgqX6A\r\nZ+VbPN/NfH8L5AxXMhDwwHEWYvIqnimoJK+iX8jAcqAySC4/gkXuBdZeTgDnN3BN2xYZ+Aqy64vl\r\nNPRsWNbTCNYqwqH4WOpB+zI6atcHlIlBcBRrUeaPRGYO8To7D0OHRZBJmYtCKTeZpvm253nkqPKg\r\nkQMC3bbXgf8+ogfshYOWhKjKrlGQQUpiGfkzzD0Zz/XW6+n01xG08mlKUg82PoOgvQV8M2QORr8S\r\nz5/xbftx03EewRrPYpwWozVXgf57kaC+qoQiqRSwkJfzLiC4CykgoynTiN7DWm1qNPyhnUUQ0xBO\r\niruga0mkZ2hdNnub5Ti0O2NrEyTEWgSwcy8IAjJYkjMBSCacawDarUiIp5AQq2F4WmjabzD8WTRc\r\nqYpZqoKnyrCUyyIHnfN1fQ5oaH0Ljc5CfPcJ1cCaxE9Ac7TLyoGcWr6LY5rYJgNB2GXb9jTsmm2Q\r\nfyfabMN178IqQ4DDItmBKrEkyOdfiJhVYsWCeut7D1hoNAlJgrIKP7hdFoEMIAgtLsUpcDEoOtPz\r\nZsO5GyPnxXN995EzYWgyKXQ6fxCMiShT86HPWGTxC3DUVyCMHKey3Uinp+Ec2RAtQCXpYdbZGZd5\r\nVaIwljBHJSWRJ+2h5+sF4qOAGjiP3kdfB722o/8a2iA0gvNwxnQnn/8bcNKT6ONgA+0dygNSThkr\r\nTX2ME00Sj3limuRcEo/p/Cib8V0TWYbDFuXoJFpzecMcjZ0GY28ZzXBmPIZ5OmupvDyA8wGfdBR4\r\ndLCjbP0aT8pO7J4nUOZ341ntvJCsx29SZ8IrtR5MZQOUAEoOJQzwiWo+TDjMyGpE58GIJz4ro8e+\r\nu752WN+c//lsmM1QHsgf4MBHkOYZiIuzPZZMdC520AhE6yBwys6kMykjade6MGKez/l+OILK53Jc\r\nQo7QJQRn34sI4nCMkZPWIrjPAyOeXhOASD8kxFUggB6LkDCboINFCQWDqPxNR0UYAUPW4lydgPPy\r\nWxgj2/tKoqJKlXZY7JS4LxL3glSii8fiPskabn0YgB1Ug4ksy2bTaJkeDYEUQlQVmcFQxENEGVoo\r\nFJrxOA9NzcMxa1CGfocFKLspWLtQKr+t8MqlJyk3iUcs1+xiHvIn2Sex03+I6vAL4BSsADotRcI8\r\nirEv4fkYxhFH/hjodtNFCo+URJXiQaRFSOwwekfFu3J42JKRyfOnyBAhREcrEl1CRjTbfSZQNpcA\r\nruT7kWGd4M2A98tQuJl5nguiUGaSOpWiFzADdIPUWpSpPenIUAM7Fd/h7GWQvR70w0BP70VA5fuB\r\nZT3KHHV/ih1KU91AL/nhpYYYeujcTZjAiKcbYh+QHdVIli3oH4pkXgQ+D8FqQm/iPZK+ZtxF5y3m\r\nZwKfjkrwNkunH/Lz+X14rqwjJgiSi+KLPkqrZl1G1RBcs66OGlUfOTFHkeGsvl4xGUYN6q5Bvixw\r\nzY5ujPRVIGp1ixUd0zMFrnY6PtLpVV00qBS2+kFR689MM7GWkUbrj4bd1qPReAZ0eD8xujgzW6qr\r\nh0bZHOkUrhmwhgbdc5znOE+tZ9x08NZ1Ge2cptfOY+3tl1hdHRKQdmhCz/rQPt2ogqNhC3TV9LTS\r\nk01o6LanEg+vwhpWB3gkfKBefQYMqKsxUtmXODdnQYdW9Ac1c+AMJFMTw9cOrO3DhxTcq9jxDyhd\r\nmQleoxo+32FWDbsDc4JsYbmVyvfD81nVk+8Iwi8dqf7L8Bb9F6+2Y8qhTer1hLKMyk2lay3xEdhh\r\np+h6OxNoMdoVBCQLQS4BmovLSclE2QPJoUa0lMXXglg30qv8bKzEey09r8VDa9Ba5Dc4X31EoApV\r\nQCOIdQ+fSn9TeCRe0pl8VGIf/VeBQu3Zg1aq/x2JLx3kB3yzu5jq9/mGbV3ZVA123nm9s9UjYT3A\r\ntLOyfUBaOb82bxmdrWewS3pCki57JW/i7z6kOCvYvpZyDFEYOvh6nFkUPAxYy7kLcTCK4+VILJd0\r\na710UTdMp8+kSOoZ2ZOsPOXi1XMFnjSNscwgJ2t12GdBBZur29kVnWwtF+J7tvKFP6LGh13WpSu1\r\nIpt6z4TPlX00n65uFV3+KRsfZZEIoQlqh+lGalkQ5Nuw88/hICvmAw7FHobSymQNzga1ICnSGx0O\r\n2CIN0eF8UYWfZJTP0fz1QFIG6RF7IsbL5ZbrFusfr1VJl3iNmKZSn7Sf5mOeSuM0X54BldZNyiFc\r\n0aiDUHwMZTsb+AX6lihxSGIXO6yfZtjh9zGivgU3jQeE7zCKUeDnq3EDYy+7nRfpL4wdgZcv2RE3\r\njcb/74rgq6NAsBCrXf8CAf/+y47p6ecAAAAASUVORK5CYII=\r\n--Apple-Mail=_E032377D-1FC0-45F4-AFCC-0898B5E594E9--','Test\r\n\r\n\r\nBest regards,\r\n\r\n\r\n\r\nBrian C. Stufflebean\r\nCEO, Co-Founder\r\n(941)545-4153 Direct\r\n(866)896-2423 Fax\r\n\r\n￼\r\n\r\n\r\nbrian@mavrix.one <mailto:brian@mavrix.one>\r\n\r\nhttps://mavrix1.com/\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.',0,0,0,0,0,0,'2025-11-18 18:15:41','2025-12-04 14:04:34','2025-12-04 14:04:34','2025-12-04 14:04:34',NULL,NULL,NULL),
(69,4,' <BN0P110MB11613100E3603F5DF45A1722CCD4A@BN0P110MB1161.NAMP110.PROD.OUTLOOK.COM>',NULL,NULL,'RE: Call with Cellec','chris@cellectech.com','Christopher Schauerman','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:Helvetica;\r\n	panose-1:2 11 6 4 2 2 2 2 2 4;}\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmail_on;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\np.airmailon0, li.airmailon0, div.airmailon0\r\n	{mso-style-name:airmailon;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.EmailStyle21\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">See you at 11:30 at Java’s on campus.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Best,<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\">Chris<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">--<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp;<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Christopher Schauerman, PhD<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">President/CEO<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Cellec Technologies, Inc.&nbsp;<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">245 Summit Point Dr<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Henrietta, NY 14467<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Office:&nbsp;(585) 280-9434<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Business: (585) 454-9166<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Cell: (814) 392-3661<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;rick@mavrix.one&gt;\r\n<br>\r\n<b>Sent:</b> Thursday, November 13, 2025 2:41 PM<br>\r\n<b>To:</b> Christopher Schauerman &lt;chris@cellectech.com&gt;<br>\r\n<b>Subject:</b> RE: Call with Cellec<o:p></o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:12.0pt\">Sounds good! Earlier in the week is better, usually open MWF 10-1 and all day TR.<br>\r\nLet me know!<br>\r\nThanks!<br>\r\nRick <o:p></o:p></p>\r\n<p class=\"airmailon\">On November 13, 2025 at 1:00:01<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>PM, Christopher Schauerman (<a href=\"mailto:chris@cellectech.com\">chris@cellectech.com</a>) wrote:<o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">Hi Rick,\r\n</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">I should have some time next week if you want to meet up. I can come over to RIT if that works for you.</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">Best,</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">Chris</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">--</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Christopher Schauerman, PhD</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">President/CEO</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Cellec Technologies, Inc.&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">245 Summit Point Dr</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Henrietta, NY 14467</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Office:&nbsp;(585) 280-9434</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Business: (585) 454-9166</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Cell: (814) 392-3661</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt;\r\n<br>\r\n<b>Sent:</b> Wednesday, November 5, 2025 5:24 PM<br>\r\n<b>To:</b> Christopher Schauerman &lt;<a href=\"mailto:chris@cellectech.com\">chris@cellectech.com</a>&gt;<br>\r\n<b>Subject:</b> Re: Call with Cellec</span><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Hi Chris,</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Just trying to connect again.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Is there a chance we could connect in person next week?</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">At RIT or off campus...Thanks!</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Helvetica&quot;,sans-serif\">Rick</span><o:p></o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD,&nbsp;</span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Founder, CTO</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" width=\"108\" height=\"24\" style=\"width:1.125in;height:.25in\" id=\"Picture_x0020_1\" src=\"cid:image001.png@01DC5A09.EF068660\"></span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"https://mavrix1.com/\">https://mavrix1.com</a></span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">CONFIDENTIALITY NOTICE</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI)\r\n protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of\r\n the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\">&nbsp;<o:p></o:p></p>\r\n<p class=\"airmailon0\">On October 30, 2025 at 10:14:28<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>AM, Christopher Schauerman (<a href=\"mailto:chris@cellectech.com\">chris@cellectech.com</a>) wrote:<o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">Hi Rick,\r\n</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">Good chatting with you on the phone today. Let me know if tomorrow at 3:00pm works for everyone. Also, can you let me know who will be on the meeting.</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">Best,</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt\">Chris</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">--</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Christopher Schauerman, PhD</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">President/CEO</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Cellec Technologies, Inc.&nbsp;</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">245 Summit Point Dr</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Henrietta, NY 14467</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Office:&nbsp;(585) 280-9434</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Business: (585) 454-9166</span><o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">Cell: (814) 392-3661</span><o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</body>\r\n</html>\r\n','See you at 11:30 at Java’s on campus.\r\n\r\n\r\n\r\nBest,\r\nChris\r\n--\r\n\r\nChristopher Schauerman, PhD\r\nPresident/CEO\r\n\r\nCellec Technologies, Inc.\r\n245 Summit Point Dr\r\nHenrietta, NY 14467\r\nOffice: (585) 280-9434\r\nBusiness: (585) 454-9166\r\nCell: (814) 392-3661\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Thursday, November 13, 2025 2:41 PM\r\nTo: Christopher Schauerman <chris@cellectech.com>\r\nSubject: RE: Call with Cellec\r\n\r\nSounds good! Earlier in the week is better, usually open MWF 10-1 and all day TR.\r\nLet me know!\r\nThanks!\r\nRick\r\n\r\nOn November 13, 2025 at 1:00:01 PM, Christopher Schauerman (chris@cellectech.com<mailto:chris@cellectech.com>) wrote:\r\nHi Rick,\r\n\r\nI should have some time next week if you want to meet up. I can come over to RIT if that works for you.\r\n\r\n\r\n\r\nBest,\r\nChris\r\n--\r\n\r\nChristopher Schauerman, PhD\r\nPresident/CEO\r\n\r\nCellec Technologies, Inc.\r\n245 Summit Point Dr\r\nHenrietta, NY 14467\r\nOffice: (585) 280-9434\r\nBusiness: (585) 454-9166\r\nCell: (814) 392-3661\r\n\r\nFrom: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSent: Wednesday, November 5, 2025 5:24 PM\r\nTo: Christopher Schauerman <chris@cellectech.com<mailto:chris@cellectech.com>>\r\nSubject: Re: Call with Cellec\r\n\r\nHi Chris,\r\nJust trying to connect again.\r\nIs there a chance we could connect in person next week?\r\nAt RIT or off campus...Thanks!\r\nRick\r\n\r\n\r\nRick Mislan, PhD,\r\nFounder, CTO\r\n[cid:image001.png@01DC5A09.EF068660]\r\nhttps://mavrix1.com<https://mavrix1.com/>\r\n\r\nCONFIDENTIALITY NOTICE\r\nThis communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n\r\nIf you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n\r\nUnless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n\r\n\r\nOn October 30, 2025 at 10:14:28 AM, Christopher Schauerman (chris@cellectech.com<mailto:chris@cellectech.com>) wrote:\r\nHi Rick,\r\n\r\nGood chatting with you on the phone today. Let me know if tomorrow at 3:00pm works for everyone. Also, can you let me know who will be on the meeting.\r\n\r\n\r\n\r\nBest,\r\nChris\r\n--\r\n\r\nChristopher Schauerman, PhD\r\nPresident/CEO\r\n\r\nCellec Technologies, Inc.\r\n245 Summit Point Dr\r\nHenrietta, NY 14467\r\nOffice: (585) 280-9434\r\nBusiness: (585) 454-9166\r\nCell: (814) 392-3661\r\n',0,0,0,0,0,0,'2025-11-20 15:39:23','2025-12-04 14:04:34','2025-12-04 14:04:34','2025-12-04 14:04:34',NULL,NULL,NULL),
(70,4,'<CAJO9__bBnq0pt1ispna3nCJwKcV8Vf6HW-QMkqZHQ=5wmVp=bw@mail.gmail.com>',NULL,NULL,'Re: Forge Nano - Red River Project - & Term Sheet','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<div dir=\"ltr\"><div>Hello Team,</div><div><br></div><div>I would like to keep the relationship with Forge Nano moving forward.</div><div><br></div><div>Please review the attached Summary of Terms and share your thoughts.  I have also included the cell spec sheets for the cells identified by Elias  that would work for our drones.  </div><div><br></div><div>Best,</div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Fri, Nov 14, 2025 at 11:11 AM Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\">jordan@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\">Hello Gentlemen,<br><br>I spoke with James this week regarding the Red River project in Texas. It appears the Military intends to handle the entire operation internally at their facility.<br><br>Their preferred approach is to purchase the necessary equipment directly from us and then have us train their in-house team. Given our current operational commitments, pursuing this approach doesn&#39;t align with our current strategy or capacity.  Unless we want to sell them equipment. <br><br>It seems the proposal from Forge Nano would be a better fit for their needs. Forge Nano&#39;s angle involves supplying them with everything required to manufacture their cells at the Red River location, following the setup of a new production facility.<br><br>Second part of this email is the term sheet attached with Forge Nano.  The term sheet lays out the roadmap for LBC to source US-made lithium-ion cells from Forge Nano across development and production phases, with commitments expected in the final agreement. It also outlines the mutual interest in joint development and commercialization of battery products and leaves open the door for other future collaborations as a co-packer for FN.  <div><br></div><div>Let me know your thoughts.</div><div><br></div><div>Best, <br><br>Jordan G. Wroblewski<br>Partner | President <br>Lithium Battery Company<br>Direct: (917) 266-5336<br><a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a><br><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></div></div>\r\n</blockquote></div>','Hello Team,\r\n\r\nI would like to keep the relationship with Forge Nano moving forward.\r\n\r\nPlease review the attached Summary of Terms and share your thoughts.  I\r\nhave also included the cell spec sheets for the cells identified by Elias\r\nthat would work for our drones.\r\n\r\nBest,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\n*jordan@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com>\r\n\r\n\r\nOn Fri, Nov 14, 2025 at 11:11 AM Jordan Wroblewski <\r\njordan@lithiumbatterycompany.com> wrote:\r\n\r\n> Hello Gentlemen,\r\n>\r\n> I spoke with James this week regarding the Red River project in Texas. It\r\n> appears the Military intends to handle the entire operation internally at\r\n> their facility.\r\n>\r\n> Their preferred approach is to purchase the necessary equipment directly\r\n> from us and then have us train their in-house team. Given our current\r\n> operational commitments, pursuing this approach doesn\'t align with our\r\n> current strategy or capacity.  Unless we want to sell them equipment.\r\n>\r\n> It seems the proposal from Forge Nano would be a better fit for their\r\n> needs. Forge Nano\'s angle involves supplying them with everything required\r\n> to manufacture their cells at the Red River location, following the setup\r\n> of a new production facility.\r\n>\r\n> Second part of this email is the term sheet attached with Forge Nano.  The\r\n> term sheet lays out the roadmap for LBC to source US-made lithium-ion cells\r\n> from Forge Nano across development and production phases, with commitments\r\n> expected in the final agreement. It also outlines the mutual interest in\r\n> joint development and commercialization of battery products and leaves open\r\n> the door for other future collaborations as a co-packer for FN.\r\n>\r\n> Let me know your thoughts.\r\n>\r\n> Best,\r\n>\r\n> Jordan G. Wroblewski\r\n> Partner | President\r\n> Lithium Battery Company\r\n> Direct: (917) 266-5336\r\n> jordan@lithiumbatterycompany.com\r\n> Lithium Battery Company <http://lithiumbatterycompany.com>\r\n>',1,0,0,0,0,0,'2025-11-20 17:13:35','2025-12-04 14:04:37','2025-12-04 14:04:37','2025-12-04 17:08:19',NULL,NULL,NULL),
(71,4,' <BN2P110MB0977FA6F9BB1972A558CEFE5A0D4A@BN2P110MB0977.NAMP110.PROD.OUTLOOK.COM>',NULL,NULL,'Tethered Drones','mike@dpiuav.com','Michael Piasecki','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;\r\n	mso-ligatures:standardcontextual;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:#467886;\r\n	text-decoration:underline;}\r\nspan.EmailStyle17\r\n	{mso-style-type:personal-compose;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style>\r\n</head>\r\n<body lang=\"EN-US\" link=\"#467886\" vlink=\"#96607D\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p>Dear Rick Mislan, PhD<o:p></o:p></p>\r\n<p>Mavrix1<o:p></o:p></p>\r\n<p>Founder , CTO <o:p></o:p></p>\r\n<p>Thank you for taking the time to explore the benefits of tethered drone systems with us today.<o:p></o:p></p>\r\n<p>Tethered drones provide a persistent, secure, and highly elevated &#8220;virtual high ground&#8221; for ISR, communications extension, and airspace awareness&#8212;filling the low-altitude blind spots that ground sensors and traditional aircraft cannot cover. Operating at\r\n adjustable heights just above the tree line, these systems overcome terrain and vegetation masking, dramatically increasing real detection volume without introducing new hazards, emitting RF energy, or adding airspace risk. Their fiber-optic tether ensures\r\n immunity to jamming, hacking, and GPS denial while enabling long-duration operations that maneuver with the host platform to maintain optimal positioning. This height-adaptive, low-signature approach satisfies FAA safety priorities and DoD mission requirements,\r\n giving land and maritime units persistent situational awareness, resilient communications, and enhanced C-UAS capability at a fraction of the cost and signature of aircraft, satellites, or fixed towers&#8212;allowing forces to see first, act first, and finish decisively.<o:p></o:p></p>\r\n<p>We believe tethered drones will continue to play a strong and enduring role due to the immutable benefits of line-of-sight and physics. A range of emerging passive and active sensing technologies&#8212;such as micro laser designators from Erete&#8217; integrated on\r\n Trillium gimbals&#8212;will rely on clear LOS to reach their full potential. You mentioned O-Circle, which is fascinating, and there are many other rapidly advancing capabilities, such as those from DeepNight.ai, that underscore the need for high mobility, elevated\r\n and persistent platforms.<o:p></o:p></p>\r\n<p>Ultimately, advanced sensors and algorithms will require a mobile, elevated, and enduring vantage point to guide weapons on target, enhance small-unit survivability, and resolve capability mismatches that will define future conflicts.<o:p></o:p></p>\r\n<p>Wishing you a very happy Thanksgiving and Christmas.<o:p></o:p></p>\r\n<p>I am hopeful that your tight schedule can make room for a visit in the new year. God Bless<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><a href=\"https://gdmissionsystems.com/shipboard-integration-and-combat-systems/containerized-tethered-elevated-mast\">https://gdmissionsystems.com/shipboard-integration-and-combat-systems/containerized-tethered-elevated-mast</a>\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><a href=\"https://www.dragonflypictures.com/brochure/\">https://www.dragonflypictures.com/brochure/</a>\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\">Respectfully,<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\">Michael<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\">Michael Piasecki<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\">President<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\">DPI UAV Systems<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\">600 W. 2<sup>nd</sup> St., Essington, PA 19029<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\">Office: (610) 521-6115 x 202<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\">Mobile: (215) 439-2036<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\"><a href=\"http://www.dpiuav.com/\"><span style=\"color:#0563C1\">www.dpiuav.com</span></a><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#002060;mso-ligatures:none\"><a href=\"https://youtu.be/4ihY-IiAfXI\"><span style=\"color:#0563C1\">https://youtu.be/4ihY-IiAfXI</span></a><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black;mso-ligatures:none\">Extending Man\'s Reach with Unmanned Helicopters</span></b><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:black;mso-ligatures:none\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#002060\"><img border=\"0\" width=\"222\" height=\"70\" style=\"width:2.3125in;height:.7291in\" id=\"Picture_x0020_2\" src=\"cid:image001.jpg@01DC5A31.46DC6AE0\" alt=\"DPI-logo-4-April28-blue-full\"></span><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\"><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#002060;mso-ligatures:none\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial&quot;,sans-serif;color:#002060;mso-ligatures:none\">This is an e-mail from DPI UAV Systems. It is for the intended recipient only and may contain confidential, proprietary and privileged information.\r\n No one else may read, print, store, copy, forward or act in reliance on it or its attachments. If you are not the intended recipient, please return this message to the sender and delete the message and any attachments from your computer. Your cooperation is\r\n appreciated.<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</body>\r\n</html>','Dear Rick Mislan, PhD\r\n\r\nMavrix1\r\n\r\nFounder , CTO\r\n\r\nThank you for taking the time to explore the benefits of tethered drone systems with us today.\r\n\r\nTethered drones provide a persistent, secure, and highly elevated \"virtual high ground\" for ISR, communications extension, and airspace awareness-filling the low-altitude blind spots that ground sensors and traditional aircraft cannot cover. Operating at adjustable heights just above the tree line, these systems overcome terrain and vegetation masking, dramatically increasing real detection volume without introducing new hazards, emitting RF energy, or adding airspace risk. Their fiber-optic tether ensures immunity to jamming, hacking, and GPS denial while enabling long-duration operations that maneuver with the host platform to maintain optimal positioning. This height-adaptive, low-signature approach satisfies FAA safety priorities and DoD mission requirements, giving land and maritime units persistent situational awareness, resilient communications, and enhanced C-UAS capability at a fraction of the cost and signature of aircraft, satellites, or fixed towers-allowing forces to see first, act first, and finish decisively.\r\n\r\nWe believe tethered drones will continue to play a strong and enduring role due to the immutable benefits of line-of-sight and physics. A range of emerging passive and active sensing technologies-such as micro laser designators from Erete\' integrated on Trillium gimbals-will rely on clear LOS to reach their full potential. You mentioned O-Circle, which is fascinating, and there are many other rapidly advancing capabilities, such as those from DeepNight.ai, that underscore the need for high mobility, elevated and persistent platforms.\r\n\r\nUltimately, advanced sensors and algorithms will require a mobile, elevated, and enduring vantage point to guide weapons on target, enhance small-unit survivability, and resolve capability mismatches that will define future conflicts.\r\n\r\nWishing you a very happy Thanksgiving and Christmas.\r\n\r\nI am hopeful that your tight schedule can make room for a visit in the new year. God Bless\r\nhttps://gdmissionsystems.com/shipboard-integration-and-combat-systems/containerized-tethered-elevated-mast\r\n\r\nhttps://www.dragonflypictures.com/brochure/\r\n\r\nRespectfully,\r\nMichael\r\n\r\n\r\nMichael Piasecki\r\nPresident\r\nDPI UAV Systems\r\n600 W. 2nd St., Essington, PA 19029\r\nOffice: (610) 521-6115 x 202\r\nMobile: (215) 439-2036\r\nwww.dpiuav.com<http://www.dpiuav.com/>\r\nhttps://youtu.be/4ihY-IiAfXI\r\n\r\n\r\nExtending Man\'s Reach with Unmanned Helicopters\r\n[DPI-logo-4-April28-blue-full]\r\n\r\nThis is an e-mail from DPI UAV Systems. It is for the intended recipient only and may contain confidential, proprietary and privileged information. No one else may read, print, store, copy, forward or act in reliance on it or its attachments. If you are not the intended recipient, please return this message to the sender and delete the message and any attachments from your computer. Your cooperation is appreciated.',0,0,0,0,0,0,'2025-11-20 20:56:01','2025-12-04 14:04:44','2025-12-04 14:04:44','2025-12-04 14:04:44',NULL,NULL,NULL),
(72,4,' <BN0P110MB1161A8EDD78F530CAF18AE99CCD4A@BN0P110MB1161.NAMP110.PROD.OUTLOOK.COM>',NULL,NULL,'Re: Call with Cellec','chris@cellectech.com','Christopher Schauerman','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n</head>\r\n<body>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nHi Rick,</div>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nIt was great meeting with you today. I will try to find a time next week to show you around the battery prototyping center on campus.&nbsp;</div>\r\n<div dir=\"ltr\" style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_MSFontService, -apple-system, Roboto, Arial, Helvetica, sans-serif; font-size: 12pt;\" id=\"ms-outlook-mobile-signature\">\r\n<p style=\"line-height: 1.5; margin: 0px; font-family: Calibri, sans-serif; font-size: 11pt;\">\r\n<br>\r\n</p>\r\n<p style=\"line-height: 1.5; margin: 0px; font-family: Calibri, sans-serif; font-size: 11pt;\">\r\nBest,&nbsp;</p>\r\n<p style=\"line-height: 1.5; margin: 0px; font-family: Calibri, sans-serif; font-size: 11pt;\">\r\nChris</p>\r\n<p style=\"line-height: 1.5; margin: 0px; font-family: Calibri, sans-serif; font-size: 11pt;\">\r\n&nbsp;</p>\r\n<p style=\"line-height: 1.5; margin: 0px; font-family: Calibri, sans-serif; font-size: 11pt;\">\r\n--</p>\r\n<p style=\"line-height: 1.5; margin: 0px; font-family: Calibri, sans-serif; font-size: 11pt;\">\r\n&nbsp;</p>\r\n<p style=\"line-height: 1.5; margin: 0px; font-family: Calibri, sans-serif; font-size: 11pt;\">\r\nChristopher Schauerman, PhD</p>\r\n<p style=\"line-height: 1.5; margin: 0px; font-family: Calibri, sans-serif; font-size: 11pt;\">\r\nPresident/CEO</p>\r\n<p style=\"line-height: 1.5; margin: 0px; font-family: Calibri, sans-serif; font-size: 11pt;\">\r\nCellec Technologies, Inc.&nbsp;</p>\r\n<p style=\"line-height: 1.5; margin: 0px; font-family: Calibri, sans-serif; font-size: 11pt;\">\r\nOffice: (585)<span style=\"color: blue;\">280-9434</span></p>\r\n</div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Rick &lt;rick@mavrix.one&gt;<br>\r\n<b>Sent:</b> Thursday, November 20, 2025 10:49:26 AM<br>\r\n<b>To:</b> Christopher Schauerman &lt;chris@cellectech.com&gt;<br>\r\n<b>Subject:</b> RE: Call with Cellec</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>Yes! <br>\r\nThanks!<br>\r\nRick <br>\r\n<br>\r\n<p class=\"x_airmail_on\">On November 20, 2025 at 10:40:08 AM, Christopher Schauerman (<a href=\"mailto:chris@cellectech.com\">chris@cellectech.com</a>) wrote:</p>\r\n<blockquote type=\"cite\" class=\"x_clean_bq\"><span>\r\n<div lang=\"EN-US\" style=\"word-wrap:break-word\">\r\n<div></div>\r\n<div>\r\n<div class=\"x_WordSection1\">\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt\">See you at 11:30 at Java’s on campus.</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt\">Best,</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt\">Chris</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">--</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">Christopher Schauerman, PhD</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">President/CEO</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">Cellec Technologies, Inc.&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">245 Summit Point Dr</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">Henrietta, NY 14467</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">Office:&nbsp;(585) 280-9434</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">Business: (585) 454-9166</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">Cell: (814) 392-3661</span></p>\r\n<p class=\"x_MsoNormal\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<div style=\"border:none; border-top:solid #E1E1E1 1.0pt; padding:3.0pt 0in 0in 0in\">\r\n<p class=\"x_MsoNormal\"><b><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;rick@mavrix.one&gt;\r\n<br>\r\n<b>Sent:</b> Thursday, November 13, 2025 2:41 PM<br>\r\n<b>To:</b> Christopher Schauerman &lt;chris@cellectech.com&gt;<br>\r\n<b>Subject:</b> RE: Call with Cellec</span></p>\r\n</div>\r\n<p class=\"x_MsoNormal\">&nbsp;</p>\r\n<p class=\"x_MsoNormal\" style=\"margin-bottom:12.0pt\">Sounds good! Earlier in the week is better, usually open MWF 10-1 and all day TR.<br>\r\nLet me know!<br>\r\nThanks!<br>\r\nRick </p>\r\n<p class=\"x_airmailon\">On November 13, 2025 at 1:00:01<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>PM, Christopher Schauerman (<a href=\"mailto:chris@cellectech.com\">chris@cellectech.com</a>) wrote:</p>\r\n<blockquote style=\"margin-top:5.0pt; margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt\">Hi Rick, </span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt\">I should have some time next week if you want to meet up. I can come over to RIT if that works for you.</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt\">Best,</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt\">Chris</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">--</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">Christopher Schauerman, PhD</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">President/CEO</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">Cellec Technologies, Inc.&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">245 Summit Point Dr</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">Henrietta, NY 14467</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">Office:&nbsp;(585) 280-9434</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">Business: (585) 454-9166</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">Cell: (814) 392-3661</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<div style=\"border:none; border-top:solid #E1E1E1 1.0pt; padding:3.0pt 0in 0in 0in\">\r\n<p class=\"x_MsoNormal\" style=\"\"><b><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt;\r\n<br>\r\n<b>Sent:</b> Wednesday, November 5, 2025 5:24 PM<br>\r\n<b>To:</b> Christopher Schauerman &lt;<a href=\"mailto:chris@cellectech.com\">chris@cellectech.com</a>&gt;<br>\r\n<b>Subject:</b> Re: Call with Cellec</span></p>\r\n</div>\r\n<p class=\"x_MsoNormal\" style=\"\">&nbsp;</p>\r\n<div>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:10.0pt; font-family:&quot;Helvetica&quot;,sans-serif\">Hi Chris,</span></p>\r\n</div>\r\n<div>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:10.0pt; font-family:&quot;Helvetica&quot;,sans-serif\">Just trying to connect again.</span></p>\r\n</div>\r\n<div>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:10.0pt; font-family:&quot;Helvetica&quot;,sans-serif\">Is there a chance we could connect in person next week?</span></p>\r\n</div>\r\n<div>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:10.0pt; font-family:&quot;Helvetica&quot;,sans-serif\">At RIT or off campus...Thanks!</span></p>\r\n</div>\r\n<div>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:10.0pt; font-family:&quot;Helvetica&quot;,sans-serif\">Rick</span></p>\r\n</div>\r\n<p class=\"x_MsoNormal\" style=\"\">&nbsp;</p>\r\n<div>\r\n<p class=\"x_MsoNormal\" style=\"\">&nbsp;</p>\r\n<div>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Rick Mislan, PhD,&nbsp;</span></p>\r\n<div>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Founder, CTO</span></p>\r\n</div>\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><img border=\"0\" width=\"108\" height=\"24\" id=\"x_Picture_x0020_1\" src=\"cid:5700760E-FA45-4883-8864-87CFF9919927\" style=\"width:1.125in; height:.25in\"></span></p>\r\n</div>\r\n<div>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\"><a href=\"https://mavrix1.com/\">https://mavrix1.com</a></span></p>\r\n</div>\r\n</div>\r\n<div>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span></p>\r\n</div>\r\n<div>\r\n<div>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">CONFIDENTIALITY NOTICE</span></p>\r\n</div>\r\n<div>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely\r\n for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</span></p>\r\n</div>\r\n<div>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span></p>\r\n</div>\r\n<div>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</span></p>\r\n</div>\r\n<div>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">&nbsp;</span></p>\r\n</div>\r\n<div>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-family:&quot;Helvetica&quot;,sans-serif\">Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency.\r\n All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</span></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"x_MsoNormal\" style=\"\">&nbsp;</p>\r\n<p class=\"x_airmailon0\">On October 30, 2025 at 10:14:28<span style=\"font-family:&quot;Arial&quot;,sans-serif\"> </span>AM, Christopher Schauerman (<a href=\"mailto:chris@cellectech.com\">chris@cellectech.com</a>) wrote:</p>\r\n<blockquote style=\"margin-top:5.0pt; margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt\">Hi Rick, </span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt\">Good chatting with you on the phone today. Let me know if tomorrow at 3:00pm works for everyone. Also, can you let me know who will be on the meeting.</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt\">&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt\">Best,</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt\">Chris</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">--</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">Christopher Schauerman, PhD</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">President/CEO</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">Cellec Technologies, Inc.&nbsp;</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">245 Summit Point Dr</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">Henrietta, NY 14467</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">Office:&nbsp;(585) 280-9434</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">Business: (585) 454-9166</span></p>\r\n<p class=\"x_MsoNormal\" style=\"\"><span style=\"font-size:11.0pt; font-family:&quot;Calibri&quot;,sans-serif\">Cell: (814) 392-3661</span></p>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</span></blockquote>\r\n</div>\r\n</body>\r\n</html>\r\n','Hi Rick,\r\n\r\nIt was great meeting with you today. I will try to find a time next week to show you around the battery prototyping center on campus.\r\n\r\n\r\n\r\nBest,\r\n\r\nChris\r\n\r\n\r\n\r\n--\r\n\r\n\r\n\r\nChristopher Schauerman, PhD\r\n\r\nPresident/CEO\r\n\r\nCellec Technologies, Inc.\r\n\r\nOffice: (585)280-9434\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Thursday, November 20, 2025 10:49:26 AM\r\nTo: Christopher Schauerman <chris@cellectech.com>\r\nSubject: RE: Call with Cellec\r\n\r\nYes!\r\nThanks!\r\nRick\r\n\r\n\r\nOn November 20, 2025 at 10:40:08 AM, Christopher Schauerman (chris@cellectech.com<mailto:chris@cellectech.com>) wrote:\r\n\r\nSee you at 11:30 at Java’s on campus.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nBest,\r\n\r\nChris\r\n\r\n--\r\n\r\n\r\n\r\nChristopher Schauerman, PhD\r\n\r\nPresident/CEO\r\n\r\n\r\n\r\nCellec Technologies, Inc.\r\n\r\n245 Summit Point Dr\r\n\r\nHenrietta, NY 14467\r\n\r\nOffice: (585) 280-9434\r\n\r\nBusiness: (585) 454-9166\r\n\r\nCell: (814) 392-3661\r\n\r\n\r\n\r\nFrom: Rick <rick@mavrix.one>\r\nSent: Thursday, November 13, 2025 2:41 PM\r\nTo: Christopher Schauerman <chris@cellectech.com>\r\nSubject: RE: Call with Cellec\r\n\r\n\r\n\r\nSounds good! Earlier in the week is better, usually open MWF 10-1 and all day TR.\r\nLet me know!\r\nThanks!\r\nRick\r\n\r\nOn November 13, 2025 at 1:00:01 PM, Christopher Schauerman (chris@cellectech.com<mailto:chris@cellectech.com>) wrote:\r\n\r\nHi Rick,\r\n\r\n\r\n\r\nI should have some time next week if you want to meet up. I can come over to RIT if that works for you.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nBest,\r\n\r\nChris\r\n\r\n--\r\n\r\n\r\n\r\nChristopher Schauerman, PhD\r\n\r\nPresident/CEO\r\n\r\n\r\n\r\nCellec Technologies, Inc.\r\n\r\n245 Summit Point Dr\r\n\r\nHenrietta, NY 14467\r\n\r\nOffice: (585) 280-9434\r\n\r\nBusiness: (585) 454-9166\r\n\r\nCell: (814) 392-3661\r\n\r\n\r\n\r\nFrom: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSent: Wednesday, November 5, 2025 5:24 PM\r\nTo: Christopher Schauerman <chris@cellectech.com<mailto:chris@cellectech.com>>\r\nSubject: Re: Call with Cellec\r\n\r\n\r\n\r\nHi Chris,\r\n\r\nJust trying to connect again.\r\n\r\nIs there a chance we could connect in person next week?\r\n\r\nAt RIT or off campus...Thanks!\r\n\r\nRick\r\n\r\n\r\n\r\n\r\n\r\nRick Mislan, PhD,\r\n\r\nFounder, CTO\r\n\r\n[cid:5700760E-FA45-4883-8864-87CFF9919927]\r\n\r\nhttps://mavrix1.com<https://mavrix1.com/>\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE\r\n\r\nThis communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.\r\n\r\n\r\n\r\nIf you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.\r\n\r\n\r\n\r\nUnless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n\r\n\r\n\r\nOn October 30, 2025 at 10:14:28 AM, Christopher Schauerman (chris@cellectech.com<mailto:chris@cellectech.com>) wrote:\r\n\r\nHi Rick,\r\n\r\n\r\n\r\nGood chatting with you on the phone today. Let me know if tomorrow at 3:00pm works for everyone. Also, can you let me know who will be on the meeting.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nBest,\r\n\r\nChris\r\n\r\n--\r\n\r\n\r\n\r\nChristopher Schauerman, PhD\r\n\r\nPresident/CEO\r\n\r\n\r\n\r\nCellec Technologies, Inc.\r\n\r\n245 Summit Point Dr\r\n\r\nHenrietta, NY 14467\r\n\r\nOffice: (585) 280-9434\r\n\r\nBusiness: (585) 454-9166\r\n\r\nCell: (814) 392-3661\r\n',0,0,0,0,0,0,'2025-11-20 23:58:30','2025-12-04 14:04:44','2025-12-04 14:04:44','2025-12-04 14:04:44',NULL,NULL,NULL),
(73,4,' <BN6PR08MB3315E9F63CBFEB8090E22191DCD4A@BN6PR08MB3315.namprd08.prod.outlook.com>',NULL,NULL,'Carlos with Flow Water Jets','cdiaz@flowcorp.com','Carlos Diaz','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=Windows-1252\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nHi Rick,</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nHope all is well. I wanted to check in and see if there have been any updates on the waterjet project. For planning purposes—both on my end and for our project manager—it would be helpful to know whether this might move forward before the end of the year, or\r\n if it\'s shaping up to be more of a Q1 2026 timeline.</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nWe’re here to support you and the team as we continue working through this discovery process, so feel free to reach out anytime. I’d love to catch up when you have a moment.</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\">\r\nLooking forward to your reply.</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div class=\"elementToProof\" id=\"Signature\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<p style=\"margin: 0in;\" class=\"elementToProof\"><span style=\"font-family: &quot;Franklin Gothic Book&quot;, sans-serif; font-size: 8pt; color: rgb(49, 132, 155);\"><b>Carlos R. Diaz</b></span></p>\r\n<p style=\"margin: 0in;\" class=\"elementToProof\"><span style=\"font-family: &quot;Franklin Gothic Book&quot;, sans-serif; font-size: 8pt; color: gray;\"><b>Application Specialist</b></span></p>\r\n<p style=\"margin: 0in;\" class=\"elementToProof\"><span style=\"font-family: &quot;Franklin Gothic Book&quot;, sans-serif; font-size: 8pt; color: gray;\">Flow International Corporation</span></p>\r\n<p style=\"margin: 0in;\" class=\"elementToProof\"><span style=\"font-family: &quot;Franklin Gothic Book&quot;, sans-serif; font-size: 8pt; color: gray;\">Atlanta, GA. 30064</span></p>\r\n<p style=\"margin: 0in;\" class=\"elementToProof\"><span style=\"font-family: &quot;Franklin Gothic Book&quot;, sans-serif; font-size: 8pt; color: gray;\">C.943.253.7285</span></p>\r\n<p style=\"margin: 0in;\" class=\"elementToProof\"><span style=\"font-family: &quot;Franklin Gothic Book&quot;, sans-serif; font-size: 8pt; color: rgb(5, 99, 193);\"><u><a style=\"color: rgb(5, 99, 193); margin-top: 0px; margin-bottom: 0px;\" class=\"x_OWAAutoLink\" id=\"OWA740a10af-9a08-fc8b-b7e4-cd421b2f8244\" href=\"http://www.flowwaterjet.com/\">www.FlowWaterjet.com</a></u></span><span style=\"font-family: &quot;Franklin Gothic Book&quot;, sans-serif; font-size: 8pt; color: gray;\">&nbsp;</span></p>\r\n<div style=\"font-family: &quot;Franklin Gothic Medium&quot;, sans-serif; font-size: 8.5pt; color: gray;\" class=\"elementToProof\">\r\n<span style=\"background-color: rgb(255, 255, 255);\"><br>\r\n</span></div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: &quot;Calibri Light&quot;, &quot;Helvetica Light&quot;, sans-serif; font-size: 14pt; color: rgb(23, 78, 134);\" class=\"elementToProof\">\r\n<b><br>\r\n</b></div>\r\n<div style=\"font-family: &quot;Segoe UI Light&quot;; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<span style=\"background-color: rgb(255, 255, 255);\"><b><br>\r\n</b></span></div>\r\n<div style=\"font-family: &quot;Segoe UI Light&quot;; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<span style=\"background-color: rgb(255, 255, 255);\"><br>\r\n</span></div>\r\n<div style=\"font-family: &quot;Segoe UI Light&quot;; font-size: 12pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n</div>\r\n</body>\r\n</html>','Hi Rick,\r\n\r\nHope all is well. I wanted to check in and see if there have been any updates on the waterjet project. For planning purposes—both on my end and for our project manager—it would be helpful to know whether this might move forward before the end of the year, or if it\'s shaping up to be more of a Q1 2026 timeline.\r\n\r\nWe’re here to support you and the team as we continue working through this discovery process, so feel free to reach out anytime. I’d love to catch up when you have a moment.\r\n\r\nLooking forward to your reply.\r\n\r\n\r\n\r\nCarlos R. Diaz\r\n\r\nApplication Specialist\r\n\r\nFlow International Corporation\r\n\r\nAtlanta, GA. 30064\r\n\r\nC.943.253.7285\r\n\r\nwww.FlowWaterjet.com<http://www.flowwaterjet.com/>',0,0,0,0,0,0,'2025-11-21 13:00:00','2025-12-04 14:04:44','2025-12-04 14:04:44','2025-12-04 14:04:44',NULL,NULL,NULL),
(74,4,' <019aa6ca-f9a0-794c-b922-c78452cf3125@personalizedsalesagents.com>',NULL,NULL,'Re: Mavrix sales','m.hayes@personalizedsalesagents.com','Mason Hayes','Hi,\r\n\r\nSome manufacturing teams using SalesCloser cut response times by half.\r\n\r\nWould you like to see how that might look for Mavrix1?\r\n\r\nIt only takes 10 minutes. \r\n\r\nOn Thu, November 20, 2025 2:07 PM, Mason Hayes <m.hayes@personalizedsalesagents.com>\r\n[m.hayes@personalizedsalesagents.com]> wrote:\r\n\r\n> Hi,\r\n> \r\n> I know things get busy on the production floor.\r\n> \r\n> Still curious if improving client communication is on your radar.\r\n> \r\n> Should we set up a short walkthrough?\r\n> On Wed, November 19, 2025 1:25 PM, Mason Hayes <m.hayes@personalizedsalesagents.com>\r\n> [m.hayes@personalizedsalesagents.com]> wrote:\r\n> \r\n> > Hi,\r\n> > \r\n> > Just checking if you had a chance to think about SalesCloser.\r\n> > \r\n> > It could really simplify how your team handles client calls.\r\n> > \r\n> > Would you be open to a quick chat this week?\r\n> > On Mon, November 3, 2025 12:50 PM, Mason Hayes <m.hayes@personalizedsalesagents.com>\r\n> > [m.hayes@personalizedsalesagents.com]> wrote:\r\n> > \r\n> > > Hi,\r\n> > > \r\n> > > I came across Mavrix1 and noticed your focus on precision manufacturing and American autonomy. It seems like your team is committed to keeping operations efficient and quality driven.\r\n> > > \r\n> > > Many manufacturing teams are seeing great results using AI agents to manage client calls and scheduling without adding extra staff. SalesCloser helps automate lead engagement and customer communication so your team can focus on production.\r\n> > > \r\n> > > Would it make sense to explore how this could support your client communication process?\r\n> > > \r\n> > > \r\n> > > \r\n> > > Mason\r\n> > > 422 Richards Street, Ste 170, Vancouver, BC V6B 2Z4\r\n> > > P.S. Please let me know if you don\'t want to hear from me again\r\n> > >\r\n','Hi,\r\n\r\nSome manufacturing teams using SalesCloser cut response times by half.\r\n\r\nWould you like to see how that might look for Mavrix1?\r\n\r\nIt only takes 10 minutes. \r\n\r\nOn Thu, November 20, 2025 2:07 PM, Mason Hayes <m.hayes@personalizedsalesagents.com>\r\n[m.hayes@personalizedsalesagents.com]> wrote:\r\n\r\n> Hi,\r\n> \r\n> I know things get busy on the production floor.\r\n> \r\n> Still curious if improving client communication is on your radar.\r\n> \r\n> Should we set up a short walkthrough?\r\n> On Wed, November 19, 2025 1:25 PM, Mason Hayes <m.hayes@personalizedsalesagents.com>\r\n> [m.hayes@personalizedsalesagents.com]> wrote:\r\n> \r\n> > Hi,\r\n> > \r\n> > Just checking if you had a chance to think about SalesCloser.\r\n> > \r\n> > It could really simplify how your team handles client calls.\r\n> > \r\n> > Would you be open to a quick chat this week?\r\n> > On Mon, November 3, 2025 12:50 PM, Mason Hayes <m.hayes@personalizedsalesagents.com>\r\n> > [m.hayes@personalizedsalesagents.com]> wrote:\r\n> > \r\n> > > Hi,\r\n> > > \r\n> > > I came across Mavrix1 and noticed your focus on precision manufacturing and American autonomy. It seems like your team is committed to keeping operations efficient and quality driven.\r\n> > > \r\n> > > Many manufacturing teams are seeing great results using AI agents to manage client calls and scheduling without adding extra staff. SalesCloser helps automate lead engagement and customer communication so your team can focus on production.\r\n> > > \r\n> > > Would it make sense to explore how this could support your client communication process?\r\n> > > \r\n> > > \r\n> > > \r\n> > > Mason\r\n> > > 422 Richards Street, Ste 170, Vancouver, BC V6B 2Z4\r\n> > > P.S. Please let me know if you don\'t want to hear from me again\r\n> > >\r\n',0,0,0,0,0,0,'2025-11-21 14:21:51','2025-12-04 14:04:44','2025-12-04 14:04:44','2025-12-04 14:04:44',NULL,NULL,NULL),
(75,4,' <PH2P111MB07785810B20F461B2B796196E3D5A@PH2P111MB0778.NAMP111.PROD.OUTLOOK.COM>',NULL,NULL,'Army CTO Connection - [UNCLASSIFIED]','samuel.c.herbert.mil@army.mil','\"Herbert, Samuel C LTC USARMY HQDA CSA (USA)\"','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\nspan.EmailStyle18\r\n	{mso-style-type:personal-compose;\r\n	font-family:\"Times New Roman\",serif;\r\n	color:black;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<div id=\"oct-marking-header-unclassified\">\r\n<p class=\"MsoNormal\"><b>UNCLASSIFIED <o:p></o:p></b></p>\r\n</div>\r\n<div id=\"ms-marking-body\">\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"color:black\">Rick,&nbsp;<o:p></o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"color:black\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><span style=\"color:black\">My name is Sam and I work for Dr. Alex Miller, the Army CTO. He gave me your contact info and wanted to see if you could send over some products on what you have been working on? He&#8217;s traveling a lot the next couple\r\n weeks so I am putting together content for him to review while transiting. <o:p>\r\n</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"color:black\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"color:black\">Thanks Sir,<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"color:black\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"color:black\">Sam <o:p></o:p></span></p>\r\n</div>\r\n<div id=\"ms-outlook-mobile-body-separator-line\">\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</div>\r\n<div id=\"ms-outlook-mobile-signature\">\r\n<p style=\"margin:0in;background:white\"><span style=\"font-size:12.5pt;color:black\">LTC Samuel Herbert</span><o:p></o:p></p>\r\n<p style=\"margin:0in;background:white\"><span style=\"font-size:12.5pt;color:black\">Executive Officer to the CTO</span><o:p></o:p></p>\r\n<p style=\"margin:0in;background:white\"><span style=\"font-size:12.5pt;color:black\">Office of the Chief of Staff, Army</span><o:p></o:p></p>\r\n<p style=\"margin:0in;background:white\"><span style=\"font-size:12.5pt;color:black\">3D654, Pentagon, Washington D.C.</span><o:p></o:p></p>\r\n<p style=\"margin:0in\"><span style=\"font-size:12.5pt;color:black;background:white\">&nbsp;</span><o:p></o:p></p>\r\n<p style=\"margin:0in\"><span style=\"font-size:12.5pt;color:black;background:white\">C: 859-699-3690</span><o:p></o:p></p>\r\n<p style=\"margin:0in\"><span style=\"font-size:12.5pt;color:black\">O: 703-614-4366</span><o:p></o:p></p>\r\n<p style=\"margin:0in\"><span style=\"font-size:12.5pt;color:black\">SVOIP: 302-221-4729<span style=\"background:white\"><br>\r\n<u><a href=\"mailto:Samuel.C.Herbert.mil@army.mil\">Samuel.C.Herbert.mil@army.mil</a></u>&nbsp;<br>\r\n<u><a href=\"mailto:Samuel.C.Herbert.mil@mail.smil.mil\">Samuel.C.Herbert.mil@mail.smil.mil</a></u></span></span><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"oct-marking-footer-unclassified\">\r\n<p class=\"MsoNormal\"><b>UNCLASSIFIED <o:p></o:p></b></p>\r\n</div>\r\n</div>\r\n</body>\r\n</html>','UNCLASSIFIED\r\nRick,\r\n\r\nMy name is Sam and I work for Dr. Alex Miller, the Army CTO. He gave me your contact info and wanted to see if you could send over some products on what you have been working on? He\'s traveling a lot the next couple weeks so I am putting together content for him to review while transiting.\r\n\r\nThanks Sir,\r\n\r\nSam\r\n\r\n\r\nLTC Samuel Herbert\r\n\r\nExecutive Officer to the CTO\r\n\r\nOffice of the Chief of Staff, Army\r\n\r\n3D654, Pentagon, Washington D.C.\r\n\r\n\r\n\r\nC: 859-699-3690\r\n\r\nO: 703-614-4366\r\n\r\nSVOIP: 302-221-4729\r\nSamuel.C.Herbert.mil@army.mil<mailto:Samuel.C.Herbert.mil@army.mil>\r\nSamuel.C.Herbert.mil@mail.smil.mil<mailto:Samuel.C.Herbert.mil@mail.smil.mil>\r\n\r\nUNCLASSIFIED',0,0,0,0,0,0,'2025-11-21 15:03:18','2025-12-04 14:04:44','2025-12-04 14:04:44','2025-12-04 14:04:44',NULL,NULL,NULL),
(76,4,'<0C3CA958-A141-460D-A42C-404E0EDFFB42@bayfrontcapitalllc.com>',NULL,NULL,'=?utf-8?Q?Palantir=E2=80=99s_=E2=80=98Meritocracy_Fellowship?= =?utf-8?Q?=E2=80=99_-_The_Wall_Street_Journal.?=','brian@bayfrontcapitalllc.com','Brian Stufflebean','<html class=\"apple-mail-supports-explicit-dark-mode\"><head><meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\"></head><body dir=\"auto\"><div dir=\"ltr\"><p>I thought you would be interested in the following story from The Wall Street Journal.</p> <a href=\"https://www.wsj.com/lifestyle/careers/palantirs-meritocracy-fellowship-c52fc4ad?st=fayeso&amp;reflink=article_email_share\"><p style=\"font-family: Georgia; font-weight: bold\">Palantir’s ‘Meritocracy Fellowship’</p></a><p></p> <p></p><p>Download the Wall Street Journal app here: <a href=\"https://itunes.apple.com/us/app/the-wall-street-journal./id364387007\">WSJ.</a></p> </div><br id=\"lineBreakAtBeginningOfSignature\"><div dir=\"ltr\"><div class=\"\"><span style=\"font-size: 17pt;\"><br></span></div><div class=\"\"><div class=\"\"><div><span class=\"\" style=\"background-color: rgba(255, 255, 255, 0);\">Best Regards,&nbsp;</span></div><div><span class=\"\" style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"\"></span></div><div><span class=\"\" style=\"background-color: rgba(255, 255, 255, 0);\">Brian C. Stufflebean, CEO<br class=\"\"><b class=\"\">Bayfront Capital, LLC</b><br class=\"\"><span class=\"\"><a href=\"tel:(941)545-4153\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"telephone\" x-apple-data-detectors-result=\"0/2\" style=\"text-decoration-color: rgba(128, 128, 128, 0.38);\">(941)545-4153</a>&nbsp;Cell</span></span></div><div><span style=\"background-color: rgba(255, 255, 255, 0);\"><span class=\"\"><a href=\"tel:(866)896-2423\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"telephone\" x-apple-data-detectors-result=\"0/3\" style=\"text-decoration-color: rgba(128, 128, 128, 0.38);\">(866)896-2423</a>&nbsp;Fax<br class=\"\"><a href=\"mailto:brian@bayfrontcapitalllc.com\" class=\"\">brian@bayfrontcapitalllc.com</a><br class=\"\"><a href=\"http://www.bayfrontcapitalllc.com/\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"link\" x-apple-data-detectors-result=\"0/5\" style=\"text-decoration-color: rgba(128, 128, 128, 0.38);\">www.bayfrontcapitalllc.com</a></span><br class=\"\">&nbsp; &nbsp; &nbsp;&nbsp;<br class=\"\"><br class=\"\"></span></div><span style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"Apple-interchange-newline\"><br></span><div class=\"\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"Apple-interchange-newline\"><br class=\"Apple-interchange-newline\"><br class=\"\"></span></div><div class=\"\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"\"></span></div><div class=\"\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"\"></span></div><div class=\"\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"\"></span></div><div class=\"\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"\"></span><div class=\"\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"\"></span></div><div class=\"\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><br class=\"\"></span></div><div class=\"\"><span style=\"background-color: rgba(255, 255, 255, 0);\"><b class=\"\">CONFIDENTIALITY NOTICE / NOTICE OF&nbsp;<u class=\"\">NOT A REGISTERED BROKER/DEALER:</u></b><span class=\"\">&nbsp;Bayfront Capital LLC, nor its’ affiliates are registered as a Broker/Dealer, nor registered with&nbsp;FINRA. Nor does&nbsp;it provide tax or investment advice. &nbsp;Any references made to any transaction in any communication is being made as a business consultant. &nbsp; This is not a&nbsp;solicitation nor offer of any type and any reference to any proposed transaction of any type is void where prohibited by law.&nbsp;This communication&nbsp;is confidential and intended only for the intended&nbsp;recipient. &nbsp;If you are not the intended recipient, you&nbsp;may not copy, disclose, or distribute this message&nbsp;to anyone else; any such actions may be unlawful. If you have received this communication in error,&nbsp;please contact the sender of the message to inform him or her of the error.</span></span></div><div><span class=\"\"><br></span></div></div></div></div><div class=\"\"><span style=\"font-size: 17pt;\"><br></span></div><div class=\"\"><span style=\"font-size: 17pt;\">Sent from my iPhone</span></div></div></body></html>','I thought you would be interested in the following story from The Wall Street Journal. Palantir’s ‘Meritocracy Fellowship’ Download the Wall Street Journal app here: WSJ. Best Regards,&nbsp;Brian C. Stufflebean, CEOBayfront Capital, LLC(941)545-4153&nbsp;Cell(866)896-2423&nbsp;Faxbrian@bayfrontcapitalllc.comwww.bayfrontcapitalllc.com&nbsp; &nbsp; &nbsp;&nbsp;CONFIDENTIALITY NOTICE / NOTICE OF&nbsp;NOT A REGISTERED BROKER/DEALER:&nbsp;Bayfront Capital LLC, nor its’ affiliates are registered as a Broker/Dealer, nor registered with&nbsp;FINRA. Nor does&nbsp;it provide tax or investment advice. &nbsp;Any references made to any transaction in any communication is being made as a business consultant. &nbsp; This is not a&nbsp;solicitation nor offer of any type and any reference to any proposed transaction of any type is void where prohibited by law.&nbsp;This communication&nbsp;is confidential and intended only for the intended&nbsp;recipient. &nbsp;If you are not the intended recipient, you&nbsp;may not copy, disclose, or distribute this message&nbsp;to anyone else; any such actions may be unlawful. If you have received this communication in error,&nbsp;please contact the sender of the message to inform him or her of the error.Sent from my iPhone',0,0,0,0,0,0,'2025-11-21 15:05:58','2025-12-04 14:04:45','2025-12-04 14:04:45','2025-12-04 14:04:45',NULL,NULL,NULL),
(77,4,'<CAGOCFXgSo-HezbK3R5i=L5xcXNVnNe=QCFwcWrzKPckeYMf79Q@mail.gmail.com>',NULL,NULL,'=?UTF-8?B?UmU6IFBhbGFudGly4oCZcyDigJhNZXJpdG9jcmFjeSBGZWxsb3dzaGlw4oCZIC0gVGhlIA==?= =?UTF-8?B?V2FsbCBTdHJlZXQgSm91cm5hbC4=?=','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div>Very interesting article.   Thanks for sharing. </div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Fri, Nov 21, 2025 at 10:06 AM Brian Stufflebean &lt;<a href=\"mailto:brian@bayfrontcapitalllc.com\">brian@bayfrontcapitalllc.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"auto\"><div dir=\"ltr\"><p>I thought you would be interested in the following story from The Wall Street Journal.</p> <a href=\"https://www.wsj.com/lifestyle/careers/palantirs-meritocracy-fellowship-c52fc4ad?st=fayeso&amp;reflink=article_email_share\" target=\"_blank\"><p style=\"font-family:Georgia;font-weight:bold\">Palantir’s ‘Meritocracy Fellowship’</p></a><p></p> <p></p><p>Download the Wall Street Journal app here: <a href=\"https://itunes.apple.com/us/app/the-wall-street-journal./id364387007\" target=\"_blank\">WSJ.</a></p> </div><br id=\"m_6957849718986841481lineBreakAtBeginningOfSignature\"><div dir=\"ltr\"><div><span style=\"font-size:17pt\"><br></span></div><div><div><div><span style=\"background-color:rgba(255,255,255,0)\">Best Regards, </span></div><div><span style=\"background-color:rgba(255,255,255,0)\"><br></span></div><div><span style=\"background-color:rgba(255,255,255,0)\">Brian C. Stufflebean, CEO<br><b>Bayfront Capital, LLC</b><br><span><a href=\"tel:(941)545-4153\" dir=\"ltr\" style=\"text-decoration-color:rgba(128,128,128,0.38)\" target=\"_blank\">(941)545-4153</a> Cell</span></span></div><div><span style=\"background-color:rgba(255,255,255,0)\"><span><a href=\"tel:(866)896-2423\" dir=\"ltr\" style=\"text-decoration-color:rgba(128,128,128,0.38)\" target=\"_blank\">(866)896-2423</a> Fax<br><a href=\"mailto:brian@bayfrontcapitalllc.com\" target=\"_blank\">brian@bayfrontcapitalllc.com</a><br><a href=\"http://www.bayfrontcapitalllc.com/\" dir=\"ltr\" style=\"text-decoration-color:rgba(128,128,128,0.38)\" target=\"_blank\">www.bayfrontcapitalllc.com</a></span><br>      <br><br></span></div><span style=\"background-color:rgba(255,255,255,0)\"><br><br></span><div><span style=\"background-color:rgba(255,255,255,0)\"><br><br><br></span></div><div><span style=\"background-color:rgba(255,255,255,0)\"><br></span></div><div><span style=\"background-color:rgba(255,255,255,0)\"><br></span></div><div><span style=\"background-color:rgba(255,255,255,0)\"><br></span></div><div><span style=\"background-color:rgba(255,255,255,0)\"><br></span><div><span style=\"background-color:rgba(255,255,255,0)\"><br></span></div><div><span style=\"background-color:rgba(255,255,255,0)\"><br></span></div><div><span style=\"background-color:rgba(255,255,255,0)\"><b>CONFIDENTIALITY NOTICE / NOTICE OF <u>NOT A REGISTERED BROKER/DEALER:</u></b><span> Bayfront Capital LLC, nor its’ affiliates are registered as a Broker/Dealer, nor registered with FINRA. Nor does it provide tax or investment advice.  Any references made to any transaction in any communication is being made as a business consultant.   This is not a solicitation nor offer of any type and any reference to any proposed transaction of any type is void where prohibited by law. This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.</span></span></div><div><span><br></span></div></div></div></div><div><span style=\"font-size:17pt\"><br></span></div><div><span style=\"font-size:17pt\">Sent from my iPhone</span></div></div></div></blockquote></div>','Very interesting article.   Thanks for sharing.\r\n\r\n\r\n<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\nOn Fri, Nov 21, 2025 at 10:06 AM Brian Stufflebean <\r\nbrian@bayfrontcapitalllc.com> wrote:\r\n\r\n> I thought you would be interested in the following story from The Wall\r\n> Street Journal.\r\n>\r\n> Palantir’s ‘Meritocracy Fellowship’\r\n>\r\n> <https://www.wsj.com/lifestyle/careers/palantirs-meritocracy-fellowship-c52fc4ad?st=fayeso&reflink=article_email_share>\r\n>\r\n> Download the Wall Street Journal app here: WSJ.\r\n> <https://itunes.apple.com/us/app/the-wall-street-journal./id364387007>\r\n>\r\n>\r\n> Best Regards,\r\n>\r\n> Brian C. Stufflebean, CEO\r\n> *Bayfront Capital, LLC*\r\n> (941)545-4153 Cell\r\n> (866)896-2423 Fax\r\n> brian@bayfrontcapitalllc.com\r\n> www.bayfrontcapitalllc.com\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n> *CONFIDENTIALITY NOTICE / NOTICE OF NOT A REGISTERED BROKER/DEALER:* Bayfront\r\n> Capital LLC, nor its’ affiliates are registered as a Broker/Dealer, nor\r\n> registered with FINRA. Nor does it provide tax or investment advice.  Any\r\n> references made to any transaction in any communication is being made as a\r\n> business consultant.   This is not a solicitation nor offer of any type and\r\n> any reference to any proposed transaction of any type is void where\r\n> prohibited by law. This communication is confidential and intended only for\r\n> the intended recipient.  If you are not the intended recipient, you may not\r\n> copy, disclose, or distribute this message to anyone else; any such actions\r\n> may be unlawful. If you have received this communication in error, please\r\n> contact the sender of the message to inform him or her of the error.\r\n>\r\n>\r\n> Sent from my iPhone\r\n>',0,0,0,0,0,0,'2025-11-21 15:23:32','2025-12-04 14:04:46','2025-12-04 14:04:46','2025-12-04 14:04:46',NULL,NULL,NULL),
(78,4,'<CAJO9__bRP1Q52-wHP_etji+jFNuNFdc1pCxNazmQ=bkhvEVK7A@mail.gmail.com>',NULL,NULL,'Fwd: Lithium Battery Company AE Proposal 6-25-25 for 3900 W Coachman','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<div dir=\"ltr\">Hello Team,<br><br>Please see attached LDDBlueline’s proposal.<div><br></div><div>Best Regards, <br><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div><br><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">---------- Forwarded message ---------<br>From: <strong class=\"gmail_sendername\" dir=\"auto\">Steve Barthlow</strong> <span dir=\"auto\">&lt;<a href=\"mailto:Steve.Barthlow@lddblueline.com\">Steve.Barthlow@lddblueline.com</a>&gt;</span><br>Date: Fri, Nov 21, 2025 at 3:47 PM<br>Subject: Lithium Battery Company AE Proposal 6-25-25 for 3900 W Coachman<br>To: Nathan Staron &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\">nathan@lithiumbatterycompany.com</a>&gt;, Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\">jordan@lithiumbatterycompany.com</a>&gt;, Jarrett Brownfield &lt;<a href=\"mailto:jarrett@lithiumbatterycompany.com\">jarrett@lithiumbatterycompany.com</a>&gt;<br></div><br><br><div class=\"msg-650721144019420901\">\r\n\r\n\r\n\r\n\r\n\r\n<div lang=\"EN-US\" link=\"#467886\" vlink=\"#96607D\" style=\"word-wrap:break-word\">\r\n<div class=\"m_-650721144019420901WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif\">Hi Nathan, Jordan, and Jarrett,<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif\">It’s fantastic that the project is getting started!  The kickoff meeting was great!  At your convenience, please sign LDDBlueline’s proposal for our records.<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif\">Thanks,<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif\"><u></u> <u></u></span></p>\r\n<div>\r\n<table border=\"0\" cellpadding=\"0\" width=\"400\" style=\"width:300.0pt;background:white\">\r\n<tbody>\r\n<tr>\r\n<td width=\"396\" style=\"width:297.0pt;padding:0in 0in 4.5pt 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:#2256a1;border:none windowtext 1.0pt;padding:0in\">Steven D. Barthlow, AIA, NCARB</span></b><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#242424\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\" style=\"line-height:105%\"><span style=\"font-size:10.0pt;line-height:105%;font-family:&quot;Arial&quot;,sans-serif;color:#878787;border:none windowtext 1.0pt;padding:0in\">principal | vice president | regional director</span><span style=\"font-size:10.0pt;line-height:105%;font-family:&quot;Arial&quot;,sans-serif;color:#878787\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:1.65pt\">\r\n<td width=\"396\" style=\"width:297.0pt;border:none;border-top:solid #2256a1 1.0pt;padding:0in 0in 0in 0in;height:1.65pt\">\r\n<p class=\"MsoNormal\" style=\"line-height:6.0pt\"><span style=\"font-size:5.0pt;font-family:&quot;Calibri&quot;,sans-serif\"><u></u> <u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:24.9pt\">\r\n<td width=\"396\" style=\"width:297.0pt;padding:0in 0in 0in 0in;height:24.9pt\">\r\n<p class=\"MsoNormal\" style=\"line-height:105%\"><b><span style=\"font-size:18.0pt;line-height:105%;font-family:&quot;Arial Black&quot;,sans-serif;color:#bf0d3e;background:white\">LDD</span></b><b><span style=\"font-size:18.0pt;line-height:105%;font-family:&quot;Arial Black&quot;,sans-serif;color:#004c97;background:white\">Blueline</span></b><b><sup><span style=\"font-size:10.0pt;line-height:105%;font-family:&quot;Arial&quot;,sans-serif;color:black;background:white\">TM<u></u><u></u></span></sup></b></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:8.25pt\">\r\n<td width=\"396\" style=\"width:297.0pt;padding:0in 0in 0in 0in;height:8.25pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial Black&quot;,sans-serif;color:#595959\">Discover | Design | Deliver<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"396\" style=\"width:297.0pt;padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><i><span style=\"font-size:8.0pt;font-family:&quot;Arial&quot;,sans-serif;color:black\">Celebrating 21 years of architectural service across Florida,</span></i><i><span style=\"font-size:8.0pt;font-family:&quot;Arial&quot;,sans-serif\"><u></u><u></u></span></i></p>\r\n<p class=\"MsoNormal\"><i><span style=\"font-size:8.0pt;font-family:&quot;Arial&quot;,sans-serif;color:black\">and one vibrant year back in Tampa Bay!</span></i><i><span style=\"font-size:8.0pt;font-family:&quot;Arial&quot;,sans-serif\"><u></u><u></u></span></i></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:8.0pt;font-family:&quot;Arial&quot;,sans-serif;color:black\">306 East Oak Avenue, Tampa, FL 33602</span><span style=\"font-size:8.0pt;font-family:&quot;Arial&quot;,sans-serif\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"396\" valign=\"top\" style=\"width:297.0pt;padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"line-height:105%\"><u><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:blue;border:none windowtext 1.0pt;padding:0in\">Steve.Barthlow@LDDBlueline.com</span></u><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:#878787\">\r\n</span><span style=\"font-size:11.0pt;line-height:105%\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"396\" valign=\"top\" style=\"width:297.0pt;padding:0in 0in 0in 0in\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\">AR 103560 | office 813.771.2378 | cell 404.245.0451<u></u><u></u></p>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif\"><u></u> <u></u></span></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #e1e1e1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Steve Barthlow\r\n<br>\r\n<b>Sent:</b> Thursday, June 26, 2025 12:26 PM<br>\r\n<b>To:</b> Nathan Staron &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;; Jarrett Brownfield &lt;<a href=\"mailto:jarrett@lithiumbatterycompany.com\" target=\"_blank\">jarrett@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Cc:</b> James Jacobik &lt;<a href=\"mailto:James.Jacobik@lddblueline.com\" target=\"_blank\">James.Jacobik@lddblueline.com</a>&gt;; Haley Lovin &lt;<a href=\"mailto:Haley.Lovin@lddblueline.com\" target=\"_blank\">Haley.Lovin@lddblueline.com</a>&gt;<br>\r\n<b>Subject:</b> Lithium Battery Company AE Proposal 6-25-25 for 3900 W Coachman<u></u><u></u></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif\">Hi Nathan, Jordan and Jarrett,<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif\">Attached please find LDDBlueline’s Architectural, MEP and Structural Proposal for the 3900 W Coachman Building.  Please let us know if you have any questions.  Thank you again\r\n for allowing us to be a part of this important project!<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif\">Thanks,<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11.0pt;font-family:&quot;Arial&quot;,sans-serif\"><u></u> <u></u></span></p>\r\n<table border=\"0\" cellpadding=\"0\" width=\"400\" style=\"width:300.0pt;background:white\">\r\n<tbody>\r\n<tr>\r\n<td width=\"396\" style=\"width:297.0pt;padding:0in 0in 4.5pt 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:#2256a1;border:none windowtext 1.0pt;padding:0in\">Steven D. Barthlow, AIA, NCARB</span></b><span style=\"font-size:10.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:#242424\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\" style=\"line-height:105%\"><span style=\"font-size:10.0pt;line-height:105%;font-family:&quot;Arial&quot;,sans-serif;color:#878787;border:none windowtext 1.0pt;padding:0in\">principal | vice president | regional director</span><span style=\"font-size:10.0pt;line-height:105%;font-family:&quot;Arial&quot;,sans-serif;color:#878787\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:1.65pt\">\r\n<td width=\"396\" style=\"width:297.0pt;border:none;border-top:solid #2256a1 1.0pt;padding:0in 0in 0in 0in;height:1.65pt\">\r\n<p class=\"MsoNormal\" style=\"line-height:6.0pt\"><span style=\"font-size:5.0pt;font-family:&quot;Calibri&quot;,sans-serif\"><u></u> <u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:24.9pt\">\r\n<td width=\"396\" style=\"width:297.0pt;padding:0in 0in 0in 0in;height:24.9pt\">\r\n<p class=\"MsoNormal\" style=\"line-height:105%\"><b><span style=\"font-size:18.0pt;line-height:105%;font-family:&quot;Arial Black&quot;,sans-serif;color:#bf0d3e;background:white\">LDD</span></b><b><span style=\"font-size:18.0pt;line-height:105%;font-family:&quot;Arial Black&quot;,sans-serif;color:#004c97;background:white\">Blueline</span></b><b><sup><span style=\"font-size:10.0pt;line-height:105%;font-family:&quot;Arial&quot;,sans-serif;color:black;background:white\">TM<u></u><u></u></span></sup></b></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:8.25pt\">\r\n<td width=\"396\" style=\"width:297.0pt;padding:0in 0in 0in 0in;height:8.25pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Arial Black&quot;,sans-serif;color:#595959\">Discover | Design | Deliver<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"396\" style=\"width:297.0pt;padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><i><span style=\"font-size:8.0pt;font-family:&quot;Arial&quot;,sans-serif;color:black\">“National Expertise with Local Service”</span></i><i><span style=\"font-size:8.0pt;font-family:&quot;Arial&quot;,sans-serif\"><u></u><u></u></span></i></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"396\" valign=\"top\" style=\"width:297.0pt;padding:0in 0in 0in 0in\">\r\n<p class=\"MsoNormal\" style=\"line-height:105%\"><u><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:blue;border:none windowtext 1.0pt;padding:0in\"><a href=\"mailto:Steve.Barthlow@LDDBlueline.com\" target=\"_blank\">Steve.Barthlow@LDDBlueline.com</a></span></u><span style=\"font-family:&quot;Arial&quot;,sans-serif;color:#878787\">\r\n</span><span style=\"font-size:11.0pt;line-height:105%\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"396\" valign=\"top\" style=\"width:297.0pt;padding:0in 0in 0in 0in\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\">813.771.2378<u></u><u></u></p>\r\n<p class=\"MsoNormal\">404.245.0451 (cell)<u></u><u></u></p>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n</div>\r\n</div>\r\n\r\n</div></div></div></div>','Hello Team,\r\n\r\nPlease see attached LDDBlueline’s proposal.\r\n\r\nBest Regards,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\n*jordan@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com>\r\n\r\n\r\n---------- Forwarded message ---------\r\nFrom: Steve Barthlow <Steve.Barthlow@lddblueline.com>\r\nDate: Fri, Nov 21, 2025 at 3:47 PM\r\nSubject: Lithium Battery Company AE Proposal 6-25-25 for 3900 W Coachman\r\nTo: Nathan Staron <nathan@lithiumbatterycompany.com>, Jordan Wroblewski <\r\njordan@lithiumbatterycompany.com>, Jarrett Brownfield <\r\njarrett@lithiumbatterycompany.com>\r\n\r\n\r\nHi Nathan, Jordan, and Jarrett,\r\n\r\n\r\n\r\nIt’s fantastic that the project is getting started!  The kickoff meeting\r\nwas great!  At your convenience, please sign LDDBlueline’s proposal for our\r\nrecords.\r\n\r\n\r\n\r\nThanks,\r\n\r\n\r\n\r\n*Steven D. Barthlow, AIA, NCARB*\r\n\r\nprincipal | vice president | regional director\r\n\r\n\r\n\r\n*LDD**Blueline**TM*\r\n\r\nDiscover | Design | Deliver\r\n\r\n*Celebrating 21 years of architectural service across Florida,*\r\n\r\n*and one vibrant year back in Tampa Bay!*\r\n\r\n306 East Oak Avenue, Tampa, FL 33602\r\n\r\n*Steve.Barthlow@LDDBlueline.com*\r\n\r\nAR 103560 | office 813.771.2378 | cell 404.245.0451\r\n\r\n\r\n\r\n*From:* Steve Barthlow\r\n*Sent:* Thursday, June 26, 2025 12:26 PM\r\n*To:* Nathan Staron <nathan@lithiumbatterycompany.com>; Jordan Wroblewski <\r\njordan@lithiumbatterycompany.com>; Jarrett Brownfield <\r\njarrett@lithiumbatterycompany.com>\r\n*Cc:* James Jacobik <James.Jacobik@lddblueline.com>; Haley Lovin <\r\nHaley.Lovin@lddblueline.com>\r\n*Subject:* Lithium Battery Company AE Proposal 6-25-25 for 3900 W Coachman\r\n\r\n\r\n\r\nHi Nathan, Jordan and Jarrett,\r\n\r\n\r\n\r\nAttached please find LDDBlueline’s Architectural, MEP and Structural\r\nProposal for the 3900 W Coachman Building.  Please let us know if you have\r\nany questions.  Thank you again for allowing us to be a part of this\r\nimportant project!\r\n\r\n\r\n\r\nThanks,\r\n\r\n\r\n\r\n*Steven D. Barthlow, AIA, NCARB*\r\n\r\nprincipal | vice president | regional director\r\n\r\n\r\n\r\n*LDD**Blueline**TM*\r\n\r\nDiscover | Design | Deliver\r\n\r\n*“National Expertise with Local Service”*\r\n\r\n*Steve.Barthlow@LDDBlueline.com <Steve.Barthlow@LDDBlueline.com>*\r\n\r\n813.771.2378\r\n\r\n404.245.0451 (cell)',0,0,0,0,0,0,'2025-11-21 21:13:45','2025-12-04 14:04:47','2025-12-04 14:04:47','2025-12-04 14:04:47',NULL,NULL,NULL);
INSERT INTO `emails` VALUES
(79,4,'<CAGOCFXjcwR+5ufB=bn+hYUcK1Di2V74_MpBkD-GaGxzXN6Ucmg@mail.gmail.com>',NULL,NULL,'Fwd: Shmuel De-Leon Energy - Li-Ion Cells (Cylindrical, Pouch, Prismatic) for sale for this week - November 24, 2025','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div>Updated pricing this morning for cells.   </div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">---------- Forwarded message ---------<br>From: <strong class=\"gmail_sendername\" dir=\"auto\">shmuel de-leon</strong> <span dir=\"auto\">&lt;<a href=\"mailto:shmuel@sdle.co.il\">shmuel@sdle.co.il</a>&gt;</span><br>Date: Mon, Nov 24, 2025 at 10:00 AM<br>Subject: Shmuel De-Leon Energy - Li-Ion Cells (Cylindrical, Pouch, Prismatic) for sale for this week - November 24, 2025<br>To: <br></div><br><br>\r\n\r\n\r\n\r\n\r\n\r\n<div lang=\"en-IL\" link=\"#0563C1\" vlink=\"#954F72\" style=\"word-wrap:break-word\">\r\n<div>\r\n<p class=\"MsoNormal\"><span lang=\"en-IL\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><b><span lang=\"PL\" style=\"color:red\"><img width=\"103\" height=\"136\" style=\"width:1.0729in;height:1.4166in\" id=\"m_5665758451303559904תמונה_x0020_2\" src=\"cid:ii_19ab6e887fa5b16b21\"></span></b><b><span lang=\"PL\" style=\"color:red\"><u></u><u></u></span></b></p>\r\n<p class=\"MsoNormal\"><b><span lang=\"PL\" style=\"color:red\"><u></u> <u></u></span></b></p>\r\n<p class=\"MsoNormal\"><b><span lang=\"PL\" style=\"color:red\">---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------<u></u><u></u></span></b></p>\r\n<p class=\"MsoNormal\"><b><span lang=\"PL\" style=\"color:red\"><u></u> <u></u></span></b></p>\r\n<p class=\"MsoNormal\"><b><span lang=\"PL\" style=\"color:red\">Attached list of cells we have availible for this week – Contact us for these cells or for other cell models you need and we will check availability – Contact us in case you wish to sell cell stock you\r\n have<u></u><u></u></span></b></p>\r\n<p class=\"MsoNormal\"><b><span lang=\"PL\" style=\"color:red\">----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------<u></u><u></u></span></b></p>\r\n<p class=\"MsoNormal\"><b><span lang=\"PL\" style=\"color:red\"><u></u> <u></u></span></b></p>\r\n<ul style=\"margin-top:0cm\" type=\"disc\">\r\n<li style=\"color:red;margin-left:0cm\">\r\n<b><span lang=\"PL\">Attached an update on discontiniue Panasonic cells  -Contact us to purchase these cells before it will be to late!!!<u></u><u></u></span></b></li></ul>\r\n<p class=\"MsoNormal\"><b><span lang=\"PL\" style=\"color:red\"><u></u> <u></u></span></b></p>\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"2112\" style=\"width:1584.0pt;border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"1863\" nowrap valign=\"bottom\" style=\"width:1396.9pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><b><u><span lang=\"EN-US\" style=\"font-size:16.0pt;color:black\">New High Energy Density Cells we sell:<u></u><u></u></span></u></b></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\" style=\"font-size:16.0pt;color:black\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\">21700 cell</span></b><span style=\"color:black\"> – production capacity is 2000 cells per day (Vendor start building 500MWh/Year Factory – Production start\r\n Q1/26) - cost ~$20-28/pcs ex work China depend on the quantity<br>\r\nEnergy Density: 393 Wh/kg, Capacity: 6Ah at C/5, at room temperature to 3V C.O.V, Weight: 58 Grams, Size: 21.8, 71.8, Nominal voltage: 3.8V,  <br>\r\nMax constant charge current is 1C to 4.35V, Cycle life: 120 cycles, Max constant discharge current is 5C, Discharge temp -10 to 65 Deg C, <br>\r\nCharge temp 0 to 35 Deg C <br>\r\n <br>\r\n<b>Pouch Cells Vendor 1</b><br>\r\nWe also sell quasi solid lithium metal anode free pouch cells with energy densities of up to 520 Wh/kg, 1200 Wh/l, 8-50Ah capacity, 7C max constant discharge, 10-50 Cycles - Cells are made in 200MWh/Year factory .<br>\r\n<br>\r\n<b>Pouch Cells Vendor 2</b><br>\r\nWe also sell quasi solid lithium metal pouch cells with energy densities of up to 450 Wh/kg, 6-50Ah capacity, 8C max constant discharge, 1200 Cycles - Cells are made in 600MWh/Year factory.<br>\r\n<br>\r\n<b>Pouch Cells Vendor 3</b><br>\r\nWe also sell Semi solid lithium metal anode free pouch cells with energy densities of up to 400-600 Wh/kg, 8-50Ah capacity, 5C max constant discharge, 400Wh/Kg with 800 cycles, 500-600 Wh/kg with 10-15 Cycles - Cells are made in 10MWh/Year prototype production\r\n line.<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"color:black\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\">We sell battery packs assemble with lithium metal cells with 400-460 Wh/kg.</span></b><b><u><span lang=\"EN-US\" style=\"font-size:16.0pt;color:black\"><u></u><u></u></span></u></b></p>\r\n<p class=\"MsoNormal\"><b><u><span lang=\"EN-US\" style=\"font-size:16.0pt;color:black\">---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------<u></u><u></u></span></u></b></p>\r\n<p class=\"MsoNormal\"><b><u><span lang=\"EN-US\" style=\"font-size:16.0pt;color:black\"><u></u><span style=\"text-decoration:none\"> </span><u></u></span></u></b></p>\r\n<p class=\"MsoNormal\"><b><u><span lang=\"EN-US\" style=\"font-size:16.0pt;color:black\">Our Customers/Suppliers new cells with and older date code stocks we have for sale:<u></u><u></u></span></u></b></p>\r\n<p class=\"MsoNormal\"><b><span lang=\"EN-US\" style=\"color:black\"><u></u> <u></u></span></b></p>\r\n<p class=\"MsoNormal\"><b>We have in Germany Panasonic NCR18650-B in special pricing – Contact us for more details<u></u><u></u></b></p>\r\n<p class=\"MsoNormal\"><b><u></u> <u></u></b></p>\r\n<p class=\"MsoNormal\"><b><span style=\"color:red\">Panasonic NCR-18650B</span></b><br>\r\nPrice for an order of minimum 50.040 pcs. = 3,46 € (transport costs will be added)<br>\r\nPrice is only valid for an order of minimum 50.040 pcs.<br>\r\nProduction date code of the cells: 34.700 pcs. with November 2024, 15.340 pcs. with March 2025<br>\r\nDelivery time: available on stock - subject to being unsold!<br>\r\n<b><br>\r\n<span style=\"color:red\">Molicel INR21700-P42A</span></b><br>\r\nPrice for an order of minimum 20.000 pcs.: 3.5 € (transport costs will be added)<br>\r\nMaximum available quantity: 48.000 pcs.<br>\r\nProduction date code of the cells: March 2025<br>\r\n<br>\r\n<b><span style=\"color:red\">Molicel INR21700-P45B</span></b><br>\r\nPrice for an order of minimum 20.000 pcs.: 3.5 € (transport costs will be added)<br>\r\nMaximum available quantity: 41.000 pcs.<br>\r\nProduction date code of the cells: December 2024 and January 2025<u></u><u></u></p>\r\n<p class=\"MsoNormal\"><b><u></u> <u></u></b></p>\r\n<p class=\"MsoNormal\"><b><span style=\"color:red\">Molicel INR18650-P28A</span></b><br>\r\nPrice for an order of minimum 7.000 pcs.: 1.8 € (transport costs will be added)<br>\r\nProduction date code of the cells: 2022 – Location: USA<b><u></u><u></u></b></p>\r\n<p class=\"MsoNormal\"><b><u></u> <u></u></b></p>\r\n<p class=\"MsoNormal\"><b>We have in Germany:<u></u><u></u></b></p>\r\n<p class=\"MsoNormal\">Murata US18650VTC6, 25K, cost 3Euro/pcs, Date cost March 2024<u></u><u></u></p>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n<p class=\"MsoNormal\"><b>We have in Germany:<u></u><u></u></b></p>\r\n<p class=\"MsoNormal\"><span lang=\"en-AE\">Panasonic 150K NCR18650GA6W (Factory Wuxi China) Date Code 2022 €2.6/pcs.<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"en-AE\"><u></u> <u></u></span></p>\r\n<p><span style=\"color:#1f497d\">----------------------------------------------------------------------------------------------------------------------------------------------------------------------------<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><b><span lang=\"EN-US\" style=\"font-size:16.0pt;color:black\">New cells we have for sale:<u></u><u></u></span></b></p>\r\n<p class=\"MsoNormal\"><b><span lang=\"EN-US\" style=\"font-size:16.0pt;color:black\"><u></u> <u></u></span></b></p>\r\n<p class=\"MsoNormal\"><b><span lang=\"EN-US\" style=\"font-size:16.0pt;color:#ee0000\">We start selling Moli Energy 21700 6.5Ah cells.</span></b><b><span style=\"font-size:16.0pt;color:#ee0000\"><u></u><u></u></span></b></p>\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\"><u></u> <u></u></span></b></p>\r\n<p class=\"MsoNormal\"><b><span lang=\"EN-US\" style=\"color:black\">Supplier 1:</span></b><b><span style=\"color:black\"><u></u><u></u></span></b></p>\r\n<p class=\"MsoNormal\"><b><span lang=\"EN-US\" style=\"color:black\">Moli cells</span></b><b><span style=\"color:black\"><u></u><u></u></span></b></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\">P26A – Any Quantity 10K and up – fresh cells – An attractive cost.</span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\">P28A – Any Quantity 10K and up – fresh cells - An attractive cost.</span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\">P42A – Any Quantity 10K and up – fresh cells - An attractive cost.</span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\">M35A – Any Quantity 10K and up – fresh cells - An attractive cost.</span><u></u><u></u></p>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"1271\" style=\"width:953.0pt;border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"309\" nowrap colspan=\"2\" valign=\"bottom\" style=\"width:232.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<ol style=\"margin-top:0cm\" start=\"1\" type=\"1\">\r\n<li style=\"color:black;margin-left:0cm\">\r\n<b><span>Samsung SDI<u></u><u></u></span></b></li></ol>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:30.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" style=\"width:82.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Leadtime<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">18650-20RM</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">High Rate, 3.6V, 2.0Ah</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$1.6</span>5<span style=\"color:black\">\r\n</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1 week</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2024-12<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Made in Malaysia<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">18650-20RM</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">High Rate, 3.6V, 2.0Ah</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$1.7\r\n</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA HK</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1 week</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2024-12<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Made in Malaysia, MOQ 20K pcs<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-25R<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">High Rate, 3.6V, 2.5Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.69 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2024-08<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-26JM<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">High Energy, 3.6V, 2.6Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.30 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2021-08<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Made in Malaysia<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-30Q<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">High rate, 3.6V, 3.0Ah<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.25 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2025-07<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-30Q<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">High rate, 3.6V, 3.0Ah<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.15 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2024-10<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">MOQ 1 Pallet<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-35E<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Middle rate, 3.6V, 3.5Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.78 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 3 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-35E<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Middle rate, 3.6V, 3.5Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.45 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2024-01<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-30T<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">High Rate, 3.6V, 3.0Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">4 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-40T5<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">High Rate, 3.6V, 4.0Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.05 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 6 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-40T<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">High Rate, 3.6V, 4.0Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.90 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2024-02<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:12.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:12.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:12.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-48X3<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:12.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 4.8Ah, 3000cycles,bare<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:12.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:12.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.65 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:12.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:12.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">4 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:12.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2023-12<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:12.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Bare cells<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-48X2<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 4.8Ah, 3000cycles<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">4 weeks<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2022-01<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-50E2<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 5.0Ah, 2C(C), 3C(P)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.70 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2024-01<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Made in China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-50E2<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 5.0Ah, 2C(C), 3C(P)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.95 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Available in Oct.<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 2025-07<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Made in China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-50GB<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 5.0Ah, 1C(C), 2C(P)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.15 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2025-03<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Made in Malaysia, MOQ 1 Pallet<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-50S<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 5.0Ah 5C(C), 9C(P)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.45 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 2025<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Made in China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-50S<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 5.0Ah 5C(C), 9C(P)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.68 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 2025<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Made in China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-53G2<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 5.3Ah, 1C(C)<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.40 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2025-03<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">with tube<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-58E<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.64V, 5330mAh, 3C max<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$4 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2024-07<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"309\" nowrap colspan=\"2\" valign=\"bottom\" style=\"width:232.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\">2. LG Energy Solution<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:30.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" style=\"width:82.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-F1L<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">High Energy, 3.6V, 3.35Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.25 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2024-09<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-MF1<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Middle rate, 3.6V, 2.15Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2021-02<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Lot A045<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-M26(S)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Middle rate, 3.6V, 2.6Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">19,000pcs<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.83 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2020-10<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-M29<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Middle rate, 3.6V, 2.85Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.2 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Fresh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650HJ2<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">High Rate, 3.6V, 3.0Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.05 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2024-05<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650HJ2<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">High Rate, 3.6V, 3.0Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.21 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Within 6 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-MH1<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Middle rate, 3.6V, 3.2Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.56 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Within 6 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-MH1<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Middle rate, 3.6V, 3.2Ah<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.54 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Within 6 months<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">MOQ 1 Pallet<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-MJ1<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Middle rate, 3.6V, 3.5Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.55 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Within 6 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Made in China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-MJ1<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Middle rate, 3.6V, 3.5Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.53 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Within 6 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">MOQ 1 Pallet<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-M48<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Middle rate, 3.68V, 17.4Wh<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.03 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Stock<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2023-05<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">LOT C118D283<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-M48A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.6 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-M50LT<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Middle rate, 3.6V, 5.0Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.92 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2025-08<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-M52V<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 5.2Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.16 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 2025<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Made in Korea, Bare cell<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><b><span style=\"color:red\">Cylindrical</span></b><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><b><span style=\"color:red\">21700-M58T</span></b><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><b><span style=\"color:red\">3.6V, 5.8Ah</span></b><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><b><span style=\"color:red\">5,330pcs</span></b><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><b><span style=\"color:red\">$2.15\r\n</span></b><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><b><span style=\"color:red\">FCA HK</span></b><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><b><span style=\"color:red\">3 days</span></b><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><b><span style=\"color:red\">2023-11</span></b><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><b><span style=\"color:red\">Made in Korea,\r\n<br>\r\nSpecial Promotion to take all</span></b><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-M58T<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 5.8Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$6.15 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3 days<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2024-06<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Made in Korea<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-M58T<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 5.8Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.7 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3 days<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Within 6 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Made in China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Pouch Polymer<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">E66<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Li-ion, 3.65V 66Ah 11.3 x 98 x 357mm<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$35.00 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N/A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">A- grade<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Pouch Polymer<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">E78<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Li-ion, 3.65V 78Ah 8 x 98 x 510mm<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$38.00 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N/A<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">A- grade<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"309\" nowrap colspan=\"2\" valign=\"bottom\" style=\"width:232.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\">3. Panasonic (Sanyo)<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:30.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" style=\"width:82.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UR18650RX (Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1950mAh, 3.6V<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">MOQ 1 Pallet<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.75 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 3-6 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Fresh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Japan<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UR18650AA (Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2250mAh, 3.6V, 8A discharge<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.80 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 6 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UR18650A(Y) (Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2200mAh, 3.6V, 2C discharge<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.35 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">5 days<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2024-08<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UR18650NSX (Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2500mAh, 3.6V<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$4.35 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2023-03<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">MOQ 1 Pallet<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UR18650FM (Sanyo)<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.7V 2.5Ah<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$4.70 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">April, 2026<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 2026<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Japan, Irrevocable<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UR18650ZM2 (Sanyo)<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2.55Ah<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.75 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2025-08<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">China<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UR18650ZM2 (Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2.55Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.77 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2025-08<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UR18650ZY (Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2.6Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.25 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2022-03<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UR18650ZTA (Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.8V (4.35V charge), 3000mAh\r\n<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.60 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2022-03<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UR18500F<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.7V, 1620mAh<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.90 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UR14500P (Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.7V, 840mAh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.1 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2-4 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 6 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">MOQ 20,160pcs, irrevocable,\r\n<br>\r\n30% deposit<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UR14650R (Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 1050mAh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">10,080pcs<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.35 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2021-10<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Japan<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCR18650BF (Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 3.4Ah, standard<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">December<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 2025<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><b>Japan, EOL sson</b><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCR18650GA (Sanyo)<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 3.5Ah<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">End of Dec.<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 3 months<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">MOQ 1 Pallet, <br>\r\nMade in Japan<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCR18500A (Pana)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2040mAh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 8 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCR1850B (Pana)<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2350mAh<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.55 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 2025<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">China<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCR18650PF (Pana)<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2900mAh, 10A discharge<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.75 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">China<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCR18650BD (Pana.)<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Middle Rate, 3.6V, 3.2Ah<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.12 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2025-05<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><b>China, EOL soon</b><u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCR18650GA6W (Pana.)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Middle Rate, 3.6V, 3.5Ah, green tube<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.26 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2025-10<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><b>China, EOL soon</b><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCR18650GA6W (Pana.)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Middle Rate, 3.6V, 3.5Ah, green tube<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.22 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2025-09<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><b>MOQ 1 Pallet, China, EOL soon</b><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCR18650GA6W (Pana.)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Middle Rate, 3.6V, 3.5Ah, red tube<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 1 year<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><b>China, EOL soon</b><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCR18650B (Pana.)<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Standard, 3.6V, 3.4Ah<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$4.40 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2025-01<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Japan, MOQ 1 Pallet<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCR2170MB (Pana.)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 5150mAh, 12A discharge<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$4.65 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2024-01<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Japan, MOQ 1 Pallet<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCR2270AE (Pana.)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 5635mAh, 12A discharge<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2024-11<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">CR123A in bulk package<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3V 1400mAh Lithium Primary<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.28 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">CR123A in candy package<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3V 1400mAh Lithium Primary<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.35 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCA103443 (Pana.)<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2.01Ah<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">9,000pcs<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$5.3 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2021-12<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">China<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCA103450 w/o breaker (Pana.)<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2350mAh<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.70 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 6 months<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">China<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCA103450 w/t breaker (Pana.)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2350mAh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$5.75 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2024-10<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">MOQ 10K<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCA882936SA (Pana.)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 1310mAh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$5.45 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2024-01<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCA903864A (Pana.)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 3280mAh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">5,040pcs<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$6.65 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2021-09<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Japan<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCA653864SA (Pana.)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2.4Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$4.40 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 6 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Japan<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCA793540(Pana)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 1485mAh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.04 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2-4 Months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2025-01<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">China<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCA596080 (Pana.)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 4170mAh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$8.90 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Japan<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NCA596080SA (Pana.)<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 4340mAh<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UF103450P without fuse<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.7V, 2000mAh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$5.60 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2021-10<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Japan<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UF703450F (Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.7V, 1480mAh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$4.50 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2022-08<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Made in Japan<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UF653450S (Sanyo)<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.7V, 1250mAh<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Stock<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2024-02<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Japan<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UF553450ZP (Sanyo)<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.7V 1.15Ah<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.70 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">4 weeks<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2025-10<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Japan<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UF553450ZP (Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.7V 1.15Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.65 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2025-05<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Japan<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UF553443ZU (Sanyo)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.7V 1.04Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Few<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.60 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2020-06<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Japan<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">UF553443ZU (Sanyo)<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.7V 1.04Ah<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$4.95 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2025-04<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Japan<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Panasonic 50Ah<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">NMC 50Ah 27x148x92mm, 849g, 0.55mhom<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">A- grade<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Panasonic 4Ah<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.7V 4.2Ah 13-120-65mm, 35C-70C, 183g<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">A- grade<u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\">4. Murata\r\n<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:30.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" style=\"width:82.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">US18650VTC4<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2.1Ah, 30A Disch.<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">US18650VTC5<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2.5Ah, 20A/30A Disch.<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">US18650VTC5A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2.5Ah, 30A/35A Disch.<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Few<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">US18650VTC5C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2.5Ah, 30A Disch.<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.75 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2021 Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">US18650VTC5D<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2.7Ah, 35A Disch.<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$4.2<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2021-10<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">US18650VTC6<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 3.0Ah, 20A/30A Disch.<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.65 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">4-6 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 3-6 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Fresh<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">US18650VTC6<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 3.0Ah, 20A/30A Disch.<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.2 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">4-6 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 6 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">US21700VTC6A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V 4100mAh 40A discharge<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$5.2 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">4-6 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">30% deposit is needed<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">US21700VTC6A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V 4100mAh 40A discharge<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$4.45 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">4-6 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 6 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">30% deposit is needed<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\">5. Molicel\r\n<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:30.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" style=\"width:82.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR18650-P26A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2600mAh, Wide Temp, High rate<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">MOQ 20Kpcs (1 pallet)<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR18650-P28A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2.8Ah, Widetemp. Highrate<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.55 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR18650-P30B<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 3.0Ah, Widetemp. 30A Disch.<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$5.1 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">INR18650-M35A</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.6V, 3.5Ah, Widetemp. Highrate</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$3.55\r\n</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">within 6 months</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR18650-M35A<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 3.5Ah, Widetemp. Highrate<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">MOQ 16Kpcs<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.40 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR21700-P42A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 4.2Ah<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.70 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3-5 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 6 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR21700-P45B<u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V 4500mAh<u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$4.2 <u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 6 months<u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR21700-P50B<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V 5000mAh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Few<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$6.25 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">within 6 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\">6. BYD<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:30.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" style=\"width:82.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FC46120P</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.2V, 24.50Ah</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$14.5\r\n</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1-2 weeks</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">MOQ 10pcs</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\"></td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"309\" nowrap colspan=\"2\" style=\"width:232.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\">7. LithiumWerk (A123)<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:30.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" style=\"width:82.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">ANR26650M1B<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.3V 2.5Ah High Rate<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$8.5 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">4-6 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2025-01<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">ANR26650M1B<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.3V 2.5Ah High Rate<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$7 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA HK<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">4-6 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2025-04<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">MOQ 6,600pcs (1 pallet)<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"309\" nowrap colspan=\"2\" valign=\"bottom\" style=\"width:232.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\">8. SK On (Previously, SK Innovation)<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:30.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" style=\"width:82.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Pouch</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">E400</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Li-ion, 3.6V, 40Ah, 9.5x97x320mm</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$30.00\r\n</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1 week</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">within 2022</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">A- grade</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Pouch</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">E450</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Li-ion, 3.6V, 45Ah, 10x175x190mm</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$31.00\r\n</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1 week</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">within 2022</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">A- grade</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Pouch</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">E500</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Li-ion, 3.6V, 50Ah, 11.5x98x300mm</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$35.10\r\n</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1 week</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">N/A</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">A- grade, OEM by EVE</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Pouch</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">E556</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Li-ion, 3.6V, 55.60Ah, 10x100x354mm</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$30.00\r\n</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1 week</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">N/A</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">A- grade</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Pouch</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">E600B</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Li-ion, 3.6V, 60Ah, 14.5x100x300mm</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">4,555</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$35.00\r\n</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1 week</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">N/A</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">A- grade</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Pouch</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">E603</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Li-ion, 3.66V, 60.3Ah, 9.5x354x101mm</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$30.00\r\n</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1 week</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">N/A</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Uncycled, for EV</span><u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Pouch</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">E805</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Li-ion, 3.6V, 60Ah, 14.5x100x300mm</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Few</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$36.00\r\n</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1 week</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">N/A</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">disassembled, un-cycled</span><u></u><u></u></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Pouch</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">E120</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Li-ion, 3.7V, 120Ah, 14.5x98x530mm</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$38.00\r\n</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1 week</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">N/A</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#d9e1f2;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">A- grade</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"309\" nowrap colspan=\"2\" valign=\"bottom\" style=\"width:232.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\">9. Far East (FEB)<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:30.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" style=\"width:82.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-2600<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2600mAh, Max 1C/2C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$<span lang=\"EN-US\">1.12</span><span lang=\"EN-US\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2-3 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-2900<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 2900mAh, Max 1C/2C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">EOL<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">For E-bike<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-3300<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 3300mAh, Max 1C/2C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.58 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">For Medical Equipment<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-3800<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 3800mAh, Max 1C/2C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.12 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">For Lighting Equipment<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">18650-4000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 4000mAh, Max 1C/2C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.70 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">For Lighting Equipment<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-4000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 4000mAh, Max 1C/2C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.58 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">For E-bike<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-4500<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 4500mAh, Max 1C/2C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.63 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">For UPS power<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-5000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 5000mAh, Max 1C/2C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.08 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">For Smart Speaker<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-5500<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 5500mAh, Max 1C/2C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.65 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">For Smart Speaker<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-6000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 6000mAh, Max 0.7C/2C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$4.00<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">For Lighting Equipment / Sample<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\"></td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\"></td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span>10. DMEGC <u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:30.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" style=\"width:82.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>INR18650-20P<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>2.0Ah, CC 20A, Pulse 30A<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>$1.30\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>1 week<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>INR18650-25P<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>2.5Ah, CC 20A, Pulse 30A<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>$1.4\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>1 week<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>INR18650-30P<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>3.0Ah, CC 10A, Pulse 20A, with 80C cut<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>$1.90\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>1 week<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>INR18650-26E<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>2.6Ah, CC 3C, Pulse 5C<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>$1.12\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>1 week<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>INR18650-26E2<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>2.6Ah, CC 3C, Pulse 5C, 7S max<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>$1.1\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>1 week<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>INR18650-29E<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>2.9Ah, CC 2C, Pulse 4C<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>$1.4\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>1 week<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>INR18650-32E<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>3.2Ah, CC 10A, Pulse 5C<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>$1.68\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>1 week<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>INR18650-35E<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>3.5Ah, CC 10A, Pulse 5C<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>INR21700-45E<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>4.5Ah, CC 1Cm Pulse 3C<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>$1.55\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>1 week<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>INR21700-50E<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>5.0Ah, CC 3C, Pulse 4C<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>$1.95\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>1 week<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>INR21700-40P<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>4.0Ah, CC 6A, Max DC 45A<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>$2.70\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>1 week<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>New Supply<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">INR21700-40M (Orange tube)<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">4.0Ah, CC 20A, Max 45A,<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">INR21700-40M (Yellow tube)<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">4.0Ah, CC 15A, Max 18A,<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\">11. EVE<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:30.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" style=\"width:82.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR18650/26V<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.60V 2.55Ah 7.65A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.16 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Stock<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Cylindrical<span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">INR18650/33V</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.60V 3.20Ah 10A</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$1.55\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Stock</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">INR18650/35V</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.65V 3.50Ah 10.20A</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$1.75\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Stock</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">INR18650/20P</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.60V 2.00Ah 30A</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$</span>1.26<span style=\"color:black\">\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">INR18650/25P</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.60V 2.50Ah 30A</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$1.56\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Stock</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">INR21700-40P</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.60V 4.00Ah 50A</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$1.90\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1 week</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">INR21700-40PL</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.60V 4.00Ah Tabless</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Trail lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$4.40\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1 week</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">INR21700-50E</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.65V 5.00Ah 15A</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$1.9\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">INR4695E</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.69V 31.90Ah 4C</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$50.00\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">INR4695P</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.69V 29Ah</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Few</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$50.00\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">without QR code (TBI)</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\">12. BAK<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:30.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" style=\"width:82.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap rowspan=\"10\" style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Middle Rate<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N18650CH<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2.60Ah 3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.03<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N18650CP<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.35Ah 3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.79<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N18650CP-34E<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.40Ah 3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.72<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N18650CR-35E<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.50Ah 3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.81<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N21700CG-50<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">5.00Ah 3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.2<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Within 3 months<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N21700CG-50E<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">5.00Ah 3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.30<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N21700CD-53E<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">5.30Ah 3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.53<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N21700CK-55E<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">5.50Ah 3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Trial Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.21<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N21700CH-58E<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">5.80Ah 3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Trial Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.37<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N18650CH<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2.60Ah 3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.08<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap rowspan=\"3\" style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">High Rate<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N18650COP<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">2.50Ah 30A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.64<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N18650CQP<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.00Ah 15A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.92<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N21700CGP<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">4.00Ah 35A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$2.40<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" rowspan=\"2\" style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Low\r\n<br>\r\nTemperature<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N18650CP Low Temperature<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.35Ah 3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.87<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">N18650CR-35T Low Temperature<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.50Ah 3C<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.95<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Tabless<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">21700-40D<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">4.00Ah 100A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$3.30<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">INR4695-330B</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.6V, 33Ah</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Sample</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$50.00</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> </span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">INR4690-310B</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.6V, 31Ah</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Sample</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$50.00</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> </span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\">13. CBAK<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:30.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" style=\"width:82.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap rowspan=\"9\" style=\"width:71.0pt;border-top:none;border-left:solid windowtext 1.0pt;border-bottom:solid black 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">LFP<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">26650FS2A<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.2V 3.40Ah 3C for EV / ESS<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">26650FS3<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.2V 3.60Ah 3C for EV / ESS<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">26650FS3A<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.2V 3.80Ah 3C for EV / ESS<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">26650FS4<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.2V 4.00Ah 3C for EV / ESS<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">26650FS4B<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.2V 4.00Ah 3C for Light Vehicle<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">26700FB<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.2V 4.00Ah 3C for Light Vehicle<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">26700FB2<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.2V 4.50Ah 3C for Light Vehicle<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">26700FE<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.2V 4.50Ah 3C for EV / ESS<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span style=\"color:black\"> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>32140FS<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>3.2V 15Ah\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>mass quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>$5.70<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>1-2 weeks<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:30.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Sodium-ion</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">32140NS</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.0V, 10Ah</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Sample</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$10.00</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1-2 weeks</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Only Spec sheet is available<br>\r\n(No UN 38.3 &amp; MSDS)</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\">14. CALB<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:30.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" style=\"width:82.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">4695</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.7V, 30Ah, NMC</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">MOQ 10pcs</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$50.00\r\n</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1-2 weeks</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Sample, No spec sheet yet</span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap valign=\"bottom\" style=\"width:71.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\">15. Highstar<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"215\" nowrap valign=\"bottom\" style=\"width:161.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"253\" nowrap valign=\"bottom\" style=\"width:190.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"109\" nowrap valign=\"bottom\" style=\"width:82.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"87\" nowrap valign=\"bottom\" style=\"width:65.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"88\" nowrap valign=\"bottom\" style=\"width:66.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:78.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:30.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" style=\"width:82.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:30.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Sodium-ion</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">NaCR33140-10ER</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.05V, 10Ah</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">2 weeks</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Sodium-ion</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">NaCR46145-20ER</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.05V, 20Ah</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">MOQ 50pcs</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$40.00\r\n</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">2 weeks</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Sodium-ion</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">NaCP50160118-70E3</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Prismatic, 3.05V, 70Ah</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">2 weeks</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Sodium-ion</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">NaCP50160118-70H3</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Prismatic, 3.0V, 70Ah</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">2 weeks</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Sodium-ion</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">NaCP50160118-80E3</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Prismatic, 3.05V, 80Ah</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Sample</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Sodium-ion</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">NaCP40130208-80E3</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Prismatic, 3.05V, 80Ah</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Sample</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Sodium-ion</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">NaCP50160153-103E3</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Prismatic, 3.0V, 103Ah</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Sample</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">TBI</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;background:#c6e0b4;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Tabless<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>INR21700-40PS<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>3.6V, 3950mAh<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>MOQ 50pcs<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>$6.65\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>FCA Shenzhen<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>2 weeks<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>New Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:15.0pt\">\r\n<td width=\"95\" nowrap style=\"width:71.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Tabless<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"215\" nowrap style=\"width:161.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR21700-50PS<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"253\" nowrap style=\"width:190.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.6V, 4900mAh, Low Impedance<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"109\" nowrap style=\"width:82.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">130pcs<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"87\" nowrap style=\"width:65.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$4.50 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"103\" style=\"width:77.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"88\" nowrap style=\"width:66.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:78.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span><u></u> <u></u></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><b><span style=\"color:black\"><u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"15\" nowrap valign=\"bottom\" style=\"width:11.2pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"41\" nowrap valign=\"bottom\" style=\"width:30.8pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"33\" nowrap valign=\"bottom\" style=\"width:25.05pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"33\" nowrap valign=\"bottom\" style=\"width:25.05pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"34\" nowrap valign=\"bottom\" style=\"width:25.35pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"34\" nowrap valign=\"bottom\" style=\"width:25.35pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n<td width=\"59\" nowrap valign=\"bottom\" style=\"width:44.3pt;padding:0cm 5.4pt 0cm 5.4pt;height:15.0pt\">\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><span lang=\"en-IL\" style=\"font-family:SimSun\"><u></u> <u></u></span></p>\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"1276\" style=\"width:956.85pt;border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\"><b><span>16. Lishen<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"219\" nowrap valign=\"bottom\" style=\"width:164.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"246\" nowrap valign=\"bottom\" style=\"width:184.25pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"113\" nowrap valign=\"bottom\" style=\"width:3.0cm;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"85\" nowrap valign=\"bottom\" style=\"width:63.8pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:77.95pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"85\" nowrap valign=\"bottom\" style=\"width:63.8pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:77.95pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.05pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" style=\"width:3.0cm;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.05pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">18650LA</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">2Ah, 10C</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$</span>1.15<span style=\"color:black\">\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1-2 weeks</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">18650LD</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">2.5Ah, 10C</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$1.50\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1-2 weeks</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">18650LE</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3Ah, 10C</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$</span>2.15<span style=\"color:black\">\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1-2 weeks</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">18650SK</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">2.6Ah, 3C</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$</span>1.1<span style=\"color:black\">\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1-2 weeks</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">18650SS</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3Ah, 3C</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$1.48\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1-2 weeks</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">18650HB</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.35Ah, 3C</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$1.63\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1-2 weeks</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">18650HC</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">3.5Ah, 3C</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$1.92\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1-2 weeks</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">21700LA</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">4Ah, 10C</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$1.93\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1-2 weeks</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">21700SA</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">4Ah, 3C</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$1.80\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1-2 weeks</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">21700SD</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">5Ah, 3C</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$</span>2.19<span style=\"color:black\">\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1-2 weeks</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">Cylindrical</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">21700SZ</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">5Ah, 3C</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">mass quantity</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">$</span>2.2<span style=\"color:black\">\r\n</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">FCA Shenzhen</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">1-2 weeks</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\">New Lot</span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:black\"> </span><span style=\"color:black\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><span lang=\"en-IL\" style=\"font-family:SimSun\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"en-IL\" style=\"font-family:SimSun\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"en-IL\" style=\"font-family:SimSun\"><u></u> <u></u></span></p>\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"1276\" style=\"width:956.85pt;border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\"><b><span>17. Sunpower<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"219\" nowrap valign=\"bottom\" style=\"width:164.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"246\" nowrap valign=\"bottom\" style=\"width:184.25pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"113\" nowrap valign=\"bottom\" style=\"width:3.0cm;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"85\" nowrap valign=\"bottom\" style=\"width:63.8pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:77.95pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"85\" nowrap valign=\"bottom\" style=\"width:63.8pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:77.95pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.05pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" style=\"width:3.0cm;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.05pt;border:solid windowtext 1.0pt;border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR18650-1300<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">13P (15C) 20A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR18650-1500<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">15H (13C) 20A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR18650-2000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">20P (10C) 20A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR18650-2000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">20T (15C) 30A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR18650-2200<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">22R (9C) 20A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR18650-2500<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">25R (10C) 25A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR18650-2500<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">25T (12C) 30A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR18650-2500<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">25L (8C) 20A Low Temperature type<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR18650-2600<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">26P (5C) 13A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$1.34<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR18650-3000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">30P (10C) 30A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR18650-3000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">30S (13C) 40A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span> <u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR21700-3000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">30L (3C) 10A Low Teperature type<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span><u></u> <u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR21700-4000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">40S (10C) 40A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span><u></u> <u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR21700-4000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">40L (10C) 40A Low Temperature type<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span><u></u> <u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR21700-5000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">50E (3C) 15A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span><u></u> <u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">INR21700-5000<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">50SE (6C) 30A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span><u></u> <u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">LFP26700-4300<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">43E (3C) 12.9A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span><u></u> <u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cylindrical<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">LFP26700-4500<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">45E (3C) 13.5A<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">New Lot<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span><u></u> <u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\"><span><u></u> <u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap valign=\"bottom\" style=\"width:164.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"246\" nowrap valign=\"bottom\" style=\"width:184.25pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"113\" nowrap valign=\"bottom\" style=\"width:3.0cm;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"85\" nowrap valign=\"bottom\" style=\"width:63.8pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:77.95pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"85\" nowrap valign=\"bottom\" style=\"width:63.8pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:77.95pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.05pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"219\" nowrap valign=\"bottom\" style=\"width:164.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"246\" nowrap valign=\"bottom\" style=\"width:184.25pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"113\" nowrap valign=\"bottom\" style=\"width:3.0cm;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"85\" nowrap valign=\"bottom\" style=\"width:63.8pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:77.95pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"85\" nowrap valign=\"bottom\" style=\"width:63.8pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:77.95pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.05pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap valign=\"bottom\" style=\"width:77.0pt;border:none;border-bottom:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\"><b><span>18. Maxell<u></u><u></u></span></b></p>\r\n</td>\r\n<td width=\"219\" nowrap valign=\"bottom\" style=\"width:164.0pt;border:none;border-bottom:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"246\" nowrap valign=\"bottom\" style=\"width:184.25pt;border:none;border-bottom:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"113\" nowrap valign=\"bottom\" style=\"width:3.0cm;border:none;border-bottom:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"85\" nowrap valign=\"bottom\" style=\"width:63.8pt;border:none;border-bottom:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:77.95pt;border:none;border-bottom:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"85\" nowrap valign=\"bottom\" style=\"width:63.8pt;border:none;border-bottom:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"104\" nowrap valign=\"bottom\" style=\"width:77.95pt;border:none;border-bottom:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n<td width=\"217\" nowrap valign=\"bottom\" style=\"width:163.05pt;border:none;border-bottom:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Type<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Model<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Specification<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Available Quantity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Unit Price<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Price Term<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Validity<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Cell Lot<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span>Remark\r\n<u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">ICP653865SRU<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">3.7V, 1800mAh<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">48,760<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">TBI<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1-2 weeks<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">B0711<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">Prismatic<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">ICP653450AHR<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1360mAh 3.85V (4.35V charge)<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">mass quantity<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">$4 <span>\r\n<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">FCA Shenzhen<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">1 week<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">I2101<span><u></u><u></u></span></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"> <span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:14.25pt\">\r\n<td width=\"103\" nowrap style=\"width:77.0pt;border:solid windowtext 1.0pt;border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:red\">Prismatic</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"219\" nowrap style=\"width:164.0pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:red\">ICP103450AHR</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"246\" nowrap style=\"width:184.25pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:red\">2160mAh 3.8V (4.35V charge)</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"113\" nowrap style=\"width:3.0cm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:red\">49,400</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:red\">TBI</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:red\">FCA HK</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"85\" nowrap style=\"width:63.8pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:red\">1 week</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"104\" nowrap style=\"width:77.95pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:red\">within 2020</span><u></u><u></u></p>\r\n</td>\r\n<td width=\"217\" nowrap style=\"width:163.05pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align:center\"><span style=\"color:red\"> </span><span><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><span lang=\"en-IL\" style=\"font-family:SimSun\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"en-IL\" style=\"font-family:SimSun\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\" style=\"font-family:SimSun\">Warm regards</span><span lang=\"EN-US\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif\">Shmuel De-Leon/CEO</span><span lang=\"EN-US\" style=\"font-family:&quot;Arial&quot;,sans-serif\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif\">Shmuel De-Leon Energy, Ltd.</span><span lang=\"EN-US\" style=\"font-family:&quot;Arial&quot;,sans-serif\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif\">Mazal Arie 10, Hod-Hasharon, Israel 4536045</span><span lang=\"EN-US\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif\">Tel/Fax: 972-77-5010792</span><span lang=\"EN-US\" style=\"font-family:&quot;Arial&quot;,sans-serif\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif\">Mobile: 972-52-8601517</span><span lang=\"EN-US\" style=\"font-family:&quot;Arial&quot;,sans-serif\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"DE\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif\">E-Mail:\r\n</span><span lang=\"en-IL\"><a href=\"mailto:shmueld33@gmail.com\" target=\"_blank\"><span lang=\"DE\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif;color:blue\">shmuel@sdle.co.il</span></a></span><span lang=\"DE\" style=\"font-family:&quot;Arial&quot;,sans-serif\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif\">Company web site:\r\n</span><span lang=\"en-IL\"><a href=\"http://www.sdle.co.il/\" target=\"_blank\"><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif;color:blue\">www.sdle.co.il</span></a></span><span lang=\"EN-US\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif\">Battery DataBase web site:\r\n</span><span lang=\"en-IL\"><a href=\"http://www.batteriesdatabase.com/\" target=\"_blank\"><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif;color:blue\">www.batteriesdatabase.com</span></a></span><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif;color:#1f497d\"><img border=\"0\" width=\"86\" height=\"43\" style=\"width:.8958in;height:.4479in\" id=\"m_5665758451303559904תמונה_x0020_1\" src=\"cid:image001.jpg@01D756D4.5D0E4230\"></span><span lang=\"EN-US\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif\">Sign-up to our weekly battery newsletter\r\n</span><span lang=\"en-IL\"><a href=\"https://www.sdle.co.il/services/newsletter/\" target=\"_blank\"><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif;color:blue\">https://www.sdle.co.il/services/newsletter/</span></a></span><span lang=\"en-IL\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif\">\r\n</span><span lang=\"EN-US\" style=\"font-size:12.0pt;font-family:&quot;Times New Roman&quot;,serif\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"EN-US\"><u></u> <u></u></span></p>\r\n</div>\r\n</div>\r\n\r\n</div></div>','Updated pricing this morning for cells.\r\n\r\n\r\n<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\n---------- Forwarded message ---------\r\nFrom: shmuel de-leon <shmuel@sdle.co.il>\r\nDate: Mon, Nov 24, 2025 at 10:00 AM\r\nSubject: Shmuel De-Leon Energy - Li-Ion Cells (Cylindrical, Pouch,\r\nPrismatic) for sale for this week - November 24, 2025\r\nTo:\r\n\r\n\r\n\r\n\r\n\r\n\r\n*---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*\r\n\r\n\r\n\r\n*Attached list of cells we have availible for this week – Contact us for\r\nthese cells or for other cell models you need and we will check\r\navailability – Contact us in case you wish to sell cell stock you have*\r\n\r\n*----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*\r\n\r\n\r\n\r\n   - *Attached an update on discontiniue Panasonic cells  -Contact us to\r\n   purchase these cells before it will be to late!!!*\r\n\r\n\r\n\r\n*New High Energy Density Cells we sell:*\r\n\r\n\r\n\r\n*21700 cell* – production capacity is 2000 cells per day (Vendor start\r\nbuilding 500MWh/Year Factory – Production start Q1/26) - cost ~$20-28/pcs\r\nex work China depend on the quantity\r\nEnergy Density: 393 Wh/kg, Capacity: 6Ah at C/5, at room temperature to 3V\r\nC.O.V, Weight: 58 Grams, Size: 21.8, 71.8, Nominal voltage: 3.8V,\r\nMax constant charge current is 1C to 4.35V, Cycle life: 120 cycles, Max\r\nconstant discharge current is 5C, Discharge temp -10 to 65 Deg C,\r\nCharge temp 0 to 35 Deg C\r\n\r\n*Pouch Cells Vendor 1*\r\nWe also sell quasi solid lithium metal anode free pouch cells with energy\r\ndensities of up to 520 Wh/kg, 1200 Wh/l, 8-50Ah capacity, 7C max constant\r\ndischarge, 10-50 Cycles - Cells are made in 200MWh/Year factory .\r\n\r\n*Pouch Cells Vendor 2*\r\nWe also sell quasi solid lithium metal pouch cells with energy densities of\r\nup to 450 Wh/kg, 6-50Ah capacity, 8C max constant discharge, 1200 Cycles -\r\nCells are made in 600MWh/Year factory.\r\n\r\n*Pouch Cells Vendor 3*\r\nWe also sell Semi solid lithium metal anode free pouch cells with energy\r\ndensities of up to 400-600 Wh/kg, 8-50Ah capacity, 5C max constant\r\ndischarge, 400Wh/Kg with 800 cycles, 500-600 Wh/kg with 10-15 Cycles -\r\nCells are made in 10MWh/Year prototype production line.\r\n\r\n\r\n\r\n*We sell battery packs assemble with lithium metal cells with 400-460\r\nWh/kg.*\r\n\r\n*---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*\r\n\r\n\r\n\r\n*Our Customers/Suppliers new cells with and older date code stocks we have\r\nfor sale:*\r\n\r\n\r\n\r\n*We have in Germany Panasonic NCR18650-B in special pricing – Contact us\r\nfor more details*\r\n\r\n\r\n\r\n*Panasonic NCR-18650B*\r\nPrice for an order of minimum 50.040 pcs. = 3,46 € (transport costs will be\r\nadded)\r\nPrice is only valid for an order of minimum 50.040 pcs.\r\nProduction date code of the cells: 34.700 pcs. with November 2024, 15.340\r\npcs. with March 2025\r\nDelivery time: available on stock - subject to being unsold!\r\n\r\n* Molicel INR21700-P42A*\r\nPrice for an order of minimum 20.000 pcs.: 3.5 € (transport costs will be\r\nadded)\r\nMaximum available quantity: 48.000 pcs.\r\nProduction date code of the cells: March 2025\r\n\r\n*Molicel INR21700-P45B*\r\nPrice for an order of minimum 20.000 pcs.: 3.5 € (transport costs will be\r\nadded)\r\nMaximum available quantity: 41.000 pcs.\r\nProduction date code of the cells: December 2024 and January 2025\r\n\r\n\r\n\r\n*Molicel INR18650-P28A*\r\nPrice for an order of minimum 7.000 pcs.: 1.8 € (transport costs will be\r\nadded)\r\nProduction date code of the cells: 2022 – Location: USA\r\n\r\n\r\n\r\n*We have in Germany:*\r\n\r\nMurata US18650VTC6, 25K, cost 3Euro/pcs, Date cost March 2024\r\n\r\n\r\n\r\n*We have in Germany:*\r\n\r\nPanasonic 150K NCR18650GA6W (Factory Wuxi China) Date Code 2022 €2.6/pcs.\r\n\r\n\r\n\r\n----------------------------------------------------------------------------------------------------------------------------------------------------------------------------\r\n\r\n*New cells we have for sale:*\r\n\r\n\r\n\r\n*We start selling Moli Energy 21700 6.5Ah cells.*\r\n\r\n\r\n\r\n*Supplier 1:*\r\n\r\n*Moli cells*\r\n\r\nP26A – Any Quantity 10K and up – fresh cells – An attractive cost.\r\n\r\nP28A – Any Quantity 10K and up – fresh cells - An attractive cost.\r\n\r\nP42A – Any Quantity 10K and up – fresh cells - An attractive cost.\r\n\r\nM35A – Any Quantity 10K and up – fresh cells - An attractive cost.\r\n\r\n\r\n\r\n   1. *Samsung SDI*\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nLeadtime\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nCylindrical\r\n\r\n18650-20RM\r\n\r\nHigh Rate, 3.6V, 2.0Ah\r\n\r\nmass quantity\r\n\r\n$1.65\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\n2024-12\r\n\r\nMade in Malaysia\r\n\r\nCylindrical\r\n\r\n18650-20RM\r\n\r\nHigh Rate, 3.6V, 2.0Ah\r\n\r\nmass quantity\r\n\r\n$1.7\r\n\r\nFCA HK\r\n\r\n1 week\r\n\r\n2024-12\r\n\r\nMade in Malaysia, MOQ 20K pcs\r\n\r\nCylindrical\r\n\r\n18650-25R\r\n\r\nHigh Rate, 3.6V, 2.5Ah\r\n\r\nmass quantity\r\n\r\n$1.69\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\n2024-08\r\n\r\n\r\n\r\nCylindrical\r\n\r\n18650-26JM\r\n\r\nHigh Energy, 3.6V, 2.6Ah\r\n\r\nTBI\r\n\r\n$2.30\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\n2021-08\r\n\r\nMade in Malaysia\r\n\r\nCylindrical\r\n\r\n18650-30Q\r\n\r\nHigh rate, 3.6V, 3.0Ah\r\n\r\nmass quantity\r\n\r\n$2.25\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\n2025-07\r\n\r\n\r\n\r\nCylindrical\r\n\r\n18650-30Q\r\n\r\nHigh rate, 3.6V, 3.0Ah\r\n\r\nmass quantity\r\n\r\n$2.15\r\n\r\nFCA HK\r\n\r\n1 week\r\n\r\n2024-10\r\n\r\nMOQ 1 Pallet\r\n\r\nCylindrical\r\n\r\n18650-35E\r\n\r\nMiddle rate, 3.6V, 3.5Ah\r\n\r\nmass quantity\r\n\r\n$1.78\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nwithin 3 months\r\n\r\n\r\n\r\nCylindrical\r\n\r\n18650-35E\r\n\r\nMiddle rate, 3.6V, 3.5Ah\r\n\r\nTBI\r\n\r\n$1.45\r\n\r\nFCA HK\r\n\r\n1 week\r\n\r\n2024-01\r\n\r\n\r\n\r\nCylindrical\r\n\r\n21700-30T\r\n\r\nHigh Rate, 3.6V, 3.0Ah\r\n\r\nTBI\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n4 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\n21700-40T5\r\n\r\nHigh Rate, 3.6V, 4.0Ah\r\n\r\nmass quantity\r\n\r\n$2.05\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nwithin 6 months\r\n\r\n\r\n\r\nCylindrical\r\n\r\n21700-40T\r\n\r\nHigh Rate, 3.6V, 4.0Ah\r\n\r\nmass quantity\r\n\r\n$1.90\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\n2024-02\r\n\r\n\r\n\r\nCylindrical\r\n\r\n21700-48X3\r\n\r\n3.6V, 4.8Ah, 3000cycles,bare\r\n\r\nmass quantity\r\n\r\n$1.65\r\n\r\nFCA Shenzhen\r\n\r\n4 weeks\r\n\r\n2023-12\r\n\r\nBare cells\r\n\r\nCylindrical\r\n\r\n21700-48X2\r\n\r\n3.6V, 4.8Ah, 3000cycles\r\n\r\nTBI\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n4 weeks\r\n\r\n2022-01\r\n\r\n\r\n\r\nCylindrical\r\n\r\n21700-50E2\r\n\r\n3.6V, 5.0Ah, 2C(C), 3C(P)\r\n\r\nmass quantity\r\n\r\n$2.70\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\n2024-01\r\n\r\nMade in China\r\n\r\nCylindrical\r\n\r\n21700-50E2\r\n\r\n3.6V, 5.0Ah, 2C(C), 3C(P)\r\n\r\nmass quantity\r\n\r\n$2.95\r\n\r\nFCA Shenzhen\r\n\r\nAvailable in Oct.\r\n\r\nwithin 2025-07\r\n\r\nMade in China\r\n\r\nCylindrical\r\n\r\n21700-50GB\r\n\r\n3.6V, 5.0Ah, 1C(C), 2C(P)\r\n\r\nmass quantity\r\n\r\n$2.15\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\n2025-03\r\n\r\nMade in Malaysia, MOQ 1 Pallet\r\n\r\nCylindrical\r\n\r\n21700-50S\r\n\r\n3.6V, 5.0Ah 5C(C), 9C(P)\r\n\r\nmass quantity\r\n\r\n$2.45\r\n\r\nFCA HK\r\n\r\n1 week\r\n\r\nwithin 2025\r\n\r\nMade in China\r\n\r\nCylindrical\r\n\r\n21700-50S\r\n\r\n3.6V, 5.0Ah 5C(C), 9C(P)\r\n\r\nmass quantity\r\n\r\n$2.68\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nwithin 2025\r\n\r\nMade in China\r\n\r\nCylindrical\r\n\r\n21700-53G2\r\n\r\n3.6V, 5.3Ah, 1C(C)\r\n\r\nmass quantity\r\n\r\n$2.40\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\n2025-03\r\n\r\nwith tube\r\n\r\nCylindrical\r\n\r\n21700-58E\r\n\r\n3.64V, 5330mAh, 3C max\r\n\r\nmass quantity\r\n\r\n$4\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\n2024-07\r\n\r\n\r\n\r\n*2. LG Energy Solution*\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nCylindrical\r\n\r\n18650-F1L\r\n\r\nHigh Energy, 3.6V, 3.35Ah\r\n\r\nmass quantity\r\n\r\n$3.25\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\n2024-09\r\n\r\n\r\n\r\nCylindrical\r\n\r\n18650-MF1\r\n\r\nMiddle rate, 3.6V, 2.15Ah\r\n\r\nTBI\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\n2021-02\r\n\r\nLot A045\r\n\r\nCylindrical\r\n\r\n18650-M26(S)\r\n\r\nMiddle rate, 3.6V, 2.6Ah\r\n\r\n19,000pcs\r\n\r\n$1.83\r\n\r\nFCA HK\r\n\r\nTBI\r\n\r\n2020-10\r\n\r\n\r\n\r\nCylindrical\r\n\r\n18650-M29\r\n\r\nMiddle rate, 3.6V, 2.85Ah\r\n\r\nmass quantity\r\n\r\n$2.2\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nFresh\r\n\r\n\r\n\r\nCylindrical\r\n\r\n18650HJ2\r\n\r\nHigh Rate, 3.6V, 3.0Ah\r\n\r\nmass quantity\r\n\r\n$2.05\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\n2024-05\r\n\r\n\r\n\r\nCylindrical\r\n\r\n18650HJ2\r\n\r\nHigh Rate, 3.6V, 3.0Ah\r\n\r\nmass quantity\r\n\r\n$2.21\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nWithin 6 months\r\n\r\n\r\n\r\nCylindrical\r\n\r\n18650-MH1\r\n\r\nMiddle rate, 3.6V, 3.2Ah\r\n\r\nmass quantity\r\n\r\n$1.56\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nWithin 6 months\r\n\r\n\r\n\r\nCylindrical\r\n\r\n18650-MH1\r\n\r\nMiddle rate, 3.6V, 3.2Ah\r\n\r\nmass quantity\r\n\r\n$1.54\r\n\r\nFCA HK\r\n\r\nTBI\r\n\r\nWithin 6 months\r\n\r\nMOQ 1 Pallet\r\n\r\nCylindrical\r\n\r\n18650-MJ1\r\n\r\nMiddle rate, 3.6V, 3.5Ah\r\n\r\nmass quantity\r\n\r\n$1.55\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nWithin 6 months\r\n\r\nMade in China\r\n\r\nCylindrical\r\n\r\n18650-MJ1\r\n\r\nMiddle rate, 3.6V, 3.5Ah\r\n\r\nmass quantity\r\n\r\n$1.53\r\n\r\nFCA HK\r\n\r\n1 week\r\n\r\nWithin 6 months\r\n\r\nMOQ 1 Pallet\r\n\r\nCylindrical\r\n\r\n21700-M48\r\n\r\nMiddle rate, 3.68V, 17.4Wh\r\n\r\nmass quantity\r\n\r\n$2.03\r\n\r\nFCA Shenzhen\r\n\r\nStock\r\n\r\n2023-05\r\n\r\nLOT C118D283\r\n\r\nCylindrical\r\n\r\n21700-M48A\r\n\r\n3C\r\n\r\nmass quantity\r\n\r\n$1.6\r\n\r\nFCA Shenzhen\r\n\r\nStock\r\n\r\nTBI\r\n\r\n\r\n\r\nCylindrical\r\n\r\n21700-M50LT\r\n\r\nMiddle rate, 3.6V, 5.0Ah\r\n\r\nmass quantity\r\n\r\n$1.92\r\n\r\nFCA HK\r\n\r\n1 week\r\n\r\n2025-08\r\n\r\n\r\n\r\nCylindrical\r\n\r\n21700-M52V\r\n\r\n3.6V, 5.2Ah\r\n\r\nmass quantity\r\n\r\n$2.16\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nwithin 2025\r\n\r\nMade in Korea, Bare cell\r\n\r\n*Cylindrical*\r\n\r\n*21700-M58T*\r\n\r\n*3.6V, 5.8Ah*\r\n\r\n*5,330pcs*\r\n\r\n*$2.15 *\r\n\r\n*FCA HK*\r\n\r\n*3 days*\r\n\r\n*2023-11*\r\n\r\n\r\n*Made in Korea, Special Promotion to take all*\r\n\r\nCylindrical\r\n\r\n21700-M58T\r\n\r\n3.6V, 5.8Ah\r\n\r\nmass quantity\r\n\r\n$6.15\r\n\r\nFCA Shenzhen\r\n\r\n3 days\r\n\r\n2024-06\r\n\r\nMade in Korea\r\n\r\nCylindrical\r\n\r\n21700-M58T\r\n\r\n3.6V, 5.8Ah\r\n\r\nmass quantity\r\n\r\n$2.7\r\n\r\nFCA Shenzhen\r\n\r\n3 days\r\n\r\nWithin 6 months\r\n\r\nMade in China\r\n\r\nPouch Polymer\r\n\r\nE66\r\n\r\nLi-ion, 3.65V 66Ah 11.3 x 98 x 357mm\r\n\r\nmass quantity\r\n\r\n$35.00\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nN/A\r\n\r\nA- grade\r\n\r\nPouch Polymer\r\n\r\nE78\r\n\r\nLi-ion, 3.65V 78Ah 8 x 98 x 510mm\r\n\r\nmass quantity\r\n\r\n$38.00\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nN/A\r\n\r\nA- grade\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n*3. Panasonic (Sanyo)*\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nCylindrical\r\n\r\nUR18650RX (Sanyo)\r\n\r\n1950mAh, 3.6V\r\n\r\nMOQ 1 Pallet\r\n\r\n$3.75\r\n\r\nFCA HK\r\n\r\nwithin 3-6 months\r\n\r\nFresh\r\n\r\nJapan\r\n\r\nCylindrical\r\n\r\nUR18650AA (Sanyo)\r\n\r\n2250mAh, 3.6V, 8A discharge\r\n\r\nmass quantity\r\n\r\n$1.80\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nwithin 6 months\r\n\r\n\r\n\r\nCylindrical\r\n\r\nUR18650A(Y) (Sanyo)\r\n\r\n2200mAh, 3.6V, 2C discharge\r\n\r\nmass quantity\r\n\r\n$2.35\r\n\r\nFCA Shenzhen\r\n\r\n5 days\r\n\r\n2024-08\r\n\r\nChina\r\n\r\nCylindrical\r\n\r\nUR18650NSX (Sanyo)\r\n\r\n2500mAh, 3.6V\r\n\r\nTBI\r\n\r\n$4.35\r\n\r\nFCA HK\r\n\r\nTBI\r\n\r\n2023-03\r\n\r\nMOQ 1 Pallet\r\n\r\nCylindrical\r\n\r\nUR18650FM (Sanyo)\r\n\r\n3.7V 2.5Ah\r\n\r\nmass quantity\r\n\r\n$4.70\r\n\r\nFCA HK\r\n\r\nApril, 2026\r\n\r\nwithin 2026\r\n\r\nJapan, Irrevocable\r\n\r\nCylindrical\r\n\r\nUR18650ZM2 (Sanyo)\r\n\r\n3.6V, 2.55Ah\r\n\r\nmass quantity\r\n\r\n$1.75\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\n2025-08\r\n\r\nChina\r\n\r\nCylindrical\r\n\r\nUR18650ZM2 (Sanyo)\r\n\r\n3.6V, 2.55Ah\r\n\r\nmass quantity\r\n\r\n$1.77\r\n\r\nFCA HK\r\n\r\nTBI\r\n\r\n2025-08\r\n\r\nChina\r\n\r\nCylindrical\r\n\r\nUR18650ZY (Sanyo)\r\n\r\n3.6V, 2.6Ah\r\n\r\nmass quantity\r\n\r\n$3.25\r\n\r\nFCA HK\r\n\r\n1 week\r\n\r\n2022-03\r\n\r\nChina\r\n\r\nCylindrical\r\n\r\nUR18650ZTA (Sanyo)\r\n\r\n3.8V (4.35V charge), 3000mAh\r\n\r\nmass\r\n\r\n$3.60\r\n\r\nFCA Shenzhen\r\n\r\nStock\r\n\r\n2022-03\r\n\r\nChina\r\n\r\nCylindrical\r\n\r\nUR18500F\r\n\r\n3.7V, 1620mAh\r\n\r\nTBI\r\n\r\n$3.90\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n\r\n\r\nCylindrical\r\n\r\nUR14500P (Sanyo)\r\n\r\n3.7V, 840mAh\r\n\r\nmass quantity\r\n\r\n$3.1\r\n\r\nFCA HK\r\n\r\n2-4 months\r\n\r\nwithin 6 months\r\n\r\nMOQ 20,160pcs, irrevocable,\r\n30% deposit\r\n\r\nCylindrical\r\n\r\nUR14650R (Sanyo)\r\n\r\n3.6V, 1050mAh\r\n\r\n10,080pcs\r\n\r\n$2.35\r\n\r\nFCA Shenzhen\r\n\r\nStock\r\n\r\n2021-10\r\n\r\nJapan\r\n\r\nCylindrical\r\n\r\nNCR18650BF (Sanyo)\r\n\r\n3.6V, 3.4Ah, standard\r\n\r\nTBI\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nDecember\r\n\r\nwithin 2025\r\n\r\n*Japan, EOL sson*\r\n\r\nCylindrical\r\n\r\nNCR18650GA (Sanyo)\r\n\r\n3.6V, 3.5Ah\r\n\r\nTBI\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nEnd of Dec.\r\n\r\nwithin 3 months\r\n\r\nMOQ 1 Pallet,\r\nMade in Japan\r\n\r\nCylindrical\r\n\r\nNCR18500A (Pana)\r\n\r\n3.6V, 2040mAh\r\n\r\nTBI\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nwithin 8 months\r\n\r\nChina\r\n\r\nCylindrical\r\n\r\nNCR1850B (Pana)\r\n\r\n3.6V, 2350mAh\r\n\r\nmass quantity\r\n\r\n$3.55\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nwithin 2025\r\n\r\nChina\r\n\r\nCylindrical\r\n\r\nNCR18650PF (Pana)\r\n\r\n3.6V, 2900mAh, 10A discharge\r\n\r\nTBI\r\n\r\n$2.75\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\nChina\r\n\r\nCylindrical\r\n\r\nNCR18650BD (Pana.)\r\n\r\nMiddle Rate, 3.6V, 3.2Ah\r\n\r\nmass quantity\r\n\r\n$2.12\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\n2025-05\r\n\r\n*China, EOL soon*\r\n\r\nCylindrical\r\n\r\nNCR18650GA6W (Pana.)\r\n\r\nMiddle Rate, 3.6V, 3.5Ah, green tube\r\n\r\nmass quantity\r\n\r\n$2.26\r\n\r\nFCA Shenzhen\r\n\r\nStock\r\n\r\n2025-10\r\n\r\n*China, EOL soon*\r\n\r\nCylindrical\r\n\r\nNCR18650GA6W (Pana.)\r\n\r\nMiddle Rate, 3.6V, 3.5Ah, green tube\r\n\r\nmass quantity\r\n\r\n$2.22\r\n\r\nFCA HK\r\n\r\nStock\r\n\r\n2025-09\r\n\r\n*MOQ 1 Pallet, China, EOL soon*\r\n\r\nCylindrical\r\n\r\nNCR18650GA6W (Pana.)\r\n\r\nMiddle Rate, 3.6V, 3.5Ah, red tube\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nStock\r\n\r\nwithin 1 year\r\n\r\n*China, EOL soon*\r\n\r\nCylindrical\r\n\r\nNCR18650B (Pana.)\r\n\r\nStandard, 3.6V, 3.4Ah\r\n\r\nmass quantity\r\n\r\n$4.40\r\n\r\nFCA HK\r\n\r\nTBI\r\n\r\n2025-01\r\n\r\nJapan, MOQ 1 Pallet\r\n\r\nCylindrical\r\n\r\nNCR2170MB (Pana.)\r\n\r\n3.6V, 5150mAh, 12A discharge\r\n\r\nmass quantity\r\n\r\n$4.65\r\n\r\nFCA HK\r\n\r\n1-2 weeks\r\n\r\n2024-01\r\n\r\nJapan, MOQ 1 Pallet\r\n\r\nCylindrical\r\n\r\nNCR2270AE (Pana.)\r\n\r\n3.6V, 5635mAh, 12A discharge\r\n\r\nTBI\r\n\r\nTBI\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n2024-11\r\n\r\nChina\r\n\r\nCylindrical\r\n\r\nCR123A in bulk package\r\n\r\n3V 1400mAh Lithium Primary\r\n\r\nmass quantity\r\n\r\n$1.28\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n\r\n\r\nCylindrical\r\n\r\nCR123A in candy package\r\n\r\n3V 1400mAh Lithium Primary\r\n\r\nmass quantity\r\n\r\n$1.35\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n\r\n\r\nPrismatic\r\n\r\nNCA103443 (Pana.)\r\n\r\n3.6V, 2.01Ah\r\n\r\n9,000pcs\r\n\r\n$5.3\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\n2021-12\r\n\r\nChina\r\n\r\nPrismatic\r\n\r\nNCA103450 w/o breaker (Pana.)\r\n\r\n3.6V, 2350mAh\r\n\r\nmass quantity\r\n\r\n$3.70\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nwithin 6 months\r\n\r\nChina\r\n\r\nPrismatic\r\n\r\nNCA103450 w/t breaker (Pana.)\r\n\r\n3.6V, 2350mAh\r\n\r\nmass quantity\r\n\r\n$5.75\r\n\r\nFCA HK\r\n\r\n1 week\r\n\r\n2024-10\r\n\r\nMOQ 10K\r\n\r\nPrismatic\r\n\r\nNCA882936SA (Pana.)\r\n\r\n3.6V, 1310mAh\r\n\r\nmass quantity\r\n\r\n$5.45\r\n\r\nFCA HK\r\n\r\n1 week\r\n\r\n2024-01\r\n\r\nChina\r\n\r\nPrismatic\r\n\r\nNCA903864A (Pana.)\r\n\r\n3.6V, 3280mAh\r\n\r\n5,040pcs\r\n\r\n$6.65\r\n\r\nFCA HK\r\n\r\n1-2 weeks\r\n\r\n2021-09\r\n\r\nJapan\r\n\r\nPrismatic\r\n\r\nNCA653864SA (Pana.)\r\n\r\n3.6V, 2.4Ah\r\n\r\nmass quantity\r\n\r\n$4.40\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nwithin 6 months\r\n\r\nJapan\r\n\r\nPrismatic\r\n\r\nNCA793540(Pana)\r\n\r\n3.6V, 1485mAh\r\n\r\nmass quantity\r\n\r\n$3.04\r\n\r\nFCA Shenzhen\r\n\r\n2-4 Months\r\n\r\n2025-01\r\n\r\nChina\r\n\r\nPrismatic\r\n\r\nNCA596080 (Pana.)\r\n\r\n3.6V, 4170mAh\r\n\r\nTBI\r\n\r\n$8.90\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nTBI\r\n\r\nJapan\r\n\r\nPrismatic\r\n\r\nNCA596080SA (Pana.)\r\n\r\n3.6V, 4340mAh\r\n\r\nTBI\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n\r\n\r\nPrismatic\r\n\r\nUF103450P without fuse\r\n\r\n3.7V, 2000mAh\r\n\r\nTBI\r\n\r\n$5.60\r\n\r\nFCA Shenzhen\r\n\r\nStock\r\n\r\n2021-10\r\n\r\nJapan\r\n\r\nPrismatic\r\n\r\nUF703450F (Sanyo)\r\n\r\n3.7V, 1480mAh\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n$4.50\r\n\r\n\r\n\r\n2022-08\r\n\r\nMade in Japan\r\n\r\nPrismatic\r\n\r\nUF653450S (Sanyo)\r\n\r\n3.7V, 1250mAh\r\n\r\nTBI\r\n\r\nTBI\r\n\r\nFCA HK\r\n\r\nStock\r\n\r\n2024-02\r\n\r\nJapan\r\n\r\nPrismatic\r\n\r\nUF553450ZP (Sanyo)\r\n\r\n3.7V 1.15Ah\r\n\r\nmass quantity\r\n\r\n$3.70\r\n\r\nFCA Shenzhen\r\n\r\n4 weeks\r\n\r\n2025-10\r\n\r\nJapan\r\n\r\nPrismatic\r\n\r\nUF553450ZP (Sanyo)\r\n\r\n3.7V 1.15Ah\r\n\r\nmass quantity\r\n\r\n$2.65\r\n\r\nFCA HK\r\n\r\n1 week\r\n\r\n2025-05\r\n\r\nJapan\r\n\r\nPrismatic\r\n\r\nUF553443ZU (Sanyo)\r\n\r\n3.7V 1.04Ah\r\n\r\nFew\r\n\r\n$3.60\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\n2020-06\r\n\r\nJapan\r\n\r\nPrismatic\r\n\r\nUF553443ZU (Sanyo)\r\n\r\n3.7V 1.04Ah\r\n\r\nmass quantity\r\n\r\n$4.95\r\n\r\nFCA HK\r\n\r\n1 week\r\n\r\n2025-04\r\n\r\nJapan\r\n\r\nPrismatic\r\n\r\nPanasonic 50Ah\r\n\r\nNMC 50Ah 27x148x92mm, 849g, 0.55mhom\r\n\r\nmass\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nTBI\r\n\r\nA- grade\r\n\r\nPrismatic\r\n\r\nPanasonic 4Ah\r\n\r\n3.7V 4.2Ah 13-120-65mm, 35C-70C, 183g\r\n\r\nmass\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nTBI\r\n\r\nA- grade\r\n\r\n*4. Murata *\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nCylindrical\r\n\r\nUS18650VTC4\r\n\r\n3.6V, 2.1Ah, 30A Disch.\r\n\r\nmass quantity\r\n\r\n$2\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n\r\n\r\nCylindrical\r\n\r\nUS18650VTC5\r\n\r\n3.6V, 2.5Ah, 20A/30A Disch.\r\n\r\nTBI\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n\r\n\r\nCylindrical\r\n\r\nUS18650VTC5A\r\n\r\n3.6V, 2.5Ah, 30A/35A Disch.\r\n\r\nFew\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n\r\n\r\nCylindrical\r\n\r\nUS18650VTC5C\r\n\r\n3.6V, 2.5Ah, 30A Disch.\r\n\r\nmass quantity\r\n\r\n$2.75\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\n2021 Stock\r\n\r\n\r\n\r\nCylindrical\r\n\r\nUS18650VTC5D\r\n\r\n3.6V, 2.7Ah, 35A Disch.\r\n\r\nmass quantity\r\n\r\n$4.2\r\n\r\nFCA Shenzhen\r\n\r\nStock\r\n\r\n2021-10\r\n\r\n\r\n\r\nCylindrical\r\n\r\nUS18650VTC6\r\n\r\n3.6V, 3.0Ah, 20A/30A Disch.\r\n\r\nmass quantity\r\n\r\n$3.65\r\n\r\nFCA Shenzhen\r\n\r\n4-6 weeks\r\n\r\nwithin 3-6 months\r\n\r\nFresh\r\n\r\nCylindrical\r\n\r\nUS18650VTC6\r\n\r\n3.6V, 3.0Ah, 20A/30A Disch.\r\n\r\nmass quantity\r\n\r\n$3.2\r\n\r\nFCA HK\r\n\r\n4-6 weeks\r\n\r\nwithin 6 months\r\n\r\n\r\n\r\nCylindrical\r\n\r\nUS21700VTC6A\r\n\r\n3.6V 4100mAh 40A discharge\r\n\r\nmass quantity\r\n\r\n$5.2\r\n\r\nFCA Shenzhen\r\n\r\n4-6 weeks\r\n\r\nNew Lot\r\n\r\n30% deposit is needed\r\n\r\nCylindrical\r\n\r\nUS21700VTC6A\r\n\r\n3.6V 4100mAh 40A discharge\r\n\r\nmass quantity\r\n\r\n$4.45\r\n\r\nFCA HK\r\n\r\n4-6 weeks\r\n\r\nwithin 6 months\r\n\r\n30% deposit is needed\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n*5. Molicel *\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nCylindrical\r\n\r\nINR18650-P26A\r\n\r\n3.6V, 2600mAh, Wide Temp, High rate\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA HK\r\n\r\nTBI\r\n\r\nTBI\r\n\r\nMOQ 20Kpcs (1 pallet)\r\n\r\nCylindrical\r\n\r\nINR18650-P28A\r\n\r\n3.6V, 2.8Ah, Widetemp. Highrate\r\n\r\nmass quantity\r\n\r\n$3.55\r\n\r\nFCA Shenzhen\r\n\r\nStock\r\n\r\nTBI\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-P30B\r\n\r\n3.6V, 3.0Ah, Widetemp. 30A Disch.\r\n\r\nmass quantity\r\n\r\n$5.1\r\n\r\nFCA Shenzhen\r\n\r\nStock\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-M35A\r\n\r\n3.6V, 3.5Ah, Widetemp. Highrate\r\n\r\nmass quantity\r\n\r\n$3.55\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nwithin 6 months\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-M35A\r\n\r\n3.6V, 3.5Ah, Widetemp. Highrate\r\n\r\nMOQ 16Kpcs\r\n\r\n$3.40\r\n\r\nFCA HK\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR21700-P42A\r\n\r\n3.6V, 4.2Ah\r\n\r\nmass quantity\r\n\r\n$3.70\r\n\r\nFCA Shenzhen\r\n\r\n3-5 weeks\r\n\r\nwithin 6 months\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR21700-P45B\r\n\r\n3.6V 4500mAh\r\n\r\nmass quantity\r\n\r\n$4.2\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nwithin 6 months\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR21700-P50B\r\n\r\n3.6V 5000mAh\r\n\r\nFew\r\n\r\n$6.25\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nwithin 6 months\r\n\r\n\r\n\r\n*6. BYD*\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nCylindrical\r\n\r\nFC46120P\r\n\r\n3.2V, 24.50Ah\r\n\r\nmass quantity\r\n\r\n$14.5\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\nMOQ 10pcs\r\n\r\n*7. LithiumWerk (A123)*\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nCylindrical\r\n\r\nANR26650M1B\r\n\r\n3.3V 2.5Ah High Rate\r\n\r\nmass quantity\r\n\r\n$8.5\r\n\r\nFCA Shenzhen\r\n\r\n4-6 weeks\r\n\r\n2025-01\r\n\r\n\r\n\r\nCylindrical\r\n\r\nANR26650M1B\r\n\r\n3.3V 2.5Ah High Rate\r\n\r\nmass quantity\r\n\r\n$7\r\n\r\nFCA HK\r\n\r\n4-6 weeks\r\n\r\n2025-04\r\n\r\nMOQ 6,600pcs (1 pallet)\r\n\r\n*8. SK On (Previously, SK Innovation)*\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nPouch\r\n\r\nE400\r\n\r\nLi-ion, 3.6V, 40Ah, 9.5x97x320mm\r\n\r\nmass quantity\r\n\r\n$30.00\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nwithin 2022\r\n\r\nA- grade\r\n\r\nPouch\r\n\r\nE450\r\n\r\nLi-ion, 3.6V, 45Ah, 10x175x190mm\r\n\r\nmass quantity\r\n\r\n$31.00\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nwithin 2022\r\n\r\nA- grade\r\n\r\nPouch\r\n\r\nE500\r\n\r\nLi-ion, 3.6V, 50Ah, 11.5x98x300mm\r\n\r\nmass quantity\r\n\r\n$35.10\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nN/A\r\n\r\nA- grade, OEM by EVE\r\n\r\nPouch\r\n\r\nE556\r\n\r\nLi-ion, 3.6V, 55.60Ah, 10x100x354mm\r\n\r\nmass quantity\r\n\r\n$30.00\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nN/A\r\n\r\nA- grade\r\n\r\nPouch\r\n\r\nE600B\r\n\r\nLi-ion, 3.6V, 60Ah, 14.5x100x300mm\r\n\r\n4,555\r\n\r\n$35.00\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nN/A\r\n\r\nA- grade\r\n\r\nPouch\r\n\r\nE603\r\n\r\nLi-ion, 3.66V, 60.3Ah, 9.5x354x101mm\r\n\r\nmass quantity\r\n\r\n$30.00\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nN/A\r\n\r\nUncycled, for EV\r\n\r\nPouch\r\n\r\nE805\r\n\r\nLi-ion, 3.6V, 60Ah, 14.5x100x300mm\r\n\r\nFew\r\n\r\n$36.00\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nN/A\r\n\r\ndisassembled, un-cycled\r\n\r\nPouch\r\n\r\nE120\r\n\r\nLi-ion, 3.7V, 120Ah, 14.5x98x530mm\r\n\r\nmass quantity\r\n\r\n$38.00\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nN/A\r\n\r\nA- grade\r\n\r\n*9. Far East (FEB)*\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nCylindrical\r\n\r\n18650-2600\r\n\r\n3.6V, 2600mAh, Max 1C/2C\r\n\r\nmass quantity\r\n\r\n$1.12\r\n\r\nFCA Shenzhen\r\n\r\n2-3 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\n18650-2900\r\n\r\n3.6V, 2900mAh, Max 1C/2C\r\n\r\nmass quantity\r\n\r\nEOL\r\n\r\nFCA Shenzhen\r\n\r\n2 weeks\r\n\r\nNew Lot\r\n\r\nFor E-bike\r\n\r\nCylindrical\r\n\r\n18650-3300\r\n\r\n3.6V, 3300mAh, Max 1C/2C\r\n\r\nmass quantity\r\n\r\n$1.58\r\n\r\nFCA Shenzhen\r\n\r\n2 weeks\r\n\r\nNew Lot\r\n\r\nFor Medical Equipment\r\n\r\nCylindrical\r\n\r\n18650-3800\r\n\r\n3.6V, 3800mAh, Max 1C/2C\r\n\r\nmass quantity\r\n\r\n$2.12\r\n\r\nFCA Shenzhen\r\n\r\n2 weeks\r\n\r\nNew Lot\r\n\r\nFor Lighting Equipment\r\n\r\nCylindrical\r\n\r\n18650-4000\r\n\r\n3.6V, 4000mAh, Max 1C/2C\r\n\r\nmass quantity\r\n\r\n$2.70\r\n\r\nFCA Shenzhen\r\n\r\n2 weeks\r\n\r\nNew Lot\r\n\r\nFor Lighting Equipment\r\n\r\nCylindrical\r\n\r\n21700-4000\r\n\r\n3.6V, 4000mAh, Max 1C/2C\r\n\r\nmass quantity\r\n\r\n$1.58\r\n\r\nFCA Shenzhen\r\n\r\n2 weeks\r\n\r\nNew Lot\r\n\r\nFor E-bike\r\n\r\nCylindrical\r\n\r\n21700-4500\r\n\r\n3.6V, 4500mAh, Max 1C/2C\r\n\r\nmass quantity\r\n\r\n$1.63\r\n\r\nFCA Shenzhen\r\n\r\n2 weeks\r\n\r\nNew Lot\r\n\r\nFor UPS power\r\n\r\nCylindrical\r\n\r\n21700-5000\r\n\r\n3.6V, 5000mAh, Max 1C/2C\r\n\r\nmass quantity\r\n\r\n$2.08\r\n\r\nFCA Shenzhen\r\n\r\n2 weeks\r\n\r\nNew Lot\r\n\r\nFor Smart Speaker\r\n\r\nCylindrical\r\n\r\n21700-5500\r\n\r\n3.6V, 5500mAh, Max 1C/2C\r\n\r\nmass quantity\r\n\r\n$2.65\r\n\r\nFCA Shenzhen\r\n\r\n2 weeks\r\n\r\nNew Lot\r\n\r\nFor Smart Speaker\r\n\r\nCylindrical\r\n\r\n21700-6000\r\n\r\n3.6V, 6000mAh, Max 0.7C/2C\r\n\r\nmass quantity\r\n\r\n$4.00\r\n\r\nFCA Shenzhen\r\n\r\n2 weeks\r\n\r\nNew Lot\r\n\r\nFor Lighting Equipment / Sample\r\n\r\n10. DMEGC\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nCylindrical\r\n\r\nINR18650-20P\r\n\r\n2.0Ah, CC 20A, Pulse 30A\r\n\r\nmass quantity\r\n\r\n$1.30\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-25P\r\n\r\n2.5Ah, CC 20A, Pulse 30A\r\n\r\nmass quantity\r\n\r\n$1.4\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-30P\r\n\r\n3.0Ah, CC 10A, Pulse 20A, with 80C cut\r\n\r\nmass quantity\r\n\r\n$1.90\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-26E\r\n\r\n2.6Ah, CC 3C, Pulse 5C\r\n\r\nmass quantity\r\n\r\n$1.12\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-26E2\r\n\r\n2.6Ah, CC 3C, Pulse 5C, 7S max\r\n\r\nmass quantity\r\n\r\n$1.1\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-29E\r\n\r\n2.9Ah, CC 2C, Pulse 4C\r\n\r\nmass quantity\r\n\r\n$1.4\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-32E\r\n\r\n3.2Ah, CC 10A, Pulse 5C\r\n\r\nmass quantity\r\n\r\n$1.68\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-35E\r\n\r\n3.5Ah, CC 10A, Pulse 5C\r\n\r\nTBI\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR21700-45E\r\n\r\n4.5Ah, CC 1Cm Pulse 3C\r\n\r\nmass quantity\r\n\r\n$1.55\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR21700-50E\r\n\r\n5.0Ah, CC 3C, Pulse 4C\r\n\r\nmass quantity\r\n\r\n$1.95\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR21700-40P\r\n\r\n4.0Ah, CC 6A, Max DC 45A\r\n\r\nmass quantity\r\n\r\n$2.70\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\nNew Supply\r\n\r\nCylindrical\r\n\r\nINR21700-40M (Orange tube)\r\n\r\n4.0Ah, CC 20A, Max 45A,\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR21700-40M (Yellow tube)\r\n\r\n4.0Ah, CC 15A, Max 18A,\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n\r\n\r\n*11. EVE*\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nCylindrical\r\n\r\nINR18650/26V\r\n\r\n3.60V 2.55Ah 7.65A\r\n\r\nmass quantity\r\n\r\n$1.16\r\n\r\nFCA Shenzhen\r\n\r\nStock\r\n\r\nNew Lot\r\n\r\nCylindrical\r\n\r\nCylindrical\r\n\r\nINR18650/33V\r\n\r\n3.60V 3.20Ah 10A\r\n\r\nmass quantity\r\n\r\n$1.55\r\n\r\nFCA Shenzhen\r\n\r\nStock\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650/35V\r\n\r\n3.65V 3.50Ah 10.20A\r\n\r\nmass quantity\r\n\r\n$1.75\r\n\r\nFCA Shenzhen\r\n\r\nStock\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650/20P\r\n\r\n3.60V 2.00Ah 30A\r\n\r\nmass quantity\r\n\r\n$1.26\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650/25P\r\n\r\n3.60V 2.50Ah 30A\r\n\r\nmass quantity\r\n\r\n$1.56\r\n\r\nFCA Shenzhen\r\n\r\nStock\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR21700-40P\r\n\r\n3.60V 4.00Ah 50A\r\n\r\nmass quantity\r\n\r\n$1.90\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR21700-40PL\r\n\r\n3.60V 4.00Ah Tabless\r\n\r\nTrail lot\r\n\r\n$4.40\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR21700-50E\r\n\r\n3.65V 5.00Ah 15A\r\n\r\nmass quantity\r\n\r\n$1.9\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR4695E\r\n\r\n3.69V 31.90Ah 4C\r\n\r\nmass quantity\r\n\r\n$50.00\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR4695P\r\n\r\n3.69V 29Ah\r\n\r\nFew\r\n\r\n$50.00\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\nwithout QR code (TBI)\r\n\r\n*12. BAK*\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nMiddle Rate\r\n\r\nN18650CH\r\n\r\n2.60Ah 3C\r\n\r\nmass quantity\r\n\r\n$1.03\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nN18650CP\r\n\r\n3.35Ah 3C\r\n\r\nmass quantity\r\n\r\n$1.79\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nN18650CP-34E\r\n\r\n3.40Ah 3C\r\n\r\nmass quantity\r\n\r\n$1.72\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nN18650CR-35E\r\n\r\n3.50Ah 3C\r\n\r\nmass quantity\r\n\r\n$1.81\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nN21700CG-50\r\n\r\n5.00Ah 3C\r\n\r\nmass quantity\r\n\r\n$2.2\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nWithin 3 months\r\n\r\n\r\n\r\nN21700CG-50E\r\n\r\n5.00Ah 3C\r\n\r\nmass quantity\r\n\r\n$2.30\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nN21700CD-53E\r\n\r\n5.30Ah 3C\r\n\r\nmass quantity\r\n\r\n$2.53\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nN21700CK-55E\r\n\r\n5.50Ah 3C\r\n\r\nTrial Lot\r\n\r\n$3.21\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n\r\n\r\nN21700CH-58E\r\n\r\n5.80Ah 3C\r\n\r\nTrial Lot\r\n\r\n$3.37\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nTBI\r\n\r\n\r\n\r\nN18650CH\r\n\r\n2.60Ah 3C\r\n\r\nmass quantity\r\n\r\n$1.08\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nHigh Rate\r\n\r\nN18650COP\r\n\r\n2.50Ah 30A\r\n\r\nmass quantity\r\n\r\n$1.64\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nN18650CQP\r\n\r\n3.00Ah 15A\r\n\r\nmass quantity\r\n\r\n$1.92\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nN21700CGP\r\n\r\n4.00Ah 35A\r\n\r\nmass quantity\r\n\r\n$2.40\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nLow\r\nTemperature\r\n\r\nN18650CP Low Temperature\r\n\r\n3.35Ah 3C\r\n\r\nmass quantity\r\n\r\n$1.87\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nN18650CR-35T Low Temperature\r\n\r\n3.50Ah 3C\r\n\r\nmass quantity\r\n\r\n$1.95\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nTabless\r\n\r\n21700-40D\r\n\r\n4.00Ah 100A\r\n\r\nmass quantity\r\n\r\n$3.30\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR4695-330B\r\n\r\n3.6V, 33Ah\r\n\r\nSample\r\n\r\n$50.00\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR4690-310B\r\n\r\n3.6V, 31Ah\r\n\r\nSample\r\n\r\n$50.00\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nNew Lot\r\n\r\n\r\n\r\n*13. CBAK*\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nLFP\r\n\r\n26650FS2A\r\n\r\n3.2V 3.40Ah 3C for EV / ESS\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nNew Lot\r\n\r\n\r\n\r\n26650FS3\r\n\r\n3.2V 3.60Ah 3C for EV / ESS\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nNew Lot\r\n\r\n\r\n\r\n26650FS3A\r\n\r\n3.2V 3.80Ah 3C for EV / ESS\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nNew Lot\r\n\r\n\r\n\r\n26650FS4\r\n\r\n3.2V 4.00Ah 3C for EV / ESS\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nNew Lot\r\n\r\n\r\n\r\n26650FS4B\r\n\r\n3.2V 4.00Ah 3C for Light Vehicle\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nNew Lot\r\n\r\n\r\n\r\n26700FB\r\n\r\n3.2V 4.00Ah 3C for Light Vehicle\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nNew Lot\r\n\r\n\r\n\r\n26700FB2\r\n\r\n3.2V 4.50Ah 3C for Light Vehicle\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nNew Lot\r\n\r\n\r\n\r\n26700FE\r\n\r\n3.2V 4.50Ah 3C for EV / ESS\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nNew Lot\r\n\r\n\r\n\r\n32140FS\r\n\r\n3.2V 15Ah\r\n\r\nmass quantity\r\n\r\n$5.70\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nSodium-ion\r\n\r\n32140NS\r\n\r\n3.0V, 10Ah\r\n\r\nSample\r\n\r\n$10.00\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\nOnly Spec sheet is available\r\n(No UN 38.3 & MSDS)\r\n\r\n*14. CALB*\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nCylindrical\r\n\r\n4695\r\n\r\n3.7V, 30Ah, NMC\r\n\r\nMOQ 10pcs\r\n\r\n$50.00\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\nSample, No spec sheet yet\r\n\r\n*15. Highstar*\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nSodium-ion\r\n\r\nNaCR33140-10ER\r\n\r\n3.05V, 10Ah\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nSodium-ion\r\n\r\nNaCR46145-20ER\r\n\r\n3.05V, 20Ah\r\n\r\nMOQ 50pcs\r\n\r\n$40.00\r\n\r\nFCA Shenzhen\r\n\r\n2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nSodium-ion\r\n\r\nNaCP50160118-70E3\r\n\r\nPrismatic, 3.05V, 70Ah\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nSodium-ion\r\n\r\nNaCP50160118-70H3\r\n\r\nPrismatic, 3.0V, 70Ah\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nSodium-ion\r\n\r\nNaCP50160118-80E3\r\n\r\nPrismatic, 3.05V, 80Ah\r\n\r\nSample\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nNew Lot\r\n\r\n\r\n\r\nSodium-ion\r\n\r\nNaCP40130208-80E3\r\n\r\nPrismatic, 3.05V, 80Ah\r\n\r\nSample\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nNew Lot\r\n\r\n\r\n\r\nSodium-ion\r\n\r\nNaCP50160153-103E3\r\n\r\nPrismatic, 3.0V, 103Ah\r\n\r\nSample\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nNew Lot\r\n\r\n\r\n\r\nTabless\r\n\r\nINR21700-40PS\r\n\r\n3.6V, 3950mAh\r\n\r\nMOQ 50pcs\r\n\r\n$6.65\r\n\r\nFCA Shenzhen\r\n\r\n2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nTabless\r\n\r\nINR21700-50PS\r\n\r\n3.6V, 4900mAh, Low Impedance\r\n\r\n130pcs\r\n\r\n$4.50\r\n\r\nFCA Shenzhen\r\n\r\nTBI\r\n\r\nNew Lot\r\n\r\n\r\n\r\n\r\n\r\n*16. Lishen*\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nCylindrical\r\n\r\n18650LA\r\n\r\n2Ah, 10C\r\n\r\nmass quantity\r\n\r\n$1.15\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\n18650LD\r\n\r\n2.5Ah, 10C\r\n\r\nmass quantity\r\n\r\n$1.50\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\n18650LE\r\n\r\n3Ah, 10C\r\n\r\nmass quantity\r\n\r\n$2.15\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\n18650SK\r\n\r\n2.6Ah, 3C\r\n\r\nmass quantity\r\n\r\n$1.1\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\n18650SS\r\n\r\n3Ah, 3C\r\n\r\nmass quantity\r\n\r\n$1.48\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\n18650HB\r\n\r\n3.35Ah, 3C\r\n\r\nmass quantity\r\n\r\n$1.63\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\n18650HC\r\n\r\n3.5Ah, 3C\r\n\r\nmass quantity\r\n\r\n$1.92\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\n21700LA\r\n\r\n4Ah, 10C\r\n\r\nmass quantity\r\n\r\n$1.93\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\n21700SA\r\n\r\n4Ah, 3C\r\n\r\nmass quantity\r\n\r\n$1.80\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\n21700SD\r\n\r\n5Ah, 3C\r\n\r\nmass quantity\r\n\r\n$2.19\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\n21700SZ\r\n\r\n5Ah, 3C\r\n\r\nmass quantity\r\n\r\n$2.2\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n*17. Sunpower*\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nCylindrical\r\n\r\nINR18650-1300\r\n\r\n13P (15C) 20A\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-1500\r\n\r\n15H (13C) 20A\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-2000\r\n\r\n20P (10C) 20A\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-2000\r\n\r\n20T (15C) 30A\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-2200\r\n\r\n22R (9C) 20A\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-2500\r\n\r\n25R (10C) 25A\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-2500\r\n\r\n25T (12C) 30A\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-2500\r\n\r\n25L (8C) 20A Low Temperature type\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-2600\r\n\r\n26P (5C) 13A\r\n\r\nmass quantity\r\n\r\n$1.34\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-3000\r\n\r\n30P (10C) 30A\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR18650-3000\r\n\r\n30S (13C) 40A\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR21700-3000\r\n\r\n30L (3C) 10A Low Teperature type\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR21700-4000\r\n\r\n40S (10C) 40A\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR21700-4000\r\n\r\n40L (10C) 40A Low Temperature type\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR21700-5000\r\n\r\n50E (3C) 15A\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nINR21700-5000\r\n\r\n50SE (6C) 30A\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nLFP26700-4300\r\n\r\n43E (3C) 12.9A\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\nCylindrical\r\n\r\nLFP26700-4500\r\n\r\n45E (3C) 13.5A\r\n\r\nmass quantity\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nNew Lot\r\n\r\n\r\n\r\n\r\n\r\n*18. Maxell*\r\n\r\nType\r\n\r\nModel\r\n\r\nSpecification\r\n\r\nAvailable Quantity\r\n\r\nUnit Price\r\n\r\nPrice Term\r\n\r\nValidity\r\n\r\nCell Lot\r\n\r\nRemark\r\n\r\nPrismatic\r\n\r\nICP653865SRU\r\n\r\n3.7V, 1800mAh\r\n\r\n48,760\r\n\r\nTBI\r\n\r\nFCA Shenzhen\r\n\r\n1-2 weeks\r\n\r\nB0711\r\n\r\n\r\n\r\nPrismatic\r\n\r\nICP653450AHR\r\n\r\n1360mAh 3.85V (4.35V charge)\r\n\r\nmass quantity\r\n\r\n$4\r\n\r\nFCA Shenzhen\r\n\r\n1 week\r\n\r\nI2101\r\n\r\n\r\n\r\nPrismatic\r\n\r\nICP103450AHR\r\n\r\n2160mAh 3.8V (4.35V charge)\r\n\r\n49,400\r\n\r\nTBI\r\n\r\nFCA HK\r\n\r\n1 week\r\n\r\nwithin 2020\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nWarm regards\r\n\r\n\r\n\r\nShmuel De-Leon/CEO\r\n\r\nShmuel De-Leon Energy, Ltd.\r\n\r\nMazal Arie 10, Hod-Hasharon, Israel 4536045\r\n\r\nTel/Fax: 972-77-5010792\r\n\r\nMobile: 972-52-8601517\r\n\r\nE-Mail: shmuel@sdle.co.il <shmueld33@gmail.com>\r\n\r\nCompany web site: www.sdle.co.il\r\n\r\nBattery DataBase web site: www.batteriesdatabase.com\r\n\r\n\r\n\r\nSign-up to our weekly battery newsletter\r\nhttps://www.sdle.co.il/services/newsletter/',0,0,0,0,0,0,'2025-11-24 17:28:30','2025-12-04 14:04:49','2025-12-04 14:04:49','2025-12-04 14:04:49',NULL,NULL,NULL),
(80,4,'<autogen-java-418aeef4-b0e4-4c64-8089-f6465cbaa8d8@google.com>',NULL,NULL,'Item shared with you: \"APPROVED-BLD-24-0510827-REV1 (1).pdf\"','drive-shares-dm-noreply@google.com','\"Jordan Wroblewski (via Google Drive)\"','<html><head></head><body><table style=\"border-collapse: collapse; width: 100%; background-color: white; text-align: center;\" role=\"presentation\"><tr><td style=\"padding: 24px 0 16px 0;\"><table style=\"border-collapse: collapse;font-family: Roboto, Arial, Helvetica, sans-serif;hyphens: auto; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word;width: 90%; margin: auto;max-width: 700px;min-width: 280px; text-align: left;\" role=\"presentation\"><tr><td style=\"padding: 0;\"><table style=\"width:100%; border: 1px solid #dadce0; border-radius: 8px; border-spacing: 0; table-layout:fixed; border-collapse: separate;\" role=\"presentation\"><tr><td style=\"padding: 4.5%;\" dir=\"ltr\"><div style=\"margin-bottom:32px;font-family: Google Sans, Roboto, Arial, Helvetica, sans-serif; font-style: normal; font-size: 28px; line-height: 36px; color: #3c4043;\">Jordan Wroblewski shared an item</div><table style=\"border-collapse: collapse;font-family: Roboto, Arial, Helvetica, sans-serif; font-size:16px; line-height:24px; color:#202124; letter-spacing:0.1px; table-layout:fixed; width:100%; overflow-wrap: break-word;\" role=\"presentation\"><tr><td style=\"padding: 0; vertical-align:top; padding-left:0px;\"><div style=\"padding-top:12px;\">Jordan Wroblewski (<a href=\"mailto:jordan@lithiumbatterycompany.com\" style=\"color:inherit;text-decoration:none\">jordan@lithiumbatterycompany.com</a>) has shared the following item: <a href=\"https://support.google.com/drive?p=collaborator_accounts\" target=\"_blank\">Learn more</a></div><div style=\"margin-top:24px; color:#5F6368\">Please see our CD set for 3900 W. Coachman Ave.</div></td></tr></table><table style=\"border-spacing:0 4px; table-layout:fixed; width:100%; overflow-wrap: break-word;\" role=\"presentation\"><tr style=\"height:28px;\"></tr><tr><td style=\"padding: 0;\"><a href=\"https://drive.google.com/file/d/1aPoDAzLq8aI_tOmtpgaNDHQIUyAr6MiD/view?usp=sharing_eil&amp;ts=6925f5f7&amp;sh=rRoVjb9cBs085x1t&amp;ca=1&amp;exids=71471469,71471463\" target=\"_blank\" style=\"color: #3c4043; display: inline-block; max-width: 100%; text-decoration: none; vertical-align: top;border: 1px solid #DADCE0; border-radius: 16px; white-space: nowrap;\"><div style=\"line-height: 18px; overflow: hidden; text-overflow: ellipsis;padding: 6px 12px;\"><span style=\"display: inline-block; vertical-align: top; min-width: 26px; width: 26px;\"><img src=\"https://ssl.gstatic.com/docs/doclist/images/mediatype/icon_3_pdf_x64.png\" width=\"18\" height=\"18\" style=\"vertical-align: top;\" role=\"presentation\"></span><span style=\"font: 500 14px/18px Google Sans, Roboto, Arial, Helvetica, sans-serif; display: inline; letter-spacing: 0.2px;\">APPROVED-BLD-24-0510827-REV1 (1).pdf</span></div></a></td></tr></table><table style=\"border-collapse: collapse;\" role=\"presentation\"><tr style=\"height: 32px\"><td></td></tr></table><div><!--[if mso]><v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"https://drive.google.com/file/d/1aPoDAzLq8aI_tOmtpgaNDHQIUyAr6MiD/view?usp=sharing_eip&amp;ts=6925f5f7&amp;sh=rRoVjb9cBs085x1t&amp;ca=1&amp;exids=71471469,71471463\" style=\"height:36px; width:100px; v-text-anchor:middle;\" arcsize=\"50%\" stroke=\"f\" fillcolor=\"#1a73e8\"><w:anchorlock/><center style=\"color:#ffffff;font-family:Arial,Helvetica,sans-serif;font-weight:500;font-size:14px;\">Open </center></v:roundrect><![endif]--><a href=\"https://drive.google.com/file/d/1aPoDAzLq8aI_tOmtpgaNDHQIUyAr6MiD/view?usp=sharing_eip&amp;ts=6925f5f7&amp;sh=rRoVjb9cBs085x1t&amp;ca=1&amp;exids=71471469,71471463\" class=\"material-button material-button-filled\" target=\"_blank\" tabindex=\"0\" role=\"link\" style=\"mso-hide:all;padding: 0 24px;font: 500 14px/36px Google Sans, Roboto, Arial, Helvetica, sans-serif; border: none; border-radius: 18px; box-sizing: border-box; display: inline-block; letter-spacing: .25px; min-height: 36px; text-align: center; text-decoration: none;background-color: #0B57D0; color: #fff; cursor: pointer;\">Open</a></div><br><div style=\"font-size: 12px; color:#5F6368;\">Use is subject to the Google <a href=\"https://policies.google.com/privacy\" target=\"_blank\"> Privacy Policy</a>.</div></td></tr></table><table style=\"border-collapse: collapse; width: 100%;\" role=\"presentation\"><tr><td style=\"padding: 24px 4.5%\"><table style=\"border-collapse: collapse; width: 100%;\" dir=\"ltr\"><tr><td style=\"padding: 0;font-family: Roboto, Arial, Helvetica, sans-serif; color: #5F6368; width: 100%; font-size: 12px; line-height: 16px; min-height: 40px; letter-spacing: .3px;\">Google LLC, 1600 Amphitheatre Parkway, Mountain View, CA 94043, USA<br/> You have received this email because <a href=\"mailto:jordan@lithiumbatterycompany.com\" style=\"color:inherit;text-decoration:none\">jordan@lithiumbatterycompany.com</a> shared a file or folder located in Google Drive with you. <a href=\"https://myaccount.google.com/visitor-delete?atu=110084044959184708693\" target=\"_blank\">Delete visitor session</a></td><td style=\"padding: 0;padding-left: 20px; min-width: 96px\"><a href=\"https://workspace.google.com/\" target=\"_blank\" style=\"text-decoration: none\"><div style=\"font-family:Roboto, Arial, Helvetica, sans-serif; font-size:16px;color: #5F6368; white-space: nowrap; align-items: right\"><span style=\"font-weight:500;\">Google</span><span style=\"font-weight:400;\"> Workspace</span></div></a></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html>','I\'ve shared an item with you:\r\n\r\nAPPROVED-BLD-24-0510827-REV1 (1).pdf\r\nhttps://drive.google.com/file/d/1aPoDAzLq8aI_tOmtpgaNDHQIUyAr6MiD/view?usp=sharing&ts=6925f5f7&sh=rRoVjb9cBs085x1t&ca=1\r\n\r\nIt\'s not an attachment -- it\'s stored online. To open this item, just click  \r\nthe link above.\r\n\r\nPlease see our CD set for 3900 W. Coachman Ave.',0,0,0,0,0,0,'2025-11-25 18:31:19','2025-12-04 14:04:49','2025-12-04 14:04:49','2025-12-04 14:04:49',NULL,NULL,NULL),
(81,4,'<xJftF9qRROSOe4qIrt1RgA@geopod-ismtpd-40>',NULL,NULL,'Leslie Staron invited you to \"Blank diagram\"','sharing@app.lucid.co','Lucidchart','<!DOCTYPE HTML>\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" lang=\"en\" xml:lang=\"en\">\r\n<head>\r\n<meta charset=\"utf-8\">\r\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\r\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1, user-scalable=yes\">\r\n<meta name=\"format-detection\" content=\"telephone=no, date=no, address=no, email=no, url=no\">\r\n<meta name=\"x-apple-disable-message-reformatting\">\r\n<meta name=\"color-scheme\" content=\"light dark\">\r\n<meta name=\"supported-color-schemes\" content=\"light dark\">\r\n<title>Leslie Staron invited you to their document</title>\r\n<!--[if mso]>\r\n<noscript>\r\n<xml>\r\n  <o:OfficeDocumentSettings>\r\n    <o:PixelsPerInch>96</o:PixelsPerInch>\r\n  </o:OfficeDocumentSettings>\r\n</xml>\r\n</noscript>\r\n<![endif]-->\r\n<style>\r\n    :root {\r\n      color-scheme: light dark;\r\n      supported-color-schemes: light dark;\r\n    }\r\n    html,\r\n    body {\r\n        margin: 0 auto !important;\r\n        padding: 0 !important;\r\n        height: 100% !important;\r\n        width: 100% !important;\r\n    }\r\n    table {\r\n        border-collapse: collapse !important; \r\n        padding:0;\r\n    }\r\n    * {\r\n        -ms-text-size-adjust: 100%;\r\n        -webkit-text-size-adjust: 100%;\r\n        mso-height-rule: exactly !important;\r\n    }\r\n    .faux-absolute {\r\n        max-height: 0;\r\n        position: relative;\r\n        opacity: 0.999;\r\n    }\r\n    .button {\r\n		transition: 0.3s !important;\r\n	}\r\n	.button:hover {\r\n		background: #2F3296 !important;\r\n		transition: 0.3s !important;\r\n	}\r\n	.link {\r\n		transition: 0.3s !important;\r\n		text-decoration: underline !important;\r\n	}\r\n	.link:hover {\r\n		color: #2F3296 !important;\r\n		transition: 0.3s !important;\r\n	}\r\n    .link {\r\n        text-decoration: underline !important;\r\n    }\r\n	.fadeimg {\r\n      transition: 0.3s !important;\r\n      opacity: 1 !important;\r\n    }\r\n	.fadeimg:hover {\r\n      transition: 0.3s !important;\r\n      opacity: 0.5 !important;\r\n    }\r\n    body[data-outlook-cycle] .image {\r\n        width:300px;\r\n    }\r\n    @media (prefers-color-scheme: dark) {\r\n        div, .message, .mail-link {\r\n            color: #ffffff !important;\r\n        }\r\n        .bkgrd {\r\n            background: #23272c !important;\r\n            color: #ffffff !important;\r\n        }\r\n        .container {\r\n            background: #282C33 !important; \r\n            color: #ffffff !important\r\n        }\r\n        .message {\r\n            color: #ffffff !important;\r\n        }\r\n        .ftr-logo-dark { \r\n            display:block !important; \r\n            width: 80px !important; \r\n            overflow: visible !important; \r\n            float: none !important; \r\n            max-height:inherit !important; \r\n            max-width:80px !important; \r\n            line-height: auto !important; \r\n            margin-top:0px !important; \r\n            visibility:inherit !important; \r\n        }\r\n        .ftr-logo-light { \r\n            display:none !important; \r\n            width: 0px !important; \r\n            max-width: 0px !important;\r\n        }\r\n    }\r\n    @media only screen and (max-width: 680px) {\r\n		h1 {\r\n			font-size: 24px !important;\r\n		}\r\n        .mob-mar {\r\n            margin-left: 15px !important;\r\n            margin-right: 15px !important;\r\n        }\r\n        .mob-logo {\r\n            padding-left: 15px !important;\r\n        }\r\n        \r\n        .button {\r\n            margin-left: 15px !important;\r\n            margin-right: 15px !important;\r\n            display: block !important;\r\n            max-width: 680px !important;\r\n        }\r\n		.fadeimg {\r\n      		transition: 0.3s !important;\r\n      		opacity: 1 !important;\r\n    	}\r\n		.fadeimg:hover {\r\n      		transition: 0.3s !important;\r\n      		opacity: 0.5 !important;\r\n   		 }\r\n        .column {\r\n            width: 94% !important;\r\n            margin-left: 15px !important;\r\n            margin-right: 15px !important;\r\n        }\r\n        .bottom-pad-0 {\r\n            padding-bottom: 0px !important;\r\n        }\r\n    }\r\n</style>\r\n<!--[if gt mso 14]>\r\n    <style>\r\n        .black-text {\r\n        	color:#000000;\r\n        	mso-style-textfill-type:gradient;\r\n            mso-style-textfill-fill-gradientfill-stoplist:\"0 \\#fffffe 0 100000\\,100000 \\#fffffe 0 100000\";\r\n            }\r\n        .comment-text {\r\n	        mso-style-textfill-type:gradient;\r\n            mso-style-textfill-fill-gradientfill-stoplist:\"0 \\#000000 1 100000\\,99000 \\#000000 1 100000\";\r\n            color:#ffffff !important;\r\n            }\r\n    </style>\r\n<![endif]--> \r\n\r\n<!--[if !mso]><!-- -->\r\n    <style>\r\n        .comment-color{\r\n    	color:#282c33;\r\n    }\r\n    </style>\r\n    <!--<![endif]-->\r\n</head>\r\n<body class=\"body\">\r\n<div style=\"display:none;font-size:1px;color:#333333;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden\">View the document&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp;&#8204;&nbsp; </div>\r\n<div role=\"article\" aria-roledescription=\"email\" bgcolor=\"#FAFBFC\" aria-label=\"Document Invtation email\" width=\"100%\" lang=\"en\" dir=\"ltr\" style=\"background-color: #FAFBFC\" class=\"bkgrd\"> \r\n  <!--[if mso]><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"100%\" height=\"100%\" bgcolor=\"#FAFBFC\" style=\"border-collapse:collapse\" class=\"bkgrd\"><tr><td valign=\"top\"><table cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"margin:0 auto; width:680px; background-color: #fff; font-family: Arial,Helvetica,Verdana,sans-serif; font-size: 20px; line-height: 1.4; color: #282c33\" align=\"center\"><tr style=\"margin:0 auto\"><td style=\"margin:0 auto\"><![endif]-->\r\n  <div lang=\"en\" bgcolor=\"#fff\" style=\"max-width: 680px; margin:0 auto; background: #fff; font-family: Arial,Helvetica,Verdana,sans-serif; font-size: 16px; font-size: 1rem; font-size:max(20px, 1rem);line-height: 140%; color: #282c33\" class=\"container\">\r\n    <div style=\"margin:0 auto; font-size: 6px; line-height: 1; background: #000; background-image: linear-gradient(#000,#000)\">&nbsp;</div>\r\n    <div style=\"background:#F96B13; background-image: linear-gradient(#F96B13,#F96B13); color: #282c33; padding: 35px 60px 30px 60px\" class=\"mob-logo\"> \r\n      <!--[if mso]></td></tr><tr style=\"margin:0 auto; background: #F96B13; color: #282c33\"><td style=\"margin:0 auto; padding: 35px 60px 40px 60px\"><![endif]--> \r\n      <a align=\"center\" href=\"https://url5041.app.lucid.co/ls/click?upn=u001.9CEiYqsCeDB7JcEaXQIz-2FwcXWzTlbvKFTuXsPuVGPmsOkkAc9NNsiq1UZPAiF-2BbAoIuyhSWicfvWf2uxofzpI-2BCioXwCKUwGYiG2smxuhG4wl76sO3zKw-2BjWkswcedBuqalJ96aWoD843NaUIyKfx72a1eeeZWs3nl5Jqy1PyXNolNpqoYR7AEk1oSLvxIsp0YTFYUZ3w2Xbe1pYPZN0Yw-3D-3DjWsF_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi9zBWmM6vvHZCsZtpnZ5kC8qWuI28rgmxt6vv7R7bESEgm4rM5Fcf1CrKZygnZdhwe-2FvQ-2BwZOazX4-2Blmyp4S2-2BMeMGss8htYY8z5pALvrCKYdtiMX5t4RnkT4U3lKa7sYY9KWqgc4rozBqmfUjXycOvqyyRw0JIKgqYMPjIrKO1AXSHbOOCpGKVx7dXHsSddAjOKiuUW67skYM3xWct9uOYy-2BdZBrIZQhDdvLTVtC-2F5V6DBFbRNLUWWmTf-2FmRENh1-2Bo68fm3gvNzJ-2BbT3dzJpdz-2FWyCUKt2sIwi5whJZu18-2BLwDHoE0bXEsVkO3wWyWvR6UdUFk9RDLFUoM93Tclh5gG4HPTX4QnbiEhQ-2BjA48Jj0YqT2LUAqtSqNqpXWbXguMyRuvu3tQ155deMn-2FflGIn5Y8ruO5iaAtOm-2F6-2BNYPmUqrX-2FbDcCekvdR8PtenRS-2BdpQgd6LwE2cm-2BljcKZOsTH7do4bFdDKxxffdLNwtBBJxnQ6ttdu5-2BIQURD8jwwJT63E89fgdwZfNrBui5lfbzRcwoGqilDutmWVEOv1bOCWE23sWE-2F-2Bzgygh5Aq-2F238RTV0-2B5MuIEtUtQQvQ1s5KN6cEGkpvm8tFfumMKowFHYhA9jSn5dODsveT4GHosIQaGWcmsm3TBnd574reK3bu0FucNOgza87N5UZ0pbowz-2F1w-3D-3D\"> <img src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Marketo-Images/LC-white-logo-v1.png\" width=\"175\" border=\"0\" alt=\"Lucidchart\" style=\"vertical-align: middle; width:175px;max-width:175px\"> </a> \r\n      <!--[if mso]></td></tr><tr><td><![endif]--> \r\n    </div>\r\n    <h1 style=\"margin: 50px 60px 10px 60px; font-size: 32px; line-height: 1.2\" class=\"mob-mar bottom-pad-0\"> Leslie Staron invited you to edit a document </h1>\r\n    <!--[if true]>\r\n        <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" style=\"all:unset;opacity:0\">\r\n        <tr>\r\n        <![endif]--> \r\n    <!--[if false]></td></tr></table><![endif]-->\r\n    <div style=\"margin: 0px 60px 0px 60px; text-align:left; font-family: Arial,Helvetica,Verdana,sans-serif; font-size: 20px;line-height: 140%; mso-height-rule: exactly; color: #444444; display:table;width:82%\" class=\"column\"> \r\n      <!--[if true]>\r\n            <td>\r\n            <![endif]--> \r\n      <!--[if !true]><!-->\r\n      <div style=\"display:table-cell;width:15%; vertical-align:middle;\"> \r\n        <!--<![endif]-->\r\n        \r\n        <div style=\"height: 10px;\">&nbsp;</div>\r\n        <!--[if mso]>\r\n    <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\r\n      <tr>\r\n        <td width=\"80px\" style=\"padding-left:100px\">\r\n    <![endif]--> \r\n        <img src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Filled_Icon_circle_fix.png\" width=\"80\" height=\"75\" alt=\"Icon\" style=\"border: 0; width: 80px; max-width: 80px; vertical-align:bottom;border-radius: 50%\"> \r\n        <!--[if mso]>\r\n        </td>\r\n      </tr>\r\n      <tr>\r\n        <td width=\"65px\">\r\n    <![endif]--> \r\n        <img align=\"right\" src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Filled_Group_Icons.png\" width=\"65\" height=\"40\" alt=\"Icon\" style=\"border: 0; width: 65px; max-width: 65px; vertical-align:top;\"> \r\n        <!--[if mso]>\r\n    <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\r\n      <tr>\r\n        <td>\r\n    <![endif]--> \r\n        <!--[if !true]><!--> \r\n      </div>\r\n      <!--<![endif]--> \r\n      <!--[if true]>\r\n            </td>\r\n            <![endif]--> \r\n      <!--[if true]>\r\n            <td >\r\n            <![endif]--> \r\n      <!--[if !true]><!-->\r\n      <div style=\"display:table-cell;width:85%; vertical-align:top;\"> \r\n        <!--<![endif]-->\r\n        <p style=\"padding: 10px 0px 0px 20px;\"> Leslie Staron (<a href=\"mailto:leslie@mavrix.one\" style=\"color: #282c33; text-decoration:none; cursor: text\" class=\"mail-link\">leslie@mavrix.one</a>) invited you to edit <a href=\"https://url5041.app.lucid.co/uni/ls/click?upn=u001.9CEiYqsCeDB7JcEaXQIz-2F8hA2T748OZjyY91l9S-2BOHpWIQbEGJbaVHr9V-2BjSyorr0PAhr-2FLZX8vFDnRykCzEnA4xgTdlLRZ2yjwuFOWbpRhx8Db1mR77dHyZBwgc3HJrSfOpM-2BvRUygq9h7tTRuTXcwECBus0t6uWs-2BGRcVEhfIWISD9SUGGVwlCWcY57K2lCQCZAYwWUFaGSVwhon2sAw-3D-3D8A9T_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi9zBWmM6vvHZCsZtpnZ5kC8qWuI28rgmxt6vv7R7bESEgm4rM5Fcf1CrKZygnZdhwe-2FvQ-2BwZOazX4-2Blmyp4S2-2BMeMGss8htYY8z5pALvrCKYdtiMX5t4RnkT4U3lKa7sYY9KWqgc4rozBqmfUjXycOvqyyRw0JIKgqYMPjIrKO1AXSHbOOCpGKVx7dXHsSddAjOKiuUW67skYM3xWct9uOYy-2BdZBrIZQhDdvLTVtC-2F5V6DBFbRNLUWWmTf-2FmRENh1-2Bo68fm3gvNzJ-2BbT3dzJpdz-2FWyCUKt2sIwi5whJZu18-2BLwDHoE0bXEsVkO3wWyWvR6UdUFk9RDLFUoM93Tclh5gG4HPTX4QnbiEhQ-2BjA48Jj0YqT2LUAqtSqNqpXWbXguMyRuvu3tQ155deMn-2FflGIn5Y8ruO5iaAtOm-2F6-2BNYPmUqrX-2FbDcCekvdR8PtenRS-2BdpQgd6LwE2cm-2BljcKZOsTH7do4bFdDKxxffdLNwtBBJxnQ6ttdu5-2BIQURD8jwwJT64vUsF4KneiXlInZOs7Sc9yoEyroGkgNNxE4ApMzQamPeUPKQZaelLUa8osNlWJ0hZYPGL-2B-2FKDWMtYUYvIyXG2ADlsTB3cv5T9R-2BeyPPEh0lfjX3Yl919XASv5O1-2F3h0l-2BC9oV-2F4JNxQJrqfG9YPBUSueZ-2BdXNnZ-2BEz3uOem4IHg-3D-3D\" universal=\"true\" style=\"color:#1071E5\" class=\"link\">Blank diagram</a> </p>\r\n        <!--[if !true]><!--> \r\n      </div>\r\n      <!--<![endif]--> \r\n      <!--[if true]>\r\n            </td>\r\n            <![endif]--> \r\n    </div>\r\n    <!--[if true]>\r\n        </tr>\r\n        </table>\r\n        <![endif]--> \r\n    <div style=\"height: 20px\">&nbsp;</div>\r\n    <div style=\"margin: 0px 60px 20px 60px\" class=\"mob-mar\"> \r\n      <!--[if mso]>\r\n<v:roundrect style=\"font-family: Arial,Helvetica,Verdana,sans-serif; width:225px; height:50px; v-text-anchor:middle;\" arcsize=\"15%\" stroke=\"f\" fillcolor=\"#1071E5\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\">\r\n<w:anchorlock/>\r\n<v:textbox inset=\"0,0,0,0\">\r\n<center>\r\n<![endif]--> \r\n      <a align=\"center\" href=\"https://url5041.app.lucid.co/uni/ls/click?upn=u001.9CEiYqsCeDB7JcEaXQIz-2F8hA2T748OZjyY91l9S-2BOHpWIQbEGJbaVHr9V-2BjSyorr0PAhr-2FLZX8vFDnRykCzEnA4xgTdlLRZ2yjwuFOWbpRhx8Db1mR77dHyZBwgc3HJrSfOpM-2BvRUygq9h7tTRuTXcwECBus0t6uWs-2BGRcVEhfIWISD9SUGGVwlCWcY57K2lCQCZAYwWUFaGSVwhon2sAw-3D-3DUdjV_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi9zBWmM6vvHZCsZtpnZ5kC8qWuI28rgmxt6vv7R7bESEgm4rM5Fcf1CrKZygnZdhwe-2FvQ-2BwZOazX4-2Blmyp4S2-2BMeMGss8htYY8z5pALvrCKYdtiMX5t4RnkT4U3lKa7sYY9KWqgc4rozBqmfUjXycOvqyyRw0JIKgqYMPjIrKO1AXSHbOOCpGKVx7dXHsSddAjOKiuUW67skYM3xWct9uOYy-2BdZBrIZQhDdvLTVtC-2F5V6DBFbRNLUWWmTf-2FmRENh1-2Bo68fm3gvNzJ-2BbT3dzJpdz-2FWyCUKt2sIwi5whJZu18-2BLwDHoE0bXEsVkO3wWyWvR6UdUFk9RDLFUoM93Tclh5gG4HPTX4QnbiEhQ-2BjA48Jj0YqT2LUAqtSqNqpXWbXguMyRuvu3tQ155deMn-2FflGIn5Y8ruO5iaAtOm-2F6-2BNYPmUqrX-2FbDcCekvdR8PtenRS-2BdpQgd6LwE2cm-2BljcKZOsTH7do4bFdDKxxffdLNwtBBJxnQ6ttdu5-2BIQURD8jwwJT6ZZdXNLbkIDPvhxGG46EGP9SmL7pDtvvhpa9FFLOIoNjwHFt7hV2kPFC2i6A1x7K6fjPnQiAkB3h68CLYaU69IMXZfm9iOGfh-2BqUv-2FJU4ijvXT33qt6XqOeCu2Ln5auVQBl7Xl-2FNFHy-2BefdX5-2BGy6pB6b2ByrveO-2F-2B5TpKTgzQAw-3D-3D\" universal=\"true\" style=\"mso-shading: transparent; font-family: Arial,Helvetica, Verdana, sans-serif; font-size: 20px; background-color:#1071E5; text-decoration: none; padding: .5em 2em; color: #FFFFFE; display:inline-block; border-radius:4px; mso-padding-alt:0; text-underline-color:#1071E5\" class=\"button\"><span class=\"black-text\">Accept&nbsp;invitation</span> </a> \r\n      <!--[if mso]>\r\n</center>\r\n</v:textbox>\r\n</v:roundrect>\r\n<![endif]--> \r\n    </div>\r\n    <div style=\"height: 20px\">&nbsp;</div>\r\n    <div style=\"margin: 0px 60px\" class=\"mob-mar\"> <a align=\"center\" href=\"https://url5041.app.lucid.co/ls/click?upn=u001.9CEiYqsCeDB7JcEaXQIz-2F8hA2T748OZjyY91l9S-2BOHpWIQbEGJbaVHr9V-2BjSyorr0PAhr-2FLZX8vFDnRykCzEnA4xgTdlLRZ2yjwuFOWbpRhx8Db1mR77dHyZBwgc3HJrSfOpM-2BvRUygq9h7tTRuTXcwECBus0t6uWs-2BGRcVEhfIWISD9SUGGVwlCWcY57K2lCQCZAYwWUFaGSVwhon2sAw-3D-3DkbAM_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi9zBWmM6vvHZCsZtpnZ5kC8qWuI28rgmxt6vv7R7bESEgm4rM5Fcf1CrKZygnZdhwe-2FvQ-2BwZOazX4-2Blmyp4S2-2BMeMGss8htYY8z5pALvrCKYdtiMX5t4RnkT4U3lKa7sYY9KWqgc4rozBqmfUjXycOvqyyRw0JIKgqYMPjIrKO1AXSHbOOCpGKVx7dXHsSddAjOKiuUW67skYM3xWct9uOYy-2BdZBrIZQhDdvLTVtC-2F5V6DBFbRNLUWWmTf-2FmRENh1-2Bo68fm3gvNzJ-2BbT3dzJpdz-2FWyCUKt2sIwi5whJZu18-2BLwDHoE0bXEsVkO3wWyWvR6UdUFk9RDLFUoM93Tclh5gG4HPTX4QnbiEhQ-2BjA48Jj0YqT2LUAqtSqNqpXWbXguMyRuvu3tQ155deMn-2FflGIn5Y8ruO5iaAtOm-2F6-2BNYPmUqrX-2FbDcCekvdR8PtenRS-2BdpQgd6LwE2cm-2BljcKZOsTH7do4bFdDKxxffdLNwtBBJxnQ6ttdu5-2BIQURD8jwwJT5NDIn3l7-2FkjFwdwPR3GGMgcF32gB-2BHds37hKsCbBxI25ynIKdWyBnJG5cWL3sFpZuF21FRODCo3whzcpDadRGJddM3hzkCbbgiFd0AgaHzpno8QWcMO-2B2hWD6dat-2FPMpo9fGxCb6Uft4-2BW5w0cx4mpdvCYYuS44F2W30AQKZ0J9g-3D-3D\" class=\"img-link\"> <img src=\"https://documents.us.lucid.app/s3proxy/pdf-longterm-lucidchart-com/f4edfd8a-8582-4736-ab63-dadcc7fd8c4c?token=2725de161aa8345d63d88cbecd9eaeba5446e033e1f5a7fb47e8593128f43044-ts%3D1764096126\" alt=\"Document preview screenshot\" border=\"0\" width=\"560\" style=\"display:block;width:100%;max-width:560px;border: 3px solid #CED4DB;box-sizing: border-box\"> </a> </div>\r\n    <div style=\"height: 0px\">&nbsp;</div>\r\n    <div style=\"height: 40px\">&nbsp;</div>\r\n  </div>\r\n  <!--[if mso]></td></tr></table><table role=\"presentation\" style=\"margin:0 auto; width:680px; background-color: #FAFBFC; font-family: Arial,Helvetica,Verdana,sans-serif; font-size: 12px; line-height: 160%; color: #282c33\" align=\"center\"><tr style=\"margin:0 auto\"><td><![endif]-->\r\n  <div style=\"max-width: 680px; margin:0 auto; background: #FAFBFC; font-family: Arial,Helvetica,Verdana,sans-serif; font-size: 12px; line-height: 150%; color: #282c33\" class=\"bkgrd\">\r\n    <div style=\"height: 0px\">&nbsp;</div>\r\n    <div style=\"margin: 30px 60px 0px 60px\" class=\"mob-mar\"> <a align=\"center\" href=\"https://url5041.app.lucid.co/ls/click?upn=u001.9CEiYqsCeDB7JcEaXQIz-2F5ZA7b6Ng-2FmkjRqwr793bQJl6eCRn-2FD8wHGnt9qb2-2Fey3epHeHnseonILNN1qeqD5YOdm23QbLAJWehtYOV-2FTK8ee2H5gkdZ-2FU-2BcLtWC2VVEEzqvS7LNtDMMzbUqP3fRv2Q7c3eUeIkhW3BDIcuvzvGVx-2FK7Z9Nlh-2BgvyzAQb7LBlrcg_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi9zBWmM6vvHZCsZtpnZ5kC8qWuI28rgmxt6vv7R7bESEgm4rM5Fcf1CrKZygnZdhwe-2FvQ-2BwZOazX4-2Blmyp4S2-2BMeMGss8htYY8z5pALvrCKYdtiMX5t4RnkT4U3lKa7sYY9KWqgc4rozBqmfUjXycOvqyyRw0JIKgqYMPjIrKO1AXSHbOOCpGKVx7dXHsSddAjOKiuUW67skYM3xWct9uOYy-2BdZBrIZQhDdvLTVtC-2F5V6DBFbRNLUWWmTf-2FmRENh1-2Bo68fm3gvNzJ-2BbT3dzJpdz-2FWyCUKt2sIwi5whJZu18-2BLwDHoE0bXEsVkO3wWyWvR6UdUFk9RDLFUoM93Tclh5gG4HPTX4QnbiEhQ-2BjA48Jj0YqT2LUAqtSqNqpXWbXguMyRuvu3tQ155deMn-2FflGIn5Y8ruO5iaAtOm-2F6-2BNYPmUqrX-2FbDcCekvdR8PtenRS-2BdpQgd6LwE2cm-2BljcKZOsTH7do4bFdDKxxffdLNwtBBJxnQ6ttdu5-2BIQURD8jwwJT7HYOJszNXmqvPvF1TIRFp9UBOavcjtnP9CSjlKa7ZtdyzpMBoqGPipwBdVmlhDeXsHr9coeII1CWgPokmSAfljQ9XTYH-2Bc0kdWLYnCPCmV-2F08f9o6sJ12nL2-2BTF4ku-2Br51N8M9s3x1f4wOxBiD-2BRkUPNEB53ms4CmuBQJr44C3BQ-3D-3D\"> <img src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Marketo-Images/Lucid-Primary-Logo-CG100-onClear-np-RGB@2x.png\" width=\"80\" alt=\"Lucid\" style=\"border: 0;width: 80px; max-width: 80px; vertical-align:middle\" class=\"ftr-logo-light\"><!--[if mso]><table style=\"mso-hide:all\"><tr style=\"mso-hide:all\"><td style=\"mso-hide:all\"><![endif]--> \r\n      <img src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Marketo-Images/Lucid-Primary-Logo-White-onClear-np-RGB@2x.png\" width=\"80\" alt=\"Lucid\" style=\"vertical-align:middle;display:none; overflow:hidden; float:left; width:0px; max-height:0px; max-width:0px; line-height:0px; visibility:hidden\" class=\"ftr-logo-dark\"> \r\n      <!--[if mso]></td></tr></table><![endif]--> \r\n      </a> </div>\r\n    <p style=\"margin: 20px 60px 0px 60px\" class=\"mob-mar\"> Lucid Software, Inc. </p>\r\n    <p style=\"margin:0px 60px\" class=\"mob-mar\"> <a align=\"center\" href=\"https://url5041.app.lucid.co/ls/click?upn=u001.9CEiYqsCeDB7JcEaXQIz-2F5ZA7b6Ng-2FmkjRqwr793bQJl6eCRn-2FD8wHGnt9qb2-2Fey3epHeHnseonILNN1qeqD5YOdm23QbLAJWehtYOV-2FTK8ee2H5gkdZ-2FU-2BcLtWC2VVEEzqvS7LNtDMMzbUqP3fRv2Q7c3eUeIkhW3BDIcuvzvGVx-2FK7Z9Nlh-2BgvyzAQb7LBqCnZ_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi9zBWmM6vvHZCsZtpnZ5kC8qWuI28rgmxt6vv7R7bESEgm4rM5Fcf1CrKZygnZdhwe-2FvQ-2BwZOazX4-2Blmyp4S2-2BMeMGss8htYY8z5pALvrCKYdtiMX5t4RnkT4U3lKa7sYY9KWqgc4rozBqmfUjXycOvqyyRw0JIKgqYMPjIrKO1AXSHbOOCpGKVx7dXHsSddAjOKiuUW67skYM3xWct9uOYy-2BdZBrIZQhDdvLTVtC-2F5V6DBFbRNLUWWmTf-2FmRENh1-2Bo68fm3gvNzJ-2BbT3dzJpdz-2FWyCUKt2sIwi5whJZu18-2BLwDHoE0bXEsVkO3wWyWvR6UdUFk9RDLFUoM93Tclh5gG4HPTX4QnbiEhQ-2BjA48Jj0YqT2LUAqtSqNqpXWbXguMyRuvu3tQ155deMn-2FflGIn5Y8ruO5iaAtOm-2F6-2BNYPmUqrX-2FbDcCekvdR8PtenRS-2BdpQgd6LwE2cm-2BljcKZOsTH7do4bFdDKxxffdLNwtBBJxnQ6ttdu5-2BIQURD8jwwJT75diCoRNB9RyQ2Nd770oObPJ5NKjs1mdHCl7OuOy5D-2B6ERn1bq6pGK58c-2BejT174LaTuuI-2BhQR7sZWQPXpeUqfEI-2BRTyKgV3mqDQxCYcZnQCJFvlT5QNwu0Ax50h9dyDRnGROCtkIp-2BVVcSya-2Brhgluucdf85UCL-2BKfDWsF1uU-2BQ-3D-3D\" style=\"text-decoration: none; color: #282C33; cursor: text\" class=\"bkgrd\">10355 South Jordan Gateway, Suite 300 South Jordan, UT 84095 USA</a> </p>\r\n    <p style=\"margin:10px 60px\" class=\"mob-mar\"> By continuing to use Lucid\'s products, you agree to our <a href=\"https://url5041.app.lucid.co/ls/click?upn=u001.9CEiYqsCeDB7JcEaXQIz-2F3G1SXYAYfd20WN5DHnCGcs-3DZGF6_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi9zBWmM6vvHZCsZtpnZ5kC8qWuI28rgmxt6vv7R7bESEgm4rM5Fcf1CrKZygnZdhwe-2FvQ-2BwZOazX4-2Blmyp4S2-2BMeMGss8htYY8z5pALvrCKYdtiMX5t4RnkT4U3lKa7sYY9KWqgc4rozBqmfUjXycOvqyyRw0JIKgqYMPjIrKO1AXSHbOOCpGKVx7dXHsSddAjOKiuUW67skYM3xWct9uOYy-2BdZBrIZQhDdvLTVtC-2F5V6DBFbRNLUWWmTf-2FmRENh1-2Bo68fm3gvNzJ-2BbT3dzJpdz-2FWyCUKt2sIwi5whJZu18-2BLwDHoE0bXEsVkO3wWyWvR6UdUFk9RDLFUoM93Tclh5gG4HPTX4QnbiEhQ-2BjA48Jj0YqT2LUAqtSqNqpXWbXguMyRuvu3tQ155deMn-2FflGIn5Y8ruO5iaAtOm-2F6-2BNYPmUqrX-2FbDcCekvdR8PtenRS-2BdpQgd6LwE2cm-2BljcKZOsTH7do4bFdDKxxffdLNwtBBJxnQ6ttdu5-2BIQURD8jwwJT5H1nHqAG-2F6eTQr8OP0EJhO4LnSA1gzgS7AROgk2D9ua7KaoMxxSUDF-2FDMCdlrpOTeiyn3di8gecP0MDgOgDlPLcvYen6BasFI36I1RWZ6UZPcKlpEDxKBvowgy2s12N3kO1gGFMIAVyViObTxAJPkbLTaLOyBaj3bkqpGdfU-2Fb9A-3D-3D\" style=\"color:#1071E5; text-decoration: underline\" class=\"link\">Terms of Service</a> and acknowledge our <a href=\"https://url5041.app.lucid.co/ls/click?upn=u001.9CEiYqsCeDB7JcEaXQIz-2F-2FQRR19FjbyoYQhtFO1er9BQPMBFRdKg6Z3wesmcOjyFfMRM_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi9zBWmM6vvHZCsZtpnZ5kC8qWuI28rgmxt6vv7R7bESEgm4rM5Fcf1CrKZygnZdhwe-2FvQ-2BwZOazX4-2Blmyp4S2-2BMeMGss8htYY8z5pALvrCKYdtiMX5t4RnkT4U3lKa7sYY9KWqgc4rozBqmfUjXycOvqyyRw0JIKgqYMPjIrKO1AXSHbOOCpGKVx7dXHsSddAjOKiuUW67skYM3xWct9uOYy-2BdZBrIZQhDdvLTVtC-2F5V6DBFbRNLUWWmTf-2FmRENh1-2Bo68fm3gvNzJ-2BbT3dzJpdz-2FWyCUKt2sIwi5whJZu18-2BLwDHoE0bXEsVkO3wWyWvR6UdUFk9RDLFUoM93Tclh5gG4HPTX4QnbiEhQ-2BjA48Jj0YqT2LUAqtSqNqpXWbXguMyRuvu3tQ155deMn-2FflGIn5Y8ruO5iaAtOm-2F6-2BNYPmUqrX-2FbDcCekvdR8PtenRS-2BdpQgd6LwE2cm-2BljcKZOsTH7do4bFdDKxxffdLNwtBBJxnQ6ttdu5-2BIQURD8jwwJT7lqrf7nZwvxEToxdZgxKxO3a57FfFdJ6qyu6YNN62YXLjJuUJ1a-2FPf4ybGFrvcYQty3-2Bziu0VYY7kIx7nIFQ0dvXv43RjsJnnCrxrPMlDZk-2FHxN7Hy-2FPdYydcUSamxwxwBUEdRC3UrFqzSUT8vhSHMathb7czfA4M7RGR4GPzhYw-3D-3D\" style=\"color:#1071E5; text-decoration: underline\" class=\"link\">Privacy Policy</a>. </p>\r\n    <div style=\"height: 100px\">&nbsp;</div>\r\n  </div>\r\n  <!--[if mso]></td></tr></table><![endif]--> \r\n</div>\r\n<img src=\"https://url5041.app.lucid.co/wf/open?upn=u001.D6mC8SG6iITw2GIzPjAtw3VnKGws73w4Kg-2Fn2LF1yNJWZmnvRjdB3I9paPSgxdgjmSNcsUpyZWCSCuqIj22sE-2BajSHpap6gC2r7-2Bh3cP-2BEM11gnmldRXAOWrmHj6oMrE5TuUo1ICTrnRhlnkp2GaAaPKdcg57HvLPeiqWmVjqDD5A1x52MbgW6-2Btm7xhXa6pZ9dJ-2Bph35l6QFFywqcSgEGoeGzo-2BiChw0tcM8pcUjm6Nby4j6XB6pxAZ-2BRQuCXzWOV2jn6cK0NoG1AB4kE4gENhbFaIguCj7zhD8gCzp9KufPUIczaEJfzxQgHyAeQ50TXlnVNoeEd8d-2F82AvPg6CZivuSKVOPoAwmjv7FujhqslWa9kiLscODiJUdLY506ilFBosVGcgqN2AAu2-2FwN6M-2F-2BFHRkfW-2BacKM8cw-2BgtwqUSN30GVkcWX6tKSKk5HW6AD8ncZ2UcaEwXB8u4MrnGqBHCbS46uCFOwIVjHiye6wlh0Ktw-2FAkenkRrQmvuer6V7shC0xpd-2Bbof3Mq5TEVyvjINUCvadwM96uF4m2z0Shdji97i6fQQxSPsb09W-2FnvEnsGlly9xSd2YYlhkCSbDCBGUlciI-2F0pP6-2B-2FXObVg6Ln7pETpT-2F61pj1hUhA2S-2BfPpT9ezZb43TzPZ9zTOShUw0OW5nme4H58CJaFfnWYEosCAdcSvdCxDZsLW4-2BLkVleI30wCNMSDznbjI2-2BBYXeLQ-3D-3D\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" style=\"height:1px !important;width:1px !important;border-width:0 !important;margin-top:0 !important;margin-bottom:0 !important;margin-right:0 !important;margin-left:0 !important;padding-top:0 !important;padding-bottom:0 !important;padding-right:0 !important;padding-left:0 !important;\"/></body>\r\n</html>','\r\nYou\'re invited to the document \"Blank diagram\"\r\n\r\nLeslie Staron shared the Lucidchart document Blank diagram with you - accept the invitation to take a closer look! ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ \r\n\r\n\r\nhttps://url5041.app.lucid.co/ls/click?upn=u001.9CEiYqsCeDB7JcEaXQIz-2FwcXWzTlbvKFTuXsPuVGPmsZY6oUxtOG-2BFncmhSJWU1AnpcY_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi9zBWmM6vvHZCsZtpnZ5kC8qWuI28rgmxt6vv7R7bESEgm4rM5Fcf1CrKZygnZdhwe-2FvQ-2BwZOazX4-2Blmyp4S2-2BMeMGss8htYY8z5pALvrCKYdtiMX5t4RnkT4U3lKa7sYY9KWqgc4rozBqmfUjXycOvqyyRw0JIKgqYMPjIrKO1AXSHbOOCpGKVx7dXHsSddAjOKiuUW67skYM3xWct9uOYy-2BdZBrIZQhDdvLTVtC-2F5V6DBFbRNLUWWmTf-2FmRENh1-2Bo68fm3gvNzJ-2BbT3dzJpdz-2FWyCUKt2sIwi5whJZu18-2BLwDHoE0bXEsVkO3wWyWvR6UdUFk9RDLFUoM93Tclh5gG4HPTX4QnbiEhQ-2BjA48Jj0YqT2LUAqtSqNqpXWbXguMyRuvu3tQ155deMn-2FflGIn5Y8ruO5iaAtOm-2F6-2BNYPmUqrX-2FbDcCekvdR8PtenRS-2BdpQgd6LwE2cm-2BljcKZOsTH7do4bFdDKxxffdLNwtBBJxnQ6ttdu5-2BIQURD8jwwJT6LFEehjSd0oAXplXptHmW7u-2Fy-2BojqpoHzsfS4QIKLmz7WLBmQTdcRJUTXBlou1uVuSV0L1iwkeThVGKjjcDFVcmFYxF0-2BzKLpOkuDOBfzV-2F0H2-2BXCIUBqA8wsGMHqm0wreZTqpRuISn648BscHsdRaz1tLgHgBLbnaMrrnCTh4RA-3D-3D\r\n\r\nLeslie Staron shared the Lucidchart document Blank diagram https://url5041.app.lucid.co/ls/click?upn=u001.9CEiYqsCeDB7JcEaXQIz-2F8hA2T748OZjyY91l9S-2BOHpWIQbEGJbaVHr9V-2BjSyorr0PAhr-2FLZX8vFDnRykCzEnA4xgTdlLRZ2yjwuFOWbpRhx8Db1mR77dHyZBwgc3HJrEeHn0iSVMpQBVmLsx7UjCymTa38iYUay-2BoYkWksmMRTSNtlWQu0kw7dOTZiKxgFDr7dbErrfplz5EDfWMVD7Hg-3D-3D4JJG_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi9zBWmM6vvHZCsZtpnZ5kC8qWuI28rgmxt6vv7R7bESEgm4rM5Fcf1CrKZygnZdhwe-2FvQ-2BwZOazX4-2Blmyp4S2-2BMeMGss8htYY8z5pALvrCKYdtiMX5t4RnkT4U3lKa7sYY9KWqgc4rozBqmfUjXycOvqyyRw0JIKgqYMPjIrKO1AXSHbOOCpGKVx7dXHsSddAjOKiuUW67skYM3xWct9uOYy-2BdZBrIZQhDdvLTVtC-2F5V6DBFbRNLUWWmTf-2FmRENh1-2Bo68fm3gvNzJ-2BbT3dzJpdz-2FWyCUKt2sIwi5whJZu18-2BLwDHoE0bXEsVkO3wWyWvR6UdUFk9RDLFUoM93Tclh5gG4HPTX4QnbiEhQ-2BjA48Jj0YqT2LUAqtSqNqpXWbXguMyRuvu3tQ155deMn-2FflGIn5Y8ruO5iaAtOm-2F6-2BNYPmUqrX-2FbDcCekvdR8PtenRS-2BdpQgd6LwE2cm-2BljcKZOsTH7do4bFdDKxxffdLNwtBBJxnQ6ttdu5-2BIQURD8jwwJT5iXkjIFMlPSgJm7n2mfaSVrJ1MAv-2FyONFLwCtkKu-2F2c1mEg-2FiCJmDyJgkmDnd0zi9-2BBRAfYBHKZtbP9VnWHvEKwYLJyfF4D7CfzL9Va3kpnPL-2Bvz8rTic2qxjhpK-2FV0mwUF6IKhSoz37SWQTnpeU6NH06q70OGyk1fvgdnSpXdTQ-3D-3D with you — accept the invitation to take a closer look!\r\n\r\nMessage from Leslie:\r\n\r\n\r\n\r\nAccept invitation https://url5041.app.lucid.co/ls/click?upn=u001.9CEiYqsCeDB7JcEaXQIz-2F8hA2T748OZjyY91l9S-2BOHpWIQbEGJbaVHr9V-2BjSyorr0PAhr-2FLZX8vFDnRykCzEnA4xgTdlLRZ2yjwuFOWbpRhx8Db1mR77dHyZBwgc3HJrEeHn0iSVMpQBVmLsx7UjCymTa38iYUay-2BoYkWksmMRTSNtlWQu0kw7dOTZiKxgFDr7dbErrfplz5EDfWMVD7Hg-3D-3DAFQ2_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi9zBWmM6vvHZCsZtpnZ5kC8qWuI28rgmxt6vv7R7bESEgm4rM5Fcf1CrKZygnZdhwe-2FvQ-2BwZOazX4-2Blmyp4S2-2BMeMGss8htYY8z5pALvrCKYdtiMX5t4RnkT4U3lKa7sYY9KWqgc4rozBqmfUjXycOvqyyRw0JIKgqYMPjIrKO1AXSHbOOCpGKVx7dXHsSddAjOKiuUW67skYM3xWct9uOYy-2BdZBrIZQhDdvLTVtC-2F5V6DBFbRNLUWWmTf-2FmRENh1-2Bo68fm3gvNzJ-2BbT3dzJpdz-2FWyCUKt2sIwi5whJZu18-2BLwDHoE0bXEsVkO3wWyWvR6UdUFk9RDLFUoM93Tclh5gG4HPTX4QnbiEhQ-2BjA48Jj0YqT2LUAqtSqNqpXWbXguMyRuvu3tQ155deMn-2FflGIn5Y8ruO5iaAtOm-2F6-2BNYPmUqrX-2FbDcCekvdR8PtenRS-2BdpQgd6LwE2cm-2BljcKZOsTH7do4bFdDKxxffdLNwtBBJxnQ6ttdu5-2BIQURD8jwwJT4DtK-2BiD0LgoH3LQzbmbmGTgO2F8pJu2woo4ErOYYWU3JXKKm96-2BNoUOXTGd-2Fo7RXQar9t2ihCSPOpE0GQSPTIHAg3d3Q9Y0fvgN9KBzirgxQQhV-2BzxfRdB7v22lvg131e2BnB5bbMdVSlSpTs52t9rmZKVyuk7NCZf1S8JxhQgdA-3D-3D\r\n\r\nLucid Software, Inc.\r\n\r\n10355 South Jordan Gateway, Suite 150,\r\n South Jordan, UT 84095 USA https://url5041.app.lucid.co/ls/click?upn=u001.9CEiYqsCeDB7JcEaXQIz-2FwcXWzTlbvKFTuXsPuVGPmsZY6oUxtOG-2BFncmhSJWU1A2mBj_V-2Ftcq-2F-2Fviym0-2Bw9hTDwPuuuPL-2Fcc6-2BL2ixmVisUwIi9zBWmM6vvHZCsZtpnZ5kC8qWuI28rgmxt6vv7R7bESEgm4rM5Fcf1CrKZygnZdhwe-2FvQ-2BwZOazX4-2Blmyp4S2-2BMeMGss8htYY8z5pALvrCKYdtiMX5t4RnkT4U3lKa7sYY9KWqgc4rozBqmfUjXycOvqyyRw0JIKgqYMPjIrKO1AXSHbOOCpGKVx7dXHsSddAjOKiuUW67skYM3xWct9uOYy-2BdZBrIZQhDdvLTVtC-2F5V6DBFbRNLUWWmTf-2FmRENh1-2Bo68fm3gvNzJ-2BbT3dzJpdz-2FWyCUKt2sIwi5whJZu18-2BLwDHoE0bXEsVkO3wWyWvR6UdUFk9RDLFUoM93Tclh5gG4HPTX4QnbiEhQ-2BjA48Jj0YqT2LUAqtSqNqpXWbXguMyRuvu3tQ155deMn-2FflGIn5Y8ruO5iaAtOm-2F6-2BNYPmUqrX-2FbDcCekvdR8PtenRS-2BdpQgd6LwE2cm-2BljcKZOsTH7do4bFdDKxxffdLNwtBBJxnQ6ttdu5-2BIQURD8jwwJT5sedJFc-2BrSybnSv6PTUHcqzyJoOft2npysNCo5uAwCY6k3prTHKfL0i119rvseISC7Ljdaa6gyrCPDNSQAoFgvK5INQTAu1E17L7HvW76DTzcW3GQh4sZr5phxsIlglDDaTvzCJXk43hej3aq5j5NZNduLwP1yWVFCXeHgEhlxfg-3D-3D',0,0,0,0,0,0,'2025-11-25 18:42:07','2025-12-04 14:04:49','2025-12-04 14:04:49','2025-12-04 14:04:49',NULL,NULL,NULL),
(82,4,'<2138175655.12855.1764186495851@event-consumer-prod-a-55765f5f5f-nhbtf>',NULL,NULL,'Signature requested on \"Offer Letter - Rick Mislan 11.26.2025\"','adobesign@adobesign.com','Leslie Staron via Adobe Acrobat Sign','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\r\n  \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en_US\">\r\n<head>\r\n  <title></title>\r\n  <style type=\"text/css\">\r\n\r\n    \r\n\r\n    body, table, div, td, p {\r\n    font-family: adobe, adobe-clean, \"Source Sans Pro\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, sans-serif;\r\n    color: #2C2C2C;\r\n    font-weight: 300;\r\n  }\r\n\r\n    p {\r\n    margin: 0;\r\n    padding: 0;\r\n  }\r\n\r\n    a {\r\n    border: none;\r\n  }\r\n\r\n    a, a:link, a:visited, a:hover, a:active {\r\n    color: #1473e6;\r\n    text-decoration: none;\r\n    font-weight: bold;\r\n  }\r\n\r\n    .separator {\r\n    margin: 0;\r\n    border: 1px solid #CACACA;\r\n  }\r\n\r\n    img {\r\n    border:0;\r\n  }\r\n\r\n    span.e_heading {\r\n    font-size: 12px;\r\n    font-weight: bold;\r\n  }\r\n\r\n    h1 {\r\n    font-size: 28px;\r\n    font-weight: 300;\r\n    color: #6E6E6E;\r\n    padding-bottom: 5px;\r\n  }\r\n\r\n      .bodyHeading {\r\n    margin: 0;\r\n    font-size: 22px;\r\n    color: #454545;\r\n    text-align: center;\r\n  }\r\n\r\n  .footerContainer {\r\n    margin-top: 16px;\r\n    font-size: 12px;\r\n    color: #4b4b4b\r\n  }\r\n\r\n  ul {\r\n    font-size: 17px;\r\n  }\r\n\r\n  .footerContainer p {\r\n    margin-bottom: 1em;\r\n  }\r\n  \r\n</style>\r\n</head>\r\n\r\n<body>\r\n  <center>\r\n        <table cellspacing=\"16\" cellpadding=\"0\" border=\"0\" style=\"max-width: 600px; background-color: #f0f0f0;border-collapse: separate\">\r\n      <tr style=\"background-color: #ffffff\">\r\n        <td>\r\n                \r\n  \r\n  <table style=\"background-color: #fff;width:100%; padding-bottom: 20px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n    <tbody>\r\n    <tr>\r\n      <td valign=\"bottom\">\r\n        <table class=\"\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n          <tbody>\r\n            <tr>\r\n              <td>\r\n                                                        <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n                      <tr>\r\n                        <td style=\"width:16px;\">&nbsp;</td>\r\n                        <td>\r\n                          <img src=\"https://na3.documents.adobe.com/images/emailNextGen/email-adobe-sign-logo.3@2x.png\" width=\"165\" alt=\"Adobe Acrobat Sign Logo\"/>\r\n                        </td>\r\n                      </tr>\r\n                    </table>\r\n                                                    </td>\r\n            </tr>\r\n          </tbody>\r\n        </table>\r\n      </td>\r\n\r\n                    <td style=\"color:#ffffff;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:18px\" width=\"39\" align=\"right\" valign=\"top\">\r\n                    <img style=\"background-color:#ff0000;display:inline-block\" src=\"https://na3.documents.adobe.com/images/emailNextGen/email-adobe-tag-classic@2x.png\" border=\"0\" alt=\"Adobe Logo\" width=\"39\" height=\"64\">\r\n        </td>\r\n        <td style=\"width:16px;\">&nbsp;</td>\r\n          </tr>\r\n    </tbody>\r\n  </table>\r\n          <table id=\"main\" cellpadding=\"20\" cellspacing=\"0\" style=\"width: 100%\">\r\n            <tr>\r\n              <td>\r\n     \r\n    <p style=\"display: none !important; visibility: hidden; mso-hide: all; font-size: 1px; color: #ffffff; line-height: 1px;\r\n  max-height: 0px; max-width: 0px; opacity: 0; overflow: hidden;\">\r\n    Rick - Please review and sign the agreement.\r\n\r\nThank you,\r\nLeslie\r\n  </p>\r\n\r\n      <p class=\"bodyHeading\" style=\"margin: 0; font-size: 22px; color: #454545; text-align: center; word-break:break-word\">\r\n    Leslie Staron requests your signature on <br /> <a href=\"https://na3.documents.adobe.com/public/esign?tsid=CBFCIBAACBSCTBABDUAAABACAABAAJYh6_R4FA4DJlZ-6L1WJHmaxIYa2O5HkfMgkXD3FEnMDwye3-OoLRJHnuNuG_xXmUPOb6F_bQFXixt6zRJBKvTWbSTmo0ZnWbYEbw0uxGhdfSXfRnxzOEopcTTBTZKmx&\">Offer Letter - Rick Mislan 11.26.2025</a>\r\n  </p>\r\n\r\n      \r\n    \r\n          <center>\r\n        \r\n                        \r\n                \r\n        \r\n        \r\n        <!--[if mso]>\r\n          <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n              <tr>\r\n  <td height=\"28px\">\r\n    &nbsp;\r\n  </td>\r\n</tr>\r\n            <tr>\r\n              <td valign=\"middle\">\r\n                <center>\r\n                  <h1>\r\n                    <a href=\"https://na3.documents.adobe.com/public/esign?tsid=CBFCIBAACBSCTBABDUAAABACAABAAJYh6_R4FA4DJlZ-6L1WJHmaxIYa2O5HkfMgkXD3FEnMDwye3-OoLRJHnuNuG_xXmUPOb6F_bQFXixt6zRJBKvTWbSTmo0ZnWbYEbw0uxGhdfSXfRnxzOEopcTTBTZKmx&\">\r\n                      Review and sign\r\n                    </a>\r\n                  </h1>\r\n                </center>\r\n              </td>\r\n            </tr>\r\n              <tr>\r\n  <td height=\"28px\">\r\n    &nbsp;\r\n  </td>\r\n</tr>\r\n          </table>\r\n        <![endif]-->\r\n\r\n        <!--[if !mso]> <!---->\r\n          <div style=\"text-align: center; margin: 31px 0;\">\r\n            <a href=\"https://na3.documents.adobe.com/public/esign?tsid=CBFCIBAACBSCTBABDUAAABACAABAAJYh6_R4FA4DJlZ-6L1WJHmaxIYa2O5HkfMgkXD3FEnMDwye3-OoLRJHnuNuG_xXmUPOb6F_bQFXixt6zRJBKvTWbSTmo0ZnWbYEbw0uxGhdfSXfRnxzOEopcTTBTZKmx&\" style=\"background-color: #1473e6; border-color: #1473e6; color: #ffffff!important; border-width: 2px; border-style: solid;\r\n              border-radius: 20px; display: inline-block; height: auto; min-width: 72px; padding: 8px 14px; font-size: 15px; font-weight: 700 !important;\r\n              text-decoration: none; margin: 0; justify-content: center;\">\r\n              Review and sign\r\n            </a>\r\n          </div>\r\n        <!-- <![endif]-->\r\n    </center>\r\n  \r\n    \r\n        <hr class=\"separator\" />\r\n\r\n    <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-size: 17px;\">\r\n\r\n      \r\n      \r\n        <tr>\r\n  <td height=\"28px\">\r\n    &nbsp;\r\n  </td>\r\n</tr>\r\n\r\n      <tr>\r\n        <td>\r\n                          <p style=\"word-break:break-word\">Rick - Please review and sign the agreement.<br/><br/>Thank you,<br/>Leslie</p><br/>\r\n  \r\n                      \r\n                            <p style=\"text-transform: uppercase; font-size: 13px; letter-spacing: 0.78px; color: #2C2C2C; word-break:break-word\"><b>Leslie Staron</b></p>\r\n<p style=\"font-size: 15px; word-break:break-word\">leslie@mavrix.one</p>\r\n                </td>\r\n      </tr>\r\n    </table>\r\n        <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n        <tr>\r\n  <td height=\"28px\">\r\n    &nbsp;\r\n  </td>\r\n</tr>\r\n    </table>\r\n  \r\n<hr class=\"separator\" />\r\n\r\n\r\n\r\n  <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n      <tr>\r\n  <td height=\"28px\">\r\n    &nbsp;\r\n  </td>\r\n</tr>\r\n    <tr>\r\n      <td>\r\n        <p>\r\n          \r\n\r\n                            After you sign <b>Offer Letter - Rick Mislan <span tabindex=\"-1\" style=\"pointer-events:none;cursor:text;text-decoration:none;color:inherit !important;font-weight:inherit;white-space:nowrap;\">11.<br style=\"display:none;\"/>26.<br style=\"display:none;\"/>2025</span></b>, all parties will receive a final PDF copy.\r\n                    </p>\r\n      </td>\r\n    </tr>\r\n  </table>\r\n\r\n\r\n\r\n  <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n      <tr>\r\n  <td height=\"28px\">\r\n    &nbsp;\r\n  </td>\r\n</tr>\r\n    <tr>\r\n      <td>\r\n        <p>\r\n                      <p><b>Don\'t forward this email:</b> If you don\'t want to sign, you can <a href=\"https://supucansign.na3.echosign.com/public/resend?tsid=CBFCIBAACBSCTBABDUAAABACAABAAC9bF-6GE7CYE5pLbjryiRXQXryUSmzd-ORkvMDW9CzsstFgjpOMghLLGCI1Z01fjmjb0W0n972GUJGTBalpF42AZ0XUtj66O4gVeZ-eREPQIcxraeF4UXQVtrHmKgyoI\">delegate</a> to someone else.</p>\r\n        </p>\r\n      </td>\r\n    </tr>\r\n  </table>\r\n\r\n                      </td>\r\n                </tr>\r\n                            </table>\r\n            </td>\r\n        </tr>\r\n        <tr>\r\n          <td>\r\n            <table style=\"font-size: 12px; color: #4b4b4b\">\r\n              <tr>\r\n                <td>\r\n                                      <center>\r\n                      <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n                        <tr>\r\n                          <td>\r\n                            <img src=\"https://na3.documents.adobe.com/images/emailNextGen/email-powered-by-adobe-sign-logo.3@2x.png\" width=\"136\" hspace=\"2\" alt=\"Powered by Adobe Acrobat Sign\">\r\n                          </td>\r\n                        </tr>\r\n                        <tr>\r\n  <td height=\"16px\">\r\n    &nbsp;\r\n  </td>\r\n</tr>\r\n                      </table>\r\n                    </center>\r\n                                                                          <p style=\"margin-bottom: 18px\">By proceeding, you agree that this agreement may be signed using electronic or handwritten signatures.</p>\r\n\r\n                      <p style=\"margin-bottom: 18px\">\r\n                  To ensure that you continue receiving our emails, please add adobesign@adobesign.com to your address book or safe list.\r\n            </p>\r\n                                                            <p style=\"font-size: 80%; text-align: center; margin-bottom: 18px;\">\r\n      <span><a target=\"_blank\" href=\"https://www.adobe.com/go/terms\"><strong>Terms of Use</strong></a> | <a target=\"_blank\" href=\"https://na3.documents.adobe.com/public/reportAbuseForm?tsid=CBFCIBAACBSCTBABDUAAABACAABAAJYh6_R4FA4DJlZ-6L1WJHmaxIYa2O5HkfMgkXD3FEnMDwye3-OoLRJHnuNuG_xXmUPOb6F_bQFXixt6zRJBKvTWbSTmo0ZnWbYEbw0uxGhdfSXfRnxzOEopcTTBTZKmx&&reportAbuse=true\"><strong>Report Abuse</strong></a></span>\r\n    </p>\r\n                                      <p style=\"margin-bottom: 18px\">&copy; 2025 Adobe. All rights reserved.</p>\r\n\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>','\r\n\r\n\r\n\r\n  \r\n  \r\n\r\n    \r\n\r\n    body, table, div, td, p {\r\n    font-family: adobe, adobe-clean, \"Source Sans Pro\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, sans-serif;\r\n    color: #2C2C2C;\r\n    font-weight: 300;\r\n  }\r\n\r\n    p {\r\n    margin: 0;\r\n    padding: 0;\r\n  }\r\n\r\n    a {\r\n    border: none;\r\n  }\r\n\r\n    a, a:link, a:visited, a:hover, a:active {\r\n    color: #1473e6;\r\n    text-decoration: none;\r\n    font-weight: bold;\r\n  }\r\n\r\n    .separator {\r\n    margin: 0;\r\n    border: 1px solid #CACACA;\r\n  }\r\n\r\n    img {\r\n    border:0;\r\n  }\r\n\r\n    span.e_heading {\r\n    font-size: 12px;\r\n    font-weight: bold;\r\n  }\r\n\r\n    h1 {\r\n    font-size: 28px;\r\n    font-weight: 300;\r\n    color: #6E6E6E;\r\n    padding-bottom: 5px;\r\n  }\r\n\r\n      .bodyHeading {\r\n    margin: 0;\r\n    font-size: 22px;\r\n    color: #454545;\r\n    text-align: center;\r\n  }\r\n\r\n  .footerContainer {\r\n    margin-top: 16px;\r\n    font-size: 12px;\r\n    color: #4b4b4b\r\n  }\r\n\r\n  ul {\r\n    font-size: 17px;\r\n  }\r\n\r\n  .footerContainer p {\r\n    margin-bottom: 1em;\r\n  }\r\n  \r\n\r\n\r\n\r\n\r\n  \r\n        \r\n      \r\n        \r\n                \r\n  \r\n  \r\n    \r\n    \r\n      \r\n        \r\n          \r\n            \r\n              \r\n                                                        \r\n                      \r\n                        &nbsp;\r\n                        \r\n                          \r\n                        \r\n                      \r\n                    \r\n                                                    \r\n            \r\n          \r\n        \r\n      \r\n\r\n                    \r\n                    \r\n        \r\n        &nbsp;\r\n          \r\n    \r\n  \r\n          \r\n            \r\n              \r\n     \r\n    \r\n    Rick - Please review and sign the agreement.\r\n\r\nThank you,\r\nLeslie\r\n  \r\n\r\n      \r\n    Leslie Staron requests your signature on  Offer Letter - Rick Mislan 11.26.2025\r\n  \r\n\r\n      \r\n    \r\n          \r\n        \r\n                        \r\n                \r\n        \r\n        \r\n        \r\n\r\n        \r\n          \r\n            \r\n              Review and sign\r\n            \r\n          \r\n        \r\n    \r\n  \r\n    \r\n        \r\n\r\n    \r\n\r\n      \r\n      \r\n        \r\n  \r\n    &nbsp;\r\n  \r\n\r\n\r\n      \r\n        \r\n                          Rick - Please review and sign the agreement.Thank you,Leslie\r\n  \r\n                      \r\n                            Leslie Staron\r\nleslie@mavrix.one\r\n                \r\n      \r\n    \r\n        \r\n        \r\n  \r\n    &nbsp;\r\n  \r\n\r\n    \r\n  \r\n\r\n\r\n\r\n\r\n  \r\n      \r\n  \r\n    &nbsp;\r\n  \r\n\r\n    \r\n      \r\n        \r\n          \r\n\r\n                            After you sign Offer Letter - Rick Mislan 11.26.2025, all parties will receive a final PDF copy.\r\n                    \r\n      \r\n    \r\n  \r\n\r\n\r\n\r\n  \r\n      \r\n  \r\n    &nbsp;\r\n  \r\n\r\n    \r\n      \r\n        \r\n                      Don\'t forward this email: If you don\'t want to sign, you can delegate to someone else.\r\n        \r\n      \r\n    \r\n  \r\n\r\n                      \r\n                \r\n                            \r\n            \r\n        \r\n        \r\n          \r\n            \r\n              \r\n                \r\n                                      \r\n                      \r\n                        \r\n                          \r\n                            \r\n                          \r\n                        \r\n                        \r\n  \r\n    &nbsp;\r\n  \r\n\r\n                      \r\n                    \r\n                                                                          By proceeding, you agree that this agreement may be signed using electronic or handwritten signatures.\r\n\r\n                      \r\n                  To ensure that you continue receiving our emails, please add adobesign@adobesign.com to your address book or safe list.\r\n            \r\n                                                            \r\n      Terms of Use | Report Abuse\r\n    \r\n                                      &copy; 2025 Adobe. All rights reserved.\r\n\r\n                                                                      \r\n              \r\n            \r\n          \r\n        \r\n            \r\n    \r\n        \r\n',0,0,0,0,0,0,'2025-11-26 19:48:15','2025-12-04 14:04:49','2025-12-04 14:04:49','2025-12-04 14:04:49',NULL,NULL,NULL),
(83,4,'<1941251139.275256.1764202687751@event-consumer-prod-a-55765f5f5f-ffnkw>',NULL,NULL,'You signed: \"Offer Letter - Rick Mislan 11.26.2025\"','adobesign@adobesign.com','Leslie Staron via Adobe Acrobat Sign','  \r\n\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\r\n  \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en_US\">\r\n<head>\r\n  <title></title>\r\n  <style type=\"text/css\">\r\n\r\n    \r\n\r\n    body, table, div, td, p {\r\n    font-family: adobe, adobe-clean, \"Source Sans Pro\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, sans-serif;\r\n    color: #2C2C2C;\r\n    font-weight: 300;\r\n  }\r\n\r\n    p {\r\n    margin: 0;\r\n    padding: 0;\r\n  }\r\n\r\n    a {\r\n    border: none;\r\n  }\r\n\r\n    a, a:link, a:visited, a:hover, a:active {\r\n    color: #1473e6;\r\n    text-decoration: none;\r\n    font-weight: bold;\r\n  }\r\n\r\n    .separator {\r\n    margin: 0;\r\n    border: 1px solid #CACACA;\r\n  }\r\n\r\n    img {\r\n    border:0;\r\n  }\r\n\r\n    span.e_heading {\r\n    font-size: 12px;\r\n    font-weight: bold;\r\n  }\r\n\r\n    h1 {\r\n    font-size: 28px;\r\n    font-weight: 300;\r\n    color: #6E6E6E;\r\n    padding-bottom: 5px;\r\n  }\r\n\r\n      .bodyHeading {\r\n    margin: 0;\r\n    font-size: 22px;\r\n    color: #454545;\r\n    text-align: center;\r\n  }\r\n\r\n  .footerContainer {\r\n    margin-top: 16px;\r\n    font-size: 12px;\r\n    color: #4b4b4b\r\n  }\r\n\r\n  ul {\r\n    font-size: 17px;\r\n  }\r\n\r\n  .footerContainer p {\r\n    margin-bottom: 1em;\r\n  }\r\n  \r\n</style>\r\n</head>\r\n\r\n<body>\r\n  <center>\r\n        <table cellspacing=\"16\" cellpadding=\"0\" border=\"0\" style=\"max-width: 600px; background-color: #f0f0f0;border-collapse: separate\">\r\n      <tr style=\"background-color: #ffffff\">\r\n        <td>\r\n                \r\n  \r\n  <table style=\"background-color: #fff;width:100%; padding-bottom: 20px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n    <tbody>\r\n    <tr>\r\n      <td valign=\"bottom\">\r\n        <table class=\"\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n          <tbody>\r\n            <tr>\r\n              <td>\r\n                                                        <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n                      <tr>\r\n                        <td style=\"width:16px;\">&nbsp;</td>\r\n                        <td>\r\n                          <img src=\"https://na3.documents.adobe.com/images/emailNextGen/email-adobe-sign-logo.3@2x.png\" width=\"165\" alt=\"Adobe Acrobat Sign Logo\"/>\r\n                        </td>\r\n                      </tr>\r\n                    </table>\r\n                                                    </td>\r\n            </tr>\r\n          </tbody>\r\n        </table>\r\n      </td>\r\n\r\n                    <td style=\"color:#ffffff;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:18px\" width=\"39\" align=\"right\" valign=\"top\">\r\n                    <img style=\"background-color:#ff0000;display:inline-block\" src=\"https://na3.documents.adobe.com/images/emailNextGen/email-adobe-tag-classic@2x.png\" border=\"0\" alt=\"Adobe Logo\" width=\"39\" height=\"64\">\r\n        </td>\r\n        <td style=\"width:16px;\">&nbsp;</td>\r\n          </tr>\r\n    </tbody>\r\n  </table>\r\n          <table id=\"main\" cellpadding=\"20\" cellspacing=\"0\" style=\"width: 100%\">\r\n            <tr>\r\n              <td>\r\n     \r\n<center>\r\n<img src=\"https://na3.documents.adobe.com/images/emailNextGen/checkmarkCircle@2x.png\" style=\"padding-bottom: 28px; height: 50px; width: 50px; display: block; margin-left: auto; margin-right: auto;\" alt=\"Big Circle Checkmark\"/>\r\n</center>\r\n\r\n  <p style=\"display: none !important; visibility: hidden; mso-hide: all; font-size: 1px; color: #ffffff; line-height: 1px;\r\n  max-height: 0px; max-width: 0px; opacity: 0; overflow: hidden;\">\r\n    You&rsquo;re all done. Attached is the final agreement for your reference.\r\n  </p>\r\n\r\n<p class=\"bodyHeading\" style=\"margin: 0; font-size: 22px; color: #454545; text-align: center; word-break:break-word\">\r\n You\'re done signing <br /> <b>Offer Letter - Rick Mislan <span tabindex=\"-1\" style=\"pointer-events:none;cursor:text;text-decoration:none;color:inherit !important;font-weight:inherit;white-space:nowrap;\">11.<br style=\"display:none;\"/>26.<br style=\"display:none;\"/>2025</span></b>\r\n</p>\r\n\r\n        <center>\r\n        \r\n                        \r\n                \r\n        \r\n        \r\n        <!--[if mso]>\r\n          <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n              <tr>\r\n  <td height=\"28px\">\r\n    &nbsp;\r\n  </td>\r\n</tr>\r\n            <tr>\r\n              <td valign=\"middle\">\r\n                <center>\r\n                  <h1>\r\n                    <a href=\"https://na3.documents.adobe.com/public/viewAgreement?tsid=CBFCIBAACBSCTBABDUAAABACAABAAGYEFb_zGEclydqc1i1KathrJ0h7B9QWYw9nvTm6MK1apIMV76jkb-gEt8q0lroB1MbUpTE2AVBf-7s-PrRrM_Zqxfcj6r-lU-DA3kNwLFbiLXBXPgjvENzbTyEY3jCGu&\">\r\n                      Open agreement\r\n                    </a>\r\n                  </h1>\r\n                </center>\r\n              </td>\r\n            </tr>\r\n              <tr>\r\n  <td height=\"28px\">\r\n    &nbsp;\r\n  </td>\r\n</tr>\r\n          </table>\r\n        <![endif]-->\r\n\r\n        <!--[if !mso]> <!---->\r\n          <div style=\"text-align: center; margin: 31px 0;\">\r\n            <a href=\"https://na3.documents.adobe.com/public/viewAgreement?tsid=CBFCIBAACBSCTBABDUAAABACAABAAGYEFb_zGEclydqc1i1KathrJ0h7B9QWYw9nvTm6MK1apIMV76jkb-gEt8q0lroB1MbUpTE2AVBf-7s-PrRrM_Zqxfcj6r-lU-DA3kNwLFbiLXBXPgjvENzbTyEY3jCGu&\" style=\"background-color: #1473e6; border-color: #1473e6; color: #ffffff!important; border-width: 2px; border-style: solid;\r\n              border-radius: 20px; display: inline-block; height: auto; min-width: 72px; padding: 8px 14px; font-size: 15px; font-weight: 700 !important;\r\n              text-decoration: none; margin: 0; justify-content: center;\">\r\n              Open agreement\r\n            </a>\r\n          </div>\r\n        <!-- <![endif]-->\r\n    </center>\r\n  \r\n<hr class=\"separator\" />\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n    <tr>\r\n  <td height=\"28px\">\r\n    &nbsp;\r\n  </td>\r\n</tr>\r\n  <tr>\r\n    <td>\r\n      <p>\r\n            <p style=\"font-size: 17px;\">\r\n      Attached is the final agreement for your reference.\r\n        Read it with <a href=\"https://www.adobe.com/go/sign_email_rdc\"><b>Acrobat Reader</b></a>.\r\n      \r\n  <span style=\"font-size: 17px;\">\r\n                You can also <a href=\"https://na3.documents.adobe.com/public/viewAgreement?tsid=CBFCIBAACBSCTBABDUAAABACAABAAGYEFb_zGEclydqc1i1KathrJ0h7B9QWYw9nvTm6MK1apIMV76jkb-gEt8q0lroB1MbUpTE2AVBf-7s-PrRrM_Zqxfcj6r-lU-DA3kNwLFbiLXBXPgjvENzbTyEY3jCGu&\"><b>open it online</b></a> to review its activity history.\r\n            </span>\r\n  </p>\r\n\r\n  \r\n<br />\r\n\r\n\r\n      </p>\r\n    </td>\r\n  </tr>\r\n</table>\r\n\r\n                      </td>\r\n                </tr>\r\n                            </table>\r\n            </td>\r\n        </tr>\r\n        <tr>\r\n          <td>\r\n            <table style=\"font-size: 12px; color: #4b4b4b\">\r\n              <tr>\r\n                <td>\r\n                                      <center>\r\n                      <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n                        <tr>\r\n                          <td>\r\n                            <img src=\"https://na3.documents.adobe.com/images/emailNextGen/email-powered-by-adobe-sign-logo.3@2x.png\" width=\"136\" hspace=\"2\" alt=\"Powered by Adobe Acrobat Sign\">\r\n                          </td>\r\n                        </tr>\r\n                        <tr>\r\n  <td height=\"16px\">\r\n    &nbsp;\r\n  </td>\r\n</tr>\r\n                      </table>\r\n                    </center>\r\n                                                                              <p style=\"margin-bottom: 18px\">Need your own documents signed? Adobe Acrobat Sign can help save you time. <a href=\"https://www.adobe.com/go/signeremail-trial-nov2019\"><b>Learn more</b></a>.</p>\r\n  \r\n                      <p style=\"margin-bottom: 18px\">\r\n                  To ensure that you continue receiving our emails, please add adobesign@adobesign.com to your address book or safe list.\r\n            </p>\r\n                                                            <p style=\"font-size: 80%; text-align: center; margin-bottom: 18px;\">\r\n      <span><a target=\"_blank\" href=\"https://www.adobe.com/go/terms\"><strong>Terms of Use</strong></a> | <a target=\"_blank\" href=\"https://na3.documents.adobe.com/public/reportAbuseForm?tsid=CBFCIBAACBSCTBABDUAAABACAABAAGYEFb_zGEclydqc1i1KathrJ0h7B9QWYw9nvTm6MK1apIMV76jkb-gEt8q0lroB1MbUpTE2AVBf-7s-PrRrM_Zqxfcj6r-lU-DA3kNwLFbiLXBXPgjvENzbTyEY3jCGu&&reportAbuse=true\"><strong>Report Abuse</strong></a></span>\r\n    </p>\r\n                                      <p style=\"margin-bottom: 18px\">&copy; 2025 Adobe. All rights reserved.</p>\r\n\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>','  \r\n\r\n\r\n\r\n\r\n\r\n  \r\n  \r\n\r\n    \r\n\r\n    body, table, div, td, p {\r\n    font-family: adobe, adobe-clean, \"Source Sans Pro\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, sans-serif;\r\n    color: #2C2C2C;\r\n    font-weight: 300;\r\n  }\r\n\r\n    p {\r\n    margin: 0;\r\n    padding: 0;\r\n  }\r\n\r\n    a {\r\n    border: none;\r\n  }\r\n\r\n    a, a:link, a:visited, a:hover, a:active {\r\n    color: #1473e6;\r\n    text-decoration: none;\r\n    font-weight: bold;\r\n  }\r\n\r\n    .separator {\r\n    margin: 0;\r\n    border: 1px solid #CACACA;\r\n  }\r\n\r\n    img {\r\n    border:0;\r\n  }\r\n\r\n    span.e_heading {\r\n    font-size: 12px;\r\n    font-weight: bold;\r\n  }\r\n\r\n    h1 {\r\n    font-size: 28px;\r\n    font-weight: 300;\r\n    color: #6E6E6E;\r\n    padding-bottom: 5px;\r\n  }\r\n\r\n      .bodyHeading {\r\n    margin: 0;\r\n    font-size: 22px;\r\n    color: #454545;\r\n    text-align: center;\r\n  }\r\n\r\n  .footerContainer {\r\n    margin-top: 16px;\r\n    font-size: 12px;\r\n    color: #4b4b4b\r\n  }\r\n\r\n  ul {\r\n    font-size: 17px;\r\n  }\r\n\r\n  .footerContainer p {\r\n    margin-bottom: 1em;\r\n  }\r\n  \r\n\r\n\r\n\r\n\r\n  \r\n        \r\n      \r\n        \r\n                \r\n  \r\n  \r\n    \r\n    \r\n      \r\n        \r\n          \r\n            \r\n              \r\n                                                        \r\n                      \r\n                        &nbsp;\r\n                        \r\n                          \r\n                        \r\n                      \r\n                    \r\n                                                    \r\n            \r\n          \r\n        \r\n      \r\n\r\n                    \r\n                    \r\n        \r\n        &nbsp;\r\n          \r\n    \r\n  \r\n          \r\n            \r\n              \r\n     \r\n\r\n\r\n\r\n\r\n  \r\n    You&rsquo;re all done. Attached is the final agreement for your reference.\r\n  \r\n\r\n\r\n You\'re done signing  Offer Letter - Rick Mislan 11.26.2025\r\n\r\n\r\n        \r\n        \r\n                        \r\n                \r\n        \r\n        \r\n        \r\n\r\n        \r\n          \r\n            \r\n              Open agreement\r\n            \r\n          \r\n        \r\n    \r\n  \r\n\r\n\r\n\r\n    \r\n  \r\n    &nbsp;\r\n  \r\n\r\n  \r\n    \r\n      \r\n            \r\n      Attached is the final agreement for your reference.\r\n        Read it with Acrobat Reader.\r\n      \r\n  \r\n                You can also open it online to review its activity history.\r\n            \r\n  \r\n\r\n  \r\n\r\n\r\n\r\n      \r\n    \r\n  \r\n\r\n\r\n                      \r\n                \r\n                            \r\n            \r\n        \r\n        \r\n          \r\n            \r\n              \r\n                \r\n                                      \r\n                      \r\n                        \r\n                          \r\n                            \r\n                          \r\n                        \r\n                        \r\n  \r\n    &nbsp;\r\n  \r\n\r\n                      \r\n                    \r\n                                                                              Need your own documents signed? Adobe Acrobat Sign can help save you time. Learn more.\r\n  \r\n                      \r\n                  To ensure that you continue receiving our emails, please add adobesign@adobesign.com to your address book or safe list.\r\n            \r\n                                                            \r\n      Terms of Use | Report Abuse\r\n    \r\n                                      &copy; 2025 Adobe. All rights reserved.\r\n\r\n                                                                      \r\n              \r\n            \r\n          \r\n        \r\n            \r\n    \r\n        \r\n',0,0,0,0,0,0,'2025-11-27 00:18:07','2025-12-04 14:04:50','2025-12-04 14:04:50','2025-12-04 14:04:50',NULL,NULL,NULL),
(84,4,'<20251127042156.Horde.ZemdH5sYBXn_JwUed_YXqZQ@mavrix1.aponte.to>',NULL,NULL,'Talent Acquisition Workflows/Specifications for ERP','leslie@mavrix.one','Leslie Staron','<!DOCTYPE html>\r\n<html><meta http-equiv=\"content-type\" content=\"text/html; charset=UTF-8\"><body>\r\n<p style=\"margin:0;\">Hi Rick,</p><p style=\"margin:0;\"> </p><p style=\"margin:0;\">The attached documents are in-process as far as what I\'m preparing to share with you to help build this module in the Mavrix 1 ERP.  Can you take a look at the Specifications document and let me know if the details make sense and are in a format you prefer to use to build everything out?  (The Workflow document outlines the seven workflows in more detail and I\'m planning to translate to process maps using LucidChart.). Let me know your thoughts.</p><p style=\"margin:0;\"> </p><p style=\"margin:0;\">Thank you,</p><p style=\"margin:0;\">Leslie</p>\r\n</body></html>','Hi Rick,\r\n \r\nThe attached documents are in-process as far as what I\'m preparing to share\r\nwith you to help build this module in the Mavrix 1 ERP.  Can you take a\r\nlook at the Specifications document and let me know if the details make\r\nsense and are in a format you prefer to use to build everything out?  (The\r\nWorkflow document outlines the seven workflows in more detail and I\'m\r\nplanning to translate to process maps using LucidChart.). Let me know your\r\nthoughts.\r\n \r\nThank you,\r\nLeslie',1,0,0,0,0,0,'2025-11-27 04:21:56','2025-12-04 14:04:50','2025-12-04 14:04:50','2025-12-04 16:44:20',NULL,NULL,NULL),
(85,4,'<c43aedc2-2f4d-4097-988b-3755efe6f5e8@atl1s07mta3028.xt.local>',NULL,NULL,'Welcome to TinyMCE!','team@engage.tiny.cloud','\"The TinyMCE Team\"','<!DOCTYPE html>\r\n<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" lang=\"en\">\r\n\r\n<head>\r\n	<title></title>\r\n	<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n	<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"><!--[if mso]>\r\n<xml><w:WordDocument xmlns:w=\"urn:schemas-microsoft-com:office:word\"><w:DontUseAdvancedTypographyReadingMail/></w:WordDocument>\r\n<o:OfficeDocumentSettings><o:PixelsPerInch>96</o:PixelsPerInch><o:AllowPNG/></o:OfficeDocumentSettings></xml>\r\n<![endif]--><!--[if !mso]><!-->\r\n	<link href=\"https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&amp;display=swap\" rel=\"stylesheet\" type=\"text/css\"><!--<![endif]-->\r\n	<style>\r\n		* {\r\n			box-sizing: border-box;\r\n		}\r\n\r\n		body {\r\n			margin: 0;\r\n			padding: 0;\r\n		}\r\n\r\n		a[x-apple-data-detectors] {\r\n			color: inherit !important;\r\n			text-decoration: inherit !important;\r\n		}\r\n\r\n		#MessageViewBody a {\r\n			color: inherit;\r\n			text-decoration: none;\r\n		}\r\n\r\n		p {\r\n			line-height: inherit\r\n		}\r\n\r\n		.desktop_hide,\r\n		.desktop_hide table {\r\n			mso-hide: all;\r\n			display: none;\r\n			max-height: 0px;\r\n			overflow: hidden;\r\n		}\r\n\r\n		.image_block img+div {\r\n			display: none;\r\n		}\r\n\r\n		sup,\r\n		sub {\r\n			font-size: 75%;\r\n			line-height: 0;\r\n		}\r\n\r\n		#converted-body .list_block ul,\r\n		#converted-body .list_block ol,\r\n		.body [class~=\"x_list_block\"] ul,\r\n		.body [class~=\"x_list_block\"] ol,\r\n		u+.body .list_block ul,\r\n		u+.body .list_block ol {\r\n			padding-left: 20px;\r\n		}\r\n\r\n		@media (max-width:620px) {\r\n			.desktop_hide table.icons-outer {\r\n				display: inline-table !important;\r\n			}\r\n\r\n			.mobile_hide {\r\n				display: none;\r\n			}\r\n\r\n			.row-content {\r\n				width: 100% !important;\r\n			}\r\n\r\n			.stack .column {\r\n				width: 100%;\r\n				display: block;\r\n			}\r\n\r\n			.mobile_hide {\r\n				min-height: 0;\r\n				max-height: 0;\r\n				max-width: 0;\r\n				overflow: hidden;\r\n				font-size: 0px;\r\n			}\r\n\r\n			.desktop_hide,\r\n			.desktop_hide table {\r\n				display: table !important;\r\n				max-height: none !important;\r\n			}\r\n		}\r\n	</style><!--[if mso ]><style>sup, sub { font-size: 100% !important; } sup { mso-text-raise:10% } sub { mso-text-raise:-10% }</style> <![endif]-->\r\n</head>\r\n\r\n<body class=\"body\" style=\"background-color: #ffffff; margin: 0; padding: 0; -webkit-text-size-adjust: none; text-size-adjust: none;\">\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"nl-container\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #ffffff;\" width=\"100%\">\r\n	<tbody>\r\n		<tr>\r\n			<td>\r\n			<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"row row-1\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f4f4f4;\" width=\"100%\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"row-content stack\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f4f4f4; border-radius: 0; color: #000000; width: 600px; margin: 0 auto;\" width=\"600\">\r\n							<tbody>\r\n								<tr>\r\n									<td class=\"column column-1\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400; text-align: left; vertical-align: top;\" width=\"100%\">\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"paragraph_block block-1\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"pad\" style=\"padding-bottom:10px;padding-left:40px;padding-right:40px;padding-top:10px;\">\r\n												<div style=\"color:#233477;direction:ltr;font-family:\'Inter\',\'Arial\';font-size:14px;font-weight:300;letter-spacing:0px;line-height:1.5;text-align:center;mso-line-height-alt:21px;\">\r\n												<p style=\"margin: 0;\">Is this email not displaying correctly? <a href=\"https://pi.tiny.cloud/webmail/2202/1912781293/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864\" style=\"text-decoration: underline; color: #335dff;\">View it in your browser</a></p>\r\n												</div>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n\r\n			<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"row row-2\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f4f4f4;\" width=\"100%\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"row-content stack\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #fff; border-radius: 0; color: #000000; background-image: url(\'https://www2.ephox.com/l/2202/2022-04-08/d7rkxs/2202/16494577477vaj40mw/3._Illustration__no_text__2x.png\'); background-repeat: no-repeat; background-size: cover; width: 600px; margin: 0 auto;\" width=\"600\">\r\n							<tbody>\r\n								<tr>\r\n									<td class=\"column column-1\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400; text-align: left; padding-bottom: 5px; padding-top: 5px; vertical-align: top;\" width=\"50%\">\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"image_block block-1\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt;\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"pad\" style=\"padding-bottom:20px;padding-left:40px;padding-right:40px;padding-top:30px;width:100%;\">\r\n												<div align=\"left\" class=\"alignment\">\r\n												<div style=\"max-width: 90px;\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xf7/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\" target=\"_blank\"><img alt=\"Tiny logo\" height=\"auto\" src=\"https://www2.ephox.com/l/2202/2021-02-22/d55tdv/2202/16140490780zkI7GHy/logo_tiny__lock_secondary.png\" style=\"display: block; height: auto; border: 0; width: 100%;\" title=\"Tiny logo\" width=\"90\"></a></div>\r\n												</div>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n\r\n									<div class=\"spacer_block block-2 mobile_hide\" style=\"height:40px;line-height:40px;font-size:1px;\"> </div>\r\n\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"heading_block block-3\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt;\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"pad\" style=\"padding-bottom:10px;padding-left:40px;padding-right:40px;padding-top:10px;text-align:center;width:100%;\">\r\n												<h1 style=\"margin: 0; color: #17224f; direction: ltr; font-family: \'Inter\',\'Arial\'; font-size: 26px; font-weight: 600; letter-spacing: normal; line-height: 1.2; text-align: left; margin-top: 0; margin-bottom: 0; mso-line-height-alt: 31px;\"><span class=\"tinyMce-placeholder\" style=\"word-break: break-word;\">Welcome to TinyMCE!</span></h1>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n\r\n									<div class=\"spacer_block block-4 mobile_hide\" style=\"height:50px;line-height:50px;font-size:1px;\"> </div>\r\n									</td>\r\n									<td class=\"column column-2\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400; text-align: left; padding-bottom: 5px; padding-top: 5px; vertical-align: top;\" width=\"50%\">\r\n									<div class=\"spacer_block block-1 mobile_hide\" style=\"height:60px;line-height:60px;font-size:1px;\"> </div>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n\r\n			<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"row row-3\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f4f4f4;\" width=\"100%\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"row-content stack\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #fff; border-radius: 0; color: #000000; width: 600px; margin: 0 auto;\" width=\"600\">\r\n							<tbody>\r\n								<tr>\r\n									<td class=\"column column-1\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400; text-align: left; padding-bottom: 5px; padding-top: 5px; vertical-align: top;\" width=\"100%\">\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"paragraph_block block-1\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"pad\" style=\"padding-left:40px;padding-right:40px;padding-top:20px;\">\r\n												<div style=\"color:#202533;direction:ltr;font-family:\'Inter\',\'Arial\';font-size:16px;font-weight:200;letter-spacing:0px;line-height:1.8;text-align:left;mso-line-height-alt:29px;\">\r\n												<p style=\"margin: 0; margin-bottom: 16px;\"><strong>Ready to get started?</strong></p>\r\n\r\n												<p style=\"margin: 0;\">You’re only a few steps away from getting TinyMCE up and running in your website or app:</p>\r\n												</div>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"list_block block-2\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word; color: #202533; direction: ltr; font-family: \'Inter\',\'Arial\'; font-size: 16px; font-weight: 200; letter-spacing: 0px; line-height: 1.8; text-align: left; mso-line-height-alt: 29px;\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"pad\" style=\"padding-bottom:10px;padding-left:60px;padding-right:40px;padding-top:10px;\">\r\n												<div style=\"margin-left:-20px\">\r\n												<ol style=\"margin-top: 0; margin-bottom: 0; list-style-type: decimal;\">\r\n													<li aria-level=\"1\" style=\"Margin: 0 0 0 0;\"><a href=\"https://pi.tiny.cloud/e/2202/-campaign-onboarding-free-html/dk6xcx/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\" style=\"text-decoration: underline; color: #335dff;\">Log into </a>the Customer Portal&nbsp;</li>\r\n													<li aria-level=\"1\" style=\"Margin: 0 0 0 0;\">Add the TinyMCE code snippet to your project (this snippet will contain your API key)</li>\r\n													<li aria-level=\"1\" style=\"Margin: 0 0 0 0;\">Add your website or project URL to the “Approved Domains” section of the Customer Portal</li>\r\n													<li aria-level=\"1\" style=\"Margin: 0 0 0 0;\">Start building! 🎉</li>\r\n												</ol>\r\n												</div>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"paragraph_block block-3\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"pad\" style=\"padding-bottom:30px;padding-left:40px;padding-right:40px;padding-top:10px;\">\r\n												<div style=\"color:#202533;direction:ltr;font-family:\'Inter\',\'Arial\';font-size:16px;font-weight:200;letter-spacing:0px;line-height:1.8;text-align:left;mso-line-height-alt:29px;\">\r\n												<p style=\"margin: 0;\"><strong>Need more in-depth instructions?</strong><br>\r\n												Follow one of our guides or simply forward this email to your developer.<br>\r\n												<a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xd1/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\" rel=\"noopener\" style=\"text-decoration: underline; color: #335dff;\" target=\"_blank\"><strong>Cloud-hosted Quick-start guide →</strong></a></p>\r\n												</div>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n\r\n			<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"row row-4\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f4f4f4;\" width=\"100%\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"row-content stack\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f9f9fb; border-radius: 0; color: #000000; width: 600px; margin: 0 auto;\" width=\"600\">\r\n							<tbody>\r\n								<tr>\r\n									<td class=\"column column-1\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400; text-align: left; padding-bottom: 5px; padding-top: 5px; vertical-align: top;\" width=\"100%\">\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"heading_block block-1\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt;\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"pad\" style=\"padding-bottom:10px;padding-left:40px;padding-right:40px;padding-top:30px;text-align:center;width:100%;\">\r\n												<h1 style=\"margin: 0; color: #17224f; direction: ltr; font-family: \'Inter\',\'Arial\'; font-size: 20px; font-weight: 600; letter-spacing: normal; line-height: 1.5; text-align: center; margin-top: 0; margin-bottom: 0; mso-line-height-alt: 30px;\">Take advantage of your free trial!</h1>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"paragraph_block block-2\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"pad\" style=\"padding-bottom:10px;padding-left:40px;padding-right:40px;padding-top:10px;\">\r\n												<div style=\"color:#202533;direction:ltr;font-family:\'Inter\',\'Arial\';font-size:16px;font-weight:300;letter-spacing:0px;line-height:1.8;text-align:left;mso-line-height-alt:29px;\">\r\n												<p style=\"margin: 0; margin-bottom: 16px;\"><strong>For the next 14 days, enjoy full access to TinyMCE’s most powerful features</strong> — including <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xd4/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\" style=\"text-decoration: underline; color: #335dff;\">PowerPaste</a>, <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xd7/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\" style=\"text-decoration: underline; color: #335dff;\">Spell Checker</a>, <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xdb/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\" style=\"text-decoration: underline; color: #335dff;\">Merge Tags</a>, <a\r\nhref=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xdf/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\" style=\"text-decoration: underline; color: #335dff;\">Comments</a>, and more. It’s your chance to test the editor’s full potential and see how it performs with your most complex use cases.</p>\r\n\r\n												<p style=\"margin: 0; margin-bottom: 16px;\">Plus, don’t miss out on our most popular premium add-ons:<a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xdj/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\" style=\"text-decoration: underline; color: #335dff;\" target=\"_self\">AI Assistant</a>, <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xdm/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\" style=\"text-decoration: underline; color: #335dff;\">Document Converters</a>, <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xdq/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\" style=\"text-decoration: underline; color: #335dff;\" target=\"_self\">Revision History</a>, <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xdt/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\"\r\nstyle=\"text-decoration: underline; color: #335dff;\" target=\"_self\">Suggested Edits</a>, and <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xdx/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\" style=\"text-decoration: underline; color: #335dff;\" target=\"_self\">Image Optimizer</a> — all available to try free for 14 days.</p>\r\n\r\n												<p style=\"margin: 0;\">After the 14-day trial, you\'ll have the option to <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xf1/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\" rel=\"noopener\" style=\"text-decoration: underline; color: #335dff;\" target=\"_blank\">upgrade</a> or stay on our free plan.</p>\r\n												</div>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"paragraph_block block-3\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"pad\" style=\"padding-bottom:40px;padding-left:40px;padding-right:40px;padding-top:10px;\">\r\n												<div style=\"color:#202533;direction:ltr;font-family:\'Inter\',\'Arial\';font-size:14px;font-weight:200;letter-spacing:0px;line-height:1.8;text-align:left;mso-line-height-alt:25px;\">\r\n												<p style=\"margin: 0;\">Please note that our Free Plan is limited to 1,000 editor loads per month. If you exceed this monthly limit, you’ll automatically be charged $40 USD for every block of 1,000 editor loads you go over. To learn more about our usage-based billing model and how to track your editor loads, <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xf4/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\" style=\"text-decoration: underline; color: #335dff;\">visit our FAQ</a>.</p>\r\n												</div>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n\r\n			<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"row row-5\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f4f4f4;\" width=\"100%\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"row-content stack\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #0c132c; border-radius: 0; color: #000000; width: 600px; margin: 0 auto;\" width=\"600\">\r\n							<tbody>\r\n								<tr>\r\n									<td class=\"column column-1\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400; text-align: left; padding-bottom: 5px; padding-top: 5px; vertical-align: top;\" width=\"100%\">\r\n									<div class=\"spacer_block block-1\" style=\"height:40px;line-height:40px;font-size:1px;\"> </div>\r\n\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"icons_block block-2\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; text-align: center; line-height: 0;\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"pad\" style=\"vertical-align: middle; color: #000000; font-family: inherit; font-size: 14px; font-weight: 400; padding-left: 40px; padding-right: 40px; text-align: center;\">\r\n												<table cellpadding=\"0\" cellspacing=\"0\" class=\"icons-outer\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; display: inline-table;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"vertical-align: middle; text-align: center; padding-top: 5px; padding-bottom: 5px; padding-left: 10px; padding-right: 20px;\" class=\"\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xfb/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\" style=\"text-decoration: none;\" target=\"_self\"><img align=\"center\" alt=\"facebook\" class=\"icon\" height=\"auto\" src=\"https://pi.tiny.cloud/l/2202/2024-08-27/dhld41/2202/1724751073mZ9u0qBj/icons8_facebook_96.png\" style=\"display: block; height: auto; margin: 0 auto; border: 0;\" width=\"32\"></a></td>\r\n															<td style=\"vertical-align: middle; text-align: center; padding-top: 5px; padding-bottom: 5px; padding-left: 20px; padding-right: 20px;\" class=\"\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xff/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\" style=\"text-decoration: none;\" target=\"_self\"><img align=\"center\" alt=\"twitter\" class=\"icon\" height=\"auto\" src=\"https://pi.tiny.cloud/l/2202/2024-08-27/dhld54/2202/17247512213yTqKMau/Twitter_X_icon_white.png\" style=\"display: block; height: auto; margin: 0 auto; border: 0;\" width=\"32\"></a></td>\r\n															<td style=\"vertical-align: middle; text-align: center; padding-top: 5px; padding-bottom: 5px; padding-left: 20px; padding-right: 20px;\" class=\"\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xfj/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\" style=\"text-decoration: none;\" target=\"_self\"><img align=\"center\" alt=\"linkedin\" class=\"icon\" height=\"auto\" src=\"https://pi.tiny.cloud/l/2202/2024-08-27/dhld4m/2202/1724751160RDTHTZoS/icons8_linkedin_104.png\" style=\"display: block; height: auto; margin: 0 auto; border: 0;\" width=\"32\"></a></td>\r\n															<td style=\"vertical-align: middle; text-align: center; padding-top: 5px; padding-bottom: 5px; padding-left: 20px; padding-right: 20px;\" class=\"\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xfm/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\" style=\"text-decoration: none;\" target=\"_self\"><img align=\"center\" alt=\"stack overflow\" class=\"icon\" height=\"auto\" src=\"https://pi.tiny.cloud/l/2202/2024-08-27/dhld4x/2202/1724751181bzH3aYSZ/icons8_stack_overflow_100.png\" style=\"display: block; height: auto; margin: 0 auto; border: 0;\" width=\"32\"></a></td>\r\n															<td style=\"vertical-align: middle; text-align: center; padding-top: 5px; padding-bottom: 5px; padding-left: 20px; padding-right: 10px;\" class=\"\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xfq/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\" style=\"text-decoration: none;\" target=\"_self\"><img align=\"center\" alt=\"github\" class=\"icon\" height=\"auto\" src=\"https://pi.tiny.cloud/l/2202/2024-08-27/dhld4j/2202/1724751125SZG76c9m/icons8_github_96.png\" style=\"display: block; height: auto; margin: 0 auto; border: 0;\" width=\"32\"></a></td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"paragraph_block block-3\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"pad\" style=\"padding-bottom:20px;padding-left:40px;padding-right:40px;padding-top:20px;\">\r\n												<div style=\"color:#ffffff;direction:ltr;font-family:\'Inter\',\'Arial\';font-size:14px;font-weight:200;letter-spacing:0px;line-height:1.5;text-align:center;mso-line-height-alt:21px;\">\r\n												<p style=\"margin: 0;\">This email was sent to rick@mavrix.one<br>\r\n												<br>\r\n												Update your <a href=\"https://pi.tiny.cloud/emailPreference/epc/2202/OwooexGNC2EurXPJhSvAZVuY7krFh_sSRZUN3viuI9A/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864/1912781293\" style=\"text-decoration: underline; color: #fff;\">email preferences</a> or <a href=\"https://pi.tiny.cloud/unsubscribe/u/2202/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864/1912781293\" style=\"text-decoration: underline; color: #fff;\">unsubscribe</a><br>\r\n												<br>\r\n												© 2025 Tiny Technologies | All rights reserved<br>\r\n												www.tiny.cloud | View our <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xft/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\" style=\"text-decoration: underline; color: #fff;\">privacy policy</a><br>\r\n												2100 Geng Road, Palo Alto, CA 94303 USA</p>\r\n												</div>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n\r\n									<div class=\"spacer_block block-4\" style=\"height:40px;line-height:40px;font-size:1px;\"> </div>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n<!-- End -->\r\n<img alt=\"\" src=\"https://pi.tiny.cloud/r/2202/1/1912781293/open/1\" /></body>\r\n\r\n</html>','Activate your API key and start using TinyMCE inside your app\r\n\r\nIs this email not displaying correctly? View it in your browser (https://pi.tiny.cloud/webmail/2202/1912781293/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864)\r\n\r\n\r\n** Welcome to TinyMCE!\r\n------------------------------------------------------------\r\n \r\n Ready to get started?\r\n\r\nYou’re only a few steps away from getting TinyMCE up and running in your website or app:\r\n1. Log into (https://pi.tiny.cloud/e/2202/-campaign-onboarding-free-html/dk6xcx/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk) the Customer Portal\r\n2. Add the TinyMCE code snippet to your project (this snippet will contain your API key)\r\n3. Add your website or project URL to the “Approved Domains” section of the Customer Portal\r\n4. Start building! 🎉\r\n\r\nNeed more in-depth instructions?\r\nFollow one of our guides or simply forward this email to your developer.\r\nCloud-hosted Quick-start guide → (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xd1/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk)\r\n\r\n\r\n** Take advantage of your free trial!\r\n------------------------------------------------------------\r\n\r\nFor the next 14 days, enjoy full access to TinyMCE’s most powerful features — including PowerPaste (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xd4/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk) , Spell Checker (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xd7/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk) , Merge Tags (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xdb/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk) , Comments (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xdf/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk) , and more. It’s your chance to test the editor’s full potential and see how it performs with your most complex use cases.\r\n\r\nPlus, don’t miss out on our most popular premium add-ons:AI Assistant (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xdj/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk) , Document Converters (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xdm/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk) , Revision History (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xdq/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk) , Suggested Edits (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xdt/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk) , and Image Optimizer (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xdx/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk) — all available to try free for 14 days.\r\n\r\nAfter the 14-day trial, you\'ll have the option to upgrade (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xf1/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk) or stay on our free plan.\r\n\r\nPlease note that our Free Plan is limited to 1,000 editor loads per month. If you exceed this monthly limit, you’ll automatically be charged $40 USD for every block of 1,000 editor loads you go over. To learn more about our usage-based billing model and how to track your editor loads, visit our FAQ (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xf4/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk) .\r\n \r\n\r\nhttps://pi.tiny.cloud/e/2202/jointiny-/dc7czr/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\r\nhttps://pi.tiny.cloud/e/2202/jointiny/dc7czv/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\r\nhttps://pi.tiny.cloud/e/2202/company-jointiny-/dc7czy/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\r\nhttps://pi.tiny.cloud/e/2202/search-q-23tinymce/dc7d12/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\r\nhttps://pi.tiny.cloud/e/2202/tinymce/dc7d15/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\r\n\r\nThis email was sent to rick@mavrix.one\r\nUpdate your email preferences\r\nhttps://pi.tiny.cloud/emailPreference/epc/2202/OwooexGNC2EurXPJhSvAZVuY7krFh_sSRZUN3viuI9A/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864/1912781293\r\n or unsubscribe\r\nhttps://pi.tiny.cloud/unsubscribe/u/2202/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864/1912781293\r\n\r\n© 2025 Tiny Technologies | All rights reserved\r\nwww.tiny.cloud | View our privacy policy\r\nhttps://pi.tiny.cloud/e/2202/legal-privacy/dc7d18/1912781293/h/dx3z9mV3DfwP_khBsBzs9DxBzYOagfGGxRMG8hZ8rTk\r\n2100 Geng Road, Palo Alto, CA 94303 USA',0,0,0,0,0,0,'2025-11-27 12:37:31','2025-12-04 14:04:51','2025-12-04 14:04:51','2025-12-04 14:04:51',NULL,NULL,NULL),
(86,4,'<c9dec377-c3df-476b-8f9d-525b6ebcba5c@atl1s07mta3030.xt.local>',NULL,NULL,'Need help getting started with TinyMCE?','support@tiny.cloud','\"The TinyMCE Support Team\"','<!DOCTYPE html>\r\n<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" lang=\"en\">\r\n\r\n<head>\r\n	<title></title>\r\n	<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n	<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"><!--[if mso]>\r\n<xml><w:WordDocument xmlns:w=\"urn:schemas-microsoft-com:office:word\"><w:DontUseAdvancedTypographyReadingMail/></w:WordDocument>\r\n<o:OfficeDocumentSettings><o:PixelsPerInch>96</o:PixelsPerInch><o:AllowPNG/></o:OfficeDocumentSettings></xml>\r\n<![endif]--><!--[if !mso]><!-->\r\n	<link href=\"https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&amp;display=swap\" rel=\"stylesheet\" type=\"text/css\">\r\n	<link href=\"https://fonts.googleapis.com/css2?family=Fira+Code:wght@300..700&amp;display=swap\" rel=\"stylesheet\" type=\"text/css\"><!--<![endif]-->\r\n	<style>\r\n		* {\r\n			box-sizing: border-box;\r\n		}\r\n\r\n		body {\r\n			margin: 0;\r\n			padding: 0;\r\n		}\r\n\r\n		a[x-apple-data-detectors] {\r\n			color: inherit !important;\r\n			text-decoration: inherit !important;\r\n		}\r\n\r\n		#MessageViewBody a {\r\n			color: inherit;\r\n			text-decoration: none;\r\n		}\r\n\r\n		p {\r\n			line-height: inherit\r\n		}\r\n\r\n		.desktop_hide,\r\n		.desktop_hide table {\r\n			mso-hide: all;\r\n			display: none;\r\n			max-height: 0px;\r\n			overflow: hidden;\r\n		}\r\n\r\n		.image_block img+div {\r\n			display: none;\r\n		}\r\n\r\n		sup,\r\n		sub {\r\n			font-size: 75%;\r\n			line-height: 0;\r\n		}\r\n\r\n		#converted-body .list_block ul,\r\n		#converted-body .list_block ol,\r\n		.body [class~=\"x_list_block\"] ul,\r\n		.body [class~=\"x_list_block\"] ol,\r\n		u+.body .list_block ul,\r\n		u+.body .list_block ol {\r\n			padding-left: 20px;\r\n		}\r\n\r\n		@media (max-width:620px) {\r\n			.desktop_hide table.icons-outer {\r\n				display: inline-table !important;\r\n			}\r\n\r\n			.mobile_hide {\r\n				display: none;\r\n			}\r\n\r\n			.row-content {\r\n				width: 100% !important;\r\n			}\r\n\r\n			.stack .column {\r\n				width: 100%;\r\n				display: block;\r\n			}\r\n\r\n			.mobile_hide {\r\n				min-height: 0;\r\n				max-height: 0;\r\n				max-width: 0;\r\n				overflow: hidden;\r\n				font-size: 0px;\r\n			}\r\n\r\n			.desktop_hide,\r\n			.desktop_hide table {\r\n				display: table !important;\r\n				max-height: none !important;\r\n			}\r\n		}\r\n	</style><!--[if mso ]><style>sup, sub { font-size: 100% !important; } sup { mso-text-raise:10% } sub { mso-text-raise:-10% }</style> <![endif]-->\r\n</head>\r\n\r\n<body class=\"body\" style=\"background-color: #ffffff; margin: 0; padding: 0; -webkit-text-size-adjust: none; text-size-adjust: none;\">\r\n	<table class=\"nl-container\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #ffffff;\">\r\n		<tbody>\r\n			<tr>\r\n				<td>\r\n					<table class=\"row row-1\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f4f4f4;\">\r\n						<tbody>\r\n							<tr>\r\n								<td>\r\n									<table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f4f4f4; border-radius: 0; color: #000000; width: 600px; margin: 0 auto;\" width=\"600\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400; text-align: left; vertical-align: top;\">\r\n													<table class=\"paragraph_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;\">\r\n														<tr>\r\n															<td class=\"pad\" style=\"padding-bottom:10px;padding-left:40px;padding-right:40px;padding-top:10px;\">\r\n																<div style=\"color:#233477;direction:ltr;font-family:\'Inter\',\'Arial\';font-size:14px;font-weight:300;letter-spacing:0px;line-height:1.5;text-align:center;mso-line-height-alt:21px;\">\r\n																	<p style=\"margin: 0;\">Is this email not displaying correctly? <a href=\"https://pi.tiny.cloud/webmail/2202/1916976913/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864\" style=\"text-decoration: underline; color: #335dff;\">View it in your browser</a></p>\r\n																</div>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n								</td>\r\n							</tr>\r\n						</tbody>\r\n					</table>\r\n					<table class=\"row row-2\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f4f4f4;\">\r\n						<tbody>\r\n							<tr>\r\n								<td>\r\n									<table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #fff; border-radius: 0; color: #000000; width: 600px; margin: 0 auto;\" width=\"600\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400; text-align: left; padding-bottom: 5px; padding-top: 5px; vertical-align: top;\">\r\n													<table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt;\">\r\n														<tr>\r\n															<td class=\"pad\" style=\"padding-bottom:20px;padding-left:40px;padding-right:40px;padding-top:30px;width:100%;\">\r\n																<div class=\"alignment\" align=\"left\">\r\n																	<div style=\"max-width: 90px;\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xnx/1916976913/h/gAhxWSZ6Dw8ZrVk1AqhQRfk3wV8GhfWoG42RRqGvqSg\" target=\"_blank\"><img src=\"https://www2.ephox.com/l/2202/2021-02-22/d55tdv/2202/16140490780zkI7GHy/logo_tiny__lock_secondary.png\" style=\"display: block; height: auto; border: 0; width: 100%;\" width=\"90\" alt=\"Tiny logo\" title=\"Tiny logo\" height=\"auto\"></a></div>\r\n																</div>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n								</td>\r\n							</tr>\r\n						</tbody>\r\n					</table>\r\n					<table class=\"row row-3\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f4f4f4;\">\r\n						<tbody>\r\n							<tr>\r\n								<td>\r\n									<table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #fff; border-radius: 0; color: #000000; width: 600px; margin: 0 auto;\" width=\"600\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400; text-align: left; padding-bottom: 5px; padding-top: 5px; vertical-align: top;\">\r\n													<table class=\"paragraph_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;\">\r\n														<tr>\r\n															<td class=\"pad\" style=\"padding-bottom:10px;padding-left:40px;padding-right:40px;padding-top:10px;\">\r\n																<div style=\"color:#202533;direction:ltr;font-family:\'Inter\',\'Arial\';font-size:16px;font-weight:200;letter-spacing:0px;line-height:1.8;text-align:left;mso-line-height-alt:29px;\">\r\n																	<p style=\"margin: 0;\">Hi Rick,<br><br>Allow me to introduce myself – I\'m Michael, TinyMCE\'s VP of Customer Success.<br><br>One of the benefits included in your 14-day FREE trial, is full access to our US-based support team. We\'re here to help you navigate all things TinyMCE, so please don\'t hesitate to submit a support request if you\'re having any challenges.</p>\r\n																</div>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n													<table class=\"button_block block-2\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt;\">\r\n														<tr>\r\n															<td class=\"pad\" style=\"padding-bottom:30px;padding-left:40px;padding-right:40px;padding-top:10px;text-align:left;\">\r\n																<div class=\"alignment\" align=\"left\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xp1/1916976913/h/gAhxWSZ6Dw8ZrVk1AqhQRfk3wV8GhfWoG42RRqGvqSg\" target=\"_blank\" style=\"color:#ffffff;text-decoration:none;\"><!--[if mso]>\r\n<v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\"  href=\"https://support.tiny.cloud/hc/en-us/?_ga=2.21070523.1869188763.1678152539-1987605419.1678152539&utm_medium=email&utm_source=email&utm_campaign=onboarding_free\"  style=\"height:46px;width:300px;v-text-anchor:middle;\" arcsize=\"0%\" fillcolor=\"#335dff\">\r\n<v:stroke dashstyle=\"Solid\" weight=\"0px\" color=\"#335dff\"/>\r\n<w:anchorlock/>\r\n<v:textbox inset=\"0px,0px,0px,0px\">\r\n<center dir=\"false\" style=\"color:#ffffff;font-family:sans-serif;font-size:16px\">\r\n<![endif]--><span class=\"button\" style=\"background-color: #335dff; border-bottom: 0px solid transparent; border-left: 0px solid transparent; border-radius: 0px; border-right: 0px solid transparent; border-top: 0px solid transparent; color: #ffffff; display: inline-block; font-family: \'Fira Code\',\'Arial\'; font-size: 16px; font-weight: 500; mso-border-alt: none; padding-bottom: 7px; padding-top: 7px; padding-left: 22px; padding-right: 22px; text-align: center; width: auto; word-break: keep-all; letter-spacing: normal;\"><span style=\"word-break: break-word; line-height: 32px;\">Submit a support request →</span></span><!--[if mso]></center></v:textbox></v:roundrect><![endif]--></a></div>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n								</td>\r\n							</tr>\r\n						</tbody>\r\n					</table>\r\n					<table class=\"row row-4\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f4f4f4;\">\r\n						<tbody>\r\n							<tr>\r\n								<td>\r\n									<table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f9f9fb; border-radius: 0; color: #000000; width: 600px; margin: 0 auto;\" width=\"600\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400; text-align: left; padding-bottom: 5px; padding-top: 5px; vertical-align: top;\">\r\n													<table class=\"paragraph_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;\">\r\n														<tr>\r\n															<td class=\"pad\" style=\"padding-bottom:10px;padding-left:40px;padding-right:40px;padding-top:30px;\">\r\n																<div style=\"color:#202533;direction:ltr;font-family:\'Inter\',\'Arial\';font-size:16px;font-weight:200;letter-spacing:0px;line-height:1.8;text-align:left;mso-line-height-alt:29px;\">\r\n																	<p style=\"margin: 0;\"><strong>Have you added the TinyMCE code snippet?</strong></p>\r\n																</div>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n													<table class=\"list_block block-2\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word; color: #202533; direction: ltr; font-family: \'Inter\',\'Arial\'; font-size: 16px; font-weight: 200; letter-spacing: 0px; line-height: 1.8; text-align: left; mso-line-height-alt: 29px;\">\r\n														<tr>\r\n															<td class=\"pad\" style=\"padding-bottom:10px;padding-left:60px;padding-right:40px;padding-top:10px;\">\r\n																<div style=\"margin-left:-20px\">\r\n																	<ul start=\"1\" style=\"margin-top: 0; margin-bottom: 0; list-style-type: revert;\">\r\n																		<li style=\"Margin: 0 0 0 0;\"><a href=\"https://pi.tiny.cloud/e/2202/-campaign-onboarding-free-html/dk6xnq/1916976913/h/gAhxWSZ6Dw8ZrVk1AqhQRfk3wV8GhfWoG42RRqGvqSg\" target=\"_blank\" style=\"text-decoration: underline; color: #335dff;\" rel=\"noopener\">Log into the Customer Portal</a></li>\r\n																		<li style=\"Margin: 0 0 0 0;\">Add the TinyMCE code snippet to your project (this snippet will contain your API key)</li>\r\n																		<li style=\"Margin: 0 0 0 0;\">Add your website or project URL to the \"Approved Domains\" section of the Customer Portal</li>\r\n																		<li style=\"Margin: 0 0 0 0;\">Start building! 🎉</li>\r\n																	</ul>\r\n																</div>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n													<table class=\"paragraph_block block-3\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;\">\r\n														<tr>\r\n															<td class=\"pad\" style=\"padding-bottom:20px;padding-left:40px;padding-right:40px;padding-top:10px;\">\r\n																<div style=\"color:#202533;direction:ltr;font-family:\'Inter\',\'Arial\';font-size:16px;font-weight:200;letter-spacing:0px;line-height:1.8;text-align:left;mso-line-height-alt:29px;\">\r\n																	<p style=\"margin: 0;\"><strong>Get started with TinyMCE in under two minutes!</strong></p>\r\n																</div>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n													<table class=\"image_block block-4\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt;\">\r\n														<tr>\r\n															<td class=\"pad\" style=\"padding-bottom:40px;padding-left:40px;padding-right:40px;padding-top:5px;width:100%;\">\r\n																<div class=\"alignment\" align=\"center\">\r\n																	<div style=\"max-width: 520px;\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xp4/1916976913/h/gAhxWSZ6Dw8ZrVk1AqhQRfk3wV8GhfWoG42RRqGvqSg\" target=\"_blank\"><img src=\"https://pi.tiny.cloud/l/2202/2025-08-06/dk6xm1/2202/1754474433kSFRYfpH/under_2_minutes.png\" style=\"display: block; height: auto; border: 0; width: 100%;\" width=\"520\" alt=\"Video: Set up TinyMCE in under 2 minutes\" title=\"Video: Set up TinyMCE in under 2 minutes\" height=\"auto\"></a></div>\r\n																</div>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n								</td>\r\n							</tr>\r\n						</tbody>\r\n					</table>\r\n					<table class=\"row row-5\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f4f4f4;\">\r\n						<tbody>\r\n							<tr>\r\n								<td>\r\n									<table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #0c132c; border-radius: 0; color: #000000; width: 600px; margin: 0 auto;\" width=\"600\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400; text-align: left; padding-bottom: 5px; padding-top: 5px; vertical-align: top;\">\r\n													<div class=\"spacer_block block-1\" style=\"height:40px;line-height:40px;font-size:1px;\">&#8202;</div>\r\n													<table class=\"icons_block block-2\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; text-align: center; line-height: 0;\">\r\n														<tr>\r\n															<td class=\"pad\" style=\"vertical-align: middle; color: #000000; font-family: inherit; font-size: 14px; font-weight: 400; padding-left: 40px; padding-right: 40px; text-align: center;\">\r\n																<table class=\"icons-outer\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; display: inline-table;\">\r\n																	<tr>\r\n																		<td style=\"vertical-align: middle; text-align: center; padding-top: 5px; padding-bottom: 5px; padding-left: 10px; padding-right: 20px;\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xp7/1916976913/h/gAhxWSZ6Dw8ZrVk1AqhQRfk3wV8GhfWoG42RRqGvqSg\" target=\"_self\" style=\"text-decoration: none;\"><img class=\"icon\" src=\"https://pi.tiny.cloud/l/2202/2024-08-27/dhld41/2202/1724751073mZ9u0qBj/icons8_facebook_96.png\" alt=\"facebook\" height=\"auto\" width=\"32\" align=\"center\" style=\"display: block; height: auto; margin: 0 auto; border: 0;\"></a></td>\r\n																		<td style=\"vertical-align: middle; text-align: center; padding-top: 5px; padding-bottom: 5px; padding-left: 20px; padding-right: 20px;\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xpb/1916976913/h/gAhxWSZ6Dw8ZrVk1AqhQRfk3wV8GhfWoG42RRqGvqSg\" target=\"_self\" style=\"text-decoration: none;\"><img class=\"icon\" src=\"https://pi.tiny.cloud/l/2202/2024-08-27/dhld54/2202/17247512213yTqKMau/Twitter_X_icon_white.png\" alt=\"twitter\" height=\"auto\" width=\"32\" align=\"center\" style=\"display: block; height: auto; margin: 0 auto; border: 0;\"></a></td>\r\n																		<td style=\"vertical-align: middle; text-align: center; padding-top: 5px; padding-bottom: 5px; padding-left: 20px; padding-right: 20px;\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xpf/1916976913/h/gAhxWSZ6Dw8ZrVk1AqhQRfk3wV8GhfWoG42RRqGvqSg\" target=\"_self\" style=\"text-decoration: none;\"><img class=\"icon\" src=\"https://pi.tiny.cloud/l/2202/2024-08-27/dhld4m/2202/1724751160RDTHTZoS/icons8_linkedin_104.png\" alt=\"linkedin\" height=\"auto\" width=\"32\" align=\"center\" style=\"display: block; height: auto; margin: 0 auto; border: 0;\"></a></td>\r\n																		<td style=\"vertical-align: middle; text-align: center; padding-top: 5px; padding-bottom: 5px; padding-left: 20px; padding-right: 20px;\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xpj/1916976913/h/gAhxWSZ6Dw8ZrVk1AqhQRfk3wV8GhfWoG42RRqGvqSg\" target=\"_self\" style=\"text-decoration: none;\"><img class=\"icon\" src=\"https://pi.tiny.cloud/l/2202/2024-08-27/dhld4x/2202/1724751181bzH3aYSZ/icons8_stack_overflow_100.png\" alt=\"stack overflow\" height=\"auto\" width=\"32\" align=\"center\" style=\"display: block; height: auto; margin: 0 auto; border: 0;\"></a></td>\r\n																		<td style=\"vertical-align: middle; text-align: center; padding-top: 5px; padding-bottom: 5px; padding-left: 20px; padding-right: 10px;\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xpm/1916976913/h/gAhxWSZ6Dw8ZrVk1AqhQRfk3wV8GhfWoG42RRqGvqSg\" target=\"_self\" style=\"text-decoration: none;\"><img class=\"icon\" src=\"https://pi.tiny.cloud/l/2202/2024-08-27/dhld4j/2202/1724751125SZG76c9m/icons8_github_96.png\" alt=\"github\" height=\"auto\" width=\"32\" align=\"center\" style=\"display: block; height: auto; margin: 0 auto; border: 0;\"></a></td>\r\n																	</tr>\r\n																</table>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n													<table class=\"paragraph_block block-3\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;\">\r\n														<tr>\r\n															<td class=\"pad\" style=\"padding-bottom:20px;padding-left:40px;padding-right:40px;padding-top:20px;\">\r\n																<div style=\"color:#ffffff;direction:ltr;font-family:\'Inter\',\'Arial\';font-size:14px;font-weight:200;letter-spacing:0px;line-height:1.5;text-align:center;mso-line-height-alt:21px;\">\r\n																	<p style=\"margin: 0;\">This email was sent to rick@mavrix.one<br><br>Update your <a href=\"https://pi.tiny.cloud/emailPreference/epc/2202/2_9lXLUkdcfHuO_vk6yjhJIo30xuraj6Zc_PHvmLPaU/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864/1916976913\" style=\"text-decoration: underline; color: #fff;\">email preferences</a> or <a href=\"https://pi.tiny.cloud/unsubscribe/u/2202/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864/1916976913\" style=\"text-decoration: underline; color: #fff;\">unsubscribe</a><br><br>© 2025 Tiny Technologies | All rights reserved<br>www.tiny.cloud | View our <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xpq/1916976913/h/gAhxWSZ6Dw8ZrVk1AqhQRfk3wV8GhfWoG42RRqGvqSg\" style=\"text-decoration: underline; color: #fff;\">privacy policy</a><br>2100 Geng Road, Palo Alto, CA 94303 USA</p>\r\n																</div>\r\n															</td>\r\n														</tr>\r\n													</table>\r\n													<div class=\"spacer_block block-4\" style=\"height:40px;line-height:40px;font-size:1px;\">&#8202;</div>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n								</td>\r\n							</tr>\r\n						</tbody>\r\n					</table>\r\n				</td>\r\n			</tr>\r\n		</tbody>\r\n	</table><!-- End -->\r\n<img alt=\"\" src=\"https://pi.tiny.cloud/r/2202/1/1916976913/open/1\" /></body>\r\n\r\n</html>','\r\nIn case you need help getting started\r\n\r\nhttps://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dc7d1c/1916976913/h/gAhxWSZ6Dw8ZrVk1AqhQRfk3wV8GhfWoG42RRqGvqSg\r\n\r\n\r\nHi Rick,\r\n\r\nAllow me to introduce myself – I\'m Michael, TinyMCE\'s VP of Customer Success.\r\n\r\nOne of the benefits included in your 14-day FREE trial, is full access to our US-based support team. We\'re here to help you navigate all things TinyMCE, so please don\'t hesitate to submit a support request if you\'re having any challenges.\r\nSubmit a support request → (https://pi.tiny.cloud/e/2202/78152539-1987605419-1678152539/dc7d1g/1916976913/h/gAhxWSZ6Dw8ZrVk1AqhQRfk3wV8GhfWoG42RRqGvqSg)\r\n\r\nHave you added the TinyMCE code snippet?\r\n* Log into the Customer Portal (https://pi.tiny.cloud/e/2202/-campaign-onboarding-free-html/dk6xnq/1916976913/h/gAhxWSZ6Dw8ZrVk1AqhQRfk3wV8GhfWoG42RRqGvqSg)\r\n* Add the TinyMCE code snippet to your project (this snippet will contain your API key)\r\n* Add your website or project URL to the \"Approved Domains\" section of the Customer Portal\r\n* Start building! 🎉\r\n\r\nGet started with TinyMCE in under two minutes!\r\nhttps://pi.tiny.cloud/e/2202/PofZbdLbASE-feature-shared/dk6xnt/1916976913/h/gAhxWSZ6Dw8ZrVk1AqhQRfk3wV8GhfWoG42RRqGvqSg\r\n\r\nhttps://pi.tiny.cloud/e/2202/jointiny-/dc7d1k/1916976913/h/gAhxWSZ6Dw8ZrVk1AqhQRfk3wV8GhfWoG42RRqGvqSg\r\nhttps://pi.tiny.cloud/e/2202/jointiny/dc7d1n/1916976913/h/gAhxWSZ6Dw8ZrVk1AqhQRfk3wV8GhfWoG42RRqGvqSg\r\nhttps://pi.tiny.cloud/e/2202/company-jointiny-/dc7d1r/1916976913/h/gAhxWSZ6Dw8ZrVk1AqhQRfk3wV8GhfWoG42RRqGvqSg\r\nhttps://pi.tiny.cloud/e/2202/search-q-23tinymce/dc7d1v/1916976913/h/gAhxWSZ6Dw8ZrVk1AqhQRfk3wV8GhfWoG42RRqGvqSg\r\nhttps://pi.tiny.cloud/e/2202/tinymce/dc7d1y/1916976913/h/gAhxWSZ6Dw8ZrVk1AqhQRfk3wV8GhfWoG42RRqGvqSg\r\n\r\nThis email was sent to rick@mavrix.one\r\nUpdate your email preferences\r\nhttps://pi.tiny.cloud/emailPreference/epc/2202/2_9lXLUkdcfHuO_vk6yjhJIo30xuraj6Zc_PHvmLPaU/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864/1916976913\r\n or unsubscribe\r\nhttps://pi.tiny.cloud/unsubscribe/u/2202/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864/1916976913\r\n\r\n2025 Tiny Technologies | All rights reserved\r\nwww.tiny.cloud | View our privacy policy: https://pi.tiny.cloud/e/2202/legal-privacy/dc7d22/1916976913/h/gAhxWSZ6Dw8ZrVk1AqhQRfk3wV8GhfWoG42RRqGvqSg\r\n2100 Geng Road, Palo Alto, CA 94303 USA',0,0,0,0,0,0,'2025-11-29 12:50:15','2025-12-04 14:04:51','2025-12-04 14:04:51','2025-12-04 14:04:51',NULL,NULL,NULL),
(87,4,'<96471B41-CC7C-4A42-BC24-BF0DF151EED5@lithiumbatterycompany.com>',NULL,NULL,'***SPAM***  Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<html><head><meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\"></head><body dir=\"auto\">Hi James,<div><br></div><div>I am out of town as well. &nbsp;How does your Wednesday look?&nbsp;</div><div><br></div><div>Looking forward to catching up.</div><div><br></div><div><br id=\"lineBreakAtBeginningOfSignature\"><div dir=\"ltr\"><p style=\"margin: 0in;\"><span style=\"background-color: rgba(255, 255, 255, 0);\">Jordan G. Wroblewski</span></p><p style=\"margin: 0in;\"><span style=\"background-color: rgba(255, 255, 255, 0);\">Partner | President&nbsp;<br></span></p><p style=\"margin: 0in;\"><span style=\"background-color: rgba(255, 255, 255, 0);\">Lithium Battery Company</span></p><p style=\"margin: 0in;\"><span style=\"background-color: rgba(255, 255, 255, 0);\">Direct:&nbsp;<span dir=\"ltr\">(917) 266-5336</span><br></span></p><p style=\"margin: 0in;\"><u style=\"background-color: rgba(255, 255, 255, 0);\">jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"margin: 0px;\">@lithiumbatterycompany.com</a></u></p><p style=\"margin: 0in;\"><a href=\"http://lithiumbatterycompany.com/\" target=\"_blank\" style=\"caret-color: rgb(255, 255, 255); background-color: rgba(255, 255, 255, 0);\"><font color=\"#ffffff\">Lithium Battery Company</font></a></p><p style=\"margin: 0in;\"></p><p style=\"margin: 0in;\"></p></div><div dir=\"ltr\"><br><blockquote type=\"cite\">On Oct 16, 2025, at 9:20 AM, James Trevey &lt;jtrevey@forgenano.com&gt; wrote:<br><br></blockquote></div><blockquote type=\"cite\"><div dir=\"ltr\">﻿\r\n\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n\r\n\r\n\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nHey Jordan,</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nApologies for the slow/no replies recently. Travel has been brutal.&nbsp;</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nWe\'ve got a lot of the information ready for you. Can we schedule a call to do a walk through on Monday the 20th at 9am or 10am ET?</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nJames</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt;<br>\r\n<b>Sent:</b> Thursday, October 16, 2025 9:16 AM<br>\r\n<b>To:</b> James Trevey &lt;jtrevey@forgenano.com&gt;<br>\r\n<b>Cc:</b> Daniel &lt;dansheridanmusic@gmail.com&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;nathan@lithiumbatterycompany.com&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div dir=\"auto\">Hi James,\r\n<div><br>\r\n</div>\r\n<div>Would be great to get some pricing and spec sheets.&nbsp;</div>\r\n<div><br>\r\n</div>\r\n<div>Let me know when we can connect.&nbsp;</div>\r\n<div><br>\r\n</div>\r\n<div>Best,</div>\r\n<div><br id=\"x_lineBreakAtBeginningOfSignature\">\r\n<div dir=\"ltr\">\r\n<p style=\"margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Jordan G. Wroblewski</span></p>\r\n<p style=\"margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Partner | President&nbsp;<br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Lithium Battery Company</span></p>\r\n<p style=\"margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Direct:&nbsp;<span dir=\"ltr\">(917) 266-5336</span><br>\r\n</span></p>\r\n<p style=\"margin:0in\"><u style=\"background-color:rgba(255,255,255,0)\">jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"margin:0px\">@lithiumbatterycompany.com</a></u></p>\r\n<p style=\"margin:0in\"><a href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com%2f&amp;c=E,1,kruzcWrtQAWBE_Wzkk5ZCPi8egnieSOSjhsFO2fIO_mt3sy1dInRgNFjLY-Xwbk4dmY7rgbxINSGlle76-Yg-vEcypX9dPm0sX9KSwuuDZUbmg,,&amp;typo=1\" target=\"_blank\" style=\"background-color:rgba(255,255,255,0)\"><font color=\"#ffffff\">Lithium\r\n Battery Company</font></a></p>\r\n<p style=\"margin:0in\"></p>\r\n<p style=\"margin:0in\"></p>\r\n</div>\r\n<div dir=\"ltr\"><br>\r\n<blockquote type=\"cite\">On Sep 30, 2025, at 4:31 PM, Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt; wrote:<br>\r\n<br>\r\n</blockquote>\r\n</div>\r\n<blockquote type=\"cite\">\r\n<div dir=\"ltr\">﻿\r\n<div dir=\"ltr\">\r\n<div dir=\"ltr\">\r\n<div>Hi James,</div>\r\n<div><br>\r\n</div>\r\n<div>\r\n<div>\r\n<div>I have attached a prospective cell demand schedule (subject to change) but two of your battery types should meet the requirements for some of our future projects.</div>\r\n</div>\r\n<div><br>\r\n</div>\r\n</div>\r\n<div>Looking forward to our discussion and seeing your deck of prospective projects.&nbsp;&nbsp;</div>\r\n<div><br>\r\n</div>\r\n<div>Best,&nbsp;</div>\r\n<div>\r\n<div dir=\"ltr\" class=\"x_gmail_signature\">\r\n<div dir=\"ltr\">\r\n<p style=\"margin:0in\"><span style=\"color:black; font-family:Arial,sans-serif\"><br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"color:black; font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;<br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336<br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,KG7OlMyZO9jbLU5vTJ3I8lMhBaHdNf06-ktzHMDOUSoCImrfUczbXUj1d1VcQUh_ApKsyrkLO9FO7PzcinsYewUWoskpuT9EKlrhqSI22A,,&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n<br>\r\n</div>\r\n<br>\r\n<div class=\"x_gmail_quote x_gmail_quote_container\">\r\n<div dir=\"ltr\" class=\"x_gmail_attr\">On Fri, Sep 26, 2025 at 4:59 PM James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\">jtrevey@forgenano.com</a>&gt; wrote:<br>\r\n</div>\r\n<blockquote class=\"x_gmail_quote\" style=\"margin:0px 0px 0px 0.8ex; border-left:1px solid rgb(204,204,204); padding-left:1ex\">\r\n<div class=\"x_msg7859046138643783182\">\r\n<div dir=\"ltr\">\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nJordan,</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nI won\'t be able to send the deck today. Still waiting on a few spec sheets approval and validation of production capability for a few products.&nbsp;</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nI\'ll send to you as soon as I can next week.</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nJames</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"x_m_7859046138643783182appendonsend\"></div>\r\n<div><br>\r\n</div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<hr style=\"display:inline-block; width:98%\">\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<b>From:</b>&nbsp;James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Wednesday, September 24, 2025 10:49 AM<br>\r\n<b>To:</b>&nbsp;Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Daniel &lt;<a href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration </div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nJordan,</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nUnfortunately, there is not a large prismatic on our list. I could potentially license a design to make one, but it would take a lot of coordinating.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nIt would be super helpful if you are able to compile a deck for us which has your prospective cell demand schedule now and for the next few years, as well as what your qualification schedule looks like (maybe program based?). Maybe by cell type?</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nI also have a verbal matter we can discuss soon. Once I\'ve got the deck ready I\'ll find time for a short call with you.</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nTalk soon.</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nJames</div>\r\n<div id=\"x_m_7859046138643783182x_appendonsend\"></div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div id=\"x_m_7859046138643783182x_divRplyFwdMsg\">\r\n<div style=\"direction:ltr\"><span style=\"font-family:Calibri,sans-serif; font-size:11pt; color:black\"><b>From:</b>&nbsp;Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Wednesday, September 24, 2025 10:07 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Daniel &lt;<a href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</span>\r\n</div>\r\n<div style=\"direction:ltr\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Thank you for the follow up.&nbsp; You were on my list to contact today!&nbsp;&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Would that additional product list include a prismatic cell? I have a client who needs 150MWh a year and they want a domestic 314Ah cell...</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I will let you know if I will be able to make it up to Detroit for The Battery Show.&nbsp;&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Looking forward to seeing the deck.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">All the best,&nbsp;</div>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; color:black\"><br>\r\n</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;<br>\r\n</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336<br>\r\n</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a id=\"x_m_7859046138643783182OWA90d54842-2faf-de90-7a8d-72df2faa57c2\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a id=\"x_m_7859046138643783182OWA0e5fa4bd-9870-58c4-8622-78d4cf24a810\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,gaCrzh0c6vf3xrQnIV3wewtXq9rWWeR48E_n_c-GXYJRq4KPID4S6W16xl_tTj6ds_KN0rSCRW6viw-N3O2-Uh_xCrEg2Jjf_WqGdCNA3gQ,&amp;typo=1\" target=\"_blank\" style=\"margin-top:0px; margin-bottom:0px\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Wed, Sep 24, 2025 at 11:59 AM James Trevey &lt;<a id=\"x_m_7859046138643783182OWAb7c381dc-96e5-45d0-b93e-e2aa9a01935f\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:<br>\r\n</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex; padding-left:1ex; border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nHey Jordan,</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nThank you for the quick follow up.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nI am working on a compiled deck for you to address the below requests and aiming for end of this week. After speaking with my team, we\'ve decided we\'d like to provide information on additional products to you which are typically not on the menu but I have details\r\n to sort first.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nRegarding shows, happy to discuss when ready. We\'ll be at The Battery Show in 2 weeks, which I think you should consider attending and I\'d be happy to connect while there.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nJames</div>\r\n<div id=\"x_m_7859046138643783182x_x_m_-6814561645313625911appendonsend\"></div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div id=\"x_m_7859046138643783182x_x_m_-6814561645313625911divRplyFwdMsg\">\r\n<div style=\"direction:ltr\"><span style=\"font-family:Calibri,sans-serif; font-size:11pt; color:black\"><b>From:</b>&nbsp;Jordan Wroblewski &lt;<a id=\"x_m_7859046138643783182OWAb0d22678-bda4-9932-d0a1-907e851cab2c\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Thursday, September 18, 2025 11:03 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a id=\"x_m_7859046138643783182OWAe81f39b0-ec24-b743-ca24-424e13107033\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Daniel &lt;<a id=\"x_m_7859046138643783182OWA96c03181-9c79-378c-c150-ff2be9067492\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"x_m_7859046138643783182OWA2cb5ce13-d9cd-8a95-6b1c-85d355dafacd\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</span>\r\n</div>\r\n<div style=\"direction:ltr\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Thank you for continuing discussions regarding our strategic partnership. As we prepare for module and pack production to support your battery cell needs, we would appreciate your assistance in providing several key pieces of information\r\n to optimize our collaboration and planning:<br>\r\n<br>\r\nPlease share detailed volume forecasts for each cell type (e.g., 18650, 21700) you expect to require over the next 1–5 years, broken out by project or customer segment where feasible.<br>\r\n<br>\r\nIndicate your anticipated ramp-up schedule for sample, engineering, and production volumes to help us align our development and manufacturing timelines.<br>\r\n<br>\r\nIdentify any major offtake agreements, anchor customers, or significant opportunities in your commercial pipeline that could impact forecasted demand for modules or packs.<br>\r\n<br>\r\nOutline target applications (energy storage, drones, EVs, DOD, etc.) and specify any technical or certification requirements for modules/packs related to these segments.<br>\r\n<br>\r\nClarify your minimum order quantities and expected pricing for each product line.<br>\r\n<br>\r\nPlease also provide information about any flexibility in volume commitments that may be necessary in case project requirements or customer needs adjust mid-term.<br>\r\n<br>\r\nImportantly, we would like to request information on any current or forthcoming cells with a minimum continuous discharge rating of 15C or higher. For these cells, please provide specifications, target applications, anticipated volume requirements, forecasted\r\n commercial timelines, and expected pricing.<br>\r\n<br>\r\nAdditionally, for reference, these are LBC’s most popular cells we\'ve made module and packs for:<br>\r\n<br>\r\n18650:<br>\r\n<br>\r\nNMC: TNL-ITR18650-2600P<br>\r\n<br>\r\nLFP: SW18650-26HPA<br>\r\n<br>\r\nLFP: IFR18650-2000mAh<br>\r\n<br>\r\n21700:<br>\r\n<br>\r\nNMC: INR21700-50S<br>\r\n<br>\r\nNMC: INR21700-4000<br>\r\n<br>\r\nProviding this information will enable LBC to ensure maximum alignment, timely scale-up, and the most competitive solutions to support your growth across all high-value sectors.\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">In terms of the shows you mentioned, we are getting our schedules aligned so we can attend.&nbsp; What\'s the \"secret meeting\" in Nov?&nbsp;<br>\r\n<br>\r\nWe look forward to your prompt response so we can efficiently move to the next stages.\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Talk soon,&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;<br>\r\n</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336<br>\r\n</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a id=\"x_m_7859046138643783182OWAa894c5d9-0741-6243-3e0e-449171223bec\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a id=\"x_m_7859046138643783182OWAc8a757c1-67b5-a167-3793-f15be7380064\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,0_SeAAZnnZEc2OSNupT_Xh6D79NAulrIDpppHwwST7orwHiNACz5Ha43J4iTSR4fY66YPdrypG1jOiFOkixZJA9ufjQXPSo_ni1B69wxCfqud9hQ81OawWNXkg,,&amp;typo=1\" target=\"_blank\" style=\"margin-top:0px; margin-bottom:0px\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Wed, Sep 17, 2025 at 7:00 PM James Trevey &lt;<a id=\"x_m_7859046138643783182OWA13ecdc83-a950-da4e-3b8e-d04e2eb16671\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:<br>\r\n</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex; padding-left:1ex; border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nJordan,</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nThanks for moving quickly here. I got bogged down today but better late than never.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nAttached you\'ll find data sheets for all (5) of our products, including both 18650 and 21700. Below is a quick summary:</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<ul style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-position:initial; list-style-type:disc\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">SC2-18-4 - ~3Ah 18650 designed for Army low temperature operation (they won\'t tell us the application)</div>\r\n</li><ul style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-position:initial; list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell has a 100% US supply chain already</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell can be made in the <u>millions</u>&nbsp;next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">SC3-18-2 - ~3.5Ah 18650 designed for BB2590 packs (reverse engineered from MIL-PRF-32383)</div>\r\n</li><ul style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-position:initial; list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell can be made in the <u>millions\r\n</u>next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">SC2-21-2 - ~5.7Ah 21700 designed for heavy trucking and niche EVs.</div>\r\n</li><ul style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-position:initial; list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell can be made in the <u>thousands</u>&nbsp;next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">SC2-21-3 - ~5.5Ah 21700 designed for drones (it has an Aluminum case and tabless design, super lightweight)</div>\r\n</li><ul style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-position:initial; list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell can be made in the <u>millions</u>&nbsp;next year by our partner in the EU. As we show adoption, we\'ll expand our factory to build these</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">SC4-21-1 - ~5.5Ah 21700 designed for Li-6T packs (reverse engineered from MIL-PRF-32565)</div>\r\n</li><ul style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-position:initial; list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell can be made in the <u>thousands</u>&nbsp;next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n</ul>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nWe can also get 80mmx300mm pouch cells made by our EU partner, if needed.</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nRegarding the term sheet, please see the attached template that I put together but needs input from you all.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nMaybe we line up another discussion for next week to continue our alignment path? Also, are any of you planning to attend The Battery Show in Detroit? Or AUSA in DC? Or AUKUS in DC? Or Upcell in Reno? Or Gigafactores in Nashville? in October? Or the secret\r\n meeting on November 5th in DC?</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nI will check with my people on 301 asap.</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nI look forward to our next communication.</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nJames</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:black\">\r\n<br>\r\n</div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div style=\"direction:ltr; font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:black\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;<a id=\"x_m_7859046138643783182OWA71ed3287-c884-92d5-1caa-92b1f1d318fa\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Wednesday, September 17, 2025 7:56 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a id=\"x_m_7859046138643783182OWA6cd87ac5-84e9-6287-add8-4d889a10f57e\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;; Daniel &lt;<a id=\"x_m_7859046138643783182OWA9ff34847-3c2d-d41b-7b1a-a902aba2b15b\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;;\r\n brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"x_m_7859046138643783182OWAe23dbbcf-6954-539a-4659-57f697029434\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr; font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr\">Gentlemen,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">It was a pleasure connecting with you yesterday. I am very excited about the potential for a partnership between our companies. To maintain the momentum from our discussion, I\'ve outlined the key action items below:</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<ul style=\"direction:ltr\">\r\n<li style=\"direction:ltr\">James to&nbsp;send the cell specification sheets as soon as possible.</li><li style=\"direction:ltr\">LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for benchmarking purposes.</li><li style=\"direction:ltr\">James to&nbsp;send their term sheet template for throughput contracts.</li><li style=\"direction:ltr\">We should discuss 301 exclusion support for manufacturing equipment.</li></ul>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I look forward to our next conversation.&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Best,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a id=\"x_m_7859046138643783182OWA57ab9852-a4df-04bc-6d07-5846e7a46499\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a id=\"x_m_7859046138643783182OWA01db43b7-0ffe-3df6-52fa-0845c64c7cef\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,5XwS0ui8U7BdCgdyQ4y7cci0NGIV2otwkvjchtWdd09H7QM9o-cbghedfCZwON-S7KcCe_cNW_uQSIH3HItLcXUHu5tdjCA_wXeQS6cp&amp;typo=1\" target=\"_blank\" style=\"margin-top:0px; margin-bottom:0px\">Lithium\r\n Battery Company</a></span></p>\r\n</blockquote>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n<div>&lt;ProgramProduct-CellType-2025Demand-2026Demand-2027Demand-2028Demand-QualificationTiming-Notes (1).csv&gt;</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n\r\n\r\n</div></blockquote></div></body></html>','Hi James,I am out of town as well. &nbsp;How does your Wednesday look?&nbsp;Looking forward to catching up.Jordan G. WroblewskiPartner | President&nbsp;Lithium Battery CompanyDirect:&nbsp;(917) 266-5336jordan@lithiumbatterycompany.comLithium Battery CompanyOn Oct 16, 2025, at 9:20 AM, James Trevey &lt;jtrevey@forgenano.com&gt; wrote:﻿\r\n\r\n\r\n\r\n\r\n\r\n\r\nHey Jordan,\r\n\r\n\r\n\r\n\r\nApologies for the slow/no replies recently. Travel has been brutal.&nbsp;\r\n\r\n\r\n\r\n\r\nWe\'ve got a lot of the information ready for you. Can we schedule a call to do a walk through on Monday the 20th at 9am or 10am ET?\r\n\r\n\r\n\r\n\r\nJames\r\n\r\n\r\nFrom: Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt;\r\nSent: Thursday, October 16, 2025 9:16 AM\r\nTo: James Trevey &lt;jtrevey@forgenano.com&gt;\r\nCc: Daniel &lt;dansheridanmusic@gmail.com&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;nathan@lithiumbatterycompany.com&gt;; Rick Mislan &lt;rick@mavrix.one&gt;\r\nSubject: Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration\r\n&nbsp;\r\n\r\nHi James,\r\n\r\n\r\nWould be great to get some pricing and spec sheets.&nbsp;\r\n\r\n\r\nLet me know when we can connect.&nbsp;\r\n\r\n\r\nBest,\r\n\r\n\r\nJordan G. Wroblewski\r\nPartner | President&nbsp;\r\n\r\nLithium Battery Company\r\nDirect:&nbsp;(917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com\r\nLithium\r\n Battery Company\r\n\r\n\r\n\r\n\r\nOn Sep 30, 2025, at 4:31 PM, Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt; wrote:\r\n\r\n\r\n\r\n\r\n﻿\r\n\r\n\r\nHi James,\r\n\r\n\r\n\r\n\r\nI have attached a prospective cell demand schedule (subject to change) but two of your battery types should meet the requirements for some of our future projects.\r\n\r\n\r\n\r\n\r\nLooking forward to our discussion and seeing your deck of prospective projects.&nbsp;&nbsp;\r\n\r\n\r\nBest,&nbsp;\r\n\r\n\r\n\r\n\r\n\r\nJordan G. Wroblewski\r\nPartner | President&nbsp;\r\n\r\nLithium Battery Company\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com\r\nLithium\r\n Battery Company\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nOn Fri, Sep 26, 2025 at 4:59 PM James Trevey &lt;jtrevey@forgenano.com&gt; wrote:\r\n\r\n\r\n\r\n\r\n\r\nJordan,\r\n\r\n\r\n\r\n\r\nI won\'t be able to send the deck today. Still waiting on a few spec sheets approval and validation of production capability for a few products.&nbsp;\r\n\r\n\r\n\r\n\r\nI\'ll send to you as soon as I can next week.\r\n\r\n\r\n\r\n\r\nJames\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nFrom:&nbsp;James Trevey &lt;jtrevey@forgenano.com&gt;\r\nSent:&nbsp;Wednesday, September 24, 2025 10:49 AM\r\nTo:&nbsp;Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt;\r\nCc:&nbsp;Daniel &lt;dansheridanmusic@gmail.com&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;nathan@lithiumbatterycompany.com&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;\r\nSubject:&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration \r\n\r\n\r\n\r\n\r\nJordan,\r\n\r\n\r\n\r\n\r\nUnfortunately, there is not a large prismatic on our list. I could potentially license a design to make one, but it would take a lot of coordinating.&nbsp;\r\n\r\n\r\n\r\n\r\nIt would be super helpful if you are able to compile a deck for us which has your prospective cell demand schedule now and for the next few years, as well as what your qualification schedule looks like (maybe program based?). Maybe by cell type?\r\n\r\n\r\n\r\n\r\nI also have a verbal matter we can discuss soon. Once I\'ve got the deck ready I\'ll find time for a short call with you.\r\n\r\n\r\n\r\n\r\nTalk soon.\r\n\r\n\r\n\r\n\r\nJames\r\n\r\n\r\n\r\nFrom:&nbsp;Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt;\r\nSent:&nbsp;Wednesday, September 24, 2025 10:07 AM\r\nTo:&nbsp;James Trevey &lt;jtrevey@forgenano.com&gt;\r\nCc:&nbsp;Daniel &lt;dansheridanmusic@gmail.com&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;nathan@lithiumbatterycompany.com&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;\r\nSubject:&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration\r\n\r\n&nbsp;\r\n\r\nHi James,\r\n\r\n\r\nThank you for the follow up.&nbsp; You were on my list to contact today!&nbsp;&nbsp;\r\n\r\n\r\nWould that additional product list include a prismatic cell? I have a client who needs 150MWh a year and they want a domestic 314Ah cell...\r\n\r\n\r\nI will let you know if I will be able to make it up to Detroit for The Battery Show.&nbsp;&nbsp;\r\n\r\n\r\nLooking forward to seeing the deck.\r\n\r\n\r\nAll the best,&nbsp;\r\n\r\n\r\nJordan G. Wroblewski\r\nPartner | President&nbsp;\r\n\r\nLithium Battery Company\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com\r\nLithium\r\n Battery Company\r\n\r\n\r\n\r\n\r\nOn Wed, Sep 24, 2025 at 11:59 AM James Trevey &lt;jtrevey@forgenano.com&gt; wrote:\r\n\r\n\r\n\r\nHey Jordan,\r\n\r\n\r\n\r\n\r\nThank you for the quick follow up.&nbsp;\r\n\r\n\r\n\r\n\r\nI am working on a compiled deck for you to address the below requests and aiming for end of this week. After speaking with my team, we\'ve decided we\'d like to provide information on additional products to you which are typically not on the menu but I have details\r\n to sort first.&nbsp;\r\n\r\n\r\n\r\n\r\nRegarding shows, happy to discuss when ready. We\'ll be at The Battery Show in 2 weeks, which I think you should consider attending and I\'d be happy to connect while there.&nbsp;\r\n\r\n\r\n\r\n\r\nJames\r\n\r\n\r\n\r\nFrom:&nbsp;Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt;\r\nSent:&nbsp;Thursday, September 18, 2025 11:03 AM\r\nTo:&nbsp;James Trevey &lt;jtrevey@forgenano.com&gt;\r\nCc:&nbsp;Daniel &lt;dansheridanmusic@gmail.com&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;nathan@lithiumbatterycompany.com&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;\r\nSubject:&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration\r\n\r\n&nbsp;\r\n\r\nHi James,\r\n\r\n\r\n\r\n\r\nThank you for continuing discussions regarding our strategic partnership. As we prepare for module and pack production to support your battery cell needs, we would appreciate your assistance in providing several key pieces of information\r\n to optimize our collaboration and planning:\r\n\r\nPlease share detailed volume forecasts for each cell type (e.g., 18650, 21700) you expect to require over the next 1–5 years, broken out by project or customer segment where feasible.\r\n\r\nIndicate your anticipated ramp-up schedule for sample, engineering, and production volumes to help us align our development and manufacturing timelines.\r\n\r\nIdentify any major offtake agreements, anchor customers, or significant opportunities in your commercial pipeline that could impact forecasted demand for modules or packs.\r\n\r\nOutline target applications (energy storage, drones, EVs, DOD, etc.) and specify any technical or certification requirements for modules/packs related to these segments.\r\n\r\nClarify your minimum order quantities and expected pricing for each product line.\r\n\r\nPlease also provide information about any flexibility in volume commitments that may be necessary in case project requirements or customer needs adjust mid-term.\r\n\r\nImportantly, we would like to request information on any current or forthcoming cells with a minimum continuous discharge rating of 15C or higher. For these cells, please provide specifications, target applications, anticipated volume requirements, forecasted\r\n commercial timelines, and expected pricing.\r\n\r\nAdditionally, for reference, these are LBC’s most popular cells we\'ve made module and packs for:\r\n\r\n18650:\r\n\r\nNMC: TNL-ITR18650-2600P\r\n\r\nLFP: SW18650-26HPA\r\n\r\nLFP: IFR18650-2000mAh\r\n\r\n21700:\r\n\r\nNMC: INR21700-50S\r\n\r\nNMC: INR21700-4000\r\n\r\nProviding this information will enable LBC to ensure maximum alignment, timely scale-up, and the most competitive solutions to support your growth across all high-value sectors.\r\n\r\n\r\n\r\nIn terms of the shows you mentioned, we are getting our schedules aligned so we can attend.&nbsp; What\'s the \"secret meeting\" in Nov?&nbsp;\r\n\r\nWe look forward to your prompt response so we can efficiently move to the next stages.\r\n\r\n\r\n\r\n\r\n\r\nTalk soon,&nbsp;\r\n\r\n\r\nJordan G. Wroblewski\r\nPartner | President&nbsp;\r\n\r\nLithium Battery Company\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com\r\nLithium\r\n Battery Company\r\n\r\n\r\n\r\n\r\nOn Wed, Sep 17, 2025 at 7:00 PM James Trevey &lt;jtrevey@forgenano.com&gt; wrote:\r\n\r\n\r\n\r\nJordan,\r\n\r\n\r\n\r\n\r\nThanks for moving quickly here. I got bogged down today but better late than never.&nbsp;\r\n\r\n\r\n\r\n\r\nAttached you\'ll find data sheets for all (5) of our products, including both 18650 and 21700. Below is a quick summary:\r\n\r\n\r\n\r\n\r\n\r\nSC2-18-4 - ~3Ah 18650 designed for Army low temperature operation (they won\'t tell us the application)\r\n\r\n\r\nThis cell has a 100% US supply chain already\r\n\r\nThis cell can be made in the millions&nbsp;next year by our partner in the EU, until our factory is online in 2027\r\n\r\n\r\nSC3-18-2 - ~3.5Ah 18650 designed for BB2590 packs (reverse engineered from MIL-PRF-32383)\r\n\r\n\r\nThis cell is 50% US and 50% non-FEOC currently\r\n\r\nThis cell can be made in the millions\r\nnext year by our partner in the EU, until our factory is online in 2027\r\n\r\n\r\nSC2-21-2 - ~5.7Ah 21700 designed for heavy trucking and niche EVs.\r\n\r\n\r\nThis cell is 50% US and 50% non-FEOC currently\r\n\r\nThis cell can be made in the thousands&nbsp;next year by our partner in the EU, until our factory is online in 2027\r\n\r\n\r\nSC2-21-3 - ~5.5Ah 21700 designed for drones (it has an Aluminum case and tabless design, super lightweight)\r\n\r\n\r\nThis cell is 50% US and 50% non-FEOC currently\r\n\r\nThis cell can be made in the millions&nbsp;next year by our partner in the EU. As we show adoption, we\'ll expand our factory to build these\r\n\r\n\r\nSC4-21-1 - ~5.5Ah 21700 designed for Li-6T packs (reverse engineered from MIL-PRF-32565)\r\n\r\n\r\nThis cell is 50% US and 50% non-FEOC currently\r\n\r\nThis cell can be made in the thousands&nbsp;next year by our partner in the EU, until our factory is online in 2027\r\n\r\n\r\n\r\n\r\n\r\n\r\nWe can also get 80mmx300mm pouch cells made by our EU partner, if needed.\r\n\r\n\r\n\r\n\r\nRegarding the term sheet, please see the attached template that I put together but needs input from you all.&nbsp;\r\n\r\n\r\n\r\n\r\nMaybe we line up another discussion for next week to continue our alignment path? Also, are any of you planning to attend The Battery Show in Detroit? Or AUSA in DC? Or AUKUS in DC? Or Upcell in Reno? Or Gigafactores in Nashville? in October? Or the secret\r\n meeting on November 5th in DC?\r\n\r\n\r\n\r\n\r\nI will check with my people on 301 asap.\r\n\r\n\r\n\r\n\r\nI look forward to our next communication.\r\n\r\n\r\n\r\n\r\nJames\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nFrom:&nbsp;Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt;\r\nSent:&nbsp;Wednesday, September 17, 2025 7:56 AM\r\nTo:&nbsp;James Trevey &lt;jtrevey@forgenano.com&gt;; Daniel &lt;dansheridanmusic@gmail.com&gt;;\r\n brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;nathan@lithiumbatterycompany.com&gt;; Rick Mislan &lt;rick@mavrix.one&gt;\r\nSubject:&nbsp;Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration\r\n\r\n\r\n\r\nGentlemen,\r\n\r\n\r\nIt was a pleasure connecting with you yesterday. I am very excited about the potential for a partnership between our companies. To maintain the momentum from our discussion, I\'ve outlined the key action items below:\r\n\r\n\r\n\r\nJames to&nbsp;send the cell specification sheets as soon as possible.LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for benchmarking purposes.James to&nbsp;send their term sheet template for throughput contracts.We should discuss 301 exclusion support for manufacturing equipment.\r\n\r\n\r\nI look forward to our next conversation.&nbsp;\r\n\r\n\r\nBest,\r\n\r\n\r\nJordan G. Wroblewski\r\nPartner | President&nbsp;\r\nLithium Battery Company\r\nDirect: (917) 266-5336\r\njordan@lithiumbatterycompany.com\r\nLithium\r\n Battery Company\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n&lt;ProgramProduct-CellType-2025Demand-2026Demand-2027Demand-2028Demand-QualificationTiming-Notes (1).csv&gt;\r\n\r\n\r\n\r\n\r\n\r\n\r\n',0,0,0,0,0,0,'2025-10-20 11:12:52','2025-12-04 14:04:52','2025-12-04 14:04:52','2025-12-04 14:04:52',NULL,NULL,NULL),
(88,4,'<MW5PR84MB198503095AE0D09D70A695E0FB2BA@MW5PR84MB1985.NAMPRD84.PROD.OUTLOOK.COM>',NULL,NULL,'FW: 5600 Budgetary Quote','gary.fudge@hp.com','\"Fudge, Gary\"','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n@font-face\r\n	{font-family:\"Forma DJR Display\";\r\n	panose-1:0 0 0 0 0 0 0 9 0 0;}\r\n@font-face\r\n	{font-family:\"Forma DJR Micro\";\r\n	panose-1:0 0 0 0 0 0 0 9 0 0;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;\r\n	mso-ligatures:standardcontextual;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:#467886;\r\n	text-decoration:underline;}\r\nspan.EmailStyle20\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"#467886\" vlink=\"#96607D\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Gary Fudge</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">3D Print - Enterprise Account Manager &#8211; US South\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Atlanta , GA</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">M -&nbsp;(678) 654-6734</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;text-align:center\">\r\n<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">|</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"color:black\"><a href=\"mailto:Gary.Fudge@HP.com\"><span style=\"color:blue\">Gary.Fudge</span><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:blue\">@HP.com</span></a></span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;color:black;mso-ligatures:none\"><img border=\"0\" width=\"368\" height=\"85\" style=\"width:3.8333in;height:.8819in\" id=\"Picture_x0020_231323438\" src=\"cid:image001.png@01DC0856.F0693A70\" alt=\"image001.png\"></span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:none\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:none\"> Fudge, Gary\r\n<br>\r\n<b>Sent:</b> Friday, August 8, 2025 9:24 AM<br>\r\n<b>To:</b> \'Rick@mavrix.1\' &lt;Rick@mavrix.1&gt;<br>\r\n<b>Subject:</b> RE: 5600 Budgetary Quote<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Hello Rick<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">I just found out the Francois Minec (our Global go to market VP) will be in the US early September.&nbsp; It would be great if you could meet then as Francois can make things happen for us given his level in the company along with him being\r\n based out of HQ in Barcelona.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Regardless, per below, it would be good to have a short discussion in the interim,<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Please let me know.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Gary Fudge</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">3D Print - Enterprise Account Manager &#8211; US South\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Atlanta , GA</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">M -&nbsp;(678) 654-6734</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;text-align:center\">\r\n<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">|</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"color:black\"><a href=\"mailto:Gary.Fudge@HP.com\"><span style=\"color:blue\">Gary.Fudge</span><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:blue\">@HP.com</span></a></span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;color:black;mso-ligatures:none\"><img border=\"0\" width=\"368\" height=\"85\" style=\"width:3.8333in;height:.8819in\" id=\"Picture_x0020_1956623982\" src=\"cid:image001.png@01DC0856.F0693A70\" alt=\"image001.png\"></span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:none\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:none\"> Fudge, Gary\r\n<br>\r\n<b>Sent:</b> Thursday, August 7, 2025 8:14 AM<br>\r\n<b>To:</b> \'Rick@mavrix.1\' &lt;<a href=\"mailto:Rick@mavrix.1\">Rick@mavrix.1</a>&gt;<br>\r\n<b>Subject:</b> RE: 5600 Budgetary Quote<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Hello Rick<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">I left you a voicemail last week&#8230;thought I would follow up here.&nbsp;\r\n<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Given your timeline, it would be good to get together for 30+ minutes or so to start putting some framework around your needs.&nbsp; We have a lot of solutions and teams to get you up and running quickly&#8230;including professional engineering services,\r\n applications support, drone vertical team, and service/maintenance teams along with various stop-gap solutions to outsource production as needed as you ramp.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Would you have some time this week or next to discuss?<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Gary Fudge</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">3D Print - Enterprise Account Manager &#8211; US South\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Atlanta , GA</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">M -&nbsp;(678) 654-6734</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;text-align:center\">\r\n<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">|</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"color:black\"><a href=\"mailto:Gary.Fudge@HP.com\"><span style=\"color:blue\">Gary.Fudge</span><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:blue\">@HP.com</span></a></span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;color:black;mso-ligatures:none\"><img border=\"0\" width=\"368\" height=\"85\" style=\"width:3.8333in;height:.8819in\" id=\"Picture_x0020_2120042471\" src=\"cid:image001.png@01DC0856.F0693A70\" alt=\"image001.png\"></span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:none\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:none\"> Fudge, Gary\r\n<br>\r\n<b>Sent:</b> Wednesday, July 30, 2025 8:37 AM<br>\r\n<b>To:</b> <a href=\"mailto:Rick@mavrix.1\">Rick@mavrix.1</a><br>\r\n<b>Subject:</b> 5600 Budgetary Quote<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Good morning Rick,<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Good talking with you briefly late yesterday.&nbsp; As promised, attached is a budgetary quote for a 5600 system.&nbsp; Based on our limited discussion, this sounds like a good place to start but we should have a more detailed conversation to zero\r\n in on what is best for you.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">-I have included a 5600 brochure for your review.&nbsp; Note this is the base system and you may want to consider a 5620 or 5620 Pro upgrade.&nbsp; These upgraded systems are more economical for higher level production.&nbsp; You may also want to consider\r\n other accessories like Natural Cooling Units or an Auto Unpacker depending upon your workflow and volume.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">-These systems include a 1 year warranty which covers all parts and labor for that period.&nbsp; There are a variety of service plans beyond that you can chose from to fit your needs.&nbsp; Including self-maintenance, 3DaaS and others.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">-As requested, I have also included a brochure on our automation accessory to swap out build units.&nbsp; This costs approximately $52,000 per system and can be well worth it if you want to do 24 hour production with limited staff.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">I know you are familiar with HP MJF AM technology in the Drone world as we are quickly becoming AM the industry standard there but I have included some additional case studies attached here along with some video links below for you to review.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"color:black\"><a href=\"https://www.youtube.com/watch?v=TC5l7fkGNHE\" title=\"https://www.youtube.com/watch?v=TC5l7fkGNHE\">Blueflite at Xponential 2025 | HP</a><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"color:black\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"color:black\"><a href=\"https://www.youtube.com/watch?v=VTa2ZwKHk2c\" title=\"https://www.youtube.com/watch?v=VTa2ZwKHk2c\">The Eye Above at Xponential 2025 | HP</a><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"color:black\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"color:black\"><a href=\"https://www.youtube.com/watch?v=EwBmg0165gM\" title=\"https://www.youtube.com/watch?v=EwBmg0165gM\">Unusual Machines at Xponential 2025 | HP</a><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Keep in mind this is an initial budgetary number and things will change as we zero in on your needs but it should get you in the ballpark.&nbsp; We should spend at least 30 minutes to review and discuss further.&nbsp; What day/time(s) this week for\r\n that?<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Looking forward to working with you on this.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Best Regards,<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Gary Fudge</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">3D Print - Enterprise Account Manager &#8211; US South\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Atlanta , GA</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">M -&nbsp;(678) 654-6734</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;text-align:center\">\r\n<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">|</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"color:black\"><a href=\"mailto:Gary.Fudge@HP.com\"><span style=\"color:blue\">Gary.Fudge</span><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:blue\">@HP.com</span></a></span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;color:black;mso-ligatures:none\"><img border=\"0\" width=\"368\" height=\"85\" style=\"width:3.8333in;height:.8819in\" id=\"Picture_x0020_1\" src=\"cid:image001.png@01DC0856.F0693A70\" alt=\"image001.png\"></span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</body>\r\n</html>','\r\n\r\nGary Fudge\r\n3D Print - Enterprise Account Manager - US South\r\nAtlanta , GA\r\nM - (678) 654-6734\r\n|\r\nGary.Fudge@HP.com<mailto:Gary.Fudge@HP.com>\r\n[image001.png]\r\n\r\n\r\nFrom: Fudge, Gary\r\nSent: Friday, August 8, 2025 9:24 AM\r\nTo: \'Rick@mavrix.1\' <Rick@mavrix.1>\r\nSubject: RE: 5600 Budgetary Quote\r\n\r\nHello Rick\r\n\r\nI just found out the Francois Minec (our Global go to market VP) will be in the US early September.  It would be great if you could meet then as Francois can make things happen for us given his level in the company along with him being based out of HQ in Barcelona.\r\n\r\nRegardless, per below, it would be good to have a short discussion in the interim,\r\n\r\nPlease let me know.\r\n\r\nGary Fudge\r\n3D Print - Enterprise Account Manager - US South\r\nAtlanta , GA\r\nM - (678) 654-6734\r\n|\r\nGary.Fudge@HP.com<mailto:Gary.Fudge@HP.com>\r\n[image001.png]\r\n\r\n\r\nFrom: Fudge, Gary\r\nSent: Thursday, August 7, 2025 8:14 AM\r\nTo: \'Rick@mavrix.1\' <Rick@mavrix.1<mailto:Rick@mavrix.1>>\r\nSubject: RE: 5600 Budgetary Quote\r\n\r\nHello Rick\r\n\r\nI left you a voicemail last week...thought I would follow up here.\r\n\r\nGiven your timeline, it would be good to get together for 30+ minutes or so to start putting some framework around your needs.  We have a lot of solutions and teams to get you up and running quickly...including professional engineering services, applications support, drone vertical team, and service/maintenance teams along with various stop-gap solutions to outsource production as needed as you ramp.\r\n\r\nWould you have some time this week or next to discuss?\r\n\r\nGary Fudge\r\n3D Print - Enterprise Account Manager - US South\r\nAtlanta , GA\r\nM - (678) 654-6734\r\n|\r\nGary.Fudge@HP.com<mailto:Gary.Fudge@HP.com>\r\n[image001.png]\r\n\r\n\r\nFrom: Fudge, Gary\r\nSent: Wednesday, July 30, 2025 8:37 AM\r\nTo: Rick@mavrix.1<mailto:Rick@mavrix.1>\r\nSubject: 5600 Budgetary Quote\r\n\r\nGood morning Rick,\r\n\r\nGood talking with you briefly late yesterday.  As promised, attached is a budgetary quote for a 5600 system.  Based on our limited discussion, this sounds like a good place to start but we should have a more detailed conversation to zero in on what is best for you.\r\n\r\n-I have included a 5600 brochure for your review.  Note this is the base system and you may want to consider a 5620 or 5620 Pro upgrade.  These upgraded systems are more economical for higher level production.  You may also want to consider other accessories like Natural Cooling Units or an Auto Unpacker depending upon your workflow and volume.\r\n\r\n-These systems include a 1 year warranty which covers all parts and labor for that period.  There are a variety of service plans beyond that you can chose from to fit your needs.  Including self-maintenance, 3DaaS and others.\r\n\r\n-As requested, I have also included a brochure on our automation accessory to swap out build units.  This costs approximately $52,000 per system and can be well worth it if you want to do 24 hour production with limited staff.\r\n\r\nI know you are familiar with HP MJF AM technology in the Drone world as we are quickly becoming AM the industry standard there but I have included some additional case studies attached here along with some video links below for you to review.\r\n\r\nBlueflite at Xponential 2025 | HP<https://www.youtube.com/watch?v=TC5l7fkGNHE>\r\n\r\nThe Eye Above at Xponential 2025 | HP<https://www.youtube.com/watch?v=VTa2ZwKHk2c>\r\n\r\nUnusual Machines at Xponential 2025 | HP<https://www.youtube.com/watch?v=EwBmg0165gM>\r\n\r\nKeep in mind this is an initial budgetary number and things will change as we zero in on your needs but it should get you in the ballpark.  We should spend at least 30 minutes to review and discuss further.  What day/time(s) this week for that?\r\n\r\nLooking forward to working with you on this.\r\n\r\nBest Regards,\r\n\r\nGary Fudge\r\n3D Print - Enterprise Account Manager - US South\r\nAtlanta , GA\r\nM - (678) 654-6734\r\n|\r\nGary.Fudge@HP.com<mailto:Gary.Fudge@HP.com>\r\n[image001.png]',0,0,0,0,0,0,'2025-08-12 19:11:54','2025-12-04 14:04:53','2025-12-04 14:04:53','2025-12-04 14:04:53',NULL,NULL,NULL),
(89,4,'<MW5PR84MB198598CA2D39FED2D4631926FB2BA@MW5PR84MB1985.NAMPRD84.PROD.OUTLOOK.COM>',NULL,NULL,'FW: 5600 Budgetary Quote','gary.fudge@hp.com','\"Fudge, Gary\"','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n@font-face\r\n	{font-family:\"Forma DJR Display\";\r\n	panose-1:0 0 0 0 0 0 0 9 0 0;}\r\n@font-face\r\n	{font-family:\"Forma DJR Micro\";\r\n	panose-1:0 0 0 0 0 0 0 9 0 0;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;\r\n	mso-ligatures:standardcontextual;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:#467886;\r\n	text-decoration:underline;}\r\nspan.EmailStyle20\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style><!--[if gte mso 9]><xml>\r\n<o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n<o:shapelayout v:ext=\"edit\">\r\n<o:idmap v:ext=\"edit\" data=\"1\" />\r\n</o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body lang=\"EN-US\" link=\"#467886\" vlink=\"#96607D\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Gary Fudge</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">3D Print - Enterprise Account Manager &#8211; US South\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Atlanta , GA</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">M -&nbsp;(678) 654-6734</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;text-align:center\">\r\n<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">|</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"color:black\"><a href=\"mailto:Gary.Fudge@HP.com\"><span style=\"color:blue\">Gary.Fudge</span><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:blue\">@HP.com</span></a></span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;color:black;mso-ligatures:none\"><img border=\"0\" width=\"368\" height=\"85\" style=\"width:3.8333in;height:.8819in\" id=\"Picture_x0020_558724537\" src=\"cid:image001.png@01DC0772.AAD8E6C0\" alt=\"image001.png\"></span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:none\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:none\"> Fudge, Gary\r\n<br>\r\n<b>Sent:</b> Thursday, August 7, 2025 6:14 AM<br>\r\n<b>To:</b> \'Rick@mavrix.1\' &lt;Rick@mavrix.1&gt;<br>\r\n<b>Subject:</b> RE: 5600 Budgetary Quote<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Hello Rick<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">I left you a voicemail last week&#8230;thought I would follow up here.&nbsp;\r\n<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Given your timeline, it would be good to get together for 30+ minutes or so to start putting some framework around your needs.&nbsp; We have a lot of solutions and teams to get you up and running quickly&#8230;including professional engineering services,\r\n applications support, drone vertical team, and service/maintenance teams along with various stop-gap solutions to outsource production as needed as you ramp.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Would you have some time this week or next to discuss?<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Gary Fudge</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">3D Print - Enterprise Account Manager &#8211; US South\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Atlanta , GA</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">M -&nbsp;(678) 654-6734</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;text-align:center\">\r\n<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">|</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"color:black\"><a href=\"mailto:Gary.Fudge@HP.com\"><span style=\"color:blue\">Gary.Fudge</span><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:blue\">@HP.com</span></a></span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;color:black;mso-ligatures:none\"><img border=\"0\" width=\"368\" height=\"85\" style=\"width:3.8333in;height:.8819in\" id=\"Picture_x0020_2120042471\" src=\"cid:image001.png@01DC0772.AAD8E6C0\" alt=\"image001.png\"></span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:none\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;mso-ligatures:none\"> Fudge, Gary\r\n<br>\r\n<b>Sent:</b> Wednesday, July 30, 2025 8:37 AM<br>\r\n<b>To:</b> <a href=\"mailto:Rick@mavrix.1\">Rick@mavrix.1</a><br>\r\n<b>Subject:</b> 5600 Budgetary Quote<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Good morning Rick,<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Good talking with you briefly late yesterday.&nbsp; As promised, attached is a budgetary quote for a 5600 system.&nbsp; Based on our limited discussion, this sounds like a good place to start but we should have a more detailed conversation to zero\r\n in on what is best for you.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">-I have included a 5600 brochure for your review.&nbsp; Note this is the base system and you may want to consider a 5620 or 5620 Pro upgrade.&nbsp; These upgraded systems are more economical for higher level production.&nbsp; You may also want to consider\r\n other accessories like Natural Cooling Units or an Auto Unpacker depending upon your workflow and volume.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">-These systems include a 1 year warranty which covers all parts and labor for that period.&nbsp; There are a variety of service plans beyond that you can chose from to fit your needs.&nbsp; Including self-maintenance, 3DaaS and others.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">-As requested, I have also included a brochure on our automation accessory to swap out build units.&nbsp; This costs approximately $52,000 per system and can be well worth it if you want to do 24 hour production with limited staff.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">I know you are familiar with HP MJF AM technology in the Drone world as we are quickly becoming AM the industry standard there but I have included some additional case studies attached here along with some video links below for you to review.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><span style=\"color:black\"><a href=\"https://www.youtube.com/watch?v=TC5l7fkGNHE\" title=\"https://www.youtube.com/watch?v=TC5l7fkGNHE\">Blueflite at Xponential 2025 | HP</a><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"color:black\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"color:black\"><a href=\"https://www.youtube.com/watch?v=VTa2ZwKHk2c\" title=\"https://www.youtube.com/watch?v=VTa2ZwKHk2c\">The Eye Above at Xponential 2025 | HP</a><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"color:black\"><o:p>&nbsp;</o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"color:black\"><a href=\"https://www.youtube.com/watch?v=EwBmg0165gM\" title=\"https://www.youtube.com/watch?v=EwBmg0165gM\">Unusual Machines at Xponential 2025 | HP</a><o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Keep in mind this is an initial budgetary number and things will change as we zero in on your needs but it should get you in the ballpark.&nbsp; We should spend at least 30 minutes to review and discuss further.&nbsp; What day/time(s) this week for\r\n that?<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Looking forward to working with you on this.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Best Regards,<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Gary Fudge</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">3D Print - Enterprise Account Manager &#8211; US South\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Atlanta , GA</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">M -&nbsp;(678) 654-6734</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;text-align:center\">\r\n<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">|</span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"color:black\"><a href=\"mailto:Gary.Fudge@HP.com\"><span style=\"color:blue\">Gary.Fudge</span><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:blue\">@HP.com</span></a></span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;color:black;mso-ligatures:none\"><img border=\"0\" width=\"368\" height=\"85\" style=\"width:3.8333in;height:.8819in\" id=\"Picture_x0020_1\" src=\"cid:image001.png@01DC0772.AAD8E6C0\" alt=\"image001.png\"></span><span style=\"font-size:11.0pt;color:black\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</body>\r\n</html>','\r\n\r\nGary Fudge\r\n3D Print - Enterprise Account Manager - US South\r\nAtlanta , GA\r\nM - (678) 654-6734\r\n|\r\nGary.Fudge@HP.com<mailto:Gary.Fudge@HP.com>\r\n[image001.png]\r\n\r\n\r\nFrom: Fudge, Gary\r\nSent: Thursday, August 7, 2025 6:14 AM\r\nTo: \'Rick@mavrix.1\' <Rick@mavrix.1>\r\nSubject: RE: 5600 Budgetary Quote\r\n\r\nHello Rick\r\n\r\nI left you a voicemail last week...thought I would follow up here.\r\n\r\nGiven your timeline, it would be good to get together for 30+ minutes or so to start putting some framework around your needs.  We have a lot of solutions and teams to get you up and running quickly...including professional engineering services, applications support, drone vertical team, and service/maintenance teams along with various stop-gap solutions to outsource production as needed as you ramp.\r\n\r\nWould you have some time this week or next to discuss?\r\n\r\nGary Fudge\r\n3D Print - Enterprise Account Manager - US South\r\nAtlanta , GA\r\nM - (678) 654-6734\r\n|\r\nGary.Fudge@HP.com<mailto:Gary.Fudge@HP.com>\r\n[image001.png]\r\n\r\n\r\nFrom: Fudge, Gary\r\nSent: Wednesday, July 30, 2025 8:37 AM\r\nTo: Rick@mavrix.1<mailto:Rick@mavrix.1>\r\nSubject: 5600 Budgetary Quote\r\n\r\nGood morning Rick,\r\n\r\nGood talking with you briefly late yesterday.  As promised, attached is a budgetary quote for a 5600 system.  Based on our limited discussion, this sounds like a good place to start but we should have a more detailed conversation to zero in on what is best for you.\r\n\r\n-I have included a 5600 brochure for your review.  Note this is the base system and you may want to consider a 5620 or 5620 Pro upgrade.  These upgraded systems are more economical for higher level production.  You may also want to consider other accessories like Natural Cooling Units or an Auto Unpacker depending upon your workflow and volume.\r\n\r\n-These systems include a 1 year warranty which covers all parts and labor for that period.  There are a variety of service plans beyond that you can chose from to fit your needs.  Including self-maintenance, 3DaaS and others.\r\n\r\n-As requested, I have also included a brochure on our automation accessory to swap out build units.  This costs approximately $52,000 per system and can be well worth it if you want to do 24 hour production with limited staff.\r\n\r\nI know you are familiar with HP MJF AM technology in the Drone world as we are quickly becoming AM the industry standard there but I have included some additional case studies attached here along with some video links below for you to review.\r\n\r\nBlueflite at Xponential 2025 | HP<https://www.youtube.com/watch?v=TC5l7fkGNHE>\r\n\r\nThe Eye Above at Xponential 2025 | HP<https://www.youtube.com/watch?v=VTa2ZwKHk2c>\r\n\r\nUnusual Machines at Xponential 2025 | HP<https://www.youtube.com/watch?v=EwBmg0165gM>\r\n\r\nKeep in mind this is an initial budgetary number and things will change as we zero in on your needs but it should get you in the ballpark.  We should spend at least 30 minutes to review and discuss further.  What day/time(s) this week for that?\r\n\r\nLooking forward to working with you on this.\r\n\r\nBest Regards,\r\n\r\nGary Fudge\r\n3D Print - Enterprise Account Manager - US South\r\nAtlanta , GA\r\nM - (678) 654-6734\r\n|\r\nGary.Fudge@HP.com<mailto:Gary.Fudge@HP.com>\r\n[image001.png]',0,0,0,0,0,0,'2025-08-12 19:11:53','2025-12-04 14:04:54','2025-12-04 14:04:54','2025-12-04 14:04:54',NULL,NULL,NULL);
INSERT INTO `emails` VALUES
(90,4,'<02.28.10444.7041A986@i-005781a3eaec7956a.mta1vrest.sd.prd.sparkpost>',NULL,NULL,'=?utf-8?B?SGVscCB1cyBoZWxwIHlvdSDwn5GA?=','survey@newsletter.printful.com','\"Printful\"','<!DOCTYPE html><html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" lang=\"en\"><head><title></title><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><!--[if mso]><xml><o:OfficeDocumentSettings><o:PixelsPerInch>96</o:PixelsPerInch><o:AllowPNG/></o:OfficeDocumentSettings></xml><![endif]--><!--[if !mso]><!--><!--<![endif]--><style>*{box-sizing:border-box}body{margin:0;padding:0}a[x-apple-data-detectors]{color:inherit!important;text-decoration:inherit!important}#MessageViewBody a{color:inherit;text-decoration:none}p{line-height:inherit}.desktop_hide,.desktop_hide table{mso-hide:all;display:none;max-height:0;overflow:hidden}.image_block img+div{display:none}@media(max-width:620px){.image_block div.fullWidth{max-width:100%!important}.mobile_hide{display:none}.row-content{width:100%!important}.stack .column{width:100%;display:block}.mobile_hide{min-height:0;max-height:0;max-width:0;overflow:hidden;font-size:0}.desktop_hide,.desktop_hide table{display:table!important;max-height:none!important}}</style></head><body style=\"margin:0;background-color:#f4f4f4;padding:0;-webkit-text-size-adjust:none;text-size-adjust:none\">\r\n<div style=\"color:transparent;visibility:hidden;opacity:0;font-size:0px;border:0;max-height:1px;width:1px;margin:0px;padding:0px;border-width:0px!important;display:none!important;line-height:0px!important;\"><img border=\"0\" width=\"1\" height=\"1\" src=\"https://post.spmailtechnolo.com/q/jvjmncjjZIugpDNFx4PHCA~~/AARGbBA~/WyJsliGIxwuIsr7PvbDn9gTXBoAWAdFMBz-xaUl2Ee_Ohei2mAFEJ8XiCSDVA-is\" alt=\"\"/></div>\r\n<span style=\"color:transparent;visibility:hidden;display:none;opacity:0;height:0;width:0;font-size:0;\">Get a $5 coupon for 2-min. survey</span><img src=\"https://links.printful.com/e/eo?_t=67a5f8b7ad4949ae834ded7d199b2915&amp;_m=e7498a678a1f40a2a9273983581fb93d&amp;_e=zBdijGYIwKer5QBYVaigIqmWRbM0C5uiPrS1L59VGDXjwcLE8NxDj0HGO8C4ia-_5URuGLTYNAw0JSxlgLHae4qHQ88oTtvmONTQt3ho0h4wh0D0_7w2CHl_XVtRPiU1\" style=\"border:0;width:1px;height:1px;border-width:0px!important;display:none!important;line-height:0!important;\" width=\"1\" height=\"1\"/><table class=\"nl-container\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#f4f4f4\"><tbody><tr><td><table class=\"row row-1\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#f4f4f4;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-top:5px;vertical-align:top;border-top:0;border-right:0;border-bottom:0;border-left:0\"><table class=\"html_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div style=\"font-family:Helvetica Neue,Helvetica,Arial,sans-serif;text-align:center\" align=\"center\"><div> <table align=\"center\" aria-hidden=\"true\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width: 100%; margin: 0 auto; max-width: 600px;\" width=\"100%\"> <tbody> <tr> <td lang=\"en\" style=\"padding-bottom: 16px;\"> <div style=\"display:none\"> &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &nbsp; </div> <table align=\"center\" aria-hidden=\"true\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-radius: 10px;\" width=\"100%\"> <tbody> <tr> <td style=\"padding: 16px 0 0 0;\"> <div style=\"text-align:center\"><a target=\"_blank\" href=\"https://links.printful.com/u/click?_t=67a5f8b7ad4949ae834ded7d199b2915&_m=e7498a678a1f40a2a9273983581fb93d&_e=YRm88zEc5vP8J4uoy8F5UaBbyfQg5aMVUsFND3PDSUEFnsM8NhKUmTokQWtUYh7hjiZh1uXY43L4bFQqAkz1xdGuEyLQpWy-I1FetZNhUoCAGRDPcl8skn4CrPHMsm08yj32Un4OZiXGPWV1cXTVjadB6eMW3xw2z99LUSEJnJ2d70TxK3geOLbJRRGN4Jwo17CCi2tuw5DKBL2A-ygA2Pez9YyaksCXUTd6_gA0FOO-nM1Fl32d_yn_AAr5rPj6BU1mQUIzQf879GrKf_PyC9qCp2DJDcfdIWqszey4j2Ox_vqhBePKHjLPZd7gw2BnouTYxfq5fOKbi6yMIiHoNiB3XfIUTswULAVmZUYhhFNrSecMhgO_W8BPaF5rZ8Pd-5N007Ix5bzisa-iZntXIV1wnjoAEqpCeZbbNR-unn6NDuk2HuSNyBAoIjGs91JH\"><img alt=\"Printful\" style=\"display: block; width: 280px; margin: 0 auto;\" width=\"280\" src=\"https://d3k81ch9hvuctc.cloudfront.net/company/Mq37fv/images/88d28808-76fc-4d9e-9138-16b412756689.png\"/></a></div> </td> </tr> <tr> <td style=\"padding: 16px 0 0 0;\"><!----> <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-size: 16px; font-family: Helvetica, Arial, sans-serif; color: #222222; line-height: 100%; text-align: center;\"> <tbody> <tr> <td><a style=\"color: #222222; text-decoration: underline; display: inline-block;\" href=\"https://links.printful.com/u/click?_t=67a5f8b7ad4949ae834ded7d199b2915&_m=e7498a678a1f40a2a9273983581fb93d&_e=YRm88zEc5vP8J4uoy8F5UaBbyfQg5aMVUsFND3PDSUFE7RhXfR1nfr0NM2qtMwz4pwN7QO9KhiXR32xasxi6dCFucSiqauLsp--ZsBRvdEZPeIJaJv6aTHUNIUKWN6MP9uF1YI2ntTkPaqOgW-TemO08-hnhf7fWSUvFD4OXP1wad8ZxZE49CICrDSdWaiYhSrF8R7D8f2thm4k4mEWaGsa0-FI6XzyltcS1CQ-XO-YpE_ZYBnnzsu_VYTZ3ZOxUhfGMfdm3E_PjMlBJkMO2fEebyU_FmxXraZduLzeVaWmQvWxgEitb_E0OgGLKs8WfVx0TVMiuo6CQ1u_S9hnw6nvIzYd0TUqA4iE0tcuA0N6ZVK5RuC1mBLXwgLK9fTTyueZNOcjxxXeYR76uuhcB7tO7gx1A0mXnsyuHuRvymEoYOLQY7x128GUNYgnZX6P1Lu5jATcB8yT9_JHpnyCbFqlypDyjXr2hM3JSR-RYa2Goi2SSVeqT92SG2kPzYV1u\">New products</a></td> <td style=\"padding: 0 18px 0 18px;\">•</td> <td><a style=\"color: #222222; text-decoration: underline; display: inline-block;\" href=\"https://links.printful.com/u/click?_t=67a5f8b7ad4949ae834ded7d199b2915&_m=e7498a678a1f40a2a9273983581fb93d&_e=YRm88zEc5vP8J4uoy8F5UaBbyfQg5aMVUsFND3PDSUGftiSxkcM92E_-eTRvdxX0X-_7Oe8NTuW1HpnU2NCa3t1ak9vldeOcKLdm1olLnOTPnhPNjMryJei8OHQmw57LlnIZz6ddBA94VMNz_P9Cl0TQ2JkkuHT6HbLBkOHXVfmEWilnjbBH8T1lJ9LHbQm2eHXShRLgDCkYvxaBY1T2Y39_1IV0aYeyniOYgCtYDjXSnij2MR27dphuARQDQJF7HBBR7sb21-tfsEYPkhd8-cSlsVDl9PxynOvnD39IIXIQXwBzB5NHEeWrIoBcjT_s1jIFWCKXOb9Me0Lpg2KWibtFnzh8YwRUQmrtmaZDLJf3gRwsYnxP1ROGIK263v8HSG_hvDL9xgsRAOqG5wbTAY6OaQnJuIYgnlQRCuxTZJUp4SrglD4TtXQZiHhF6fK6OHRZsHUg6QPAFZFN4RH4Jw%3D%3D\">Services</a></td> <td style=\"padding: 0 18px 0 18px;\">•</td> <td><a style=\"color: #222222; text-decoration: underline; display: inline-block;\" href=\"https://links.printful.com/u/click?_t=67a5f8b7ad4949ae834ded7d199b2915&_m=e7498a678a1f40a2a9273983581fb93d&_e=YRm88zEc5vP8J4uoy8F5UaBbyfQg5aMVUsFND3PDSUEHwrzgZdxeAYf1K_W28YQNe_ACRl_Q-1jW0nwzl8jkt854UY0kvzTGb1WZ2bOeYllGYM-1NKO4uwNMe8e3ys7zpFVat9Jlvs5kKbS4s5SNNGpSTP8GqDyaoN37SmrzVpq3h9xTCmgC9T5hDxm_snVxbHw1-qIdqncOdiOlRK39qYHW2zEQeSLL3I_qRFThz8an8AiE8tIrLisyzluVlOMFu_OrEhNU7cpxHzGRwPbo_xVesJcZ7WR92lFKfvfPM2xxTqjkQnpG-v0TikX1omtEpviPdZ2ZfVT6mZaFBv3vtth4ZreWH8Ia0-qwWRb77YTuTxImvs-dspzt4g7MefAF00ErvLLQze20yZrYNoKCOPKKRjV5Rm2oClrty-f1PhPrC13m4VrMn54vwPyiT8TA2YTHTurz_LEMMxA2CjS4tg%3D%3D\">Blog</a></td> </tr> </tbody> </table> <!----></td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </div> <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" width=\"100%\" style=\"width: 100%; min-width: 100%; margin: 0 auto; border-spacing: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;\"> <tbody> <tr> <td align=\"center\" style=\"padding-left:7px;padding-right:7px;height:1px;line-height:1px;font-size:1px;\"> <div class=\"word-break: break-word; vertical-align: top; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;\" style=\"display:block;height:1px;background-color:#ffffff;line-height:1px;font-size:1px;\">&nbsp; </div> </td> </tr> <tr> <td align=\"center\" style=\"padding-left:5px;padding-right:5px;height:1px;line-height:1px;font-size:1px;\"> <div class=\"word-break: break-word; vertical-align: top; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;\" style=\"display:block;height:1px;background-color:#ffffff;line-height:1px;font-size:1px;\">&nbsp; </div> </td> </tr> <tr> <td align=\"center\" style=\"padding-left:4px;padding-right:4px;height:1px;line-height:1px;font-size:1px;\"> <div class=\"word-break: break-word; vertical-align: top; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;\" style=\"display:block;height:1px;background-color:#ffffff;line-height:1px;font-size:1px;\">&nbsp; </div> </td> </tr> <tr> <td align=\"center\" style=\"padding-left:3px;padding-right:3px;height:1px;line-height:1px;font-size:1px;\"> <div class=\"word-break: break-word; vertical-align: top; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;\" style=\"display:block;height:1px;background-color:#ffffff;line-height:1px;font-size:1px;\">&nbsp; </div> </td> </tr> <tr> <td align=\"center\" style=\"padding-left:2px;padding-right:2px;height:1px;line-height:1px;font-size:1px;\"> <div class=\"word-break: break-word; vertical-align: top; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;\" style=\"display:block;height:1px;background-color:#ffffff;line-height:1px;font-size:1px;\">&nbsp; </div> </td> </tr> <tr> <td align=\"center\" style=\"padding-left:1px;padding-right:1px;height:1px;line-height:1px;font-size:1px;\"> <div class=\"word-break: break-word; vertical-align: top; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;\" style=\"display:block;height:1px;background-color:#ffffff;line-height:1px;font-size:1px;\">&nbsp; </div> </td> </tr> <tr> <td align=\"center\" style=\"padding-left:1px;padding-right:1px;height:1px;line-height:1px;font-size:1px;\"> <div class=\"word-break: break-word; vertical-align: top; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;\" style=\"display:block;height:1px;background-color:#ffffff;line-height:1px;font-size:1px;\">&nbsp; </div> </td> </tr> </tbody> </table></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-2\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#fff;background-repeat:no-repeat;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;vertical-align:top;border-top:0;border-right:0;border-bottom:0;border-left:0\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"padding-top:30px;width:100%;padding-right:0;padding-left:0\"><div class=\"alignment\" align=\"center\" style=\"line-height:10px\"><div class=\"fullWidth\" style=\"max-width:360px\"><img src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/669d5713-9b6a-46bb-bd7e-c542cff6dd6a/67a5f8b7ad4949ae834ded7d199b2915/PNG-900x600_4.png\" style=\"display:block;height:auto;border:0;width:100%\" width=\"360\"></div></div></td></tr></table><table class=\"text_block block-2\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr><td class=\"pad\" style=\"padding-bottom:20px;padding-left:30px;padding-right:30px;padding-top:20px\"><div style=\"font-family:sans-serif\"><div class style=\"font-size:12px;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;mso-line-height-alt:14.399999999999999px;color:#000;line-height:1.2\"><p style=\"margin:0;font-size:14px;text-align:left;mso-line-height-alt:16.8px\"><span style=\"font-size:26px\"><strong>Share your thoughts and save $5 on your next order!</strong></span></p></div></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-3\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#fff;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;background-color:#fff;vertical-align:top;border-top:0;border-right:0;border-bottom:0;border-left:0\"><table class=\"text_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr><td class=\"pad\" style=\"padding-bottom:20px;padding-left:30px;padding-right:30px;padding-top:20px\"><div style=\"font-family:sans-serif\"><div class style=\"font-size:12px;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;mso-line-height-alt:18px;color:#555;line-height:1.5\"><p style=\"margin:0;font-size:16px;mso-line-height-alt:24px\"><strong>We see you signed up with Printful a month ago but haven’t ordered anything yet.</strong> We’d like to hear your thoughts on how we could improve your experience.</p><p style=\"margin:0;font-size:16px;mso-line-height-alt:18px\">&nbsp;</p><p style=\"margin:0;font-size:16px;mso-line-height-alt:24px\">Fill out a 2-minute survey and receive a $5 coupon code you can use for Printful orders—a small thank you for your time.</p></div></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-4\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#fff;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;padding-top:5px;vertical-align:top;border-top:0;border-right:0;border-bottom:0;border-left:0\"><table class=\"text_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr><td class=\"pad\" style=\"padding-left:10px;padding-right:10px\"><div style=\"font-family:sans-serif\"><div class style=\"font-size:12px;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;mso-line-height-alt:14.399999999999999px;color:#555;line-height:1.2\"><p style=\"margin:0;font-size:14px;mso-line-height-alt:16.8px\"></p></div></div></td></tr></table><table class=\"button_block block-2\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"padding-bottom:10px;padding-left:30px;padding-right:30px;padding-top:10px;text-align:left\"><div class=\"alignment\" align=\"left\"><!--[if mso]><v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" href=\"https://links.printful.com/u/click?_t=67a5f8b7ad4949ae834ded7d199b2915&_m=e7498a678a1f40a2a9273983581fb93d&_e=YRm88zEc5vP8J4uoy8F5UUPMsIK131f3MUF41AS2oxE1dd0Dvoj47BuggjJ4Lo5jI5wsCJ2aKA2hhBOBemstwW0XBAxvMgB2_I8gowsBs6feo5JJUZnr3hEkuSGNucrwXKW5Bdb9sF5Le9ldL1C6in_lGbYAkySqwASwfz6PNKsdSd5T3_qabnOcakJVqbWuY55b56Y9b1diT7b1ntdfXy47vA8TqhYzVz7MX0CI9Al-cqH8-0-tg1HugWue9ru1AOLY2Ic3KWKZnPRE6qP-Ehnd-Mdg1WHzWxv61KCrhAAUdb2nkJSpKqEQ4EkGAYZPCWpYg7jgVkwyLfjV-3aTZU80AGHvbJHn-6SPecKNilU%3D\" style=\"height:41px;width:160px;v-text-anchor:middle;\" arcsize=\"13%\" stroke=\"false\" fillcolor=\"#e40f0a\"> <w:anchorlock/> <v:textbox inset=\"0px,0px,0px,0px\"> <center style=\"color:#ffffff; font-family:Arial, sans-serif; font-size:16px\"><![endif]--><a href=\"https://links.printful.com/u/click?_t=67a5f8b7ad4949ae834ded7d199b2915&_m=e7498a678a1f40a2a9273983581fb93d&_e=YRm88zEc5vP8J4uoy8F5UUPMsIK131f3MUF41AS2oxE1dd0Dvoj47BuggjJ4Lo5jI5wsCJ2aKA2hhBOBemstwW0XBAxvMgB2_I8gowsBs6feo5JJUZnr3hEkuSGNucrwXKW5Bdb9sF5Le9ldL1C6in_lGbYAkySqwASwfz6PNKsdSd5T3_qabnOcakJVqbWuY55b56Y9b1diT7b1ntdfXytZ6h4cs8cdu46uCEai9512vHfxAGec1J-4u2G-q4GGqur8HRMUBoXiS5cZq6rifJIuiF8J9ivySq5E7TpxuUDQrPM8kxCnB-ADF_3UKUSZXeYiyZ34nkxnW79CIvA-njZtzygzrCXOFd7zeXUejxU%3D\" target=\"_blank\" style=\"text-decoration:none;display:inline-block;color:#fff;background-color:#e40f0a;border-radius:5px;width:auto;border-top:0 solid transparent;font-weight:400;border-right:0 solid transparent;border-bottom:0 solid transparent;border-left:0 solid transparent;padding-top:5px;padding-bottom:5px;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-size:16px;text-align:center;mso-border-alt:none;word-break:keep-all\"><span style=\"padding-left:20px;padding-right:20px;font-size:16px;display:inline-block;letter-spacing:normal\"><span style=\"word-break:break-word;line-height:32px\"><strong>Take the Survey</strong></span></span></a><!--[if mso]></center></v:textbox></v:roundrect><![endif]--></div></td></tr></table><table class=\"text_block block-3\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr><td class=\"pad\" style=\"padding-left:10px;padding-right:10px\"><div style=\"font-family:sans-serif\"><div class style=\"font-size:12px;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;mso-line-height-alt:14.399999999999999px;color:#555;line-height:1.2\"><p style=\"margin:0;font-size:14px;mso-line-height-alt:16.8px\"></p></div></div></td></tr></table><table class=\"text_block block-6\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr><td class=\"pad\" style=\"padding-bottom:20px;padding-left:30px;padding-right:30px;padding-top:20px\"><div style=\"font-family:sans-serif\"><div class style=\"font-size:12px;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;mso-line-height-alt:18px;color:#555;line-height:1.5\"><p dir=\"ltr\" style=\"margin:0;mso-line-height-alt:24px\"><span style=\"font-size:16px\">Cheers,</span><br><span style=\"font-size:16px\">The Printful Team</span></p></div></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-5\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#f4f4f4;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;vertical-align:top;border-top:0;border-right:0;border-bottom:0;border-left:0\"><table class=\"html_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div style=\"font-family:Helvetica Neue,Helvetica,Arial,sans-serif;text-align:center\" align=\"center\"><table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" width=\"100%\" style=\"width: 100%; min-width: 100%; margin: 0 auto; border-spacing: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;\"> <tbody> <tr> <td align=\"center\" style=\"padding-left:1px;padding-right:1px;height:1px;line-height:1px;font-size:1px;\"> <div class=\"word-break: break-word; vertical-align: top; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;\" style=\"display:block;height:1px;background-color:#ffffff;line-height:1px;font-size:1px;\">&nbsp; </div> </td> </tr> <tr> <td align=\"center\" style=\"padding-left:1px;padding-right:1px;height:1px;line-height:1px;font-size:1px;\"> <div class=\"word-break: break-word; vertical-align: top; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;\" style=\"display:block;height:1px;background-color:#ffffff;line-height:1px;font-size:1px;\">&nbsp; </div> </td> </tr> <tr> <td align=\"center\" style=\"padding-left:2px;padding-right:2px;height:1px;line-height:1px;font-size:1px;\"> <div class=\"word-break: break-word; vertical-align: top; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;\" style=\"display:block;height:1px;background-color:#ffffff;line-height:1px;font-size:1px;\">&nbsp; </div> </td> </tr> <tr> <td align=\"center\" style=\"padding-left:3px;padding-right:3px;height:1px;line-height:1px;font-size:1px;\"> <div class=\"word-break: break-word; vertical-align: top; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;\" style=\"display:block;height:1px;background-color:#ffffff;line-height:1px;font-size:1px;\">&nbsp; </div> </td> </tr> <tr> <td align=\"center\" style=\"padding-left:4px;padding-right:4px;height:1px;line-height:1px;font-size:1px;\"> <div class=\"word-break: break-word; vertical-align: top; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;\" style=\"display:block;height:1px;background-color:#ffffff;line-height:1px;font-size:1px;\">&nbsp; </div> </td> </tr> <tr> <td align=\"center\" style=\"padding-left:5px;padding-right:5px;height:1px;line-height:1px;font-size:1px;\"> <div class=\"word-break: break-word; vertical-align: top; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;\" style=\"display:block;height:1px;background-color:#ffffff;line-height:1px;font-size:1px;\">&nbsp; </div> </td> </tr> <tr> <td align=\"center\" style=\"padding-left:7px;padding-right:7px;height:1px;line-height:1px;font-size:1px;\"> <div class=\"word-break: break-word; vertical-align: top; min-width: 100%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;\" style=\"display:block;height:1px;background-color:#ffffff;line-height:1px;font-size:1px;\">&nbsp; </div> </td> </tr> </tbody> </table> <div><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"font-size: 16px; font-family: Helvetica, Arial, sans-serif; color: #555; line-height: 150%; text-align: center;\"> <tbody> <tr> <td> <h2 style=\"color: #555; font-size: 24px; margin: 24px 0 18px 0; font-weight: bold; line-height: 32px;\"> Stay in touch! </h2> <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\"> <tbody> <tr> <td style=\"padding: 0 8px;text-align: center;\"><a style=\"display: block;\" href=\"https://links.printful.com/u/click?_t=67a5f8b7ad4949ae834ded7d199b2915&_m=e7498a678a1f40a2a9273983581fb93d&_e=YRm88zEc5vP8J4uoy8F5UfLLBPIueEBK5gCtIrB2UMDLCFLYHULWFqyOk4NSxESxafCxA_LwHADeig1U3C32riVTJeI8LMB6OZ-MvwSpCwJlzQ8jY80L3tbqnDRIqzB9WsW1UqUBSs_BW3iO_b96aUiI88yXS9xsBk66yobtdVlX33GdhQW6PsJ1dCuJEzbwuAyK3BeM516leAESRNXo79QvrTkw4vN8MMX_OC31niEluHzfBZc_8DbNa_CzF5cZeDhSxG21YR-38GR4ZTNM16s8Vq-Rkc3pmW-hzBi_WgoKf125Sb5SVzC7i4RN5riGgFxYAETtS_US7nyfFBqthOyxcxPxwEydIMgj3hraKO5j7-vKELPoN8eigDYgtFibdTmdUw45J_TSZKspTqYoJsHOTyJyzIFXltI4eVEdAi2wvu3O3JlsIGDcHC4uU4b5pyvcIun0MhxA39sxEdlcEw%3D%3D\"><img style=\"display: block; width: 32px;\" alt=\"\" width=\"32\" height=\"auto\" src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/669d5713-9b6a-46bb-bd7e-c542cff6dd6a/67a5f8b7ad4949ae834ded7d199b2915/editor_images/Tiktok.png\"/></a> </td> <td style=\"padding: 0 8px;text-align: center;\"><a style=\"display: block;\" href=\"https://links.printful.com/u/click?_t=67a5f8b7ad4949ae834ded7d199b2915&_m=e7498a678a1f40a2a9273983581fb93d&_e=YRm88zEc5vP8J4uoy8F5UYy_TGZxaRu6uKrvYnAZR8P4YPod_XbuG_xQJ5rPscmkdFewiR4E77nYXgBUIqDI8E2DCD39swZ7DJBF-B2pg7PL4Txi9te73GtvOQHITDM3ysyzXDaVdKCD3OfnzSTrUyGXcSP62fTvS4rCaSvwZvAO4C0zH3eevAqjVMkD33A3i9V5xsQrhdfNVCSpF8lSYDf2EWccxdf7-SBoYBjfGhzKVVMQ6MuFQxz-j_OjIwy9OIEgx0Yek6J4cLT3uvi9MQDuJMBF8SNb8mn_kAR_MKpnnDwr3MSeQWftdklcsL3-QgPtkfkGWMt5o0jB2sApq1Q5aC_u4A7bw50RrqudMvHamId6NJybKu4PydzqqMN-Gq4MZfWeCqrC8Wuo8FZcKIG3wGxTEQUCUdHzy4eBJv15xNOt3o_oHAuuiuwH7hdnE9WtQCu2S4x1TWpxic-CXA%3D%3D\"><img style=\"display: block; width: 32px;\" alt=\"\" width=\"32\" height=\"auto\" src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/669d5713-9b6a-46bb-bd7e-c542cff6dd6a/67a5f8b7ad4949ae834ded7d199b2915/editor_images/Instagram.png\"/></a> </td> <td style=\"padding: 0 8px;text-align: center;\"><a style=\"display: block;\" href=\"https://links.printful.com/u/click?_t=67a5f8b7ad4949ae834ded7d199b2915&_m=e7498a678a1f40a2a9273983581fb93d&_e=YRm88zEc5vP8J4uoy8F5UaMLxmjDlqOoGcD6t0-b7XzYxf-UC16uDBsHw0BGb_jtdVYX4fk7DvUpg9XwXqheYt4RQe5qnqIYhSUBwDjgF799GxTQoDLnHSLa7irQIanb-Ko536q_QGwyux-CIjuTDc7aIssPOdF4sjydrbA6CYTkH0CWbblLTXTVUA0uzS3s7-7EQRq-Btc5R442ljNoNm9jkhE4LJ7-S5Cpzdd78DWcLrF5aZPpeBMUuY2F_xA_GLCKVk8QICZajica-L8McVDstXf1lca8XdCXquTOLSEBhLpSI9kAyb87eIFdr4Wy9CIsq0UIyfwxb25Sk5psyJ0Wqh1TR3IaFxw1kEA4-Q1zIKBXcALAirrurmzN4cKmeEREOSdihDhaJlShRDFJhK6XS1fGTtJVlGFEsdeLSYA9oEbOBAtRRAl_oT9J_0a99BYhfzLvmE2kGCRd9p2_NdfkE59fsIe5KTZzhOJIB3UKSwi9XKSn8ZlYQSCFNtNI\"><img style=\"display: block; width: 32px;\" alt=\"\" width=\"32\" height=\"auto\" src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/669d5713-9b6a-46bb-bd7e-c542cff6dd6a/67a5f8b7ad4949ae834ded7d199b2915/editor_images/Youtube.png\"/></a> </td> <td style=\"padding: 0 8px;text-align: center;\"><a style=\"display: block;\" href=\"https://links.printful.com/u/click?_t=67a5f8b7ad4949ae834ded7d199b2915&_m=e7498a678a1f40a2a9273983581fb93d&_e=YRm88zEc5vP8J4uoy8F5UbBU6qXOKALEm-d8GrnAyio97dVX8ElOrOLRlBDgwZovJXU8ToopZRpvhBkuCBhqSxUtOIDSmk_udewdG6-cYyWiYsfzIi52mTVVpUONvW0rmkvruaDlGscnJQcmrKkWfCk19_jMJex4iCRT-qoLD-MqEzPz4anqLZuLQM20bdpMoNa3vRsqKaPGkNjPONPlP9-hkg89887yNC5wMH_wOQh9cR5NUf1gU9kkwQkd1Z5Z-in7ARleO9P0KAxSC1UlRPSHj9UlNtSDVeq8oArZyp1XdkcUCxvjyUOh1yyISFjdmo65E_BJVnt4ZuYQYRjgYwCsgTPRFDElgi6z0OVP4bcxQnWuYoyKU9p1Yi_GZuaFIRJttLTFnpGRcxEqNZ1Y1hl_QgwhvbHlcC_MSMy_Am0GSf8cwCC19VFUUs0K4Iw77nrMvHzgjk-U33Gw2oZ-AbrA5QmLFWC5lj_BjA9ihdg%3D\"><img style=\"display: block; width: 32px;\" alt=\"\" width=\"32\" height=\"auto\" src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/669d5713-9b6a-46bb-bd7e-c542cff6dd6a/67a5f8b7ad4949ae834ded7d199b2915/editor_images/Linkedin.png\"/></a> </td> <td style=\"padding: 0 8px;text-align: center;\"><a style=\"display: block;\" href=\"https://links.printful.com/u/click?_t=67a5f8b7ad4949ae834ded7d199b2915&_m=e7498a678a1f40a2a9273983581fb93d&_e=YRm88zEc5vP8J4uoy8F5UdsEqTARaDXD4ETpjouoQDY6cWo16GVY-5xU_SdH_WX-8-GH2u2C2y6LFMrBbC4NtwDH_Qqhak42ZntgZ8VWtHmUY3RUNjSiioWSQCYUv9-diF5QoaOXr3JMqG6mP7OQp3xW7wP9s0AEOfvz1iP_YwopJhjFAZScPYv2BYRsXLqKOQeY7Gq7ZGD99DQJHTWmpzV-40hQ4iKQyMDDHcXxlo72468rYRlan66WJaEZ121heoVCLp0iG1BC3v9skaLFRpvE7qRnZxWK1WKtBwc_AvmngTwTn8HaDwcKG5KpIKQWU6PnMCGp0LecfY45DFsUIY2epoK7VRssLtRAZDc5pbgR8Jzsz5WK4zO9zwVumhbv1t3R-fsG8tvoxKHBqyZBJlcKhXMTGKXhRXzNk1i4DlZFQ4ot1X8786TlNmbfPQJTTDnbXL2eqMCFU9pgzAltnA%3D%3D\"><img style=\"display: block; width: 32px;\" alt=\"\" width=\"32\" height=\"auto\" src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/669d5713-9b6a-46bb-bd7e-c542cff6dd6a/67a5f8b7ad4949ae834ded7d199b2915/editor_images/X.png\"/></a> </td> </tr> </tbody> </table> <table width=\"70%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"max-width:420px;\"> <tbody> <tr> <td style=\"max-width:300px; padding: 14px 0 0;\"> <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"> <tbody> <tr> <td align=\"right\" style=\"width: 30%; padding:10px;\"><img border=\"0\" style=\"width: 100%; max-width: 44px; display: block;\" width=\"44\" alt=\"\" src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/669d5713-9b6a-46bb-bd7e-c542cff6dd6a/67a5f8b7ad4949ae834ded7d199b2915/editor_images/t-shirt-and-hoodie.png\"/> </td> <td style=\"width: 70%; padding:10px;\"> <p style=\"font-size: 14px; line-height: 120%; text-align: left; margin: 0;\"> <a style=\"color:#222; text-decoration:underline;\" href=\"https://links.printful.com/u/click?_t=67a5f8b7ad4949ae834ded7d199b2915&_m=e7498a678a1f40a2a9273983581fb93d&_e=YRm88zEc5vP8J4uoy8F5UaBbyfQg5aMVUsFND3PDSUHxgX8kb4w0IeRBeOv0gX2RQKvTG1DGJSGFFgPQp42gmFcdfydXONy6dSl2ijAhP3QWptDO7jPBrxFV7OtmNl3ZPmpIemSoUmh1DDU2C2cv2-1q-LYLcvPAO_rBrSz69GXI8aml5q3qLD4eW4jIqyLAk2HXw87hhpMxfTITVtwfJXaCTzsUYhT_Jbd5Ram29YisDGuCgTwYjFXIi-u10U2vvCrqxBm0ObnfhzQnft6e2oUf6Z7h8LhNBSlSuBUTUSFPRVfghIMRMLdxsIFh6vQ-KyESWrHEl_q2iLhWPDD27rfcMs8JAWBChYllpIlBWhzMRWGHuQJ4flB64S3Kv_Sehorh4OYR061-Vv1PQo8UBMQODgMKNgRADC3NH2ZttPeEA5yipXk8IFwjM0TdZK3lIwi4t0m4Ub4cbAvEn6Nt9QyrWQDAzf4R2vFalW-UTPUb8p5Y5dZBt0y_h7Q60KlJkvPfpwH596F7N2dYaK3ukQ%3D%3D\">Fulfilling your ideas on demand</a> </p> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <p style=\"font-size: 16px; line-height: 24px; text-align: center; color: #222; font-weight: bold; margin: 16px 0 8px 0;\"> Trusted to deliver 111.2M items since 2013 </p> <p style=\"font-size: 14px; line-height: 18px; text-align: center; color: #555; margin: 0 16px 24px;\"> Printful Inc., 11025 Westlake Dr., Charlotte, NC 28273, USA </p> <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\"> <tbody> <tr> <td style=\"padding: 0 12px 24px 12px;text-align: center;\"><a style=\"display: block;\" href=\"https://links.printful.com/u/click?_t=67a5f8b7ad4949ae834ded7d199b2915&_m=e7498a678a1f40a2a9273983581fb93d&_e=YRm88zEc5vP8J4uoy8F5UWSnXLB6rIO0OWU_OH9jA32BVbMTvBhnYXGeQPi-0YXQI8Znt814GcvQswviViDDA0dnQLDcUVLSRESWwfwF3ben8C-Vyr74IljwoMOWU0AXmb48cIhAUhgasrzp_Bwy7F-NGRDDaNaENGLSEg8HMrrjQVEKWrcHBXobxZMj3XnqIpVBgAdL7RmmVpORruRNKwK_06nse-_nnMF0yFB7k7iIfUQiEro2XOXG4YEJXsye_5UttQrypOtBVt7cvlX4gvFsKl82l5mUHlkHquwgcw359byzBwlYdGqivfo0Knc9O0RAwthftqtzVxYJ0dBt43xaHBs1nFpmr2qyQTyxu2FrcypNIFhxEfFlNet9OAf6LjqPirxfJ4SWr3Y0Dt9oZbc44wHBQwRy89IVNFMqydq5EWZSfpA3A7eUcQv5v0KYlcEx5il9OcFTwC8JhrPUV1VL1ONFM7MB0k0tjPj9K0kaYt_a9ZKhyyc7QN4Y0OpB7PO03Ec4ZQ2S3Wqd64GxYsQmncwStZM9QBor8pJLds7XmQagclWlTOnUPGz4BQ9M\"><img style=\"display: block; width: 120px;\" alt=\"iOS App\" width=\"120\" height=\"auto\" src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/669d5713-9b6a-46bb-bd7e-c542cff6dd6a/67a5f8b7ad4949ae834ded7d199b2915/editor_images/appstore_EN.png\"/></a> </td> <td style=\"padding: 0 12px 24px 12px;text-align: center;\"><a style=\"display: block;\" href=\"https://links.printful.com/u/click?_t=67a5f8b7ad4949ae834ded7d199b2915&_m=e7498a678a1f40a2a9273983581fb93d&_e=YRm88zEc5vP8J4uoy8F5UWz4af_H727blV2BDJXLDCFx90TVl2SOFt-yJdSdjOoengOTclHGHTGZbLTCgC0Pfhk51VlCTosutj1LheQz_CkebNnbPKCJrj2UsbdLc0gzNwRfFoVkfuwIyllvBrPbQTw9NB3KqkPvLZnkFrdrzbrWouKrG2ZBG9KILuGcPHxkonhwCfKI8_ywz5t3aH_DbijvBaHW-vjvVkZQbH8CQ08DeHmqGDd-D8QTtI1r0XNfSSbJPW6LgsF9_m5Gupd5A3BeFRoEgmu4-vAc-UJQDTsIZ4oXZpOAyZ6AErYX2ByvHwai1xDMzNnzqBzEVcuSiYc8gq6ZTl6cgzk80Jn0YGIrj-2SdMwfK--Uz7CF24ogsC2In6GEwpJXey4GrQzH1Z8Crg6ZruJdU37qkn4ncSO1Ynq6qVxJv73q0Mrta6N0q-m5nd6W7tHUX5_dDtn5-HPUaiZBpBrzc9FIVxAH4_qvQHuuBXaQLgEh5t-TtNClx7Z3x9MfQZlKpTz7YceMOl2y9c1MD0iuqEvBC-yocQA%3D\"><img style=\"display: block; width: 135px;\" alt=\"Google Play\" width=\"135\" height=\"auto\" src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/669d5713-9b6a-46bb-bd7e-c542cff6dd6a/67a5f8b7ad4949ae834ded7d199b2915/editor_images/playstore_EN.png\"/></a> </td> </tr> </tbody> </table> <!-- --> <p style=\"line-height: 120%; font-size: 14px; color: #555; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; text-align:center; margin: 8px 0;\"> You’ve received this email because you’ve registered at Printful to sell online. </p> <!-- --> </td> </tr> </tbody> </table></div></div></td></tr></table><table class=\"text_block block-2\" width=\"100%\" border=\"0\" cellpadding=\"10\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr><td class=\"pad\"><div style=\"font-family:sans-serif\"><div class style=\"font-size:12px;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;mso-line-height-alt:14.399999999999999px;color:#555;line-height:1.2\"><p style=\"margin:0;font-size:14px;text-align:center;mso-line-height-alt:16.8px\">Unsubscribe <a href=\"https://links.printful.com/e/eh?_t=67a5f8b7ad4949ae834ded7d199b2915&_m=e7498a678a1f40a2a9273983581fb93d&_e=YRm88zEc5vP8J4uoy8F5UaBbyfQg5aMVUsFND3PDSUHLQnxoigdllCRIYBbRKeu_BLNjEz6IlGPkZBZrEDnB6YKhuiVJaDnWSTGRNdSew8UCHDvi2CQSEMEJJVVWDeNq-hu79QVR07nRzI_CBP8F-dta_Lnbxzj8ZGU4o9f7X08M0z0N76H3UVJv1FWpqfpcd9G5xUgkH58o_SlgnfTi906jb7cjkXbTuWkq_wS2VeCnIj4lV3HZOcSnXhPQN5si1v-DOyzMSEtGY-GP-d4DapeWrZTnEL2JPUUIhaJV5inBloYwAfRVP7WKjIqYRSgVWcRAh-84UmgqAX_790BbiyLsVBP3zbGYr7DdMfxiJfE%3D\" target=\"_blank\" rel=\"noopener\" style=\"color:#ed4642\">here</a> | Manage your <a href=\"https://links.printful.com/u/click?_t=67a5f8b7ad4949ae834ded7d199b2915&_m=e7498a678a1f40a2a9273983581fb93d&_e=YRm88zEc5vP8J4uoy8F5UaBbyfQg5aMVUsFND3PDSUFegrF01rQGkSAHMoDyxIKxsMNtsxxXm_sDXq-W1WcJKfFMJaChtTXDM_EhZMJ_1hUpB3fdU6UUounHqHzL_awm8h5AgRwQpctEczrJWnh3ZQoh553XuFBSeK7zIrLfeMS_nhYbZqi04lY2B9WCjOAiAzhxXjCnMu9sEccim5iLLluTNAYBoZbVJ6eOr4c-3eVPPJL9-332nemudz1W2sI4_g-mAc6lh8YKIuAX3C6vWIS90uVkN07AysF_Wztx_pV9Kuq7JiVK5IQ8xoIKNtZIEav5i5AXWE7u3a7AQv2drA%3D%3D\" target=\"_blank\" rel=\"noopener\" style=\"color:#ed4642\">email preferences</a></p></div></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table><!-- End -->\r\n<img border=\"0\" width=\"1\" height=\"1\" alt=\"\" src=\"https://post.spmailtechnolo.com/q/nKMVn7TLgGqvFl24wC97AQ~~/AARGbBA~/PJJVLOQFW1N7RIR4dlxqr1_1A8F_c5UTB8SOXS21RkX6d6ZIGxEyPjdcXLpK2pSa\">\r\n</body></html>','Get a $5 coupon for 2-min. survey\n\n\n\n\n  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏ \n ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏ \n ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏ \n ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏ \n ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏ \n ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏ \n <https://www.printful.com/?utm_content=header> \n\nNew products \n<https://www.printful.com/custom/collections/new?utm_content=header> • Services \n<https://www.printful.com/services?utm_content=header> • Blog \n<https://www.printful.com/blog/?utm_content=header> \n\n\n\n\n\n\n\n\n\n\n\nShare your thoughts and save $5 on your next order!\n\n\n\n\nWe see you signed up with Printful a month ago but haven’t ordered anything \nyet. We’d like to hear your thoughts on how we could improve your experience.\n\n\n\nFill out a 2-minute survey and receive a $5 coupon code you can use for \nPrintful orders—a small thank you for your time.\n\n\n\n\n\n\nTake the Survey \n<https://www.surveymonkey.com/r/printful2?env=13058791&profile=b2bShopify>\n\n\n\n\nCheers,\nThe Printful Team\n\n\n\n\n\n\n\n\n\n\n\n\n Stay in touch! \n\n <https://www.tiktok.com/@printful/?utm_content=footer>  \n<https://www.instagram.com/printful/?utm_content=footer>  \n<https://www.youtube.com/PrintfulCustomPrinting?utm_content=footer>  \n<https://www.linkedin.com/company/printful/?utm_content=footer>  \n<https://twitter.com/printful?utm_content=footer> \n\n\nFulfilling your ideas on demand \n<https://www.printful.com/sustainability-responsibility?utm_content=footer> \n\n Trusted to deliver 111.2M items since 2013 \n\n Printful Inc., 11025 Westlake Dr., Charlotte, NC 28273, USA \n\n \n<https://itunes.apple.com/us/app/printful-app/id1348743033?ls=1&mt=8?utm_content=footer>\n \n<https://play.google.com/store/apps/details?id=com.printful.app&utm_content=footer>\n You’ve received this email because you’ve registered at Printful to sell \nonline.\n\n\nUnsubscribe here \n<https://links.printful.com/e/eh?_t=67a5f8b7ad4949ae834ded7d199b2915&_m=e7498a678a1f40a2a9273983581fb93d&_e=YRm88zEc5vP8J4uoy8F5UaBbyfQg5aMVUsFND3PDSUHLQnxoigdllCRIYBbRKeu_BLNjEz6IlGPkZBZrEDnB6YKhuiVJaDnWSTGRNdSew8UCHDvi2CQSEMEJJVVWDeNq-hu79QVR07nRzI_CBP8F-eTeeG9BadKAZx4QKqLEa85vqCVndAqcp8vRie-ok30masygOjATUaDY2CijwT97UwSQRKI8YVLfmDUEOY_Y0VRc2y8M8yugJHOsgInnJb25oaq0rtXjdCK6vTo9KZPqpQ%3D%3D>\n | Manage youremail preferences \n<https://www.printful.com/dashboard/settings/notifications>',0,0,0,0,0,0,'2025-08-11 16:02:15','2025-12-04 14:04:54','2025-12-04 14:04:54','2025-12-04 14:04:54',NULL,NULL,NULL),
(91,4,'<185437862732438528.0.v2@titan.email>',NULL,NULL,'Re:  Manned Drone project','info@jcdronesltd.com','\"Jc. Drones\"','(No content)','(No content)',0,0,0,0,0,0,'2025-08-08 20:15:40','2025-12-04 14:04:55','2025-12-04 14:04:55','2025-12-04 14:04:55',NULL,NULL,NULL),
(92,4,'<185380474710072320.0.v2@titan.email>',NULL,NULL,'Re:   Manned Drone project','info@jcdronesltd.com','\"Jc. Drones\"','(No content)','(No content)',0,0,0,0,0,0,'2025-08-08 05:03:31','2025-12-04 14:04:56','2025-12-04 14:04:56','2025-12-04 14:04:56',NULL,NULL,NULL),
(93,4,'<sCm0iZcXSh6uPn-MKorZXg@geopod-ismtpd-12>',NULL,NULL,'Fly with a Navy SEAL =?UTF-8?B?4oCU?= Virtual Drone Qualifier is Live!','registration@usnda.org','USNDA Registration','<!doctype html><html lang=\"en\" xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head><title></title><!--[if !mso]><!--><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><!--<![endif]--><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><style type=\"text/css\">#a a {padding:0;}body {margin:0;padding:0;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;}table,td {border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;}img {border:0;height:auto;line-height:100%;outline:none;text-decoration:none;-ms-interpolation-mode:bicubic;}p {display:block;margin:13px 0;}</style><!--[if mso]>\r\n    <noscript>\r\n    <xml>\r\n    <o:OfficeDocumentSettings>\r\n      <o:AllowPNG/>\r\n      <o:PixelsPerInch>96</o:PixelsPerInch>\r\n    </o:OfficeDocumentSettings>\r\n    </xml>\r\n    </noscript>\r\n    <![endif]--><!--[if lte mso 11]>\r\n    <style type=\"text/css\">\r\n      .mj-outlook-group-fix { width:100% !important; }\r\n    </style>\r\n    <![endif]--><style type=\"text/css\"></style><style type=\"text/css\"></style><!--[if !mso]><!--><link href=\"https://static.parastorage.com/unpkg/@wix/wix-emails-fonts@1.1.2/f/Ubuntu.css\" rel=\"stylesheet\" type=\"text/css\"><style type=\"text/css\">@import url(https://static.parastorage.com/unpkg/@wix/wix-emails-fonts@1.1.2/f/Ubuntu.css);</style><!--<![endif]--><style type=\"text/css\">@media only screen and (min-width:480px){ .a {width:100%!important;max-width:100%;}.b {width:70.67723342939482%!important;max-width:70.67723342939482%;}.c {width:29.322766570605186%!important;max-width:29.322766570605186%;}.d {width:50%!important;max-width:50%;} }</style><style media=\"screen and (min-width:480px)\">.e .a {width:100%!important;max-width:100%;}.e .b {width:70.67723342939482%!important;max-width:70.67723342939482%;}.e .c {width:29.322766570605186%!important;max-width:29.322766570605186%;}.e .d {width:50%!important;max-width:50%;}</style><style type=\"text/css\">[owa] .a {width:100%!important;max-width:100%;}[owa] .b {width:70.67723342939482%!important;max-width:70.67723342939482%;}[owa] .c {width:29.322766570605186%!important;max-width:29.322766570605186%;}[owa] .d {width:50%!important;max-width:50%;}</style><style type=\"text/css\">.f {text-decoration:none;} @media all and (max-width:480px){ .g td {width:100%!important;} }@media all and (max-width:480px){ .h{font-size:17px!important;}.i{font-size:16px!important;}.j{font-size:14px!important;}.k{font-size:31px!important;}.l{font-size:17px!important;}.m{font-size:31px!important;}.n{font-size:23px!important;}.o{font-size:16px!important;}.p{font-size:15px!important;}.q{font-size:15px!important;}.r{font-size:14px!important;}.s{font-size:29px!important;}.t{font-size:15px!important;}.h{line-height:23.799999999999997px!important;}.i{line-height:22.4px!important;}.j{line-height:19.599999999999998px!important;}.k{line-height:43.4px!important;}.l{line-height:23.799999999999997px!important;}.m{line-height:43.4px!important;}.n{line-height:32.199999999999996px!important;}.o{line-height:22.4px!important;}.r{line-height:19.599999999999998px!important;}.s{line-height:40.599999999999994px!important;} .u>table {width:100%!important;} .v {display:none!important;} .w .x>table>tbody>tr>td {padding-bottom:24px!important;} .y .x>table>tbody>tr>td {padding-top:24px!important;} .w.x>table>tbody>tr>td {padding-bottom:24px!important;} .y.x>table>tbody>tr>td {padding-top:24px!important;} .z .x>table>tbody>tr>td {padding-top:16px!important;} .ab .x>table>tbody>tr>td {padding-right:16px!important;} .bb .x>table>tbody>tr>td {padding-bottom:16px!important;} .cb .x>table>tbody>tr>td {padding-left:16px!important;} .db .x>table>tbody>tr>td {padding-left:0px!important;} .eb .x>table>tbody>tr>td {padding-right:0px!important;} .fb>table>tbody>tr>td {padding-right:16px!important;} .gb>table>tbody>tr>td {padding-left:16px!important;} }@media only screen and (max-width:480px){ .hb>table>tbody>tr>td {padding-bottom:0px!important;} .ib>table>tbody>tr>td {padding-top:24px!important;} .jb {width:36px!important;height:36px!important;} .kb {width:12px!important;} .lb {margin:12px!important;} .mb{font-size:12px!important;} .nb{font-size:31px!important;} .ob{font-size:27px!important;} .pb{font-size:24px!important;} .qb{font-size:17px!important;} .rb{font-size:20px!important;} .sb{font-size:29px!important;} .tb{font-size:14px!important;} .ub{font-size:23px!important;} .vb{line-height:16px!important;} .wb{line-height:36px!important;} .xb{line-height:31px!important;} .yb{line-height:28px!important;} .zb{line-height:23px!important;} .ac{line-height:26px!important;} .bc{line-height:34px!important;} .cc{line-height:19px!important;} .dc {padding:0!important;} .ec {max-width:100%!important;} .fc {max-width:unset!important;} .gc img,.hc img {max-width:none!important;width:100%!important;} .ic>table>tbody>tr>td,.jc>table>tbody>tr>td,.gc>table>tbody>tr>td,.hc>table>tbody>tr>td {padding:0!important;} .gc {padding-bottom:20px!important;} .kc div {height:20px!important;} .gc>table>tbody>tr>td {padding-top:20px!important;} .hc>table>tbody>tr>td {padding-bottom:20px!important;} .gc,.ic {padding-bottom:20px!important;} .lc>table>tbody>tr>td {padding:0px 12px!important;} .jc>table>tbody>tr>td {padding:0px 8px!important;} .jc.hc>table>tbody>tr>td {padding-bottom:20px!important;} .mc {max-width:100%!important;} .mc img {height:100%!important;} .ic img {max-width:none!important;width:100%!important;} .nc {width:100%!important;padding-right:0!important;padding-left:0!important;} .oc>table>tbody>tr>td {padding-bottom:10px!important;} .pc {display:block!important;padding-bottom:18px!important;padding-top:18px!important;} .pc>* {width:70px!important;border-width:1px!important;} .qc {padding-top:0px!important;padding-bottom:0px!important;} .rc {padding-bottom:0px!important;} .oc>table>tbody>tr>td {padding-top:20px!important;} .sc>table>tbody>tr>td {padding:0!important;} .tc {padding:0!important;} .uc>table>tbody>tr>td {padding-top:8px!important;padding-bottom:10px!important;} .vc>table>tbody>tr>td {padding-top:20px!important;padding-bottom:10px!important;} .wc {padding-top:0px!important;padding-bottom:18px!important;} .wc>* {width:70px!important;} .xc {padding:0 20px!important;} .yc {padding:10px 20px 0!important;} .jc.zc {width:75%!important;}.jc.bd {width:25%!important;}.lc .cd>table>tbody>tr>td>a {padding-left:12px!important;padding-right:12px!important;} .dd>div {height:0px!important;} .ed>table>tbody>tr>td {padding-top:0px!important;} .ed .x>table>tbody>tr>td {padding-top:20px!important;} } @media only screen and (min-width:480px){ .html-emails-background>tbody>tr>td {padding:24px 0!important;} .sc.fd>table {border-right:1px solid #282936!important;} .sc.gd>table {border-left:1px solid #282936!important;} .sc.hd>table {height:67px!important;} }a,a:visited {text-decoration:none;}a,a:active,a:visited,a:hover,a:link {color:#109FFF;} .id>table>tbody>tr>td {overflow:hidden;} .id>div>table>tbody>tr>td {overflow:hidden;}[class=\"x_html-emails-background\"] {background-color:#282936!important;} .jc {display:inline-block!important;} .pc {display:none;}[owa] .gc,[owa] .hc {width:50%!important;}[owa] .jd {width:100%!important;max-width:100%!important;}[owa] .kd {max-width:400px;margin:0 auto;}[owa] .ld>table>tbody>tr>td {padding:20px 60px 20px 60px!important;}[owa] .md>table>tbody>tr>td {padding:40px 60px 20px 60px!important;}[owa] .nd {vertical-align:bottom!important;}</style><meta name=\"format-detection\" content=\"telephone=no,date=no,address=no,email=no,url=no\"><link rel=\"icon\" href=\"data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==\"><!--Ą--></head><body style=\"word-spacing:normal;background-color:#FFFFFF\"><div style=\"display:none;font-size:1px;color:#ffffff;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden\"><span>USNDA Virtual Drone Qualifier is Live for 72 hours!</span><span>&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;</span></div><div style=\"-webkit-font-smoothing:antialiased\"><div style=\"color:transparent;visibility:hidden;opacity:0;font-size:0px;border:0;max-height:1px;width:1px;margin:0px;padding:0px;border-width:0px!important;display:none!important;line-height:0px!important\"><img src=\"https://u49873623.ct.sendgrid.net/wf/open?upn=u001.D6mC8SG6iITw2GIzPjAtw3VnKGws73w4Kg-2Fn2LF1yNI0PYnEwO4aViJ17A-2FgMcCyDNZw4BdQF9O4Mb2-2BvqJUO3DQE7Xwf0dQZ0ScflZ658KGUDU39hy2bgSfFxSoQgs7diHI9OG2W5BgRvjyWxNCR0fNws7PV9GzLBjvYP4yEfUzwY7qAevG-2BuLNoc3tndI4Qtv-2FzmG85LF3yOxP7o00YodbHzpg9oBXydVBoYvVAUQxqldMv29yLnwjg1azvddM-2FIQGzvJoIvELDdt16Ca-2FTCRtP5n44ee6zi2IB9xvoOSF58tZkiI-2BzOPKlpifACK10OlTpir8dZE0a5IYFAI-2BgQp8dqIVLX1YgFCvSNgoeTVFOOjqGj6opV-2FE7LC8iPOu1FN1QAnTyErP-2BSNanszLl6zi-2Fu35H5peU4-2FjEFblNpIXRFLfdRHgwqr1V5o29HXDGJGRVPmrk1wfF6zd01vQWtTACrJqaFShc8qVSobsFXc0emL3j3Ib0P6Y8B0Pl1NC-2FiS4dMbTGFqkBr3BiVzCZa6BAt5VaJT1WPAfayeEedndsWEl-2FECT3WESzrEXZ0-2B-2FGQTiaNdBUKlQhcEIzQAQudyCRUsvb4-2Fw-2FpMa9-2BzMH33ZqeHVbZ7D263-2BHqNm0fav6CAWcfYfUFj2BjonnQpMUQ-3D-3D\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" style=\"height:1px !important;width:1px !important;border-width:0 !important;margin-top:0 !important;margin-bottom:0 !important;margin-right:0 !important;margin-left:0 !important;padding-top:0 !important;padding-bottom:0 !important;padding-right:0 !important;padding-left:0 !important;\"/></div><!--[if gte mso 9 & lt mso 16]><style> li { text-indent: -1em; }\r\n</style><![endif]--><!--[if gte mso 16]><style> ul li { margin-left: 60px; margin-right: 60px; } ol li { margin-left: 60px; margin-right: 60px; }\r\n</style><![endif]--><style>@media screen yahoo { .gc img,.hc img {max-width:90%!important;} .od {width:267px!important;} .html-emails-background {background-position:50% 0!important;} .nd {vertical-align:top!important;}tbody tr td div {overflow:visible!important;} }</style><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td><!--[if mso | IE]><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:732px\" width=\"732\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div style=\"margin:0px auto;max-width:732px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width:100%\"><tbody><tr><td style=\"direction:ltr;font-size:0px;padding:18px 20px 18px 20px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:692px\"><![endif]--><div class=\"\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"vertical-align:top\" width=\"100%\"><tbody><tr><td align=\"center\" style=\"font-size:0px;padding:0;word-break:break-word\"><div style=\"font-family:Helvetica,Ubuntu,Arial,sans-serif;font-size:12px;line-height:20px;text-align:center;color:#757575;white-space:pre-wrap\"><strong style=\"font-weight:normal\">Can\'t see this message? <u><a style=\"font-family:Helvetica,Ubuntu,Arial,sans-serif;color:#222222;font-size:12px;line-height:20px;text-decoration:none\" href=\"https://usnda.org/so/89PQ8uGrf/c?w=zh7W9ueRKCvHZlSBYEXU6GeO4S5nM7I8LF_ql8_hcxU.eyJ1IjoiaHR0cHM6Ly91c25kYS5vcmcvc28vODlQUTh1R3JmP2xhbmd1YWdlVGFnPWVuIiwibSI6Im1haWwiLCJjIjoiNGQxMWEzYjYtN2Q0NS00MTk3LTkzODgtZjhiMDlmNGY2MDE0In0\" rel=\"noopener noreferrer\" target=\"_blank\">View in browser</a></u></strong></div></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table><table align=\"center\" class=\"html-emails-background\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#282936;width:100%;background-color:#282936\" width=\"100%\" bgcolor=\"#282936\"><tbody><tr><td><!--[if mso | IE]><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:732px\" width=\"732\" bgcolor=\"#282936\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div style=\"margin:0px auto;max-width:732px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width:100%\"><tbody><tr><td style=\"direction:ltr;font-size:0px;padding:16px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"z bb ed\" style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;border-top:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"background-color:#282936;vertical-align:top;padding:20px 0px 20px 0px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><div style=\"text-align:center\"><a class=\"\" style=\"display:inline-block;max-width:100%;max-height:122px\"><!--[if mso]><img src=\"https://images.wixstatic.com/media/56e7cd_dba4bd5067714c3fa175150e3204a889~mv2.png/v1/fit/h_122,q_100,w_694,al_c,lg_0/56e7cd_dba4bd5067714c3fa175150e3204a889~mv2.png\" width=\"auto\" style=\"display:inline-block;max-width:100%;width:auto;vertical-align:middle;max-height:122px\" alt=\"\"/><![endif]--><!--[if !mso]><!--><img src=\"https://images.wixstatic.com/media/56e7cd_dba4bd5067714c3fa175150e3204a889~mv2.png/v1/fit/h_244,q_100,w_694,al_c,lg_0/56e7cd_dba4bd5067714c3fa175150e3204a889~mv2.png\" width=\"auto\" style=\"display:inline-block;max-width:100%;width:auto;vertical-align:middle;max-height:122px\" alt=\"\"><!--<![endif]--></a></div></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"h z ab bb cb ld\" style=\"color:#282936;font-family:helvetica,sans-serif;line-height:1.4;font-size:17px;background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px;\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"background-color:#282936;border:0px none transparent;border-radius:0px;vertical-align:top;padding:20px 60px 20px 60px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"dc\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:17px;font-style:normal;line-height:1;text-align:left;text-transform:none;color:#282936;white-space:pre-wrap\"><div style=\"text-align:center\"><p style=\"margin:0;font-size:12px;line-height:16px;\" class=\"mb vb\"><span style=\"color:rgb(255,255,255)\" class=\"mb vb\"><span style=\"font-size:12px;line-height:16px;\" class=\"mb vb\">Having trouble viewing this email?<br></span></span><a target=\"_blank\" href=\"https://usnda.org/so/89PQ8uGrf/c?w=uR2P_H-mpT5YSV1jgypVL0PbUdSghJX4OmWp938CBs0.eyJ1IjoiaHR0cHM6Ly91c25kYS5vcmcvc28vYTBQUHphUzUtP2xhbmd1YWdlVGFnPWVuJnN0YXR1cz1EcmFmdCZjaWQ9MDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIiwiciI6IjI4NzU0OWYzLWJjM2QtNGRmNy1iNzk1LTQyMGE3OWI3ZmI2YSIsIm0iOiJtYWlsIiwiYyI6IjRkMTFhM2I2LTdkNDUtNDE5Ny05Mzg4LWY4YjA5ZjRmNjAxNCJ9\" rel=\"noopener noreferrer\" style=\"color:#109FFF;text-decoration:none;\"><span style=\"color:rgb(255,255,255);line-height:16px;font-size:12px;text-decoration:underline\" class=\"mb vb\">Click here to view it in your browser.</span></a></p><p style=\"margin:0;font-size:12px;line-height:16px;\" class=\"mb vb\"><span style=\"color:rgb(255,255,255)\" class=\"mb vb\">or </span><a target=\"_blank\" href=\"https://usnda.org/so/89PQ8uGrf/c?w=Vdj9wbaej53uoQPC5m7uswUG9ihjShNWx6v2s65DThc.eyJ1IjoiaHR0cHM6Ly82YThiNDQ2MS0xMmEwLTQzYTItYmQxZi00YzBjOGY3Zjc2ZDQudXNyZmlsZXMuY29tL3VnZC82YThiNDRfY2JiY2M2YmEzMzdiNDVmNDlhYThlMzdhNzllZmI2NDkucGRmIiwiciI6IjI4NzU0OWYzLWJjM2QtNGRmNy1iNzk1LTQyMGE3OWI3ZmI2YSIsIm0iOiJtYWlsIiwiYyI6IjRkMTFhM2I2LTdkNDUtNDE5Ny05Mzg4LWY4YjA5ZjRmNjAxNCJ9\" rel=\"noopener noreferrer\" style=\"color:#109FFF;text-decoration:none;\"><span style=\"color:rgb(255,255,255);line-height:16px;font-size:12px;text-decoration:underline\" class=\"mb vb\">Click here to download it as a PDF.</span></a></p></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"\" style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0px 0px 0px 0px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"center\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;line-height:1;text-align:center;color:#000000;white-space:pre-wrap\"><a style=\"display:inline-block;max-width:100%\"><!--[if mso]><img src=\"https://static.wixstatic.com/media/b31579_120cd48e5fb9417a98d41fa7774d27be~mv2.jpg/v1/fit/w_694,h_2000,al_c,q_85/b31579_120cd48e5fb9417a98d41fa7774d27be~mv2.jpg\" width=\"694\" style=\"display:inline-block;max-width:100%;width:auto;vertical-align:middle\" alt=\"\"/><![endif]--><!--[if !mso]><!--><img src=\"https://static.wixstatic.com/media/b31579_120cd48e5fb9417a98d41fa7774d27be~mv2.jpg/v1/fit/w_1388,h_2000,al_c,q_85/b31579_120cd48e5fb9417a98d41fa7774d27be~mv2.jpg\" width=\"auto\" style=\"display:inline-block;max-width:100%;vertical-align:middle;width:auto;\" alt=\"\"><!--<![endif]--></a></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"\" style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0px 0px 0px 0px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"center\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;line-height:1;text-align:center;color:#000000;white-space:pre-wrap\"><a style=\"display:inline-block;max-width:100%\"><!--[if mso]><img src=\"https://static.wixstatic.com/media/6a8b44_a91c8f3713744508af4787485ece4623~mv2.png/v1/fit/w_694,h_2000,al_c,q_85/6a8b44_a91c8f3713744508af4787485ece4623~mv2.png\" width=\"694\" style=\"display:inline-block;max-width:100%;width:auto;vertical-align:middle\" alt=\"\"/><![endif]--><!--[if !mso]><!--><img src=\"https://static.wixstatic.com/media/6a8b44_a91c8f3713744508af4787485ece4623~mv2.png/v1/fit/w_1388,h_2000,al_c,q_85/6a8b44_a91c8f3713744508af4787485ece4623~mv2.png\" width=\"auto\" style=\"display:inline-block;max-width:100%;vertical-align:middle;width:auto;\" alt=\"\"><!--<![endif]--></a></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"h z ab cb ld\" style=\"color:#282936;font-family:helvetica,sans-serif;line-height:1.4;font-size:17px;background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px;\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"background-color:#C2274B;border:0px none transparent;border-radius:0px;vertical-align:top;padding:20px 60px 0px 60px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"dc\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:17px;font-style:normal;line-height:1;text-align:left;text-transform:none;color:#282936;white-space:pre-wrap\"><div style=\"text-align:center\"><h1 class=\"k nb wb\" style=\"margin:0;margin-block-start:0px;margin-block-end:0px;margin-inline-start:0px;margin-inline-end:0px;font-weight:normal;color:#282936;font-family:helvetica,sans-serif;font-size:42px;line-height:58px;\"><span style=\"color:rgb(255,255,255);font-weight:bold\" class=\"nb wb\">-TRYOUTS ARE LIVE-</span></h1></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"h ab bb cb ld\" style=\"color:#282936;font-family:helvetica,sans-serif;line-height:1.4;font-size:17px;background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px;\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"background-color:#C2274B;border:0px none transparent;border-radius:0px;vertical-align:top;padding:0px 60px 20px 60px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"dc\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:17px;font-style:normal;line-height:1;text-align:left;text-transform:none;color:#282936;white-space:pre-wrap\"><div style=\"text-align:center\"><h2 style=\"margin:0;margin-block-start:0px;margin-block-end:0px;margin-inline-start:0px;margin-inline-end:0px;font-weight:normal;color:#282936;font-family:helvetica,sans-serif;font-size:30px;line-height:42px;\" class=\"s ob xb\"><span style=\"color:rgb(255,255,255)\" class=\"ob xb\">Sign Up Now to Secure Your Spot</span></h2></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"z ab bb cb\" style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"background-color:#C2274B;vertical-align:top;padding:20px 60px 40px 60px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"center\" valign=\"middle\" class=\"id\" style=\"font-size:0px;padding:0;word-break:break-word\"><div style=\"max-width:400px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse:separate;line-height:100%\"><tbody><tr><td align=\"center\" bgcolor=\"#282936\" role=\"presentation\" style=\"border:solid 0px #C2274B;border-radius:0px;cursor:auto;mso-padding-alt:12px 40px 12px 40px;background:#282936\" valign=\"middle\"><a href=\"https://usnda.org/so/89PQ8uGrf/c?w=4wERl47un4WgZ_YKpR3PD3xhNv5UtXcG31EEiPKccas.eyJ1IjoiaHR0cHM6Ly93d3cudXNuZGEub3JnL2NvbXBldGUiLCJyIjoiMjQzZDI5NzctMGE0My00NGFjLTgxNWMtOGMwNjM3MTk3MmYxIiwibSI6Im1haWwiLCJjIjoiNGQxMWEzYjYtN2Q0NS00MTk3LTkzODgtZjhiMDlmNGY2MDE0In0\" rel=\"noopener\" style=\"display:inline-block;background:#282936;color:#FFFFFF;font-family:helvetica,sans-serif;font-size:15px;font-weight:normal;line-height:120%;margin:0;text-decoration:none;text-transform:none;padding:12px 40px 12px 40px;mso-padding-alt:0px;border-radius:0px;\" target=\"_blank\"><strong style=\"font-weight:inherit\">Sign Up Here</strong></a><img height=\"1\" style=\"display:block;width:100px!important;height:1px;max-width:100%!important;max-height:1px\" src=\"https://static.wixstatic.com/media/5e9922_0a9111966d7648649336e1f1546c5ec9~mv2.gif\" alt=\"\"></td></tr></tbody></table></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"h z ab bb cb ld\" style=\"color:#282936;font-family:helvetica,sans-serif;line-height:1.4;font-size:17px;background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px;\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"background-color:#282936;border:0px none transparent;border-radius:0px;vertical-align:top;padding:20px 60px 32px 60px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"dc\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:17px;font-style:normal;line-height:1;text-align:left;text-transform:none;color:#282936;white-space:pre-wrap\"><div style=\"text-align:center\"><h2 style=\"margin:0;margin-block-start:0px;margin-block-end:0px;margin-inline-start:0px;margin-inline-end:0px;font-weight:normal;color:#282936;font-family:helvetica,sans-serif;font-size:30px;line-height:42px;\" class=\"s ob xb\"><span style=\"color:rgb(255,255,255);font-weight:bold\" class=\"ob xb\">Climb the leaderboard and earn your shot to compete alongside real special ops warfighters.</span></h2></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"ab cb\" style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"background-color:#282936;vertical-align:top;padding:0px 0px 0px 0px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"center\" style=\"font-size:0px;padding:0px;word-break:break-word\"><table cellpadding=\"0\" cellspacing=\"0\" width=\"62\" border=\"0\" style=\"color:#000000;font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;line-height:22px;table-layout:auto;width:62px;border:none\"><tr><td height=\"40px\"><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"border-bottom:2px solid #C2274B\"></td></tr></table></td></tr></table></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"h ab bb cb ld\" style=\"color:#282936;font-family:helvetica,sans-serif;line-height:1.4;font-size:17px;background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px;\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"background-color:#282936;border:0px none transparent;border-radius:0px;vertical-align:top;padding:0px 60px 32px 60px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"dc\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:17px;font-style:normal;line-height:1;text-align:left;text-transform:none;color:#282936;white-space:pre-wrap\"><div style=\"text-align:center\"><h2 style=\"margin:0;margin-block-start:0px;margin-block-end:0px;margin-inline-start:0px;margin-inline-end:0px;font-weight:normal;color:#282936;font-family:helvetica,sans-serif;font-size:30px;line-height:42px;\" class=\"s ob xb\"><span style=\"color:rgb(255,255,255)\" class=\"ob xb\"><span style=\"font-size:24px;line-height:33px;\" class=\"pb yb\">This isn’t just a game. It’s your mission.<br><span style=\"font-weight:bold\" class=\"pb yb\">Live finals. National stage. Washington, D.C.</span></span></span></h2></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"h gb db fb eb ld\" style=\"color:#282936;font-family:helvetica,sans-serif;line-height:1.4;font-size:17px;background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px;\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"background-color:transparent;border:0px none transparent;border-radius:0px;vertical-align:top;padding:20px 60px 20px 60px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"dc\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:17px;font-style:normal;line-height:1;text-align:left;text-transform:none;color:#282936;white-space:pre-wrap\"><div style=\"text-align:center\"><h1 class=\"k nb wb\" style=\"margin:0;margin-block-start:0px;margin-block-end:0px;margin-inline-start:0px;margin-inline-end:0px;font-weight:normal;color:#282936;font-family:helvetica,sans-serif;font-size:42px;line-height:58px;\"><span style=\"font-weight:bold\" class=\"nb wb\">Velocidrone Simulator Qualifier</span></h1><p class=\"h qb zb\" style=\"margin:0;color:#282936;font-family:helvetica,sans-serif;font-size:17px;line-height:23px;\"><span style=\"font-weight:normal\" class=\"qb zb\">Practice Track now live and open to all students + service members</span></p><p class=\"h qb zb\" style=\"margin:0;color:#282936;font-family:helvetica,sans-serif;font-size:17px;line-height:28px;\"><span style=\"font-size:20px;text-decoration:underline;font-weight:bold;font-style:italic\" class=\"rb ac\">Registration closes May 4</span></p><p class=\"h qb zb\" style=\"margin:0;color:#282936;font-family:helvetica,sans-serif;font-size:17px;line-height:23px;\">&nbsp;</p></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"h gb db fb eb ld\" style=\"color:#282936;font-family:helvetica,sans-serif;line-height:1.4;font-size:17px;background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px;\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"background-color:transparent;border:0px none transparent;border-radius:0px;vertical-align:top;padding:20px 60px 20px 60px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"dc\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:17px;font-style:normal;line-height:1;text-align:left;text-transform:none;color:#282936;white-space:pre-wrap\"><div style=\"text-align:center\"><p style=\"margin:0;line-height:23px;font-size:17px;\" class=\"qb zb\">Start competing now!</p></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"gb db fb eb\" style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:20px 60px 20px 60px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"center\" valign=\"middle\" class=\"id\" style=\"font-size:0px;padding:0;word-break:break-word\"><div style=\"max-width:400px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse:separate;line-height:100%\"><tbody><tr><td align=\"center\" bgcolor=\"#C2274B\" role=\"presentation\" style=\"border:solid 0px #C2274B;border-radius:0px;cursor:auto;mso-padding-alt:12px 40px 12px 40px;background:#C2274B\" valign=\"middle\"><a href=\"https://usnda.org/so/89PQ8uGrf/c?w=10qur6ZO5-uTNEp6CTTGu4TL3ldvJpJB7BpjaPdssZ8.eyJ1IjoiaHR0cHM6Ly80ODc4ZjgzNS1hMjQyLTQ5MmMtYTY1Ni00ZDNmODgwNWViNjIudXNyZmlsZXMuY29tL3VnZC82YThiNDRfZWM2NTY4N2M3YmYwNDZkMjgyZDczNmM1ZGQ0MTQ1OGMucGRmP2RuPVVTTkRBJTIwTWlsaXRhcnklMjBEcm9uZSUyMENvbXBldGl0aW9uLnBkZiIsInIiOiIzYjVjY2E4ZC0yN2NhLTQ5M2ItYjQxZS02MTFhZjExOTRlNTQiLCJtIjoibWFpbCIsImMiOiI0ZDExYTNiNi03ZDQ1LTQxOTctOTM4OC1mOGIwOWY0ZjYwMTQifQ\" rel=\"noopener\" style=\"display:inline-block;background:#C2274B;color:#FFFFFF;font-family:helvetica,sans-serif;font-size:15px;font-weight:normal;line-height:120%;margin:0;text-decoration:none;text-transform:none;padding:12px 40px 12px 40px;mso-padding-alt:0px;border-radius:0px;\" target=\"_blank\"><strong style=\"font-weight:inherit\">Download the Official USNDA Tryouts track</strong></a><img height=\"1\" style=\"display:block;width:100px!important;height:1px;max-width:100%!important;max-height:1px\" src=\"https://static.wixstatic.com/media/5e9922_0a9111966d7648649336e1f1546c5ec9~mv2.gif\" alt=\"\"></td></tr></tbody></table></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"gb db fb eb\" style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0px 0px 0px 0px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"center\" style=\"font-size:0px;padding:0px;word-break:break-word\"><table cellpadding=\"0\" cellspacing=\"0\" width=\"62\" border=\"0\" style=\"color:#000000;font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;line-height:22px;table-layout:auto;width:62px;border:none\"><tr><td height=\"40px\"><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"border-bottom:2px solid #C2274B\"></td></tr></table></td></tr></table></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"h gb db fb eb ld\" style=\"color:#282936;font-family:helvetica,sans-serif;line-height:1.4;font-size:17px;background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px;\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"background-color:transparent;border:0px none transparent;border-radius:0px;vertical-align:top;padding:20px 60px 20px 60px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"dc\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:17px;font-style:normal;line-height:1;text-align:left;text-transform:none;color:#282936;white-space:pre-wrap\"><div style=\"text-align:center\"><p style=\"margin:0;line-height:23px;font-size:17px;\" class=\"qb zb\">The United States National Drone Association™ (USNDA) invites high school and college students, university drone clubs, and aspiring drone pilots across the nation to compete in the ultimate virtual qualifier.<br><br>We’re excited to announce that the Velocidrone Practice Track is now LIVE and open to all service members, high school students, and university-level participants. Whether you’re new to drone flight or a seasoned pilot, this is your chance to fly with purpose.</p></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"h gb db fb eb ld\" style=\"color:#282936;font-family:helvetica,sans-serif;line-height:1.4;font-size:17px;background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px;\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"background-color:transparent;border:0px none transparent;border-radius:0px;vertical-align:top;padding:20px 60px 20px 60px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"dc\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:17px;font-style:normal;line-height:1;text-align:left;text-transform:none;color:#282936;white-space:pre-wrap\"><div style=\"text-align:center\"><h2 style=\"margin:0;margin-block-start:0px;margin-block-end:0px;margin-inline-start:0px;margin-inline-end:0px;font-weight:normal;color:#282936;font-family:helvetica,sans-serif;font-size:36px;line-height:50px;\" class=\"s sb bc\"><span style=\"font-weight:bold\" class=\"sb bc\">Sign Up Now to Secure Your Spot</span></h2></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"gb db fb eb\" style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:20px 60px 20px 60px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"center\" valign=\"middle\" class=\"id\" style=\"font-size:0px;padding:0;word-break:break-word\"><div style=\"max-width:400px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse:separate;line-height:100%\"><tbody><tr><td align=\"center\" bgcolor=\"#C2274B\" role=\"presentation\" style=\"border:solid 0px #C2274B;border-radius:0px;cursor:auto;mso-padding-alt:12px 40px 12px 40px;background:#C2274B\" valign=\"middle\"><a href=\"https://usnda.org/so/89PQ8uGrf/c?w=31ts5GFcvU3lIUPurJnAfmn2nwzC-c-QgkYVFO4UmvU.eyJ1IjoiaHR0cHM6Ly93d3cudXNuZGEub3JnL2NvbXBldGUiLCJyIjoiOGVlYjIzMDAtMzBiMi00MjUxLTg1MWEtZjdkMzU3MGUyOWU4IiwibSI6Im1haWwiLCJjIjoiNGQxMWEzYjYtN2Q0NS00MTk3LTkzODgtZjhiMDlmNGY2MDE0In0\" rel=\"noopener\" style=\"display:inline-block;background:#C2274B;color:#FFFFFF;font-family:helvetica,sans-serif;font-size:15px;font-weight:normal;line-height:120%;margin:0;text-decoration:none;text-transform:none;padding:12px 40px 12px 40px;mso-padding-alt:0px;border-radius:0px;\" target=\"_blank\"><strong style=\"font-weight:inherit\">Sign Up Here</strong></a><img height=\"1\" style=\"display:block;width:100px!important;height:1px;max-width:100%!important;max-height:1px\" src=\"https://static.wixstatic.com/media/5e9922_0a9111966d7648649336e1f1546c5ec9~mv2.gif\" alt=\"\"></td></tr></tbody></table></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"gb db fb eb\" style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0px 40px 0px 40px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"center\" style=\"font-size:0px;padding:0px;word-break:break-word\"><table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\" style=\"color:#000000;font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;line-height:22px;table-layout:auto;width:100%;border:none\"><tr><td height=\"40px\"><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"border-bottom:1px solid #C2274B\"></td></tr></table></td></tr></table></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"h gb db fb eb ld\" style=\"color:#282936;font-family:helvetica,sans-serif;line-height:1.4;font-size:17px;background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px;\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"background-color:rgba(255,255,255,0);border:0px none transparent;border-radius:0px;vertical-align:top;padding:20px 60px 20px 60px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"dc\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:17px;font-style:normal;line-height:1;text-align:left;text-transform:none;color:#282936;white-space:pre-wrap\"><div style=\"text-align:center\"><h1 class=\"k nb wb\" style=\"margin:0;margin-block-start:0px;margin-block-end:0px;margin-inline-start:0px;margin-inline-end:0px;font-weight:normal;color:#282936;font-family:helvetica,sans-serif;font-size:42px;line-height:58px;\"><span style=\"font-weight:bold\" class=\"nb wb\">How To Participate:</span></h1></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"gb db fb eb\" style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"border:0px none transparent;vertical-align:top;padding:20px 215px 20px 215px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"center\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;line-height:1;text-align:center;color:#000000;white-space:pre-wrap\"><a style=\"display:inline-block;max-width:100%\"><!--[if mso]><img src=\"https://static.wixstatic.com/media/6a8b44_8b25005cee5d4cbc9d268eb8d1eed45f~mv2.png/v1/fit/w_264,h_2000,al_c,q_85/6a8b44_8b25005cee5d4cbc9d268eb8d1eed45f~mv2.png\" width=\"264\" style=\"display:inline-block;max-width:100%;width:auto;vertical-align:middle\" alt=\"\"/><![endif]--><!--[if !mso]><!--><img src=\"https://static.wixstatic.com/media/6a8b44_8b25005cee5d4cbc9d268eb8d1eed45f~mv2.png/v1/fit/w_528,h_2000,al_c,q_85/6a8b44_8b25005cee5d4cbc9d268eb8d1eed45f~mv2.png\" width=\"auto\" style=\"display:inline-block;max-width:100%;vertical-align:middle;width:auto;\" alt=\"\"><!--<![endif]--></a></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"h gb db fb eb ld\" style=\"color:#282936;font-family:helvetica,sans-serif;line-height:1.4;font-size:17px;background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px;\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"background-color:transparent;border:0px none transparent;border-radius:0px;vertical-align:top;padding:20px 60px 20px 60px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"dc\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:17px;font-style:normal;line-height:1;text-align:left;text-transform:none;color:#282936;white-space:pre-wrap\"><div style=\"text-align:center\"><p style=\"margin:0;line-height:23px;font-size:17px;\" class=\"qb zb\">Sign up using the button below</p></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"gb db fb eb\" style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:20px 60px 20px 60px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"center\" valign=\"middle\" class=\"id\" style=\"font-size:0px;padding:0;word-break:break-word\"><div style=\"max-width:400px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse:separate;line-height:100%\"><tbody><tr><td align=\"center\" bgcolor=\"#C2274B\" role=\"presentation\" style=\"border:solid 0px #C2274B;border-radius:0px;cursor:auto;mso-padding-alt:12px 40px 12px 40px;background:#C2274B\" valign=\"middle\"><a href=\"https://usnda.org/so/89PQ8uGrf/c?w=4sitK0VOD_Nv_Na0t8Lu1gcVLEeeBQfwBghTEaP3GlA.eyJ1IjoiaHR0cHM6Ly93d3cudXNuZGEub3JnL2NvbXBldGUiLCJyIjoiOGZmNzkzZWYtOWU1YS00MDI5LThiNWQtZjQ2NDU5OTIzMDQ1IiwibSI6Im1haWwiLCJjIjoiNGQxMWEzYjYtN2Q0NS00MTk3LTkzODgtZjhiMDlmNGY2MDE0In0\" rel=\"noopener\" style=\"display:inline-block;background:#C2274B;color:#FFFFFF;font-family:helvetica,sans-serif;font-size:15px;font-weight:normal;line-height:120%;margin:0;text-decoration:none;text-transform:none;padding:12px 40px 12px 40px;mso-padding-alt:0px;border-radius:0px;\" target=\"_blank\"><strong style=\"font-weight:inherit\">Sign Up</strong></a><img height=\"1\" style=\"display:block;width:100px!important;height:1px;max-width:100%!important;max-height:1px\" src=\"https://static.wixstatic.com/media/5e9922_0a9111966d7648649336e1f1546c5ec9~mv2.gif\" alt=\"\"></td></tr></tbody></table></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"gb db fb eb\" style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0px 40px 0px 40px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"center\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;line-height:1;text-align:center;color:#000000;white-space:pre-wrap\"><a style=\"display:inline-block;max-width:100%;line-height:40px\"><img src=\"https://images.wixstatic.com/media/a306cb_3d2c01641d3e44db820b987d9be43503~mv2.png/v1/fit/al_c,h_18,q_100,w_33,br_-24,sat_-20,hue_166/a306cb_3d2c01641d3e44db820b987d9be43503~mv2.png\" width=\"33\" height=\"18\" style=\"display:inline-block;max-width:100%;width:auto;vertical-align:middle\" alt=\"\"></a></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"gb db fb eb\" style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"border:0px none transparent;vertical-align:top;padding:20px 215px 20px 215px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"center\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;line-height:1;text-align:center;color:#000000;white-space:pre-wrap\"><a style=\"display:inline-block;max-width:100%\"><!--[if mso]><img src=\"https://static.wixstatic.com/media/6a8b44_e477d1d9288243a49e538fa004bf1796~mv2.png/v1/fit/w_264,h_2000,al_c,q_85/6a8b44_e477d1d9288243a49e538fa004bf1796~mv2.png\" width=\"264\" style=\"display:inline-block;max-width:100%;width:auto;vertical-align:middle\" alt=\"\"/><![endif]--><!--[if !mso]><!--><img src=\"https://static.wixstatic.com/media/6a8b44_e477d1d9288243a49e538fa004bf1796~mv2.png/v1/fit/w_528,h_2000,al_c,q_85/6a8b44_e477d1d9288243a49e538fa004bf1796~mv2.png\" width=\"auto\" style=\"display:inline-block;max-width:100%;vertical-align:middle;width:auto;\" alt=\"\"><!--<![endif]--></a></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"h gb db fb eb ld\" style=\"color:#282936;font-family:helvetica,sans-serif;line-height:1.4;font-size:17px;background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px;\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"background-color:transparent;border:0px none transparent;border-radius:0px;vertical-align:top;padding:20px 60px 20px 60px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"dc\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:17px;font-style:normal;line-height:1;text-align:left;text-transform:none;color:#282936;white-space:pre-wrap\"><div style=\"text-align:center\"><p style=\"margin:0;line-height:23px;font-size:17px;\" class=\"qb zb\">Access Practice Track + Setup Instructions</p></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"gb db fb eb\" style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:20px 60px 20px 60px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"center\" valign=\"middle\" class=\"id\" style=\"font-size:0px;padding:0;word-break:break-word\"><div style=\"max-width:400px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse:separate;line-height:100%\"><tbody><tr><td align=\"center\" bgcolor=\"#C2274B\" role=\"presentation\" style=\"border:solid 0px #C2274B;border-radius:0px;cursor:auto;mso-padding-alt:12px 40px 12px 40px;background:#C2274B\" valign=\"middle\"><a href=\"https://usnda.org/so/89PQ8uGrf/c?w=XJC_ScXfZaYkgXQa_ArBaUvYTun1RFlEeSfYLvhxib4.eyJ1IjoiaHR0cHM6Ly80ODc4ZjgzNS1hMjQyLTQ5MmMtYTY1Ni00ZDNmODgwNWViNjIudXNyZmlsZXMuY29tL3VnZC82YThiNDRfZWM2NTY4N2M3YmYwNDZkMjgyZDczNmM1ZGQ0MTQ1OGMucGRmP2RuPVVTTkRBJTIwTWlsaXRhcnklMjBEcm9uZSUyMENvbXBldGl0aW9uLnBkZiIsInIiOiJmODc4NTQ4NS0wYjI3LTQ1ODgtYjBlYS1jN2QwZmUyZTkwNjEiLCJtIjoibWFpbCIsImMiOiI0ZDExYTNiNi03ZDQ1LTQxOTctOTM4OC1mOGIwOWY0ZjYwMTQifQ\" rel=\"noopener\" style=\"display:inline-block;background:#C2274B;color:#FFFFFF;font-family:helvetica,sans-serif;font-size:15px;font-weight:normal;line-height:120%;margin:0;text-decoration:none;text-transform:none;padding:12px 40px 12px 40px;mso-padding-alt:0px;border-radius:0px;\" target=\"_blank\"><strong style=\"font-weight:inherit\">Instructions</strong></a><img height=\"1\" style=\"display:block;width:100px!important;height:1px;max-width:100%!important;max-height:1px\" src=\"https://static.wixstatic.com/media/5e9922_0a9111966d7648649336e1f1546c5ec9~mv2.gif\" alt=\"\"></td></tr></tbody></table></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"h gb db fb eb ld\" style=\"color:#282936;font-family:helvetica,sans-serif;line-height:1.4;font-size:17px;background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px;\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"background-color:rgba(255,255,255,0);border:0px none transparent;border-radius:0px;vertical-align:top;padding:20px 60px 20px 60px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"dc\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:17px;font-style:normal;line-height:1;text-align:left;text-transform:none;color:#282936;white-space:pre-wrap\"><div style=\"text-align:center\"><p style=\"margin:0;line-height:23px;font-size:17px;\" class=\"qb zb\">This is more than just a drone race. It’s your gateway to national recognition, networking with defense and industry leaders, and shaping the future of drone innovation in the U.S.</p></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"gb db fb eb\" style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0px 40px 0px 40px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"center\" style=\"font-size:0px;padding:0px;word-break:break-word\"><table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\" style=\"color:#000000;font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;line-height:22px;table-layout:auto;width:100%;border:none\"><tr><td height=\"40px\"><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"border-bottom:3px solid #C2274B\"></td></tr></table></td></tr></table></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"gb db fb eb gb db fb eb\" style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:490.5px\"><![endif]--><div class=\"gc ec\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;max-width:70.67723342939482%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0px 20px 20px 40px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"\" style=\"font-size:0px;padding:0px;padding-top:0px;padding-bottom:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:13px;line-height:1;text-align:left;text-transform:none;color:#282936;white-space:pre-wrap\"><div style=\"\"><div class=\"h\" style=\"color:#282936;font-family:helvetica,sans-serif;font-size:17px;line-height:NaNpx;\"><h3 class=\"n ub yb\" style=\"margin:0;margin-block-start:0px;margin-block-end:0px;margin-inline-start:0px;margin-inline-end:0px;font-weight:normal;font-size:23px;line-height:32px\"><span style=\"font-weight:bold\" class=\"ub yb\">About the United States National Drone Association™</span></h3></div></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td><td style=\"vertical-align:top;width:203.5px\"><![endif]--><div class=\"hc ec\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;max-width:29.322766570605186%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0px 40px 20px 20px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><!--[if mso]><tr><td align=\"center\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:1;text-align:center;color:#000000;white-space:pre-wrap\"><a class=\"html-emails-mix-image-wrapper html-emails-mix-image-wrapper-full-width\" style=\"display:inline-block;max-width:143px;width:100%\" href=\"https://usnda.org/so/89PQ8uGrf/c?w=IV1o3imFtCenssnnO8xF86KrXnpYY900iRgqsBnpqVs.eyJ1IjoiaHR0cHM6Ly93d3cudXNuZGEub3JnLyIsInIiOiI2NzRkZWM4Mi0zN2NkLTQ3NzItODdlMC1hMjZjYjdiNTgzYzQiLCJtIjoibWFpbCIsImMiOiI0ZDExYTNiNi03ZDQ1LTQxOTctOTM4OC1mOGIwOWY0ZjYwMTQifQ\" target=\"_blank\"><img src=\"https://static.wixstatic.com/media/eceb8e_3180aaf897c04bf1ac5a4e331fe8a86a~mv2.png/v1/fit/w_700,h_2000,al_c,q_85/eceb8e_3180aaf897c04bf1ac5a4e331fe8a86a~mv2.png\" width=\"143\" style=\"display:inline-block;max-width:100%;width:143px;vertical-align:middle\" alt=\"\"/></a></div></td></tr><![endif]--><!--[if !mso]><!--><tr><td align=\"center\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;line-height:1;text-align:center;color:#000000;white-space:pre-wrap\"><a class=\"od mc\" style=\"display:inline-block;max-width:143px;width:100%\" href=\"https://usnda.org/so/89PQ8uGrf/c?w=IV1o3imFtCenssnnO8xF86KrXnpYY900iRgqsBnpqVs.eyJ1IjoiaHR0cHM6Ly93d3cudXNuZGEub3JnLyIsInIiOiI2NzRkZWM4Mi0zN2NkLTQ3NzItODdlMC1hMjZjYjdiNTgzYzQiLCJtIjoibWFpbCIsImMiOiI0ZDExYTNiNi03ZDQ1LTQxOTctOTM4OC1mOGIwOWY0ZjYwMTQifQ\" target=\"_blank\"><img src=\"https://static.wixstatic.com/media/eceb8e_3180aaf897c04bf1ac5a4e331fe8a86a~mv2.png/v1/fit/w_700,h_2000,al_c,q_85/eceb8e_3180aaf897c04bf1ac5a4e331fe8a86a~mv2.png\" width=\"143\" style=\"display:inline-block;max-width:100%;width:143px;vertical-align:middle\" alt=\"\"></a></div></td></tr><!--<![endif]--></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"h gb db fb eb ld\" style=\"color:#282936;font-family:helvetica,sans-serif;line-height:1.4;font-size:17px;background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px;\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"background-color:transparent;border:0px none transparent;border-radius:0px;vertical-align:top;padding:10px 60px 20px 60px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"dc\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:17px;font-style:normal;line-height:1;text-align:left;text-transform:none;color:#282936;white-space:pre-wrap\"><div style=\"text-align:center\"><p style=\"margin:0;text-align:left;line-height:23px;font-size:17px;\" class=\"qb zb\">The United States National Drone Association™ (USNDA) accelerates America’s drone readiness by connecting top talent, breakthrough tech, and national security missions. We host elite competitions, surface real-world challenges from defense and public safety agencies, and help fast-track innovative solutions into government hands.<br>From students to startups, USNDA creates the platforms where the next generation of drone professionals rise, and where the future of U.S. drone capability takes flight. Learn more at <a target=\"_blank\" href=\"https://usnda.org/so/89PQ8uGrf/c?w=D2ly53IGTiFH6itRtc4RaloLzgg1v7S1vii3_2-_FKY.eyJ1IjoiaHR0cHM6Ly91c25kYS5vcmciLCJyIjoiOTYxNzBhNGMtMDAzZi00MDI1LTgyZDktMGJkNDFjZDY5NGE1IiwibSI6Im1haWwiLCJjIjoiNGQxMWEzYjYtN2Q0NS00MTk3LTkzODgtZjhiMDlmNGY2MDE0In0\" rel=\"noopener noreferrer\" style=\"color:#109FFF;text-decoration:none;\"><span style=\"text-decoration:underline;line-height:23px;font-size:17px;\" class=\"qb zb\">USNDA.org</span></a></p></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"h gb db fb eb ld\" style=\"color:#282936;font-family:helvetica,sans-serif;line-height:1.4;font-size:17px;background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px;\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"background-color:transparent;border:0px none transparent;border-radius:0px;vertical-align:top;padding:20px 60px 20px 60px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"dc\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:17px;font-style:normal;line-height:1;text-align:left;text-transform:none;color:#282936;white-space:pre-wrap\"><div style=\"text-align:center\"><p style=\"margin:0;line-height:23px;font-size:17px;\" class=\"qb zb\"><span style=\"font-weight:bold\" class=\"qb zb\">Join the movement. Fly the mission. Shape the future.</span></p></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"gb db fb eb\" style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0px 0px 0px 0px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"center\" style=\"font-size:0px;padding:0px;word-break:break-word\"><table cellpadding=\"0\" cellspacing=\"0\" width=\"62\" border=\"0\" style=\"color:#000000;font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;line-height:22px;table-layout:auto;width:62px;border:none\"><tr><td height=\"40px\"><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"border-bottom:2px solid #C2274B\"></td></tr></table></td></tr></table></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"h gb db fb eb ld\" style=\"color:#282936;font-family:helvetica,sans-serif;line-height:1.4;font-size:17px;background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px;\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"x\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"background-color:transparent;border:0px none transparent;border-radius:0px;vertical-align:top;padding:20px 60px 0px 60px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"dc\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:17px;font-style:normal;line-height:1;text-align:left;text-transform:none;color:#282936;white-space:pre-wrap\"><div style=\"text-align:center\"><p style=\"margin:0;font-size:14px;line-height:19px;\" class=\"tb cc\"><span style=\"\" class=\"tb cc\">Questions? Reach us at </span><a target=\"_blank\" href=\"https://usnda.org/so/89PQ8uGrf/c?w=1mklv5DzB3HpFHjsK6crIZ7dnIY2lmcOB3gRwTxue8U.eyJ1IjoibWFpbHRvOmFjYWRlbWljcGFydG5lcnNAdXNuZGEub3JnP3N1YmplY3Q9VmVsb2NpZHJvbmUlMjBFdmVudCUyMFF1ZXN0aW9uIiwiciI6ImM4MzU0NDhhLTZiZWItNGZmMC05ZTAxLWU3YWUwOWE2YjA5YiIsIm0iOiJtYWlsIiwiYyI6IjRkMTFhM2I2LTdkNDUtNDE5Ny05Mzg4LWY4YjA5ZjRmNjAxNCJ9\" rel=\"noopener noreferrer\" style=\"color:#109FFF;text-decoration:none;\"><span style=\"font-size:14px;line-height:19px;text-decoration:underline\" class=\"tb cc\">registration@usnda.org</span></a></p></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"gb db fb eb oc\" style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:700px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0px 0px 0px 0px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><![endif]--><div class=\"tc\" style=\"height:10px;padding:20px 60px 0px 60px\"></div><!--[if mso | IE]><td style=\"vertical-align:middle;width:347px\"><![endif]--><div class=\"sc fd hd ec\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:100%;max-width:50%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:middle;padding-right:0px;padding-left:60px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"center\" style=\"font-size:0px;padding:10px 25px;padding-top:0px;padding-right:10px;padding-bottom:0px;padding-left:10px;word-break:break-word\"><div style=\"font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;line-height:1;text-align:center;color:#000000;white-space:pre-wrap\"><p class=\"j\" style=\"margin:0;line-height:1.4;font-size:14px;color:#282936;font-family:helvetica,sans-serif;margin-bottom:10px;\">Follow us on</p><p style=\"margin:0;white-space:normal;\"><a style=\"vertical-align:middle;display:inline-block;text-decoration:none\" href=\"https://usnda.org/so/89PQ8uGrf/c?w=3t2fjlxVHPsOrN5Kd2yVLoZAnHrDjwLjUr2xJhxQiUo.eyJ1IjoiaHR0cHM6Ly93d3cuZmFjZWJvb2suY29tL3Byb2ZpbGUucGhwP2lkPTYxNTc0OTMzOTM5NTQwIyIsInIiOiJhMTkyZWQ5OS1hNmM5LTQwZDMtYTdlOS03MmY5MTQ2ZTZkZjUiLCJtIjoibWFpbCIsImMiOiI0ZDExYTNiNi03ZDQ1LTQxOTctOTM4OC1mOGIwOWY0ZjYwMTQifQ\" target=\"_blank\"><img class=\"jb lb\" src=\"https://images.wixstatic.com/media/5e9922_549fe65f377b4459894488d785954edd~mv2.png/v1/fit/w_750,h_750,br_-79,sat_-74,hue_56,lg_0/5e9922_549fe65f377b4459894488d785954edd~mv2.png\" width=\"28\" height=\"28\" alt=\"\" style=\"margin:6px\"></a><a style=\"vertical-align:middle;display:inline-block;text-decoration:none\" href=\"https://usnda.org/so/89PQ8uGrf/c?w=zqMqYRW75R2Q6NQCTZ70UqjvS9E0gg8tlMD_dnhfmtM.eyJ1IjoiaHR0cHM6Ly9pbnN0YWdyYW0uY29tL3VzbmRhb2ZmaWNpYWwiLCJyIjoiYTE5MmVkOTktYTZjOS00MGQzLWE3ZTktNzJmOTE0NmU2ZGY1IiwibSI6Im1haWwiLCJjIjoiNGQxMWEzYjYtN2Q0NS00MTk3LTkzODgtZjhiMDlmNGY2MDE0In0\" target=\"_blank\"><img class=\"jb lb\" src=\"https://images.wixstatic.com/media/5e9922_b329b26d01b040f3845afc82c7ed6f3d~mv2.png/v1/fit/w_750,h_750,br_-79,sat_-74,hue_56,lg_0/5e9922_b329b26d01b040f3845afc82c7ed6f3d~mv2.png\" width=\"28\" height=\"28\" alt=\"\" style=\"margin:6px\"></a><a style=\"vertical-align:middle;display:inline-block;text-decoration:none\" href=\"https://usnda.org/so/89PQ8uGrf/c?w=PxnV7SFZRjBD3ejU18AWGH9HK-h7KF9Q_3MOzIFuDvg.eyJ1IjoiaHR0cHM6Ly93d3cueW91dHViZS5jb20vQFVTTkRBT1BFUkFUSU9OUyIsInIiOiJhMTkyZWQ5OS1hNmM5LTQwZDMtYTdlOS03MmY5MTQ2ZTZkZjUiLCJtIjoibWFpbCIsImMiOiI0ZDExYTNiNi03ZDQ1LTQxOTctOTM4OC1mOGIwOWY0ZjYwMTQifQ\" target=\"_blank\"><img class=\"jb lb\" src=\"https://images.wixstatic.com/media/5e9922_205a9db5f0dd4185a5433e7183d1fe08~mv2.png/v1/fit/w_750,h_750,br_-79,sat_-74,hue_56,lg_0/5e9922_205a9db5f0dd4185a5433e7183d1fe08~mv2.png\" width=\"28\" height=\"28\" alt=\"\" style=\"margin:6px\"></a><a style=\"vertical-align:middle;display:inline-block;text-decoration:none\" href=\"https://usnda.org/so/89PQ8uGrf/c?w=FmWw3laxgVmz9vnJ6zq54ZNKiDHG7g3XMXfThOsQbnE.eyJ1IjoiaHR0cHM6Ly93d3cubGlua2VkaW4uY29tL2NvbXBhbnkvdXNuZGEtb3JnLyIsInIiOiJhMTkyZWQ5OS1hNmM5LTQwZDMtYTdlOS03MmY5MTQ2ZTZkZjUiLCJtIjoibWFpbCIsImMiOiI0ZDExYTNiNi03ZDQ1LTQxOTctOTM4OC1mOGIwOWY0ZjYwMTQifQ\" target=\"_blank\"><img class=\"jb lb\" src=\"https://images.wixstatic.com/media/5e9922_931f3e857768439bb9293a3039d6f9ef~mv2.png/v1/fit/w_750,h_750,br_-79,sat_-74,hue_56,lg_0/5e9922_931f3e857768439bb9293a3039d6f9ef~mv2.png\" width=\"28\" height=\"28\" alt=\"\" style=\"margin:6px\"></a><a style=\"vertical-align:middle;display:inline-block;text-decoration:none\" href=\"https://usnda.org/so/89PQ8uGrf/c?w=3E3ZL85Db7Zejs3iIPf98Rwiyk33U8xh9TX7fPUvztg.eyJ1IjoiaHR0cHM6Ly94LmNvbS91c25kYV9vcmciLCJyIjoiYTE5MmVkOTktYTZjOS00MGQzLWE3ZTktNzJmOTE0NmU2ZGY1IiwibSI6Im1haWwiLCJjIjoiNGQxMWEzYjYtN2Q0NS00MTk3LTkzODgtZjhiMDlmNGY2MDE0In0\" target=\"_blank\"><img class=\"jb lb\" src=\"https://images.wixstatic.com/media/5e9922_64d32055fbe647738b345b72f05aef96~mv2.png/v1/fit/w_750,h_750,br_-79,sat_-74,hue_56,lg_0/5e9922_64d32055fbe647738b345b72f05aef96~mv2.png\" width=\"28\" height=\"28\" alt=\"\" style=\"margin:6px\"></a></p></div></td></tr><tr><td align=\"center\" class=\"pc\" style=\"font-size:0px;padding:10px 25px;word-break:break-word\"><p style=\"border-top:solid 0px #282936;font-size:1px;margin:0px auto;width:0px;\"></p><!--[if mso | IE]><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" style=\"border-top:solid 0px #282936;font-size:1px;margin:0px auto;width:0px\" role=\"presentation\" width=\"0px\"><tr><td style=\"height:0;line-height:0\">&nbsp;</td></tr></table><![endif]--></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td><td style=\"vertical-align:middle;width:347px\"><![endif]--><div class=\"sc hd ec\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:middle;width:100%;max-width:50%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:middle;padding-right:60px;padding-left:0px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"center\" class=\"qc\" style=\"font-size:0px;padding:0px 10px 0px 10px;word-break:break-word\"><div style=\"font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;line-height:1;text-align:center;color:#000000;white-space:pre-wrap\"><div style=\"display:inline-block;vertical-align:middle\"><a class=\"\" href=\"https://usnda.org/so/89PQ8uGrf/c?w=yaEQURX0WgIqNZFBmrGA5_OT54BXBOIEKWrWKcQoU_s.eyJ1IjoiaHR0cHM6Ly93d3cudXNuZGEub3JnL2Fib3V0LTEtMSIsInIiOiJhMTkyZWQ5OS1hNmM5LTQwZDMtYTdlOS03MmY5MTQ2ZTZkZjUiLCJtIjoibWFpbCIsImMiOiI0ZDExYTNiNi03ZDQ1LTQxOTctOTM4OC1mOGIwOWY0ZjYwMTQifQ\" target=\"_blank\" style=\"text-decoration:none;\"><span class=\"j\" style=\"font-size:14px;font-family:helvetica,sans-serif;margin-right:1.5px;line-height:25px;display:inline-block;overflow:hidden;vertical-align:middle;color:#282936;max-height:100px;\"><strong style=\"font-weight:inherit\">STAY CONNECTED</strong></span>  <img class=\"nd\" height=\"22\" src=\"https://images.wixstatic.com/media/b49ee3_dd9b1a8812ae41138409a667954a6088~mv2.png/v1/fit/w_750,h_750,br_-79,sat_-74,hue_56,lg_0/b49ee3_dd9b1a8812ae41138409a667954a6088~mv2.png\" style=\"vertical-align:middle;border:0\" width=\"22\" alt=\"\"></a></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td><![endif]--><div class=\"tc\" style=\"height:10px;padding:0px 60px 20px 60px\"></div><!--[if mso | IE]></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"732px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:700px\" width=\"700\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div style=\"margin:0px auto;max-width:700px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width:100%\"><tbody><tr><td style=\"border-bottom:solid 3px #C2274B;border-left:solid 3px #C2274B;border-right:solid 3px #C2274B;direction:ltr;font-size:0px;padding:0;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:694px\"><![endif]--><div class=\"\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"vertical-align:top\" width=\"100%\"><tbody><tr><td class=\"\" style=\"background:#FFFFFF;font-size:0px;word-break:break-word\"><div style=\"height:0px;line-height:0px\">&#8202;</div></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td><!--[if mso | IE]><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:732px\" width=\"732\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div style=\"margin:0px auto;max-width:732px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width:100%\"><tbody><tr><td style=\"direction:ltr;font-size:0px;padding:18px 20px 18px 20px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:692px\"><![endif]--><div class=\"\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"vertical-align:top\" width=\"100%\"><tbody><tr><td align=\"center\" style=\"font-size:0px;padding:0;word-break:break-word\"><div style=\"font-family:Helvetica,Ubuntu,Arial,sans-serif;font-size:12px;line-height:20px;text-align:center;color:#757575;white-space:pre-wrap\"><strong style=\"font-weight:normal\">This email was sent from <u><a style=\"font-family:Helvetica,Ubuntu,Arial,sans-serif;color:#222222;font-size:12px;line-height:20px;text-decoration:none\" href=\"https://usnda.org/so/89PQ8uGrf/c?w=yICo34RQf8d3_8xGjyzbyfifPTCihfJekdIwBFrimTQ.eyJ1IjoiaHR0cHM6Ly93d3cudXNuZGEub3JnLyIsIm0iOiJtYWlsIiwiYyI6IjRkMTFhM2I2LTdkNDUtNDE5Ny05Mzg4LWY4YjA5ZjRmNjAxNCJ9\" rel=\"noopener noreferrer\" target=\"_blank\">this site</a></u>.</strong></div></td></tr><tr><td align=\"center\" style=\"font-size:0px;padding:0;word-break:break-word\"><div style=\"font-family:Helvetica,Ubuntu,Arial,sans-serif;font-size:12px;line-height:20px;text-align:center;color:#757575;white-space:pre-wrap\"><strong style=\"font-weight:normal\">If you no longer wish to receive this email, change your email preferences <u><a style=\"font-family:Helvetica,Ubuntu,Arial,sans-serif;color:#222222;font-size:12px;line-height:20px;text-decoration:none\" href=\"https://www.usnda.org//_manage-consent/api/revoke-consent/unsubscribe?wixToken=JWE.eyJhbGciOiJBMTI4S1ciLCJlbmMiOiJBMTI4Q0JDLUhTMjU2Iiwia2lkIjoiZkhJbFA4M1cifQ.f4Uw_Lv_BPFsr3D-buEaH5hUVHcPffoAXat5c8Jt5HLTi6YAa5kltA.EHURp4sou8KiIIe_6tn24A.lRKGChznChacN6Fj5oZ1UyBcI0X9p1mEAPmRQ_fD0X7LuvX57OlKlS74HeyeS26Kj82QnJq79btUMSoNBwvolIvCgZ9JOeUrW0GB8YQycLxd2H6i19UllKS5xH7MUVU9IEQS8aWWTmVScFW0VRK9lyWQPVpICc74yG6sT2gXottay5mE5eOSyoI1MAF2QUzPt8ZXpoBw0mkn4rk2WApLIsskioMkc7zNy963m9jOC2VTD8D_VLg-2sHfseQUn88HRey28__zf1HmBQiBS9Us8UXCofzbSEluFk3Z61s4_DKhm4BjiZDcMn_OWG2PnQP23nq4H_XaQvDfmmI3QNVGeHNlDOzy7nE9oqw0WoMbxsbJSxEF_igOYiPMl9UAOsE8wyV_iHVKaghZIuVEB1AwBRC6INXPO3coSS52URW6F2YTLmtGvQGbvgAZ-r7O6hBX.oBJUGCwXyAFtAIc5hf2mfg&amp;locale=en\" rel=\"noopener noreferrer\" target=\"_blank\">here</a></u>.</strong></div></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div></body></html>','Having trouble viewing this email? Click here to view it in your browser. or Click here to download it as a PDF.\r\n\r\n-TRYOUTS ARE LIVE-\r\n\r\nSign Up Now to Secure Your Spot\r\n\r\nClimb the leaderboard and earn your shot to compete alongside real special ops warfighters.\r\n\r\nThis isn’t just a game. It’s your mission. Live finals. National stage. Washington, D.C.\r\n\r\nVelocidrone Simulator Qualifier Practice Track now live and open to all students + service members Registration closes May 4\r\n\r\nStart competing now!\r\n\r\nThe United States National Drone Association™ (USNDA) invites high school and college students, university drone clubs, and aspiring drone pilots across the nation to compete in the ultimate virtual qualifier. We’re excited to announce that the Velocidrone Practice Track is now LIVE and open to all service members, high school students, and university-level participants. Whether you’re new to drone flight or a seasoned pilot, this is your chance to fly with purpose.\r\n\r\nSign Up Now to Secure Your Spot\r\n\r\nHow To Participate:\r\n\r\nSign up using the button below\r\n\r\nAccess Practice Track + Setup Instructions\r\n\r\nThis is more than just a drone race. It’s your gateway to national recognition, networking with defense and industry leaders, and shaping the future of drone innovation in the U.S.\r\n\r\nThe United States National Drone Association™ (USNDA) accelerates America’s drone readiness by connecting top talent, breakthrough tech, and national security missions. We host elite competitions, surface real-world challenges from defense and public safety agencies, and help fast-track innovative solutions into government hands. From students to startups, USNDA creates the platforms where the next generation of drone professionals rise, and where the future of U.S. drone capability takes flight. Learn more at USNDA.org\r\n\r\nJoin the movement. Fly the mission. Shape the future.\r\n\r\nQuestions? Reach us at registration@usnda.org\r\n\r\nClick on the link below to open the message in a browser:\r\nhttps://usnda.org/so/89PQ8uGrf/c?w=zh7W9ueRKCvHZlSBYEXU6GeO4S5nM7I8LF_ql8_hcxU.eyJ1IjoiaHR0cHM6Ly91c25kYS5vcmcvc28vODlQUTh1R3JmP2xhbmd1YWdlVGFnPWVuIiwibSI6Im1haWwiLCJjIjoiNGQxMWEzYjYtN2Q0NS00MTk3LTkzODgtZjhiMDlmNGY2MDE0In0\r\n\r\nYou\'ve received this email because you are a subscriber of this site.\r\nhttps://usnda.org/so/89PQ8uGrf/c?w=yICo34RQf8d3_8xGjyzbyfifPTCihfJekdIwBFrimTQ.eyJ1IjoiaHR0cHM6Ly93d3cudXNuZGEub3JnLyIsIm0iOiJtYWlsIiwiYyI6IjRkMTFhM2I2LTdkNDUtNDE5Ny05Mzg4LWY4YjA5ZjRmNjAxNCJ9\r\n\r\nIf you feel you received it by mistake or wish to unsubscribe, please click here.\r\nhttps://www.usnda.org//_manage-consent/api/revoke-consent/unsubscribe?wixToken=JWE.eyJhbGciOiJBMTI4S1ciLCJlbmMiOiJBMTI4Q0JDLUhTMjU2Iiwia2lkIjoiZkhJbFA4M1cifQ.f4Uw_Lv_BPFsr3D-buEaH5hUVHcPffoAXat5c8Jt5HLTi6YAa5kltA.EHURp4sou8KiIIe_6tn24A.lRKGChznChacN6Fj5oZ1UyBcI0X9p1mEAPmRQ_fD0X7LuvX57OlKlS74HeyeS26Kj82QnJq79btUMSoNBwvolIvCgZ9JOeUrW0GB8YQycLxd2H6i19UllKS5xH7MUVU9IEQS8aWWTmVScFW0VRK9lyWQPVpICc74yG6sT2gXottay5mE5eOSyoI1MAF2QUzPt8ZXpoBw0mkn4rk2WApLIsskioMkc7zNy963m9jOC2VTD8D_VLg-2sHfseQUn88HRey28__zf1HmBQiBS9Us8UXCofzbSEluFk3Z61s4_DKhm4BjiZDcMn_OWG2PnQP23nq4H_XaQvDfmmI3QNVGeHNlDOzy7nE9oqw0WoMbxsbJSxEF_igOYiPMl9UAOsE8wyV_iHVKaghZIuVEB1AwBRC6INXPO3coSS52URW6F2YTLmtGvQGbvgAZ-r7O6hBX.oBJUGCwXyAFtAIc5hf2mfg&locale=en',0,0,0,0,0,0,'2025-04-30 23:41:51','2025-12-04 14:04:57','2025-12-04 14:04:57','2025-12-04 14:04:57',NULL,NULL,NULL),
(94,4,'<185323780114160640.0.v2@titan.email>',NULL,NULL,'Re:  Manned Drone project','info@jcdronesltd.com','\"Jc. Drones\"','(No content)','(No content)',0,0,0,0,0,0,'2025-08-07 14:02:22','2025-12-04 14:04:57','2025-12-04 14:04:57','2025-12-04 14:04:57',NULL,NULL,NULL),
(95,4,'<1bcd3120660842aeb8184f686edc7d7a@flowcorp.com>',NULL,NULL,'The Future is Bright: Flow\'s Journey Beyond Waterjet','info@flowcorp.com','Flow Waterjet','\r\n<!DOCTYPE html>    \r\n<html>    \r\n<head>    \r\n<meta content=\"width=device-width, initial-scale=1.0\" name=\"viewport\">    \r\n<style type=\"text/css\">\r    \r\n/*** BMEMBF Start ***/\r    \r\n/* CMS V4 Editor Test */\r    \r\n[name=bmeMainBody]{min-height:1000px;}\r    \r\n@media only screen and (max-width: 480px){table.blk, table.tblText, .bmeHolder, .bmeHolder1, table.bmeMainColumn{width:100% !important;} }    \r    \r\n@media only screen and (max-width: 480px){.bmeImageCard table.bmeCaptionTable td.tblCell{padding:0px 20px 20px 20px !important;} }    \r    \r\n@media only screen and (max-width: 480px){.bmeImageCard table.bmeCaptionTable.bmeCaptionTableMobileTop td.tblCell{padding:20px 20px 0 20px !important;} }    \r    \r\n@media only screen and (max-width: 480px){table.bmeCaptionTable td.tblCell{padding:10px !important;} }    \r    \r\n@media only screen and (max-width: 480px){table.tblGtr{ padding-bottom:20px !important;} }    \r    \r\n@media only screen and (max-width: 480px){td.blk_container, .blk_parent, .bmeLeftColumn, .bmeRightColumn, .bmeColumn1, .bmeColumn2, .bmeColumn3, .bmeBody{display:table !important;max-width:600px !important;width:100% !important;} }    \r    \r\n@media only screen and (max-width: 480px){table.container-table, .bmeheadertext, .container-table { width: 95% !important; } }    \r    \r\n@media only screen and (max-width: 480px){.mobile-footer, .mobile-footer a{ font-size: 13px !important; line-height: 18px !important; } .mobile-footer{ text-align: center !important; } table.share-tbl { padding-bottom: 15px; width: 100% !important; } table.share-tbl td { display: block !important; text-align: center !important; width: 100% !important; } }    \r    \r\n@media only screen and (max-width: 480px){td.bmeShareTD, td.bmeSocialTD{width: 100% !important; } }    \r    \r\n@media only screen and (max-width: 480px){td.tdBoxedTextBorder{width: auto !important;} }\r    \r\n@media only screen and (max-width: 480px){th.tdBoxedTextBorder{width: auto !important;} }\r    \r\n\r    \r\n@media only screen and (max-width: 480px){table.blk, table[name=tblText], .bmeHolder, .bmeHolder1, table[name=bmeMainColumn]{width:100% !important;} }\r    \r\n@media only screen and (max-width: 480px){.bmeImageCard table.bmeCaptionTable td[name=tblCell]{padding:0px 20px 20px 20px !important;} }\r    \r\n@media only screen and (max-width: 480px){.bmeImageCard table.bmeCaptionTable.bmeCaptionTableMobileTop td[name=tblCell]{padding:20px 20px 0 20px !important;} }\r    \r\n@media only screen and (max-width: 480px){table.bmeCaptionTable td[name=tblCell]{padding:10px !important;} }\r    \r\n@media only screen and (max-width: 480px){table[name=tblGtr]{ padding-bottom:20px !important;} }\r    \r\n@media only screen and (max-width: 480px){td.blk_container, .blk_parent, [name=bmeLeftColumn], [name=bmeRightColumn], [name=bmeColumn1], [name=bmeColumn2], [name=bmeColumn3], [name=bmeBody]{display:table !important;max-width:600px !important;width:100% !important;} }\r    \r\n@media only screen and (max-width: 480px){table[class=container-table], .bmeheadertext, .container-table { width: 95% !important; } }\r    \r\n@media only screen and (max-width: 480px){.mobile-footer, .mobile-footer a{ font-size: 13px !important; line-height: 18px !important; } .mobile-footer{ text-align: center !important; } table[class=\"share-tbl\"] { padding-bottom: 15px; width: 100% !important; } table[class=\"share-tbl\"] td { display: block !important; text-align: center !important; width: 100% !important; } }\r    \r\n@media only screen and (max-width: 480px){td[name=bmeShareTD], td[name=bmeSocialTD]{width: 100% !important; } }\r    \r\n@media only screen and (max-width: 480px){td[name=tdBoxedTextBorder]{width: auto !important;} }\r    \r\n@media only screen and (max-width: 480px){th[name=tdBoxedTextBorder]{width: auto !important;} }\r    \r\n           \r    \r\n@media only screen and (max-width: 480px){.bmeImageCard table.bmeImageTable{height: auto !important; width:100% !important; padding:20px !important;clear:both; float:left !important; border-collapse: separate;} }            \r    \r\n@media only screen and (max-width: 480px){.bmeMblInline table.bmeImageTable{height: auto !important; width:100% !important; padding:10px !important;clear:both;} }\r    \r\n@media only screen and (max-width: 480px){.bmeMblInline table.bmeCaptionTable{width:100% !important; clear:both;} }\r    \r\n@media only screen and (max-width: 480px){table.bmeImageTable{height: auto !important; width:100% !important; padding:10px !important;clear:both; } }\r    \r\n@media only screen and (max-width: 480px){table.bmeCaptionTable{width:100% !important;  clear:both;} }\r    \r\n@media only screen and (max-width: 480px){table.bmeImageContainer{width:100% !important; clear:both; float:left !important;} }            \r    \r\n@media only screen and (max-width: 480px){table.bmeImageTable td{padding:0px !important; height: auto; } }            \r    \r\n@media only screen and (max-width: 480px){img.mobile-img-large{width:100% !important; height:auto !important;} }\r    \r\n@media only screen and (max-width: 480px){img.bmeRSSImage{max-width:320px; height:auto !important;} }\r    \r\n@media only screen and (min-width: 640px){img.bmeRSSImage{max-width:600px !important; height:auto !important;} }            \r    \r\n@media only screen and (max-width: 480px){.trMargin img{height:10px;} }          \r    \r\n@media only screen and (max-width: 480px){div.bmefooter, div.bmeheader{ display:block !important;} }  \r    \r\n@media only screen and (max-width: 480px){.tdPart{ width:100% !important; clear:both; float:left !important; } }\r    \r\n@media only screen and (max-width: 480px){table.blk_parent1, table.tblPart {width: 100% !important; } }            \r    \r\n@media only screen and (max-width: 480px){.tblLine{min-width: 100% !important;} }            \r    \r\n@media only screen and (max-width: 480px){.bmeMblCenter img { margin: 0 auto; } }   \r    \r\n@media only screen and (max-width: 480px){.bmeMblCenter, .bmeMblCenter div, .bmeMblCenter span  { text-align: center !important; text-align: -webkit-center !important; } }\r    \r\n@media only screen and (max-width: 480px){.bmeNoBr br, .bmeImageGutterRow, .bmeMblStackCenter .bmeShareItem .tdMblHide { display: none !important; } }\r    \r\n@media only screen and (max-width: 480px){.bmeMblInline table.bmeImageTable, .bmeMblInline table.bmeCaptionTable, .bmeMblInline { clear: none !important; width:50% !important; } }\r    \r\n@media only screen and (max-width: 480px){.bmeMblInlineHide, .bmeShareItem .trMargin { display: none !important; } }\r    \r\n@media only screen and (max-width: 480px){.bmeMblInline table.bmeImageTable img, .bmeMblShareCenter.tblContainer.mblSocialContain, .bmeMblFollowCenter.tblContainer.mblSocialContain{width: 100% !important; } }\r    \r\n@media only screen and (max-width: 480px){.bmeMblStack> .bmeShareItem{width: 100% !important; clear: both !important;} }\r    \r\n@media only screen and (max-width: 480px){.bmeShareItem{padding-top: 10px !important;} }            \r    \r\n@media only screen and (max-width: 480px){.tdPart.bmeMblStackCenter, .bmeMblStackCenter .bmeFollowItemIcon {padding:0px !important; text-align: center !important;} }\r    \r\n@media only screen and (max-width: 480px){.bmeMblStackCenter> .bmeShareItem{width: 100% !important;} }\r    \r\n@media only screen and (max-width: 480px){ td.bmeMblCenter {border: 0 none transparent !important;} }\r    \r\n@media only screen and (max-width: 480px){.bmeLinkTable.tdPart td{padding-left:0px !important; padding-right:0px !important; border:0px none transparent !important;padding-bottom:15px !important;height: auto !important;} }\r    \r\n@media only screen and (max-width: 480px){.tdMblHide{width:10px !important;} }            \r    \r\n@media only screen and (max-width: 480px){.bmeShareItemBtn{display:table !important;} }\r    \r\n@media only screen and (max-width: 480px){.bmeMblStack td {text-align: left !important;} }\r    \r\n@media only screen and (max-width: 480px){.bmeMblStack .bmeFollowItem{clear:both !important; padding-top: 10px !important;} }\r    \r\n@media only screen and (max-width: 480px){.bmeMblStackCenter .bmeFollowItemText{padding-left: 5px !important;} }\r    \r\n@media only screen and (max-width: 480px){.bmeMblStackCenter .bmeFollowItem{clear:both !important;align-self:center; float:none !important; padding-top:10px;margin: 0 auto;} }            \r    \r\n@media only screen and (max-width: 480px){\r    \r\n.tdPart> table{width:100% !important;}\r    \r\n}\r    \r\n@media only screen and (max-width: 480px){.tdPart>table.bmeLinkContainer{ width:auto !important; } }\r    \r\n@media only screen and (max-width: 480px){.tdPart.mblStackCenter>table.bmeLinkContainer{ width:100% !important;} } \r    \r\n.blk_parent:first-child, .blk_parent{float:left;}            \r    \r\n.blk_parent:last-child{float:right;}\r    \r\n\r    \r\n/* Tablet and Mobile Styles - 767px breakpoint TEXT BLOCK */\r    \r\n@media only screen and (max-width: 767px){ \r    \r\n    table.blk, table[name=blk_text] { max-width: 100% !important; }\r    \r\n    table.bmeContainerRow { max-width: 100% !important; }\r    \r\n    table[name=tblText], table.tblText { max-width: 100% !important; }\r    \r\n    table.blk th.tdPart { height: auto !important; }\r    \r\n}\r    \r\n\r    \r\n/*** BMEMBF END ***/    \r\n    \r\n</style>    \r\n<!--[if gte mso 9]>    \r\n<xml>    \r\n<o:OfficeDocumentSettings>    \r\n<o:AllowPNG/>    \r\n<o:PixelsPerInch>96</o:PixelsPerInch>    \r\n</o:OfficeDocumentSettings>    \r\n</xml>    \r\n<![endif]-->    \r\n    \r\n</head>    \r\n<body topmargin=\"0\" leftmargin=\"0\" style=\"height: 100% !important; margin: 0; padding: 0; width: 100% !important;min-width: 100%;\"><img src=\'https://flowcorp.benchurl.com/c/o?e=1A99F8B&c=9A612&relid=&l=EB04D33B&email=5JB6%2BX1QxSkMz%2F4pkSO4gQ%3D%3D\' alt=\'\' border=\"0\" style=\"display:none;\" height=\"1\" width=\"1\"><div class=\"inbox-preview\" style=\"display: none; font-size: 0; max-height: 0; line-height: 0; padding: 0; mso-hide: all;\">2025 was a year for expanding what it means to be Flow. </div><!-- inbox-preview -->    \r\n    \r\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" name=\"bmeMainBody\" style=\"background-color: rgb(255, 255, 255);\" bgcolor=\"#ffffff\"><tbody><tr><td width=\"100%\" valign=\"top\" align=\"center\">    \r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" name=\"bmeMainColumnParentTable\"><tbody><tr><td name=\"bmeMainColumnParent\" style=\"border-collapse: separate;\">     \r\n<table name=\"bmeMainColumn\" class=\"bmeHolder bmeMainColumn\" style=\"max-width: 600px; overflow: visible;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\">    <tbody><tr id=\"section_1\" class=\"flexible-section\" data-columns=\"1\" data-section-type=\"bmePreHeader\"><td width=\"100%\" class=\"blk_container bmeHolder\" name=\"bmePreHeader\" valign=\"top\" align=\"center\" bgcolor=\"#e6e6e8\" style=\"background-color: rgb(230, 230, 232); color: rgb(102, 102, 102);   \"></td></tr> <tr><td width=\"100%\" class=\"bmeHolder\" valign=\"top\" align=\"center\" name=\"bmeMainContentParent\" style=\"border-color: rgb(128, 128, 128); border-radius: 5px; border-collapse: separate; border-spacing: 0px;\">     \r\n<table name=\"bmeMainContent\" style=\"border-radius: 5px; border-collapse: separate;border-spacing: 0px; overflow: hidden;\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\"> <tbody><tr class=\"flexible-section\" data-columns=\"1\" data-columns-ratio=\"\" id=\"section_2\"><td width=\"100%\" class=\"blk_container bmeHolder bmeBody\" name=\"bmeBody\" valign=\"top\" align=\"center\" style=\"background-color: rgb(230, 230, 232);\" bgcolor=\"#e6e6e8\"><div id=\"dv_18\" class=\"blk_wrapper\" style=\"\">    \r\n<table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"blk\" name=\"blk_image\"><tbody><tr><td>    \r\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\"><tbody><tr><td align=\"center\" class=\"bmeImage\" style=\"border-collapse: collapse; padding: 0px;\"><a href=\"https://flowcorp.benchurl.com/c/l?u=133E2043&e=1A99F8B&c=9A612&&t=0&l=EB04D33B&email=5JB6%2BX1QxSkMz%2F4pkSO4gQ%3D%3D&seq=1\" target=\"_blank\"><img src=\"https://images.benchmarkemail.com/client632338/image16875457.png\" class=\"mobile-img-large\" width=\"600\" style=\"max-width: 1200px; display: block; border-radius: 0px; border-style: none; border-width: 0px; border-color: rgb(0, 0, 238);\" alt=\"\" data-radius=\"0\" border=\"0\" data-original-max-width=\"1200\"></a></td></tr></tbody>    \r\n</table></td></tr></tbody>    \r\n</table></div></td></tr> <tr id=\"section_3\" class=\"flexible-section\" data-columns=\"1\"><td width=\"100%\" class=\"blk_container bmeHolder bmeBody\" name=\"bmeBody\" valign=\"top\" align=\"center\" bgcolor=\"#e6e6e8\" style=\"color: rgb(54, 56, 56); background-color: rgb(230, 230, 232);\">    \r\n    \r\n    \r\n<div id=\"dv_4\" class=\"blk_wrapper\" style=\"\">    \r\n<table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"blk\" name=\"blk_image\"><tbody><tr><td>    \r\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\"><tbody><tr><td align=\"center\" class=\"bmeImage\" style=\"border-collapse: collapse; padding: 0px;\"><a href=\"https://flowcorp.benchurl.com/c/l?u=133E2227&e=1A99F8B&c=9A612&&t=0&l=EB04D33B&email=5JB6%2BX1QxSkMz%2F4pkSO4gQ%3D%3D&seq=1\" target=\"_blank\"><img src=\"https://images.benchmarkemail.com/client632338/image18255080.jpeg\" class=\"mobile-img-large\" width=\"600\" alt=\"\" data-radius=\"0\" style=\"max-width: 2404px; display: block; border-radius: 0px; border-style: none; border-width: 0px; border-color: rgb(0, 0, 238);\" border=\"0\" data-original-max-width=\"2404\"></a></td></tr></tbody>    \r\n</table></td></tr></tbody>    \r\n</table></div><div id=\"dv_32\" class=\"blk_wrapper\" style=\"\">    \r\n<table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"blk\" name=\"blk_spacer\" style=\"background-color: rgb(4, 55, 62); width: 100%; max-width: 600px;\"><tbody><tr><td class=\"tblCellMain\" style=\"padding-top: 9px; padding-bottom: 9px;\">    \r\n<table class=\"tblLine\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\" style=\"min-width: 1px;\"><tbody><tr><td><span></span></td></tr></tbody>    \r\n</table></td></tr></tbody>    \r\n</table></div><div id=\"dv_28\" class=\"blk_wrapper\" style=\"\">    \r\n<table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"blk\" name=\"blk_text\" style=\"width: 100%; max-width: 600px;\"><tbody><tr><td>    \r\n<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"bmeContainerRow\" style=\"width: 100%; max-width: 600px;\"><tbody><tr><th class=\"tdPart\" valign=\"top\" align=\"center\" style=\"background-color: rgb(4, 55, 62);height:77px;\">    \r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"600\" name=\"tblText\" class=\"tblText\" style=\"float: left; background-color: rgb(4, 55, 62); width: 100%; max-width: 600px;\" align=\"left\"><tbody><tr><td valign=\"top\" align=\"left\" name=\"tblCell\" class=\"tblCell\" style=\"padding: 5px 20px; font-family: Arial, Helvetica, sans-serif; font-size: 14px; font-weight: 400; color: rgb(56, 56, 56); text-align: left; word-break: break-word;\"><div style=\"line-height: 150%; text-align: center;\">    \r\n<p style=\"margin-top: 0px; margin-bottom: 0px;\"><span style=\"color: rgb(255, 255, 255);\">For five decades, Flow has been synonymous with pioneering abrasive&nbsp;waterjet technology. </span><span style=\"color: rgb(255, 255, 255);\">This year, we set our sights beyond what we’ve always done best. We focused on building what’s next and expanding what it means to be Flow.&nbsp;&nbsp;</span></p>    \r\n</div></td></tr></tbody>    \r\n</table></th></tr></tbody>    \r\n</table></td></tr></tbody>    \r\n</table></div><div id=\"dv_20\" class=\"blk_wrapper\" style=\"\">    \r\n<table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"blk\" name=\"blk_spacer\" style=\"background-color: rgb(4, 55, 62); width: 100%; max-width: 600px;\"><tbody><tr><td class=\"tblCellMain\" style=\"padding-top: 15.5px; padding-bottom: 15.5px;\">    \r\n<table class=\"tblLine\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\" style=\"min-width: 1px;\"><tbody><tr><td><span></span></td></tr></tbody>    \r\n</table></td></tr></tbody>    \r\n</table></div></td></tr><tr class=\"flexible-section\" data-columns=\"1\" data-columns-ratio=\"\" id=\"section_7\"><td width=\"100%\" class=\"blk_container bmeHolder bmeBody\" name=\"bmeBody\" valign=\"top\" align=\"center\" style=\"background-color: rgb(230, 230, 232);\" bgcolor=\"#e6e6e8\"><div id=\"dv_1\" class=\"blk_wrapper\" style=\"\">    \r\n<table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"blk\" name=\"blk_divider\" style=\"background-color: rgb(230, 230, 232); width: 100%; max-width: 600px;\"><tbody><tr><td class=\"tblCellMain\" style=\"padding: 10px 20px;\">    \r\n<table class=\"tblLine\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\" style=\"border-top-width: 0px; border-top-style: none; min-width: 1px;\"><tbody><tr><td><span></span></td></tr></tbody>    \r\n</table></td></tr></tbody>    \r\n</table></div><div id=\"dv_27\" class=\"blk_wrapper\" style=\"\">    \r\n<table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"blk\" name=\"blk_image\"><tbody><tr><td>    \r\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\"><tbody><tr><td align=\"center\" class=\"bmeImage\" style=\"border-collapse: collapse; padding: 10px 20px;\"><img src=\"https://images.benchmarkemail.com/client632338/image17904214.jpg\" class=\"mobile-img-large\" width=\"560\" style=\"max-width: 1200px; display: block; border-radius: 0px; border-style: none; border-width: 0px; border-color: rgb(0, 0, 238);\" alt=\"\" data-radius=\"0\" border=\"0\" data-original-max-width=\"1200\" height=\"303.328125\"></td></tr></tbody>    \r\n</table></td></tr></tbody>    \r\n</table></div><div id=\"dv_36\" class=\"blk_wrapper\" style=\"\">    \r\n<table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"blk\" name=\"blk_divider\" style=\"background-color: rgb(230, 230, 232); width: 100%; max-width: 600px;\"><tbody><tr><td class=\"tblCellMain\" style=\"padding: 10px 20px;\">    \r\n<table class=\"tblLine\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\" style=\"border-top-width: 0px; border-top-style: none; min-width: 1px;\"><tbody><tr><td><span></span></td></tr></tbody>    \r\n</table></td></tr></tbody>    \r\n</table></div><div id=\"dv_13\" class=\"blk_wrapper\" style=\"\">    \r\n<table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"blk\" name=\"blk_text\" style=\"width: 100%; max-width: 600px;\"><tbody><tr><td>    \r\n<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"bmeContainerRow\" style=\"width: 100%; max-width: 600px;\"><tbody><tr><th class=\"tdPart\" valign=\"top\" align=\"center\" style=\"background-color: rgb(230, 230, 232);height:24px;\">    \r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"600\" name=\"tblText\" class=\"tblText\" style=\"float: left; background-color: rgb(230, 230, 232); width: 100%; max-width: 600px;\" align=\"left\"><tbody><tr><td valign=\"top\" align=\"left\" name=\"tblCell\" class=\"tblCell\" style=\"padding: 0px 20px; font-family: Arial, Helvetica, sans-serif; font-size: 14px; font-weight: 400; color: rgb(56, 56, 56); text-align: left; word-break: break-word;\"><div style=\"line-height: 150%; text-align: left;\"><span style=\"color: #007681;\"><span style=\"font-size: 21px;\"><strong>New Systems Debut at FABTECH</strong></span></span></div></td></tr></tbody>    \r\n</table></th></tr></tbody>    \r\n</table></td></tr></tbody>    \r\n</table></div><div id=\"dv_33\" class=\"blk_wrapper\" style=\"\">    \r\n<table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"blk\" name=\"blk_text\" style=\"width: 100%; max-width: 600px;\"><tbody><tr><td>    \r\n<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"bmeContainerRow\" style=\"width: 100%; max-width: 600px;\"><tbody><tr><th class=\"tdPart\" valign=\"top\" align=\"center\" style=\"height:276px;\">    \r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"600\" name=\"tblText\" class=\"tblText\" style=\"float: left;  width: 100%; max-width: 600px;\" align=\"left\"><tbody><tr><td valign=\"top\" align=\"left\" name=\"tblCell\" class=\"tblCell\" style=\"padding: 10px 20px; font-family: Arial, Helvetica, sans-serif; font-size: 14px; font-weight: 400; color: rgb(56, 56, 56); text-align: left; word-break: break-word;\"><div style=\"line-height: 150%;\"><span style=\"color: rgb(102, 102, 102);\">At FABTECH, we unveiled three new systems that redefine what it means to be a fabrication partner:&nbsp;</span></div>    \r\n<div style=\"line-height: 150%;\">    \r\n<ul>    \r\n    \r\n<li style=\"color: rgb(102, 102, 102);\"><span style=\"color: rgb(102, 102, 102);\"><strong>NX Pro Waterjet</strong> – Enclosed, next-gen system with automated abrasive recycling.</span></li>    \r\n    \r\n<li style=\"color: rgb(102, 102, 102);\"><span style=\"color: rgb(102, 102, 102);\"><strong>LZR Fiber Laser</strong> – High-speed, high-accuracy cutting for thin and thick materials.</span></li>    \r\n    \r\n<li style=\"color: rgb(102, 102, 102);\"><span style=\"color: rgb(102, 102, 102);\"><strong>HyperBend Press Brake</strong> – Six-axis bending with hybrid drive and smart controls.</span></li>    \r\n</ul>    \r\n<div><span style=\"color: rgb(102, 102, 102);\">Industry experts are calling it a bold move toward the future of flexible fabrication.</span></div>    \r\n<div>&nbsp;</div>    \r\n<div><span style=\"color: rgb(102, 102, 102);\">But that\'s just the beginning. We\'re investing in smarter systems, sustainable technologies, and integrated workflows to help manufacturers stay ahead of what\'s next.&nbsp;</span></div>    \r\n<div>&nbsp;</div>    \r\n<div><span style=\"color: rgb(102, 102, 102);\"><strong>Want the full story?&nbsp;</strong></span></div>    \r\n</div></td></tr></tbody>    \r\n</table></th></tr></tbody>    \r\n</table></td></tr></tbody>    \r\n</table></div><div id=\"dv_34\" class=\"blk_wrapper\" style=\"\">    \r\n<table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"blk\" name=\"blk_button\" style=\"width: 100%; max-width: 600px;\"><tbody><tr><td width=\"20\"></td><td align=\"center\">    \r\n<table class=\"tblContainer\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\"><tbody><tr><td height=\"10\"></td></tr><tr><td align=\"left\">    \r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"bmeButton\" style=\"border-collapse: separate;\"><tbody><tr><td style=\"border-radius: 50px; border-width: 0px; border-style: none; border-color: transparent; background-color: rgb(0, 118, 129); text-align: center; font-family: Arial, Helvetica, sans-serif; font-size: 14px; padding: 20px 40px; font-weight: bold; word-break: break-word;\" class=\"bmeButtonText\"><span style=\"font-family:Arial, Verdana; font-size:14px;color:#FFFFFF;\"><a style=\"color:#FFFFFF;text-decoration:none;\" target=\"_blank\" href=\"https://flowcorp.benchurl.com/c/l?u=132D4328&e=1A99F8B&c=9A612&&t=0&l=EB04D33B&email=5JB6%2BX1QxSkMz%2F4pkSO4gQ%3D%3D&seq=1\" target=\"_blank\" data-link-type=\"web\">Read the Article</a></span></td></tr></tbody>    \r\n</table></td></tr><tr><td height=\"10\"></td></tr></tbody>    \r\n</table></td><td width=\"20\"></td></tr></tbody>    \r\n</table></div><div id=\"dv_15\" class=\"blk_wrapper\" style=\"\">    \r\n<table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"blk\" name=\"blk_divider\" style=\"background-color: rgb(230, 230, 232); width: 100%; max-width: 600px;\"><tbody><tr><td class=\"tblCellMain\" style=\"padding: 20px;\">    \r\n<table class=\"tblLine\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\" style=\"border-top-width: 0px; border-top-style: none; min-width: 1px;\"><tbody><tr><td><span></span></td></tr></tbody>    \r\n</table></td></tr></tbody>    \r\n</table></div></td></tr> <tr class=\"flexible-section\" data-columns=\"1\" data-columns-ratio=\"\" id=\"section_6\"><td width=\"100%\" class=\"blk_container bmeHolder bmeBody\" name=\"bmeBody\" valign=\"top\" align=\"center\" style=\"background-color: rgb(230, 230, 232);\" bgcolor=\"#e6e6e8\"><div id=\"dv_24\" class=\"blk_wrapper\" style=\"\">    \r\n<table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"blk\" name=\"blk_text\" style=\"width: 100%; max-width: 600px;\"><tbody><tr><td>    \r\n<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"bmeContainerRow\" style=\"width: 100%; max-width: 600px;\"><tbody><tr><th class=\"tdPart\" valign=\"top\" align=\"center\" style=\"background-color: rgb(0, 118, 129);height:61px;\">    \r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"600\" name=\"tblText\" class=\"tblText\" style=\"float: left; background-color: rgb(0, 118, 129); width: 100%; max-width: 600px;\" align=\"left\"><tbody><tr><td valign=\"top\" align=\"left\" name=\"tblCell\" class=\"tblCell\" style=\"padding: 20px 0px; font-family: Arial, Helvetica, sans-serif; font-size: 14px; font-weight: 400; color: rgb(56, 56, 56); text-align: left; word-break: break-word;\"><div style=\"line-height: 150%; text-align: center;\"><strong><span style=\"color: #ffffff;\">STAY UP TO DATE</span></strong></div></td></tr></tbody>    \r\n</table></th></tr></tbody>    \r\n</table></td></tr></tbody>    \r\n</table></div><div id=\"dv_6\" class=\"blk_wrapper\" style=\"\">    \r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"background-color: rgb(0, 118, 129); width: 100%; max-width: 600px;\" name=\"blk_social_follow\" width=\"600\" class=\"blk\"><tbody><tr><td class=\"tblCellMain\" align=\"center\" style=\"padding-top:0px; padding-bottom:0px; padding-left:20px; padding-right:20px;\">    \r\n<table class=\"tblContainer mblSocialContain\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" style=\"text-align:center;\"><tbody><tr><td class=\"tdItemContainer\">    \r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"mblSocialContain\" style=\"table-layout: auto;\"><tbody><tr><td valign=\"top\" name=\"bmeSocialTD\" class=\"bmeSocialTD\"><!--[if gte mso 6]></td><td align=\"left\" valign=\"top\"><![endif]-->    \r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"bmeFollowItem\" type=\"facebook\" style=\"float: left; display: block;\" align=\"left\"><tbody><tr><td align=\"left\" class=\"bmeFollowItemIcon\" gutter=\"5\" width=\"24\" style=\"padding-right:5px;height:20px;\"><a href=\"https://flowcorp.benchurl.com/c/l?u=132C023E&e=1A99F8B&c=9A612&&t=0&l=EB04D33B&email=5JB6%2BX1QxSkMz%2F4pkSO4gQ%3D%3D&seq=1\" target=\"_blank\" style=\"display: inline-block;background-color: rgb(0, 118, 129);border-radius: 0px;border-style: none; border-width: 0px; border-color: rgb(0, 0, 238);\" target=\"_blank\"><img src=\"https://images.benchmarkemail.com/social/fb_btn.png\" alt=\"Facebook\" style=\"display: block; max-width: 24px;\" border=\"0\" width=\"24\" height=\"24\"></a></td></tr></tbody>    \r\n</table><!--[if gte mso 6]></td><td align=\"left\" valign=\"top\"><![endif]-->    \r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"bmeFollowItem\" type=\"youtube\" style=\"float: left; display: block;\" align=\"left\"><tbody><tr><td align=\"left\" class=\"bmeFollowItemIcon\" gutter=\"5\" width=\"24\" style=\"padding-right:5px;height:20px;\"><a href=\"https://flowcorp.benchurl.com/c/l?u=132C023F&e=1A99F8B&c=9A612&&t=0&l=EB04D33B&email=5JB6%2BX1QxSkMz%2F4pkSO4gQ%3D%3D&seq=1\" target=\"_blank\" style=\"display: inline-block;background-color: rgb(0, 118, 129);border-radius: 0px;border-style: none; border-width: 0px; border-color: rgb(0, 0, 238);\" target=\"_blank\"><img src=\"https://images.benchmarkemail.com/social/yt_btn.png\" alt=\"YouTube\" style=\"display: block; max-width: 24px;\" border=\"0\" width=\"24\" height=\"24\"></a></td></tr></tbody>    \r\n</table><!--[if gte mso 6]></td><td align=\"left\" valign=\"top\"><![endif]-->    \r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"bmeFollowItem\" type=\"instagram\" style=\"float: left; display: block;\" align=\"left\"><tbody><tr><td align=\"left\" class=\"bmeFollowItemIcon\" gutter=\"5\" width=\"24\" style=\"padding-right:5px;height:20px;\"><a href=\"https://flowcorp.benchurl.com/c/l?u=132C0240&e=1A99F8B&c=9A612&&t=0&l=EB04D33B&email=5JB6%2BX1QxSkMz%2F4pkSO4gQ%3D%3D&seq=1\" target=\"_blank\" style=\"display: inline-block;background-color: rgb(0, 118, 129);border-radius: 0px;border-style: none; border-width: 0px; border-color: rgb(0, 0, 238);\" target=\"_blank\"><img src=\"https://images.benchmarkemail.com/social/in_btn.png\" alt=\"Instagram\" style=\"display: block; max-width: 24px;\" border=\"0\" width=\"24\" height=\"24\"></a></td></tr></tbody>    \r\n</table><!--[if gte mso 6]></td><td align=\"left\" valign=\"top\"><![endif]-->    \r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"bmeFollowItem\" type=\"linkedin\" style=\"float: left; display: block;\" align=\"left\"><tbody><tr><td align=\"left\" class=\"bmeFollowItemIcon\" gutter=\"5\" width=\"24\" style=\"height:20px;\"><a href=\"https://flowcorp.benchurl.com/c/l?u=132C0241&e=1A99F8B&c=9A612&&t=0&l=EB04D33B&email=5JB6%2BX1QxSkMz%2F4pkSO4gQ%3D%3D&seq=1\" target=\"_blank\" style=\"display: inline-block;background-color: rgb(0, 118, 129);border-radius: 0px;border-style: none; border-width: 0px; border-color: rgb(0, 0, 238);\" target=\"_blank\"><img src=\"https://images.benchmarkemail.com/social/li_btn.png\" alt=\"LinkedIn\" style=\"display: block; max-width: 24px;\" border=\"0\" width=\"24\" height=\"24\"></a></td></tr></tbody>    \r\n</table></td></tr></tbody>    \r\n</table></td></tr></tbody>    \r\n</table></td></tr></tbody>    \r\n</table></div><div id=\"dv_26\" class=\"blk_wrapper\" style=\"\">    \r\n<table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"blk\" name=\"blk_divider\" style=\"background-color: rgb(0, 118, 129); width: 100%; max-width: 600px;\"><tbody><tr><td class=\"tblCellMain\" style=\"padding-top:20px; padding-bottom:20px;padding-left:20px;padding-right:20px;\">    \r\n<table class=\"tblLine\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\" style=\"border-top-width: 1px; border-top-style: none; min-width: 1px;\"><tbody><tr><td><span></span></td></tr></tbody>    \r\n</table></td></tr></tbody>    \r\n</table></div></td></tr> </tbody>    \r\n</table> </td></tr>  <tr id=\"section_5\" class=\"flexible-section\" data-columns=\"1\" data-section-type=\"bmeFooter\"><td width=\"100%\" class=\"blk_container bmeHolder\" name=\"bmeFooter\" valign=\"top\" align=\"center\" bgcolor=\"#e6e6e8\" style=\"color: rgb(102, 102, 102); background-color: rgb(230, 230, 232);\"><div id=\"dv_7\" class=\"blk_wrapper\" style=\"\">    \r\n<table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"blk\" name=\"blk_permission\" style=\"background-color: rgb(255, 255, 255); width: 100%; max-width: 600px;\"><tbody><tr><td name=\"tblCell\" class=\"tblCell\" style=\"padding: 20px; word-break: break-word;\" valign=\"top\" align=\"left\">    \r\n<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"100%\"><tbody><tr><td name=\"bmePermissionText\" style=\"text-align:left;\" align=\"left\"><span style=\"font-family: Arial, Helvetica, sans-serif; font-weight: normal; font-size: 11px;line-height: 140%;\"><a style=\"color: #16a7e0;\" target=\"_new\" href=\"https://flowcorp.benchurl.com/c/v?e=1A99F8B&c=9A612&t=0&l=EB04D33B&email=5JB6%2BX1QxSkMz%2F4pkSO4gQ%3D%3D\">View this email in your browser</a>    \r\n    \r\n<br>You are receiving this email because of your relationship with Flow International. Please <a style=\"color: #16a7e0;\" target=\"_new\" href=\"https://flowcorp.benchurl.com/c/opt?e=1A99F8B&c=9A612&t=0&l=EB04D33B&email=5JB6%2BX1QxSkMz%2F4pkSO4gQ%3D%3D\">reconfirm</a> your interest in receiving emails from us.   If you do not wish to receive any more emails, you can <a style=\"color: #16a7e0;\" target=\"_new\" href=\"https://flowcorp.benchurl.com/c/su?e=1A99F8B&c=9A612&t=0&l=EB04D33B&email=5JB6%2BX1QxSkMz%2F4pkSO4gQ%3D%3D\">unsubscribe here</a>.    \r\n</span></td></tr></tbody>    \r\n</table></td></tr></tbody>    \r\n</table></div><div id=\"dv_8\" class=\"blk_wrapper\" style=\"\">    \r\n<table width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"blk\" name=\"blk_footer\" style=\"background-color: rgb(255, 255, 255); width: 100%; max-width: 600px;\"><tbody><tr><td name=\"tblCell\" class=\"tblCell\" style=\"padding: 20px; word-break: break-word;\" valign=\"top\" align=\"left\">    \r\n<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"100%\"><tbody><tr><td name=\"bmeBadgeText\" style=\"text-align:left; word-break: break-word;\" align=\"left\"><span id=\"spnFooterText\" style=\"font-family: Arial, Helvetica, sans-serif; font-weight: normal; font-size: 11px; line-height: 140%;\">This message was sent to rick@mavrix.one by info@flowcorp.com    \r\n<br>23500 64th Avenue South, Kent, WA, 98032</span>    \r\n<br>    \r\n<br><span style=\"font-family: Arial, Helvetica, sans-serif; font-weight: normal; font-size: 11px; line-height: 140%;\"><span href=\"https://flowcorp.benchurl.com/c/su?e=1A99F8B&c=9A612&t=0&l=EB04D33B&email=5JB6%2BX1QxSkMz%2F4pkSO4gQ%3D%3D&relid=\"><img src=\"https://ui.benchmarkemail.com/images/verified.png\" alt=\"Unsubscribe from all mailings\" title=\"Unsubscribe from all mailings\" border=\"0\"></span> <a class=\"bmefootertext\" target=\"_new\" href=\"https://flowcorp.benchurl.com/c/su?e=1A99F8B&c=9A612&t=0&l=EB04D33B&email=5JB6%2BX1QxSkMz%2F4pkSO4gQ%3D%3D&relid=\" style=\"color:inherit;text-decoration:underline;\">Unsubscribe</a>   | <a class=\"bmefootertext\" target=\"_new\" href=\"https://flowcorp.benchurl.com/c/s?e=1A99F8B&c=9A612&t=0&l=EB04D33B&email=5JB6%2BX1QxSkMz%2F4pkSO4gQ%3D%3D&relid=\" style=\"color:inherit;text-decoration:underline;\">Manage Subscription</a>      \r\n<br></span></td></tr><tr><td name=\"bmeBadgeImage\" style=\"text-align:left;padding-top:20px;\" align=\"left\"><a href=\"https://www.benchmarkemail.com?p=500289\" target=\"|URLTarget|\"><img src=\"https://www.benchmarkemail.com/images/web4/misc/emailfooter/opt11.png\" style=\"max-width:116px;\" border=\"0\"></a></td></tr></tbody>    \r\n</table></td></tr></tbody>    \r\n</table></div></td></tr> </tbody>    \r\n</table></td></tr></tbody>    \r\n</table></td></tr></tbody>    \r\n</table>    \r\n</body>    \r\n</html>','[1]    \r\n    \r\n[2]    \r\nFor five decades, Flow has been synonymous with pioneering abrasive waterjet technology. This year, we set our sights beyond what we’ve always done best. We focused on building what’s next and expanding what it means to be Flow.    \r\n    \r\nNew Systems Debut at FABTECH    \r\n    \r\nAt FABTECH, we unveiled three new systems that redefine what it means to be a fabrication partner:    \r\n    \r\nNX Pro Waterjet– Enclosed, next-gen system with automated abrasive recycling.    \r\nLZR Fiber Laser– High-speed, high-accuracy cutting for thin and thick materials.    \r\nHyperBend Press Brake– Six-axis bending with hybrid drive and smart controls.    \r\n    \r\nIndustry experts are calling it a bold move toward the future of flexible fabrication.    \r\n    \r\nBut that\'s just the beginning. We\'re investing in smarter systems, sustainable technologies, and integrated workflows to help manufacturers stay ahead of what\'s next.    \r\n    \r\nWant the full story?    \r\n[3] Read the Article    \r\n    \r\nSTAY UP TO DATE    \r\n    \r\n[4]    \r\n    \r\n[5]    \r\n    \r\n[6]    \r\n    \r\n[7]    \r\n[8] View this email in your browser    \r\n    \r\nYou are receiving this email because of your relationship with Flow International. Please [9] reconfirmyour interest in receiving emails from us. If you do not wish to receive any more emails, you can [10] unsubscribe here.    \r\n    \r\n    \r\n References:    \r\n    \r\n1. https://flowcorp.benchurl.com/c/l?u=133E208D&e=1A99F8B&c=9A612&t=0&seq=1    \r\n2. https://flowcorp.benchurl.com/c/l?u=133E222B&e=1A99F8B&c=9A612&t=0&seq=1    \r\n3. https://flowcorp.benchurl.com/c/l?u=132D4329&e=1A99F8B&c=9A612&t=0&seq=1    \r\n4. https://flowcorp.benchurl.com/c/l?u=132C024B&e=1A99F8B&c=9A612&t=0&seq=1    \r\n5. https://flowcorp.benchurl.com/c/l?u=132C024C&e=1A99F8B&c=9A612&t=0&seq=1    \r\n6. https://flowcorp.benchurl.com/c/l?u=132C024D&e=1A99F8B&c=9A612&t=0&seq=1    \r\n7. https://flowcorp.benchurl.com/c/l?u=132C024E&e=1A99F8B&c=9A612&t=0&seq=1    \r\n8. https://flowcorp.benchurl.com/c/v?e=1A99F8B&c=9A612&t=0&l=EB04D33B&email=5JB6%2BX1QxSkMz%2F4pkSO4gQ%3D%3D    \r\n9. https://flowcorp.benchurl.com/c/opt?e=1A99F8B&c=9A612&t=0&l=EB04D33B&email=5JB6%2BX1QxSkMz%2F4pkSO4gQ%3D%3D    \r\n10. https://flowcorp.benchurl.com/c/su?e=1A99F8B&c=9A612&t=0&l=EB04D33B&email=5JB6%2BX1QxSkMz%2F4pkSO4gQ%3D%3D    \r\n    \r\n    \r\n    \r\nThis message was sent to rick@mavrix.one by info@flowcorp.com    \r\n    \r\nYou can modify/update your subscription via the link below.    \r\n    \r\nUnsubscribe from all mailings    \r\nhttps://flowcorp.benchurl.com/c/su?e=1A99F8B&c=9A612&t=0&l=EB04D33B&email=5JB6%2BX1QxSkMz%2F4pkSO4gQ%3D%3D&relid=    \r\n    \r\nManage Subscription    \r\nhttps://flowcorp.benchurl.com/c/s?e=1A99F8B&c=9A612&t=0&l=EB04D33B&email=5JB6%2BX1QxSkMz%2F4pkSO4gQ%3D%3D&relid=    \r\n    \r\n23500 64th Avenue South, Kent, WA, 98032    \r\n    \r\nEmail Marketing    \r\nbenchmarkemail.com    \r\n [https://flowcorp.benchurl.com]    \r\n    \r\n    \r\n    \r\nhttps://flowcorp.benchurl.com/c/su?e=1A99F8B&c=9A612&t=0&l=EB04D33B&email=5JB6%2BX1QxSkMz%2F4pkSO4gQ%3D%3D&relid=',0,0,0,0,0,0,'2025-11-19 16:28:54','2025-12-04 14:04:58','2025-12-04 14:04:58','2025-12-04 14:04:58',NULL,NULL,NULL),
(96,4,'<EF8C5BFC-87A7-4B12-9277-8AB9857F1EA6@mavrix.one>',NULL,NULL,'Project Bolt - Kimley - Horn Team','Brian@mavrix.one','Brian Stufflebean','<html><head><meta http-equiv=\"content-type\" content=\"text/html; charset=us-ascii\"></head><body style=\"overflow-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;\"><div><div><span></span><meta charset=\"UTF-8\"><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br class=\"Apple-interchange-newline\"><br class=\"Apple-interchange-newline\"><a href=\"mailto:brian@mavrix.one\">brian@mavrix.one</a></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br><a href=\"https://mavrix1.com\">https://mavrix1.com/</a></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br></div><div style=\"font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br><br><br><br><br><br><br><br><br><b>CONFIDENTIALITY NOTICE:</b><span style=\"font-family: Helvetica; font-style: normal; font-weight: 400; font-size: 12px;\">&nbsp;This&nbsp;communication&nbsp;is confidential&nbsp;and&nbsp;intended only for the intended&nbsp;recipient.&nbsp;&nbsp;If you are not the intended&nbsp;recipient,&nbsp;you&nbsp;may not copy, disclose, or&nbsp;distribute&nbsp;this message&nbsp;to anyone else;&nbsp;any such&nbsp;actions may be unlawful. If&nbsp;you have&nbsp;received this communication&nbsp;in error,&nbsp;please contact the sender of&nbsp;the&nbsp;message to inform him or her of the&nbsp;error.<br><br></span></div>\r\n</div>\r\n\r\n<br></div></body></html>','Rick and Nathan,\r\n\r\nThis document is for “your eyes only”, not to be shared beyond the 3 of us for now. Please keep confidential. \r\n\r\n\r\n\r\n￼\r\n\r\n\r\n\r\nBest regards,\r\n\r\n\r\n\r\nBrian C. Stufflebean\r\nCEO, Co-Founder\r\n(941)545-4153 Direct\r\n(866)896-2423 Fax\r\n\r\n￼\r\n\r\n\r\nbrian@mavrix.one <mailto:brian@mavrix.one>\r\n\r\nhttps://mavrix1.com/\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.',0,0,0,0,0,0,'2025-12-01 16:33:55','2025-12-04 14:05:21','2025-12-04 14:05:21','2025-12-04 14:05:21',NULL,NULL,NULL),
(97,4,'<0100019a7f4187c3-830b6f66-8558-4f37-9121-c73391ceadd7-000000@email.amazonses.com>',NULL,NULL,'APPROVED-BLD-24-0510827-REV1 (1)','message@adobe.com','\"jordan.wroblewski@me.com via Adobe Acrobat\"','<html lang=\"en\" xmlns=\"https://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\">\r\n  <head>\r\n<link rel=\"icon\" href=\"https://www.adobe.com/favicon.ico\" type=\"image/x-icon\">\r\n<link rel=\"shortcut icon\" href=\"https://www.adobe.com/favicon.ico\" type=\"image/x-icon\">\r\n<meta name=\"x-apple-disable-message-reformatting\">\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\r\n<meta name=\"viewport\" content=\"width=device-width,initial-scale=1.0\">\r\n<meta name=\"format-detection\" content=\"telephone=no\">\r\n<meta name=\"format-detection\" content=\"date=no\">\r\n<meta name=\"format-detection\" content=\"address=no\">\r\n<meta name=\"format-detection\" content=\"email=no\">\r\n<title>Adobe</title>\r\n\r\n<!--[if mso]>\r\n<style type=\"text/css\">\r\nbody, table, td {\r\nfont-family:Helvetica Neue, Helvetica, Verdana, Arial, sans-serif !important;\r\nmso-hyphenate:none !important;\r\n}\r\n.button {\r\nbackground:transparent !important;\r\n}\r\n</style>\r\n<xml>\r\n  <o:OfficeDocumentSettings>\r\n    <o:AllowPNG/>\r\n    <o:PixelsPerInch>96</o:PixelsPerInch>\r\n  </o:OfficeDocumentSettings>\r\n</xml>\r\n<![endif]-->\r\n\r\n<style type=\"text/css\">\r\n@import url(\"https://use.typekit.net/ulc2sof.css\");\r\n@media (prefers-color-scheme: dark) { }\r\n.ReadMsgBody { width:100%;}\r\n.ExternalClass {width:100%;}\r\ntable {border-collapse:collapse; margin:0 auto;}\r\na, a:visited {color:#1473E6; text-decoration:none;}\r\n.legal a {color:#6D6D6D; text-decoration:underline;}\r\n/* iOS BLUE LINKS */\r\na[x-apple-data-detectors] {color:inherit !important; text-decoration:none !important; font-size:inherit !important; font-family:inherit !important; font-weight:inherit !important; line-height:inherit !important;}\r\n\r\n.mobile {border-spacing:0;display:none!important;height:0;max-height:0;mso-hide:all;overflow:hidden;visibility:hidden;width:0;}\r\n	\r\n	@media only screen and (max-width:480px) {\r\n		u ~ div {\r\n			min-width:100vw;\r\n		}\r\n		div > u ~ div {\r\n        	min-width: 100%;\r\n		}\r\n		.web {\r\n			 display:none !important;\r\n	     }\r\n		 \r\n		 .mobile {\r\n			 display:block !important;\r\n			 width:auto !important;\r\n			 overflow:visible !important;\r\n			 height:auto !important;\r\n			 max-height:inherit !important;\r\n			 font-size:18px !important;\r\n			 line-height:26px !important;\r\n			 visibility:visible !important;\r\n	     }\r\n		 \r\n		 .email-width {\r\n			 width:84% !important;\r\n	     }\r\n		 \r\n		 .full-width {\r\n			 width:100% !important;\r\n	     }\r\n		 \r\n		 .mobile-image {\r\n			 height:auto !important;\r\n			 width:100% !important;\r\n	     }\r\n		\r\n		.social {\r\n			float:left !important;\r\n			padding-top:66px !important;\r\n			text-align:left !important;\r\n		}\r\n	}\r\n</style>\r\n</head>\r\n  <body bgcolor=\"#E4E4E4\" style=\"background-color:#E4E4E4; margin:0; padding:0;-webkit-font-smoothing:antialiased;width:100% !important;-webkit-text-size-adjust:none;\" topmargin=\"0\">\r\n    <div style=\"font-size:1px; color:#E4E4E4; display:none; overflow:hidden; visibility:hidden;\">jordan.wroblewski@me.com has shared APPROVED-BLD-24-0510827-REV1 (1) &nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;</div>\r\n\r\n<table width=\"100%\" bgcolor=\"#E4E4E4\" style=\"background-color:#E4E4E4;\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\">\r\n  <tr>\r\n    <td>\r\n    	<table class=\"full-width\" align=\"center\" width=\"600\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width:600px;\">\r\n		<tr>\r\n           <td bgcolor=\"#ffffff\" style=\"background-color:#ffffff; padding-bottom:60px;\">\r\n           \r\n            <!-- pod1 -->\r\n            <table class=\"email-width\" align=\"center\" width=\"500\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width:500px;\">\r\n			 <tr>\r\n            	<td style=\"color:#EB1000; font-family:adobe-clean, Helvetica Neue, Helvetica, Verdana, Arial, sans-serif; font-size:14px; line-height:20px; padding-top:50px; padding-bottom:60px;\">\r\n										<img alt=\"Adobe Acrobat\" src=\"https://landing.adobe.com/dam/global/images/lockups/acrobat.logo.74777a.352x40.png\" width=\"176\" height=\"auto\" border=\"0\" hspace=\"0\" vspace=\"0\" style=\"color:#EB1000; font-family:adobe-clean, Helvetica Neue, Helvetica, Verdana, Arial, sans-serif; font-size:14px; line-height:20px; display:block; vertical-align:top;\"/>\r\n									</td>\r\n             </tr>\r\n			 <tr>\r\n            	<td style=\"color:#000000; font-family:adobe-clean-display, Helvetica Neue, Helvetica, Verdana, Arial, sans-serif; font-size:22px; font-weight:800; font-feature-settings:\'ss04\' on; line-height:24px;\"><strong><a href=\"mailto:jordan.wroblewski@me.com\" target=\"_blank\" style=\"color:#000000; text-decoration:none;\">jordan.wroblewski@me.com</a></strong> has shared <a href=\"https://postoffice.adobe.com/po-server/link/redirect?target=eyJhbGciOiJIUzUxMiJ9.eyJ0ZW1wbGF0ZSI6ImNjX2NvbGxhYl9kY3NoYXJpbmdfdmlld19lbWFpbCIsImVtYWlsQWRkcmVzcyI6InJpY2tAbWF2cml4Lm9uZSIsInJlcXVlc3RJZCI6ImYxYzVlMDgxLTgzZDEtNDU2MC1iODVkLTk2ZTBhM2VlN2E3MSIsImxpbmsiOiJodHRwczovL2Fjcm9iYXQuYWRvYmUuY29tL2lkL3VybjphYWlkOnNjOlVTOjNmZGJlZWFjLTJiZTUtNDkzYy1iZTE3LWEyNGEzYzVhZDcwNiIsImxhYmVsIjoiMTEiLCJsb2NhbGUiOiJlbl9VUyJ9.a_MyFy-Sdl9XgwAmyHqDw7B_CmKmuda3HWoslvmGqNaidN5VAqYaEI-ppfSif528njasYhIpbevZHVb0JVBtfQ\" target=\"_blank\" style=\"color:#1473E6; text-decoration:none;\">APPROVED-BLD-24-0510827-REV1 (1)</a></td>\r\n             </tr>\r\n             <tr>\r\n            	<td style=\"color:#2C2C2C; font-family:adobe-clean, Helvetica Neue, Helvetica, Verdana, Arial, sans-serif; font-size:18px; line-height:26px; padding-top:20px;\">You can also comment on it.<br/>				</td>\r\n             </tr>\r\n			 <tr>\r\n            	<td style=\"color:#1473E6; font-family:adobe-clean, Helvetica Neue, Helvetica, Verdana, Arial, sans-serif; font-size:16px; line-height:20px; padding-top:40px;\"><!--[if gte mso 9]>\r\n				  <v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" style=\"height:40px; v-text-anchor:middle; width:200px;\" arcsize=\"50%\" stroke=\"f\" fillcolor=\"#1473E6\">\r\n				  <v:textbox style=\"mso-fit-shape-to-text:t\">\r\n				  <center style=\"color:#ffffff; font-family:Helvetica Neue, Helvetica, Verdana, Arial, sans-serif; font-size:16px;\">\r\n				  <![endif]-->\r\n					<a class=\"button\" href=\"https://postoffice.adobe.com/po-server/link/redirect?target=eyJhbGciOiJIUzUxMiJ9.eyJ0ZW1wbGF0ZSI6ImNjX2NvbGxhYl9kY3NoYXJpbmdfdmlld19lbWFpbCIsImVtYWlsQWRkcmVzcyI6InJpY2tAbWF2cml4Lm9uZSIsInJlcXVlc3RJZCI6ImYxYzVlMDgxLTgzZDEtNDU2MC1iODVkLTk2ZTBhM2VlN2E3MSIsImxpbmsiOiJodHRwczovL2Fjcm9iYXQuYWRvYmUuY29tL2lkL3VybjphYWlkOnNjOlVTOjNmZGJlZWFjLTJiZTUtNDkzYy1iZTE3LWEyNGEzYzVhZDcwNiIsImxhYmVsIjoiMTIiLCJsb2NhbGUiOiJlbl9VUyJ9.mPNx13cUj-WC9EtLriPDWnlIK0WL5VK4Sa9QWsuUcm1019nc8_U14shsDuxYmzvFMpO-MI80ELl1ZsSkRGDAOw\" target=\"_blank\" style=\"background-color:#1473E6;border-radius:20px;color:#ffffff;display:inline-block;font-size:16px;line-height:40px;text-align:center;text-decoration:none;width:200px;-webkit-text-size-adjust:none;\"><strong>Open</strong></a>\r\n				  <!--[if gte mso 9]>\r\n				  </center>\r\n				  <p style=\"margin:0; font-size:0; line-height:0;\"><o:p xmlns:o=\"urn:schemas-microsoft-com:office:office\">&nbsp;</o:p></p>\r\n				  </v:textbox>\r\n				  </v:roundrect>\r\n				  <![endif]-->\r\n				</td>\r\n             </tr>\r\n			 <tr>\r\n            	<td style=\"color:#505050; font-family:adobe-clean, Helvetica Neue, Helvetica, Verdana, Arial, sans-serif; font-size:14px; line-height:20px; padding-top:16px;\">Your <a href=\"https://postoffice.adobe.com/po-server/link/redirect?target=eyJhbGciOiJIUzUxMiJ9.eyJ0ZW1wbGF0ZSI6ImNjX2NvbGxhYl9kY3NoYXJpbmdfdmlld19lbWFpbCIsImVtYWlsQWRkcmVzcyI6InJpY2tAbWF2cml4Lm9uZSIsInJlcXVlc3RJZCI6ImYxYzVlMDgxLTgzZDEtNDU2MC1iODVkLTk2ZTBhM2VlN2E3MSIsImxpbmsiOiJodHRwczovL3d3dy5hZG9iZS5jb20vZ28vYWNjb3VudF9wcm9maWxlIiwibGFiZWwiOiIxMyIsImxvY2FsZSI6ImVuX1VTIn0.AJ-cCPBYKTKZXTE0xvuVE6A9VZtsEX5UhIm7YNXn-l86QJwulT6-D4yoFrhrPFiA5WGlHQ9EjJJ6U_kX7ESG9w\" target=\"_blank\" style=\"color:#505050; text-decoration:underline;\">public profile</a> is visible to others who can access this document, your usage insights will be visible to the sender. You can leave the document at any time by selecting &#8216;Remove me&#8217; from the in&#8209;context menu.</td>\r\n             </tr>\r\n            </table>\r\n            <!-- END pod1 -->\r\n			   \r\n			</td>\r\n		</tr>\r\n		<tr>\r\n           <td bgcolor=\"#FBFBFB\" style=\"background-color:#FBFBFB; padding-top:60px; padding-bottom:60px;\">\r\n			   \r\n            <!-- order -->\r\n            <table class=\"email-width\" align=\"center\" width=\"500\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width:500px;\">\r\n				<tr>\r\n					<td style=\"color:#8E8E8E; font-family:adobe-clean, Helvetica Neue, Helvetica, Verdana, Arial, sans-serif; font-size:14px; line-height:18px; padding-top:20px;\">SENT BY</td>\r\n				</tr>\r\n				<tr>\r\n					<td style=\"color:#505050; font-family:adobe-clean, Helvetica Neue, Helvetica, Verdana, Arial, sans-serif; font-size:18px; line-height:26px; padding-top:4px;\"><a href=\"mailto:jordan.wroblewski@me.com\" target=\"_blank\" style=\"color:#505050; text-decoration:none;\">jordan.wroblewski@me.com</a></td>\r\n				</tr>\r\n								<tr>\r\n					<td style=\"color:#8E8E8E; font-family:adobe-clean, Helvetica Neue, Helvetica, Verdana, Arial, sans-serif; font-size:14px; line-height:18px; padding-top:20px;\">MESSAGE FROM SENDER</td>\r\n				</tr>\r\n				<tr>\r\n					<td style=\"color:#505050; font-family:adobe-clean, Helvetica Neue, Helvetica, Verdana, Arial, sans-serif; font-size:18px; line-height:26px; padding-top:4px;\"><xmp style=\"font-family:adobe-clean, Helvetica Neue, Helvetica, Verdana, Arial, sans-serif; font-size:18px; line-height:26px; margin:0; overflow-x:auto; white-space:pre-wrap; white-space:-moz-pre-wrap; white-space:-pre-wrap; white-space:-o-pre-wrap; word-wrap:break-word;\">Please view this document. You can also add comments.</xmp></td>\r\n				</tr>\r\n								<tr>\r\n					<td style=\"color:#8E8E8E; font-family:adobe-clean, Helvetica Neue, Helvetica, Verdana, Arial, sans-serif; font-size:14px; line-height:18px; padding-top:20px;\">SHARED ON</td>\r\n				</tr>\r\n				<tr>\r\n					<td style=\"color:#505050; font-family:adobe-clean, Helvetica Neue, Helvetica, Verdana, Arial, sans-serif; font-size:18px; line-height:26px; padding-top:4px;\">November 13, 2025 10:06:32 PM UTC</td>\r\n				</tr>\r\n			</table>\r\n            <!-- END order -->\r\n            \r\n           <!-- END email content -->\r\n           </td>\r\n        </tr>\r\n		<tr>\r\n		<td bgcolor=\"#F5F5F5\" style=\"background-color:#F5F5F5;\">\r\n		  \r\n		  <!-- logo, links & legal-->\r\n          <table class=\"email-width\" align=\"center\" width=\"500\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width:500px;\">\r\n		   <tr>\r\n			<td style=\"color:#EB1000; font-family:adobe-clean, Helvetica Neue, Helvetica, Verdana, Arial, sans-serif; font-size:12px; line-height:18px; padding-top:40px;\"><img alt=\"Adobe\" src=\"https://landing.adobe.com/dam/global/images/adobe-logo.320x80.png\" width=\"80\" height=\"auto\" border=\"0\" hspace=\"0\" vspace=\"0\" style=\"color:#EB1000; font-family:adobe-clean, Helvetica Neue, Helvetica, Verdana, Arial, sans-serif; font-size:12px; line-height:18px; display:block; vertical-align:top;\"/></td>\r\n		   </tr>\r\n		   <tr>\r\n			  <td class=\"legal\" style=\"color:#6D6D6D; font-family:adobe-clean, Helvetica Neue, Helvetica, Verdana, Arial, sans-serif; font-size:16px; line-height:32px; padding-top:60px;\"><a href=\"https://postoffice.adobe.com/po-server/link/redirect?target=eyJhbGciOiJIUzUxMiJ9.eyJ0ZW1wbGF0ZSI6ImNjX2NvbGxhYl9kY3NoYXJpbmdfdmlld19lbWFpbCIsImVtYWlsQWRkcmVzcyI6InJpY2tAbWF2cml4Lm9uZSIsInJlcXVlc3RJZCI6ImYxYzVlMDgxLTgzZDEtNDU2MC1iODVkLTk2ZTBhM2VlN2E3MSIsImxpbmsiOiJodHRwczovL3d3dy5hZG9iZS5jb20vZ28vYWNjb3VudCIsImxhYmVsIjoiMTQiLCJsb2NhbGUiOiJlbl9VUyJ9.aNfvY290Jm4gV_-DKLsrtDXBEGpVr7wnVg61sJTVIkQzdbFSC9aTM86yPMLH3cUDrJMC7hN9vLSMMxym7ffthg\" target=\"_blank\" style=\"color:#6D6D6D; text-decoration:underline;\">Manage Account</a><br/>\r\n			  <a href=\"https://postoffice.adobe.com/po-server/link/redirect?target=eyJhbGciOiJIUzUxMiJ9.eyJ0ZW1wbGF0ZSI6ImNjX2NvbGxhYl9kY3NoYXJpbmdfdmlld19lbWFpbCIsImVtYWlsQWRkcmVzcyI6InJpY2tAbWF2cml4Lm9uZSIsInJlcXVlc3RJZCI6ImYxYzVlMDgxLTgzZDEtNDU2MC1iODVkLTk2ZTBhM2VlN2E3MSIsImxpbmsiOiJodHRwczovL3d3dy5hZG9iZS5jb20vZ28vc3VwcG9ydCIsImxhYmVsIjoiMTUiLCJsb2NhbGUiOiJlbl9VUyJ9.FixsSure2FUSwP7YB3HslO7gBNkTX0N4PpiA45vwAlEvyEIt0zQYxtJnF_W3yQp5q9DAjjEhk4yrVEMYFkLJSA\" target=\"_blank\" style=\"color:#6D6D6D; text-decoration:underline;\">Customer Support</a><br/>\r\n			  <a href=\"https://postoffice.adobe.com/po-server/link/redirect?target=eyJhbGciOiJIUzUxMiJ9.eyJ0ZW1wbGF0ZSI6ImNjX2NvbGxhYl9kY3NoYXJpbmdfdmlld19lbWFpbCIsImVtYWlsQWRkcmVzcyI6InJpY2tAbWF2cml4Lm9uZSIsInJlcXVlc3RJZCI6ImYxYzVlMDgxLTgzZDEtNDU2MC1iODVkLTk2ZTBhM2VlN2E3MSIsImxpbmsiOiJodHRwczovL3d3dy5hZG9iZS5jb20vZ28vZm9ydW1zIiwibGFiZWwiOiIxNiIsImxvY2FsZSI6ImVuX1VTIn0.KZ3BbG_qjncv9S9OKqQM-mf2DQPiONOV9HXigE29EPxpzh_X2Yz3ZZvefA158zk2sXNqxylzAEDZ9mjdwrnBJg\" target=\"_blank\" style=\"color:#6D6D6D; text-decoration:underline;\">Forums</a><br/>\r\n			  <a href=\"https://postoffice.adobe.com/po-server/link/redirect?target=eyJhbGciOiJIUzUxMiJ9.eyJ0ZW1wbGF0ZSI6ImNjX2NvbGxhYl9kY3NoYXJpbmdfdmlld19lbWFpbCIsImVtYWlsQWRkcmVzcyI6InJpY2tAbWF2cml4Lm9uZSIsInJlcXVlc3RJZCI6ImYxYzVlMDgxLTgzZDEtNDU2MC1iODVkLTk2ZTBhM2VlN2E3MSIsImxpbmsiOiJodHRwczovL3d3dy5hZG9iZS5jb20vZ28vdGVybXMiLCJsYWJlbCI6IjE3IiwibG9jYWxlIjoiZW5fVVMifQ.HzeWDWmNtGBklEIk8UjW8qdQeWSgwOyn4CKaF2JWll7KcLGclSvsjAUU0SAllH3f6SQUPT2u9PGdbQYLwXaHkg\" target=\"_blank\" style=\"color:#6D6D6D; text-decoration:underline;\">Terms of Use</a><br/>\r\n			  <a href=\"https://postoffice.adobe.com/po-server/link/redirect?target=eyJhbGciOiJIUzUxMiJ9.eyJ0ZW1wbGF0ZSI6ImNjX2NvbGxhYl9kY3NoYXJpbmdfdmlld19lbWFpbCIsImVtYWlsQWRkcmVzcyI6InJpY2tAbWF2cml4Lm9uZSIsInJlcXVlc3RJZCI6ImYxYzVlMDgxLTgzZDEtNDU2MC1iODVkLTk2ZTBhM2VlN2E3MSIsImxpbmsiOiJodHRwczovL2Fjcm9iYXQuYWRvYmUuY29tL2xpbmsvcmVwb3J0YWJ1c2UvdHJhY2s_dXJpPXVybjphYWlkOnNjOlVTOjNmZGJlZWFjLTJiZTUtNDkzYy1iZTE3LWEyNGEzYzVhZDcwNiIsImxhYmVsIjoiMTgiLCJsb2NhbGUiOiJlbl9VUyJ9.7rNEtc1CIMcIsbg_ubofkx0lPv9A8p3sFyr6UZ69nVwoOIwLVMm2_2QzpAGbDUwGrplEo2Xz-4D4zmbtigHPCw\" target=\"_blank\" style=\"color:#6D6D6D; text-decoration:underline;\">Report Abuse</a></td>\r\n			</tr>\r\n		   <tr>\r\n			  <td class=\"legal\" style=\"color:#6D6D6D; font-family:adobe-clean, Helvetica Neue, Helvetica, Verdana, Arial, sans-serif; font-size:11px; line-height:18px; padding-top:50px; padding-bottom:100px;\">Adobe, Adobe (Stylized), Creative Cloud, the Creative Cloud logo, Document Cloud, and the Adobe PDF logo are either registered trademarks or trademarks of Adobe in the United States and/or other countries.<br/><br/>\r\n			  This is not a comprehensive list of all Adobe trademarks. For a full list, refer to the <a href=\"https://postoffice.adobe.com/po-server/link/redirect?target=eyJhbGciOiJIUzUxMiJ9.eyJ0ZW1wbGF0ZSI6ImNjX2NvbGxhYl9kY3NoYXJpbmdfdmlld19lbWFpbCIsImVtYWlsQWRkcmVzcyI6InJpY2tAbWF2cml4Lm9uZSIsInJlcXVlc3RJZCI6ImYxYzVlMDgxLTgzZDEtNDU2MC1iODVkLTk2ZTBhM2VlN2E3MSIsImxpbmsiOiJodHRwczovL3d3dy5hZG9iZS5jb20vZ28vdHJhZGVtYXJrcyIsImxhYmVsIjoiMTkiLCJsb2NhbGUiOiJlbl9VUyJ9.6wfL_PKvXqg_AYSBlUzOr1gewzSRp7iD3WLAGTgdtVJ26ho6S6reJ8jC0zuha8H-FCzajc5Qqht3ag5rgwIhlA\" target=\"_blank\" style=\"color:#6D6D6D;\">Adobe Trademark Guidelines</a>. All other trademarks are the property of their respective owners.<br/><br/>\r\n			  Registered Office: Adobe Systems Software Ireland Limited, 4-6 Riverwalk, Citywest Business Park, Dublin 24, Ireland. Registered number: 344992<br/><br/>\r\n			  <a href=\"https://postoffice.adobe.com/po-server/link/redirect?target=eyJhbGciOiJIUzUxMiJ9.eyJ0ZW1wbGF0ZSI6ImNjX2NvbGxhYl9kY3NoYXJpbmdfdmlld19lbWFpbCIsImVtYWlsQWRkcmVzcyI6InJpY2tAbWF2cml4Lm9uZSIsInJlcXVlc3RJZCI6ImYxYzVlMDgxLTgzZDEtNDU2MC1iODVkLTk2ZTBhM2VlN2E3MSIsImxpbmsiOiJodHRwczovL3d3dy5hZG9iZS5jb20vZ28vY29tbXMiLCJsYWJlbCI6IjIwIiwibG9jYWxlIjoiZW5fVVMifQ.nRAItapzMQ_T3KfeMZo8MFeYW1_XBtfSb1ARyYA7Lkz17SeYMCFbROWRurpcyuMQsd1gOz2FZMOXCulT5erLkw\" target=\"_blank\" style=\"color:#6D6D6D;\">Stop notifications for reviews</a>.\r\n			  			  </td>\r\n			</tr>\r\n		  </table>\r\n		  <!-- END logo, links & legal-->\r\n			\r\n		</td>\r\n	  </tr>\r\n    </table>\r\n    </td>\r\n  </tr>\r\n</table>\r\n<img src=\"https://postoffice.adobe.com/po-server/link/open?source=eyJhbGciOiJIUzUxMiJ9.eyJ0ZW1wbGF0ZSI6ImNjX2NvbGxhYl9kY3NoYXJpbmdfdmlld19lbWFpbCIsImVtYWlsQWRkcmVzcyI6InJpY2tAbWF2cml4Lm9uZSIsInJlcXVlc3RJZCI6ImYxYzVlMDgxLTgzZDEtNDU2MC1iODVkLTk2ZTBhM2VlN2E3MSIsImxvY2FsZSI6ImVuX1VTIn0.oiSkAdmXdNSjc0-GIHz41_jUioeRCYyz4tqysgiYCV_QmZ2W57d77CkGsxy8KK8Xv0hhL3LxASdN0heL3MSTuw\" height=\"1\" width=\"1\" /><!-- cc_collab_dcsharing_view_email -->\r\n  </body>\r\n</html>','------------------------------------------------------------------\r\n------------------------------------------------------------------\r\n\r\njordan.wroblewski@me.com has shared APPROVED-BLD-24-0510827-REV1 (1)\r\nYou can also comment on it.\r\nOpen:\r\nhttps://acrobat.adobe.com/id/urn:aaid:sc:US:3fdbeeac-2be5-493c-be17-a24a3c5ad706\r\n\r\nYour public profile is visible to others who can access this document, your usage insights will be visible to the sender. You can leave the document at any time by selecting \'Remove me\' from the in-context menu.\r\n\r\nhttps://www.adobe.com/go/account_profile\r\n\r\n------------------------------------------------------------------\r\n\r\nSENT BY\r\njordan.wroblewski@me.com\r\nMESSAGE FROM SENDER\r\nPlease view this document. You can also add comments.\r\nSHARED ON\r\nNovember 13, 2025 10:06:32 PM UTC\r\n\r\n------------------------------------------------------------------\r\n\r\nManage Account:\r\nhttps://www.adobe.com/go/account\r\n\r\nCustomer Support:\r\nhttps://www.adobe.com/go/support\r\n\r\nForums:\r\nhttps://www.adobe.com/go/forums\r\n\r\nTerms of Use:\r\nhttps://www.adobe.com/go/terms\r\n\r\nReport Abuse:\r\nhttps://acrobat.adobe.com/link/reportabuse/track?uri=urn:aaid:sc:US:3fdbeeac-2be5-493c-be17-a24a3c5ad706\r\n\r\n******************************************************************\r\n\r\nAdobe, Adobe (Stylized), Creative Cloud, the Creative Cloud logo, Document Cloud, and the Adobe PDF logo are either registered trademarks or trademarks of Adobe in the United States and/or other countries.\r\n\r\nThis is not a comprehensive list of all Adobe trademarks. For a full list, refer to the Adobe Trademark Guidelines. All other trademarks are the property of their respective owners.\r\n\r\nAdobe Trademark Guidelines:\r\nhttps://www.adobe.com/go/trademarks\r\n\r\nRegistered Office: Adobe Systems Software Ireland Limited, 4-6 Riverwalk, Citywest Business Park, Dublin 24, Ireland. Registered number: 344992\r\nStop notifications for reviews:\r\nhttps://www.adobe.com/go/comms',0,0,0,0,0,0,'2025-11-13 22:06:32','2025-12-04 14:05:21','2025-12-04 14:05:21','2025-12-04 14:05:21',NULL,NULL,NULL),
(98,4,' <SA1PR18MB482461D0EB837DE19CD021D7A1CEA@SA1PR18MB4824.namprd18.prod.outlook.com>',NULL,NULL,'***SPAM***  Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration','jtrevey@forgenano.com','James Trevey','<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<style type=\"text/css\" style=\"display:none;\"> P {margin-top:0;margin-bottom:0;} </style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nSent! Thank you, Jordan.&nbsp;</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nI\'m looking to understand your standard pack designs for a 6S2P, 8S2P, 12S2p for cylindrical 21700s as well as a 3S1P and 2S1p for pouch that would be 7mmx63mmx140mm. And any info on the BMS and pack design, or any existing drones using any of these packs from\r\n you.&nbsp;</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nI\'d love to also get ballpark costs/facility footprint/electrical needs/labor for you to set up a line for 6S2P to make 1,440,000 packs per year and the pouch to make 720,000 per year. It is not optional to have you make packs in Florida unfortunately, but\r\n you can certainly supply the parts to them from there if that helps.&nbsp;</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nI look forward to syncing up. Thanks!</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\n<br>\r\n</div>\r\n<div style=\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);\" class=\"elementToProof\">\r\nJames</div>\r\n<div id=\"appendonsend\"></div>\r\n<hr style=\"display:inline-block;width:98%\" tabindex=\"-1\">\r\n<div id=\"divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" style=\"font-size:11pt\" color=\"#000000\"><b>From:</b> Jordan Wroblewski &lt;jordan@lithiumbatterycompany.com&gt;<br>\r\n<b>Sent:</b> Monday, November 10, 2025 3:43 PM<br>\r\n<b>To:</b> James Trevey &lt;jtrevey@forgenano.com&gt;<br>\r\n<b>Cc:</b> Will McKenna &lt;WMcKenna@forgenano.com&gt;; Daniel &lt;dansheridanmusic@gmail.com&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;nathan@lithiumbatterycompany.com&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div dir=\"ltr\">\r\n<div>Hi James,</div>\r\n<div><br>\r\n</div>\r\n<div>Yes, I can do 10:30am EST.&nbsp; Go ahead and send me a meeting invite and if others can make it they can join as well.&nbsp;</div>\r\n<div><br>\r\n</div>\r\n<div>Looking forward to catching up.</div>\r\n<div><br>\r\n</div>\r\n<div>Best,</div>\r\n<div>\r\n<div dir=\"ltr\" class=\"x_gmail_signature\" data-smartmail=\"gmail_signature\">\r\n<div dir=\"ltr\">\r\n<p style=\"margin:0in\"><span style=\"color:black; font-family:Arial,sans-serif\"><br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"color:black; font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;<br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336<br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,mGkPUj_d0_J2K1BXwgIzY9wMKTJ1_kIOO3mXzETbTMfuP-qgmt69ms2pFCmy3iNE151jUZGvcyAxTQ0lC_uyz9itz0X3lYQVSCJzZo6C5KMJ&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n<br>\r\n</div>\r\n<br>\r\n<div class=\"x_gmail_quote x_gmail_quote_container\">\r\n<div dir=\"ltr\" class=\"x_gmail_attr\">On Mon, Nov 10, 2025 at 5:37 PM James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\">jtrevey@forgenano.com</a>&gt; wrote:<br>\r\n</div>\r\n<blockquote class=\"x_gmail_quote\" style=\"margin:0px 0px 0px 0.8ex; border-left:1px solid rgb(204,204,204); padding-left:1ex\">\r\n<div class=\"x_msg7691130268813451465\">\r\n<div dir=\"ltr\">\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nHey Jordan,</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nSorry for going dark. The meeting went great. I would love to sync up with you to figure out next details. Can you chat at 8:30am MT tomorrow (11th)?</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nJames</div>\r\n<div id=\"x_m_7691130268813451465appendonsend\"></div>\r\n<hr style=\"display:inline-block; width:98%\">\r\n<div id=\"x_m_7691130268813451465divRplyFwdMsg\" dir=\"ltr\"><font face=\"Calibri, sans-serif\" color=\"#000000\" style=\"font-size:11pt\"><b>From:</b> Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b> Thursday, November 6, 2025 12:05 PM<br>\r\n<b>To:</b> James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b> Will McKenna &lt;<a href=\"mailto:WMcKenna@forgenano.com\" target=\"_blank\">WMcKenna@forgenano.com</a>&gt;; Daniel &lt;<a href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron\r\n &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</font>\r\n<div>&nbsp;</div>\r\n</div>\r\n<div>\r\n<div dir=\"ltr\">\r\n<div>Hi James,</div>\r\n<div><br>\r\n</div>\r\n<div>Hope you are well.&nbsp;&nbsp;</div>\r\n<div><br>\r\n</div>\r\n<div>How did your meeting go?&nbsp;</div>\r\n<div>\r\n<div dir=\"ltr\">\r\n<div dir=\"ltr\">\r\n<p style=\"margin:0in\"><span style=\"color:black; font-family:Arial,sans-serif\"><br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"color:black; font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;<br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336<br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,0yjyucKyeUfIxS-5HFSvjrsDEo1K2sQDkz8oFv1cIzwEU8O73aVHhykbwL6rlE26TNk2-ufHYgRZUnkYoStD2sgHGVdzqKGuSup50N5h1F8,&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n<br>\r\n</div>\r\n<br>\r\n<div>\r\n<div dir=\"ltr\">On Mon, Oct 27, 2025 at 2:33 PM Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt; wrote:<br>\r\n</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex; border-left:1px solid rgb(204,204,204); padding-left:1ex\">\r\n<div dir=\"ltr\">\r\n<div>Hi James,</div>\r\n<div><br>\r\n</div>\r\n<div>We are logged on to the teams meeting.&nbsp;</div>\r\n<div>\r\n<div dir=\"ltr\">\r\n<div dir=\"ltr\">\r\n<p style=\"margin:0in\"><span style=\"color:black; font-family:Arial,sans-serif\"><br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"color:black; font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;<br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336<br>\r\n</span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,oTvbzZaLRCIhe4MhhhOwP3SQWQDt-6Fwcd6dQZR2vvpjA3wEcLTacBUH6dS2M_Ld9yfC3kJRxIbAniyQdmaJp7TgDFdc7r7sWlrEhV0RGfTYRb6Sfrc,&amp;typo=1\" target=\"_blank\">Lithium\r\n Battery Company</a></span></p>\r\n</div>\r\n</div>\r\n</div>\r\n<br>\r\n</div>\r\n<br>\r\n<div>\r\n<div dir=\"ltr\">On Thu, Oct 23, 2025 at 1:05 PM James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt; wrote:<br>\r\n</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex; border-left:1px solid rgb(204,204,204); padding-left:1ex\">\r\n<div>\r\n<div dir=\"ltr\">\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nJordan,</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nThanks for the call today. Attached are a bunch of documents:</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<ul style=\"margin-top:0px; margin-bottom:0px; list-style-type:disc\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">spec sheets for all (5) FN Products</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">spec sheet for the Samsung 53G</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">spec sheet for the Moli P50B</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">Presentation from our call with ballpark cell availability and pricing</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">Term sheet for capturing our relationship interests</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">Skyfoundary proposal</div>\r\n</li></ul>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434appendonsend\">\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nI have your volumes from the ProgramProduct excel sheet that I\'ve plugged into the term sheet for now as a first draft. On your end I captured the following action items:</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<ul style=\"margin-top:0px; margin-bottom:0px; list-style-type:disc\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">Review all documents in this email and confirm volumes and provide first pass review on the term sheet</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<div role=\"presentation\">Review the Skyfoundary proposal and put together a first-pass budget/plan to support Forge as a partner</div>\r\n</li></ul>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nI am out tomorrow for personal matters but look forward to our discussion on Monday.&nbsp;</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nJames</div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<hr style=\"display:inline-block; width:98%\">\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Wednesday, October 22, 2025 9:45 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Will McKenna &lt;<a href=\"mailto:WMcKenna@forgenano.com\" target=\"_blank\">WMcKenna@forgenano.com</a>&gt;; Daniel &lt;<a href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron\r\n &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration </div>\r\n<div style=\"font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr\">You bet,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Speak with you tomorrow.&nbsp;</div>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; color:black\"><br>\r\n</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAd0bf4139-d110-2b14-2e7d-f838dea323c6\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA491b8ae0-354c-d404-4a80-c7e9f97e7013\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,RCp_srnsn8TsHi-Y90KYoNQPNLUs9Z2k6AQ2a8mY4AU8XQa0dJ0qeugNm0mDw--U4uH_iIRb9IN4Nb3dl2ctTPPmCoYcMeCAkzmhYm7mlpPXnMYFHVt8&amp;typo=1\" target=\"_blank\" style=\"margin-top:0px; margin-bottom:0px\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Wed, Oct 22, 2025 at 11:34 AM James Trevey &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAa31267f6-c393-7fea-dc8a-2e771875250b\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;\r\n wrote:</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex; padding-left:1ex; border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nperfect. I look forward to speaking with you then!</div>\r\n<div id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434x_m_5154054507612261457appendonsend\">\r\n</div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434x_m_5154054507612261457divRplyFwdMsg\">\r\n<div style=\"direction:ltr; font-family:Calibri,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA95e85b38-b96c-174d-e756-81f1bec2a1ff\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Wednesday, October 22, 2025 9:30 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAd1de4bb3-03ed-f1d6-f7e4-1848df71c103\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Will McKenna &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA8bded2a7-9490-66c0-1166-46535ffa61f0\" href=\"mailto:WMcKenna@forgenano.com\" target=\"_blank\">WMcKenna@forgenano.com</a>&gt;; Daniel &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA5cab2c66-aa13-c490-cc32-3f94f13d8838\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;;\r\n brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA42851c95-8020-51f8-373b-55e4c94f515b\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I can do tomorrow at 9am MST.&nbsp;&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Let me know if that still works for you and I can send you over an invite.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Best,</div>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; color:black\"><br>\r\n</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA79c48f2b-7c75-15f7-0c38-0a8a933b49ef\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAc61fd127-5390-c059-5dcd-e6ec1ef6d2b9\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,irabj1pPRcbHt7fZTnVGlp-D5OWgJo5J-DJVmYysbSINfzIevG80IYq97Jraq-OV6w6IJC3gu0pHz4oFYfW4xcnb3n-PwXqRHBE_AugLqCnyxkrk6RI,&amp;typo=1\" target=\"_blank\" style=\"margin-top:0px; margin-bottom:0px\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Tue, Oct 21, 2025 at 6:09 PM James Trevey &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA873dbf9f-ca2b-ea71-cec5-8029b0003dfb\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;\r\n wrote:</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex; padding-left:1ex; border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nHey Jordan,&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nI am back from 3 weeks of travel and ready to get sorted here. Tomorrow is sunk, but on Thursday I can do 9am MT or 12:30pm MT. Do either work for you? If not, I have the following next week:</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n27th: 11:30-1pm MT</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n28th: 8am MT, 11am MT, after 1pm MT</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n29th: after 1pm MT</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n30th: after 10am MT</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nLet me know what works.</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nJames</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div style=\"direction:ltr; font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA81571a2c-6c21-2436-85b5-8714e8b66c05\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Monday, October 20, 2025 5:12 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA1e87c462-b83e-2b9c-f923-2ac81a62cf8d\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Daniel &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA31dc8928-3d8b-0f48-12bd-d8b3c385d531\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;;\r\n Nathan Staron &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA542618ae-28b3-7246-75f5-03485d9c3649\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr; font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I am out of town as well.&nbsp; How does your Wednesday look?&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Looking forward to catching up.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\"><u>jordan<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA2ec3caf6-8cfd-8a8d-d7e5-54d935ffa458\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"color:rgb(255,255,255); background-color:rgba(255,255,255,0)\"><a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAe825f741-6e69-fe40-fbd6-457f5c25b3a9\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com%2f&amp;c=E,1,kcAZ-rF3D0Z_d8KzW-apTAtlzHQofd8D2ZjbELiCHZPsqOhCV8Xd_fUJ6ZWDkt-2fgJod-EPR6FfR9gTPQj_LmrIjU3cEOjFP4Vi0A3Pa8jqtC5XpIZ1aRU,&amp;typo=1\" target=\"_blank\" style=\"margin-top:0px; margin-bottom:0px; background-color:rgba(255,255,255,0)\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<blockquote>\r\n<div style=\"direction:ltr\">On Oct 16, 2025, at 9:20 AM, James Trevey &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA1939e34b-5b2c-9003-ede8-c8f559743e5e\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;\r\n wrote:<br>\r\n<br>\r\n</div>\r\n</blockquote>\r\n<blockquote>\r\n<div style=\"direction:ltr\">﻿</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nHey Jordan,</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nApologies for the slow/no replies recently. Travel has been brutal.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nWe\'ve got a lot of the information ready for you. Can we schedule a call to do a walk through on Monday the 20th at 9am or 10am ET?</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nJames</div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434x_m_5154054507612261457x_m_3027303751782346756x_divRplyFwdMsg\">\r\n<div style=\"direction:ltr; font-family:Calibri,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA8c58e32e-c07b-2c9d-031e-39378c6b2453\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Thursday, October 16, 2025 9:16 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA370bc921-b453-4ca1-a90c-a3760d045262\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Daniel &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA38a65a75-0a32-7ad1-fb6e-fec3a8ccf702\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;;\r\n Nathan Staron &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAef467482-444c-bd55-030d-8124fe0eb8a3\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Would be great to get some pricing and spec sheets.&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Let me know when we can connect.&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Best,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"background-color:rgba(255,255,255,0)\"><u>jordan<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAbde88397-5f7f-6e20-eecb-9c9d616ae70b\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"color:rgb(255,255,255); background-color:rgba(255,255,255,0)\"><a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA8995a143-93ff-32bf-0768-f2305f87035a\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com%2f&amp;c=E,1,kruzcWrtQAWBE_Wzkk5ZCPi8egnieSOSjhsFO2fIO_mt3sy1dInRgNFjLY-Xwbk4dmY7rgbxINSGlle76-Yg-vEcypX9dPm0sX9KSwuuDZUbmg,,&amp;typo=1\" target=\"_blank\" style=\"margin-top:0px; margin-bottom:0px; background-color:rgba(255,255,255,0)\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<blockquote>\r\n<div style=\"direction:ltr\">On Sep 30, 2025, at 4:31 PM, Jordan Wroblewski &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAfc903b23-ac77-7b70-923b-6abe766ec537\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;\r\n wrote:<br>\r\n<br>\r\n</div>\r\n</blockquote>\r\n<blockquote>\r\n<div style=\"direction:ltr\">﻿</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I have attached a prospective cell demand schedule (subject to change) but two of your battery types should meet the requirements for some of our future projects.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Looking forward to our discussion and seeing your deck of prospective projects.&nbsp;&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Best,&nbsp;</div>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; color:black\"><br>\r\n</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA69160ff1-d5bd-007c-638f-52d5ccdd5f0d\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr; margin:0in\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA6a7ea24c-1ec8-7ec2-7302-6e195d239024\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,KG7OlMyZO9jbLU5vTJ3I8lMhBaHdNf06-ktzHMDOUSoCImrfUczbXUj1d1VcQUh_ApKsyrkLO9FO7PzcinsYewUWoskpuT9EKlrhqSI22A,,&amp;typo=1\" target=\"_blank\" style=\"margin-top:0px; margin-bottom:0px\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Fri, Sep 26, 2025 at 4:59 PM James Trevey &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAa8fbc85b-a982-60aa-1b0f-421cd7a87c0d\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;\r\n wrote:</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex; padding-left:1ex; border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nJordan,</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nI won\'t be able to send the deck today. Still waiting on a few spec sheets approval and validation of production capability for a few products.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nI\'ll send to you as soon as I can next week.</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\nJames</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div style=\"direction:ltr; font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<b>From:</b>&nbsp;James Trevey &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAd7a5c27b-da55-2c7f-698b-f818d5e5341c\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Wednesday, September 24, 2025 10:49 AM<br>\r\n<b>To:</b>&nbsp;Jordan Wroblewski &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAa691f501-9154-2520-985f-29cdd2fb5c90\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Daniel &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAbf77b698-937c-aeca-a707-b2494628658b\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;;\r\n Nathan Staron &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA104e212a-34bd-05fd-2c13-aef8bc1517fa\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr; font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nJordan,</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nUnfortunately, there is not a large prismatic on our list. I could potentially license a design to make one, but it would take a lot of coordinating.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nIt would be super helpful if you are able to compile a deck for us which has your prospective cell demand schedule now and for the next few years, as well as what your qualification schedule looks like (maybe program based?). Maybe by cell type?</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nI also have a verbal matter we can discuss soon. Once I\'ve got the deck ready I\'ll find time for a short call with you.</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nTalk soon.</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nJames</div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434x_m_5154054507612261457x_m_3027303751782346756x_x_m_7859046138643783182x_divRplyFwdMsg\">\r\n<div style=\"direction:ltr; font-family:Calibri,sans-serif; font-size:11pt; color:black\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA8839c907-fb82-436d-88c1-e4063c0ac22f\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Wednesday, September 24, 2025 10:07 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA5bbe05c5-50fd-d977-82a6-0bb9a3e8d948\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Daniel &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAfb29af50-570f-4e82-d05d-36379913355d\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;;\r\n Nathan Staron &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAf2c74f2a-7269-dfef-9873-29a46c5c4b9e\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Thank you for the follow up.&nbsp; You were on my list to contact today!&nbsp;&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Would that additional product list include a prismatic cell? I have a client who needs 150MWh a year and they want a domestic 314Ah cell...</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I will let you know if I will be able to make it up to Detroit for The Battery Show.&nbsp;&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Looking forward to seeing the deck.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">All the best,&nbsp;</div>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; color:black\"><br>\r\n</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA61a86075-871c-a4f2-6f33-e7c4eb316069\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA214782f4-48ae-8022-ef74-7608a601abba\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,gaCrzh0c6vf3xrQnIV3wewtXq9rWWeR48E_n_c-GXYJRq4KPID4S6W16xl_tTj6ds_KN0rSCRW6viw-N3O2-Uh_xCrEg2Jjf_WqGdCNA3gQ,&amp;typo=1\" target=\"_blank\" style=\"margin-top:0px; margin-bottom:0px\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Wed, Sep 24, 2025 at 11:59 AM James Trevey &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA33cce604-09df-9972-aa99-5a2cf482f6d9\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;\r\n wrote:</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex; padding-left:1ex; border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nHey Jordan,</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nThank you for the quick follow up.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nI am working on a compiled deck for you to address the below requests and aiming for end of this week. After speaking with my team, we\'ve decided we\'d like to provide information on additional products to you which are typically not on the menu but I have details\r\n to sort first.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nRegarding shows, happy to discuss when ready. We\'ll be at The Battery Show in 2 weeks, which I think you should consider attending and I\'d be happy to connect while there.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nJames</div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434x_m_5154054507612261457x_m_3027303751782346756x_x_m_7859046138643783182x_x_m_-6814561645313625911divRplyFwdMsg\">\r\n<div style=\"direction:ltr; font-family:Calibri,sans-serif; font-size:11pt; color:black\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAd96cc1aa-a813-6163-4f4d-3a604e112ee7\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Thursday, September 18, 2025 11:03 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA6c494d49-99e5-cffe-a9df-8e6c460a0e63\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;<br>\r\n<b>Cc:</b>&nbsp;Daniel &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA5652f27b-5ef0-af9b-1a3e-1cecbce3fad8\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;; brian@mavrix.one &lt;brian@mavrix.one&gt;;\r\n Nathan Staron &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAd0fa53a7-eca3-9387-f15c-28b074c1a084\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;; Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Re: Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr\">&nbsp;</div>\r\n</div>\r\n<div style=\"direction:ltr\">Hi James,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Thank you for continuing discussions regarding our strategic partnership. As we prepare for module and pack production to support your battery cell needs, we would appreciate your assistance in providing several key pieces of information\r\n to optimize our collaboration and planning:<br>\r\n<br>\r\nPlease share detailed volume forecasts for each cell type (e.g., 18650, 21700) you expect to require over the next 1–5 years, broken out by project or customer segment where feasible.<br>\r\n<br>\r\nIndicate your anticipated ramp-up schedule for sample, engineering, and production volumes to help us align our development and manufacturing timelines.<br>\r\n<br>\r\nIdentify any major offtake agreements, anchor customers, or significant opportunities in your commercial pipeline that could impact forecasted demand for modules or packs.<br>\r\n<br>\r\nOutline target applications (energy storage, drones, EVs, DOD, etc.) and specify any technical or certification requirements for modules/packs related to these segments.<br>\r\n<br>\r\nClarify your minimum order quantities and expected pricing for each product line.<br>\r\n<br>\r\nPlease also provide information about any flexibility in volume commitments that may be necessary in case project requirements or customer needs adjust mid-term.<br>\r\n<br>\r\nImportantly, we would like to request information on any current or forthcoming cells with a minimum continuous discharge rating of 15C or higher. For these cells, please provide specifications, target applications, anticipated volume requirements, forecasted\r\n commercial timelines, and expected pricing.<br>\r\n<br>\r\nAdditionally, for reference, these are LBC’s most popular cells we\'ve made module and packs for:<br>\r\n<br>\r\n18650:<br>\r\n<br>\r\nNMC: TNL-ITR18650-2600P<br>\r\n<br>\r\nLFP: SW18650-26HPA<br>\r\n<br>\r\nLFP: IFR18650-2000mAh<br>\r\n<br>\r\n21700:<br>\r\n<br>\r\nNMC: INR21700-50S<br>\r\n<br>\r\nNMC: INR21700-4000<br>\r\n<br>\r\nProviding this information will enable LBC to ensure maximum alignment, timely scale-up, and the most competitive solutions to support your growth across all high-value sectors.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">In terms of the shows you mentioned, we are getting our schedules aligned so we can attend.&nbsp; What\'s the &quot;secret meeting&quot; in Nov?&nbsp;<br>\r\n<br>\r\nWe look forward to your prompt response so we can efficiently move to the next stages.</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Talk soon,&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA4e4576b1-1931-f3c5-bf04-1d623e748413\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA0cfcaabe-77cb-de77-b671-98d78df6d665\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,0_SeAAZnnZEc2OSNupT_Xh6D79NAulrIDpppHwwST7orwHiNACz5Ha43J4iTSR4fY66YPdrypG1jOiFOkixZJA9ufjQXPSo_ni1B69wxCfqud9hQ81OawWNXkg,,&amp;typo=1\" target=\"_blank\" style=\"margin-top:0px; margin-bottom:0px\">Lithium\r\n Battery Company</a></span></p>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">On Wed, Sep 17, 2025 at 7:00 PM James Trevey &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA2efeafd1-df26-a882-3cd2-915ab031edb6\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;\r\n wrote:</div>\r\n<blockquote style=\"margin:0px 0px 0px 0.8ex; padding-left:1ex; border-left:1px solid rgb(204,204,204)\">\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nJordan,</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nThanks for moving quickly here. I got bogged down today but better late than never.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nAttached you\'ll find data sheets for all (5) of our products, including both 18650 and 21700. Below is a quick summary:</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<ul style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-position:initial; list-style-type:disc\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">SC2-18-4 - ~3Ah 18650 designed for Army low temperature operation (they won\'t tell us the application)</div>\r\n</li><ul style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-position:initial; list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell has a 100% US supply chain already</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell can be made in the <u>millions</u>&nbsp;next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">SC3-18-2 - ~3.5Ah 18650 designed for BB2590 packs (reverse engineered from MIL-PRF-32383)</div>\r\n</li><ul style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-position:initial; list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell can be made in the <u>millions\r\n</u>next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">SC2-21-2 - ~5.7Ah 21700 designed for heavy trucking and niche EVs.</div>\r\n</li><ul style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-position:initial; list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell can be made in the <u>thousands</u>&nbsp;next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">SC2-21-3 - ~5.5Ah 21700 designed for drones (it has an Aluminum case and tabless design, super lightweight)</div>\r\n</li><ul style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-position:initial; list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell can be made in the <u>millions</u>&nbsp;next year by our partner in the EU. As we show adoption, we\'ll expand our factory to build these</div>\r\n</li></ul>\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">SC4-21-1 - ~5.5Ah 21700 designed for Li-6T packs (reverse engineered from MIL-PRF-32565)</div>\r\n</li><ul style=\"direction:ltr; margin-top:0px; margin-bottom:0px; list-style-position:initial; list-style-type:circle\">\r\n<li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell is 50% US and 50% non-FEOC currently</div>\r\n</li><li style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<div role=\"presentation\" style=\"direction:ltr\">This cell can be made in the <u>thousands</u>&nbsp;next year by our partner in the EU, until our factory is online in 2027</div>\r\n</li></ul>\r\n</ul>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nWe can also get 80mmx300mm pouch cells made by our EU partner, if needed.</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nRegarding the term sheet, please see the attached template that I put together but needs input from you all.&nbsp;</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nMaybe we line up another discussion for next week to continue our alignment path? Also, are any of you planning to attend The Battery Show in Detroit? Or AUSA in DC? Or AUKUS in DC? Or Upcell in Reno? Or Gigafactores in Nashville? in October? Or the secret\r\n meeting on November 5th in DC?</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nI will check with my people on 301 asap.</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nI look forward to our next communication.</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif; font-size:11pt; color:black\">\r\nJames</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr; font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:black\">\r\n<br>\r\n</div>\r\n<hr style=\"direction:ltr; display:inline-block; width:98%\">\r\n<div style=\"direction:ltr; font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:black\">\r\n<b>From:</b>&nbsp;Jordan Wroblewski &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA3b059ab0-9fb4-963d-d6b8-369eb4ca0cc2\" href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt;<br>\r\n<b>Sent:</b>&nbsp;Wednesday, September 17, 2025 7:56 AM<br>\r\n<b>To:</b>&nbsp;James Trevey &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA3d6fb971-5d4e-9b71-f39f-0860c844fa95\" href=\"mailto:jtrevey@forgenano.com\" target=\"_blank\">jtrevey@forgenano.com</a>&gt;; Daniel &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA3111b555-f6ea-0b7e-f4da-ab68556c65e8\" href=\"mailto:dansheridanmusic@gmail.com\" target=\"_blank\">dansheridanmusic@gmail.com</a>&gt;;\r\n brian@mavrix.one &lt;brian@mavrix.one&gt;; Nathan Staron &lt;<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA7b82e4d2-9ac4-eea2-625d-4079b0c83093\" href=\"mailto:nathan@lithiumbatterycompany.com\" target=\"_blank\">nathan@lithiumbatterycompany.com</a>&gt;;\r\n Rick Mislan &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b>&nbsp;Next Steps - Forge Nano &amp; Lithium Battery Co Collaboration</div>\r\n<div style=\"direction:ltr; font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:black\">\r\n<br>\r\n</div>\r\n<div style=\"direction:ltr\">Gentlemen,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">It was a pleasure connecting with you yesterday. I am very excited about the potential for a partnership between our companies. To maintain the momentum from our discussion, I\'ve outlined the key action items below:</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<ul style=\"direction:ltr\">\r\n<li style=\"direction:ltr\">James to&nbsp;send the cell specification sheets as soon as possible.</li><li style=\"direction:ltr\">LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for benchmarking purposes.</li><li style=\"direction:ltr\">James to&nbsp;send their term sheet template for throughput contracts.</li><li style=\"direction:ltr\">We should discuss 301 exclusion support for manufacturing equipment.</li></ul>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">I look forward to our next conversation.&nbsp;</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<div style=\"direction:ltr\">Best,</div>\r\n<div style=\"direction:ltr\"><br>\r\n</div>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; color:black\">Jordan G. Wroblewski</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:black\">Partner | President&nbsp;</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Lithium Battery Company</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:10pt; color:black\">Direct: (917) 266-5336</span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:blue\"><u>jordan<a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWAdbe91ca4-1ba3-791b-0976-85d477e08c5f\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\" style=\"color:blue; margin:0px\">@lithiumbatterycompany.com</a></u></span></p>\r\n<p style=\"direction:ltr; margin:0px\"><span style=\"font-family:Arial,sans-serif; font-size:9pt; color:rgb(5,99,193)\"><a id=\"x_m_7691130268813451465x_m_-4115497688900238988m_-5188347059152730434OWA739c124e-e74e-a939-4030-d125840b8a52\" href=\"https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&amp;c=E,1,5XwS0ui8U7BdCgdyQ4y7cci0NGIV2otwkvjchtWdd09H7QM9o-cbghedfCZwON-S7KcCe_cNW_uQSIH3HItLcXUHu5tdjCA_wXeQS6cp&amp;typo=1\" target=\"_blank\" style=\"margin-top:0px; margin-bottom:0px\">Lithium\r\n Battery Company</a></span></p>\r\n</blockquote>\r\n</blockquote>\r\n</blockquote>\r\n<div style=\"direction:ltr\">&lt;ProgramProduct-CellType-2025Demand-2026Demand-2027Demand-2028Demand-QualificationTiming-Notes (1).csv&gt;</div>\r\n</blockquote>\r\n</blockquote>\r\n</blockquote>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','Sent! Thank you, Jordan.\r\n\r\nI\'m looking to understand your standard pack designs for a 6S2P, 8S2P, 12S2p for cylindrical 21700s as well as a 3S1P and 2S1p for pouch that would be 7mmx63mmx140mm. And any info on the BMS and pack design, or any existing drones using any of these packs from you.\r\n\r\nI\'d love to also get ballpark costs/facility footprint/electrical needs/labor for you to set up a line for 6S2P to make 1,440,000 packs per year and the pouch to make 720,000 per year. It is not optional to have you make packs in Florida unfortunately, but you can certainly supply the parts to them from there if that helps.\r\n\r\nI look forward to syncing up. Thanks!\r\n\r\nJames\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\nSent: Monday, November 10, 2025 3:43 PM\r\nTo: James Trevey <jtrevey@forgenano.com>\r\nCc: Will McKenna <WMcKenna@forgenano.com>; Daniel <dansheridanmusic@gmail.com>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nHi James,\r\n\r\nYes, I can do 10:30am EST.  Go ahead and send me a meeting invite and if others can make it they can join as well.\r\n\r\nLooking forward to catching up.\r\n\r\nBest,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,mGkPUj_d0_J2K1BXwgIzY9wMKTJ1_kIOO3mXzETbTMfuP-qgmt69ms2pFCmy3iNE151jUZGvcyAxTQ0lC_uyz9itz0X3lYQVSCJzZo6C5KMJ&typo=1>\r\n\r\n\r\nOn Mon, Nov 10, 2025 at 5:37 PM James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>> wrote:\r\nHey Jordan,\r\n\r\nSorry for going dark. The meeting went great. I would love to sync up with you to figure out next details. Can you chat at 8:30am MT tomorrow (11th)?\r\n\r\nJames\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nSent: Thursday, November 6, 2025 12:05 PM\r\nTo: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>\r\nCc: Will McKenna <WMcKenna@forgenano.com<mailto:WMcKenna@forgenano.com>>; Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nHi James,\r\n\r\nHope you are well.\r\n\r\nHow did your meeting go?\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,0yjyucKyeUfIxS-5HFSvjrsDEo1K2sQDkz8oFv1cIzwEU8O73aVHhykbwL6rlE26TNk2-ufHYgRZUnkYoStD2sgHGVdzqKGuSup50N5h1F8,&typo=1>\r\n\r\n\r\nOn Mon, Oct 27, 2025 at 2:33 PM Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>> wrote:\r\nHi James,\r\n\r\nWe are logged on to the teams meeting.\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,oTvbzZaLRCIhe4MhhhOwP3SQWQDt-6Fwcd6dQZR2vvpjA3wEcLTacBUH6dS2M_Ld9yfC3kJRxIbAniyQdmaJp7TgDFdc7r7sWlrEhV0RGfTYRb6Sfrc,&typo=1>\r\n\r\n\r\nOn Thu, Oct 23, 2025 at 1:05 PM James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>> wrote:\r\nJordan,\r\n\r\nThanks for the call today. Attached are a bunch of documents:\r\n\r\n\r\n  *\r\nspec sheets for all (5) FN Products\r\n  *\r\nspec sheet for the Samsung 53G\r\n  *\r\nspec sheet for the Moli P50B\r\n  *\r\nPresentation from our call with ballpark cell availability and pricing\r\n  *\r\nTerm sheet for capturing our relationship interests\r\n  *\r\nSkyfoundary proposal\r\n\r\nI have your volumes from the ProgramProduct excel sheet that I\'ve plugged into the term sheet for now as a first draft. On your end I captured the following action items:\r\n\r\n\r\n  *\r\nReview all documents in this email and confirm volumes and provide first pass review on the term sheet\r\n  *\r\nReview the Skyfoundary proposal and put together a first-pass budget/plan to support Forge as a partner\r\n\r\nI am out tomorrow for personal matters but look forward to our discussion on Monday.\r\n\r\nJames\r\n\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nSent: Wednesday, October 22, 2025 9:45 AM\r\nTo: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>\r\nCc: Will McKenna <WMcKenna@forgenano.com<mailto:WMcKenna@forgenano.com>>; Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nYou bet,\r\n\r\nSpeak with you tomorrow.\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,RCp_srnsn8TsHi-Y90KYoNQPNLUs9Z2k6AQ2a8mY4AU8XQa0dJ0qeugNm0mDw--U4uH_iIRb9IN4Nb3dl2ctTPPmCoYcMeCAkzmhYm7mlpPXnMYFHVt8&typo=1>\r\n\r\n\r\nOn Wed, Oct 22, 2025 at 11:34 AM James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>> wrote:\r\nperfect. I look forward to speaking with you then!\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nSent: Wednesday, October 22, 2025 9:30 AM\r\nTo: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>\r\nCc: Will McKenna <WMcKenna@forgenano.com<mailto:WMcKenna@forgenano.com>>; Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nHi James,\r\n\r\nI can do tomorrow at 9am MST.\r\n\r\nLet me know if that still works for you and I can send you over an invite.\r\n\r\nBest,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,irabj1pPRcbHt7fZTnVGlp-D5OWgJo5J-DJVmYysbSINfzIevG80IYq97Jraq-OV6w6IJC3gu0pHz4oFYfW4xcnb3n-PwXqRHBE_AugLqCnyxkrk6RI,&typo=1>\r\n\r\n\r\nOn Tue, Oct 21, 2025 at 6:09 PM James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>> wrote:\r\nHey Jordan,\r\n\r\nI am back from 3 weeks of travel and ready to get sorted here. Tomorrow is sunk, but on Thursday I can do 9am MT or 12:30pm MT. Do either work for you? If not, I have the following next week:\r\n\r\n27th: 11:30-1pm MT\r\n28th: 8am MT, 11am MT, after 1pm MT\r\n29th: after 1pm MT\r\n30th: after 10am MT\r\n\r\nLet me know what works.\r\n\r\nJames\r\n\r\n\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nSent: Monday, October 20, 2025 5:12 AM\r\nTo: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>\r\nCc: Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nHi James,\r\n\r\nI am out of town as well.  How does your Wednesday look?\r\n\r\nLooking forward to catching up.\r\n\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com%2f&c=E,1,kcAZ-rF3D0Z_d8KzW-apTAtlzHQofd8D2ZjbELiCHZPsqOhCV8Xd_fUJ6ZWDkt-2fgJod-EPR6FfR9gTPQj_LmrIjU3cEOjFP4Vi0A3Pa8jqtC5XpIZ1aRU,&typo=1>\r\n\r\nOn Oct 16, 2025, at 9:20 AM, James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>> wrote:\r\n\r\n﻿\r\nHey Jordan,\r\n\r\nApologies for the slow/no replies recently. Travel has been brutal.\r\n\r\nWe\'ve got a lot of the information ready for you. Can we schedule a call to do a walk through on Monday the 20th at 9am or 10am ET?\r\n\r\nJames\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nSent: Thursday, October 16, 2025 9:16 AM\r\nTo: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>\r\nCc: Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nHi James,\r\n\r\nWould be great to get some pricing and spec sheets.\r\n\r\nLet me know when we can connect.\r\n\r\nBest,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com%2f&c=E,1,kruzcWrtQAWBE_Wzkk5ZCPi8egnieSOSjhsFO2fIO_mt3sy1dInRgNFjLY-Xwbk4dmY7rgbxINSGlle76-Yg-vEcypX9dPm0sX9KSwuuDZUbmg,,&typo=1>\r\n\r\nOn Sep 30, 2025, at 4:31 PM, Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>> wrote:\r\n\r\n﻿\r\nHi James,\r\n\r\nI have attached a prospective cell demand schedule (subject to change) but two of your battery types should meet the requirements for some of our future projects.\r\n\r\nLooking forward to our discussion and seeing your deck of prospective projects.\r\n\r\nBest,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,KG7OlMyZO9jbLU5vTJ3I8lMhBaHdNf06-ktzHMDOUSoCImrfUczbXUj1d1VcQUh_ApKsyrkLO9FO7PzcinsYewUWoskpuT9EKlrhqSI22A,,&typo=1>\r\n\r\n\r\nOn Fri, Sep 26, 2025 at 4:59 PM James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>> wrote:\r\nJordan,\r\n\r\nI won\'t be able to send the deck today. Still waiting on a few spec sheets approval and validation of production capability for a few products.\r\n\r\nI\'ll send to you as soon as I can next week.\r\n\r\nJames\r\n\r\n\r\n\r\n\r\n________________________________\r\nFrom: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>\r\nSent: Wednesday, September 24, 2025 10:49 AM\r\nTo: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nCc: Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nJordan,\r\n\r\nUnfortunately, there is not a large prismatic on our list. I could potentially license a design to make one, but it would take a lot of coordinating.\r\n\r\nIt would be super helpful if you are able to compile a deck for us which has your prospective cell demand schedule now and for the next few years, as well as what your qualification schedule looks like (maybe program based?). Maybe by cell type?\r\n\r\nI also have a verbal matter we can discuss soon. Once I\'ve got the deck ready I\'ll find time for a short call with you.\r\n\r\nTalk soon.\r\n\r\nJames\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nSent: Wednesday, September 24, 2025 10:07 AM\r\nTo: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>\r\nCc: Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nHi James,\r\n\r\nThank you for the follow up.  You were on my list to contact today!\r\n\r\nWould that additional product list include a prismatic cell? I have a client who needs 150MWh a year and they want a domestic 314Ah cell...\r\n\r\nI will let you know if I will be able to make it up to Detroit for The Battery Show.\r\n\r\nLooking forward to seeing the deck.\r\n\r\nAll the best,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,gaCrzh0c6vf3xrQnIV3wewtXq9rWWeR48E_n_c-GXYJRq4KPID4S6W16xl_tTj6ds_KN0rSCRW6viw-N3O2-Uh_xCrEg2Jjf_WqGdCNA3gQ,&typo=1>\r\n\r\n\r\nOn Wed, Sep 24, 2025 at 11:59 AM James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>> wrote:\r\nHey Jordan,\r\n\r\nThank you for the quick follow up.\r\n\r\nI am working on a compiled deck for you to address the below requests and aiming for end of this week. After speaking with my team, we\'ve decided we\'d like to provide information on additional products to you which are typically not on the menu but I have details to sort first.\r\n\r\nRegarding shows, happy to discuss when ready. We\'ll be at The Battery Show in 2 weeks, which I think you should consider attending and I\'d be happy to connect while there.\r\n\r\nJames\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nSent: Thursday, September 18, 2025 11:03 AM\r\nTo: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>\r\nCc: Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Re: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nHi James,\r\n\r\n\r\nThank you for continuing discussions regarding our strategic partnership. As we prepare for module and pack production to support your battery cell needs, we would appreciate your assistance in providing several key pieces of information to optimize our collaboration and planning:\r\n\r\nPlease share detailed volume forecasts for each cell type (e.g., 18650, 21700) you expect to require over the next 1–5 years, broken out by project or customer segment where feasible.\r\n\r\nIndicate your anticipated ramp-up schedule for sample, engineering, and production volumes to help us align our development and manufacturing timelines.\r\n\r\nIdentify any major offtake agreements, anchor customers, or significant opportunities in your commercial pipeline that could impact forecasted demand for modules or packs.\r\n\r\nOutline target applications (energy storage, drones, EVs, DOD, etc.) and specify any technical or certification requirements for modules/packs related to these segments.\r\n\r\nClarify your minimum order quantities and expected pricing for each product line.\r\n\r\nPlease also provide information about any flexibility in volume commitments that may be necessary in case project requirements or customer needs adjust mid-term.\r\n\r\nImportantly, we would like to request information on any current or forthcoming cells with a minimum continuous discharge rating of 15C or higher. For these cells, please provide specifications, target applications, anticipated volume requirements, forecasted commercial timelines, and expected pricing.\r\n\r\nAdditionally, for reference, these are LBC’s most popular cells we\'ve made module and packs for:\r\n\r\n18650:\r\n\r\nNMC: TNL-ITR18650-2600P\r\n\r\nLFP: SW18650-26HPA\r\n\r\nLFP: IFR18650-2000mAh\r\n\r\n21700:\r\n\r\nNMC: INR21700-50S\r\n\r\nNMC: INR21700-4000\r\n\r\nProviding this information will enable LBC to ensure maximum alignment, timely scale-up, and the most competitive solutions to support your growth across all high-value sectors.\r\n\r\nIn terms of the shows you mentioned, we are getting our schedules aligned so we can attend.  What\'s the \"secret meeting\" in Nov?\r\n\r\nWe look forward to your prompt response so we can efficiently move to the next stages.\r\n\r\n\r\nTalk soon,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,0_SeAAZnnZEc2OSNupT_Xh6D79NAulrIDpppHwwST7orwHiNACz5Ha43J4iTSR4fY66YPdrypG1jOiFOkixZJA9ufjQXPSo_ni1B69wxCfqud9hQ81OawWNXkg,,&typo=1>\r\n\r\n\r\nOn Wed, Sep 17, 2025 at 7:00 PM James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>> wrote:\r\nJordan,\r\n\r\nThanks for moving quickly here. I got bogged down today but better late than never.\r\n\r\nAttached you\'ll find data sheets for all (5) of our products, including both 18650 and 21700. Below is a quick summary:\r\n\r\n\r\n  *\r\nSC2-18-4 - ~3Ah 18650 designed for Army low temperature operation (they won\'t tell us the application)\r\n     *\r\nThis cell has a 100% US supply chain already\r\n     *\r\nThis cell can be made in the millions next year by our partner in the EU, until our factory is online in 2027\r\n  *\r\nSC3-18-2 - ~3.5Ah 18650 designed for BB2590 packs (reverse engineered from MIL-PRF-32383)\r\n     *\r\nThis cell is 50% US and 50% non-FEOC currently\r\n     *\r\nThis cell can be made in the millions next year by our partner in the EU, until our factory is online in 2027\r\n  *\r\nSC2-21-2 - ~5.7Ah 21700 designed for heavy trucking and niche EVs.\r\n     *\r\nThis cell is 50% US and 50% non-FEOC currently\r\n     *\r\nThis cell can be made in the thousands next year by our partner in the EU, until our factory is online in 2027\r\n  *\r\nSC2-21-3 - ~5.5Ah 21700 designed for drones (it has an Aluminum case and tabless design, super lightweight)\r\n     *\r\nThis cell is 50% US and 50% non-FEOC currently\r\n     *\r\nThis cell can be made in the millions next year by our partner in the EU. As we show adoption, we\'ll expand our factory to build these\r\n  *\r\nSC4-21-1 - ~5.5Ah 21700 designed for Li-6T packs (reverse engineered from MIL-PRF-32565)\r\n     *\r\nThis cell is 50% US and 50% non-FEOC currently\r\n     *\r\nThis cell can be made in the thousands next year by our partner in the EU, until our factory is online in 2027\r\n\r\nWe can also get 80mmx300mm pouch cells made by our EU partner, if needed.\r\n\r\nRegarding the term sheet, please see the attached template that I put together but needs input from you all.\r\n\r\nMaybe we line up another discussion for next week to continue our alignment path? Also, are any of you planning to attend The Battery Show in Detroit? Or AUSA in DC? Or AUKUS in DC? Or Upcell in Reno? Or Gigafactores in Nashville? in October? Or the secret meeting on November 5th in DC?\r\n\r\nI will check with my people on 301 asap.\r\n\r\nI look forward to our next communication.\r\n\r\nJames\r\n\r\n\r\n________________________________\r\nFrom: Jordan Wroblewski <jordan@lithiumbatterycompany.com<mailto:jordan@lithiumbatterycompany.com>>\r\nSent: Wednesday, September 17, 2025 7:56 AM\r\nTo: James Trevey <jtrevey@forgenano.com<mailto:jtrevey@forgenano.com>>; Daniel <dansheridanmusic@gmail.com<mailto:dansheridanmusic@gmail.com>>; brian@mavrix.one <brian@mavrix.one>; Nathan Staron <nathan@lithiumbatterycompany.com<mailto:nathan@lithiumbatterycompany.com>>; Rick Mislan <rick@mavrix.one>\r\nSubject: Next Steps - Forge Nano & Lithium Battery Co Collaboration\r\n\r\nGentlemen,\r\n\r\nIt was a pleasure connecting with you yesterday. I am very excited about the potential for a partnership between our companies. To maintain the momentum from our discussion, I\'ve outlined the key action items below:\r\n\r\n\r\n  *   James to send the cell specification sheets as soon as possible.\r\n  *   LBC/Mavrix1 will share our top NMC 18650 and 21700 cells for benchmarking purposes.\r\n  *   James to send their term sheet template for throughput contracts.\r\n  *   We should discuss 301 exclusion support for manufacturing equipment.\r\n\r\nI look forward to our next conversation.\r\n\r\nBest,\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\njordan@lithiumbatterycompany.com<mailto:Jarrett.brownfield@trackmastermobility.com>\r\n\r\nLithium Battery Company<https://linkprotect.cudasvc.com/url?a=http%3a%2f%2flithiumbatterycompany.com&c=E,1,5XwS0ui8U7BdCgdyQ4y7cci0NGIV2otwkvjchtWdd09H7QM9o-cbghedfCZwON-S7KcCe_cNW_uQSIH3HItLcXUHu5tdjCA_wXeQS6cp&typo=1>\r\n\r\n<ProgramProduct-CellType-2025Demand-2026Demand-2027Demand-2028Demand-QualificationTiming-Notes (1).csv>\r\n',0,0,0,0,0,0,'2025-11-10 23:12:50','2025-12-04 14:05:22','2025-12-04 14:05:22','2025-12-04 14:05:22',NULL,NULL,NULL),
(99,4,'<457555374.59639999.1764615442662@abmktmail-trigger1i.marketo.org>',NULL,NULL,'[Onboarding] Customize with Lucidchart templates','email@e.lucid.co','Lucid','<!doctype html>\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" lang=\"en\">\r\n<head> \r\n<meta http-equiv=\"Content-Type\" content=\"text/html charset=UTF-8\"> \r\n<meta name=\"viewport\" content=\"width=device-width\"> \r\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"> \r\n<meta name=\"color-scheme\" content=\"light dark\"> \r\n<meta name=\"supported-color-schemes\" content=\"light dark\"> \r\n<title>[Onboarding] Customize with Lucidchart templates\r\n\r\n</title> \r\n<!--[if mso]>\r\n        <style>\r\n        * {\r\n        font-family: sans-serif!important;\r\n        }\r\n        </style>\r\n        <![endif]--> \r\n<style>\r\n        \r\nhtml,\r\nbody {\r\n    margin: 0 auto !important;\r\n    padding: 0 !important;\r\n    height: 100% !important;\r\n    width: 100% !important;\r\n}\r\n\r\n* {\r\n    -ms-text-size-adjust: 100%;\r\n    -webkit-text-size-adjust: 100%;\r\n}\r\n\r\ndiv[style*=\"margin: 16px 0\"] {\r\n    margin: 0 !important;\r\n}\r\n\r\ntable,\r\ntd {\r\n    mso-table-lspace: 0pt !important;\r\n    mso-table-rspace: 0pt !important;\r\n}\r\n\r\ntable {\r\n    border-spacing: 0 !important;\r\n    border-collapse: collapse !important;\r\n    table-layout: fixed !important;\r\n    margin: 0 auto !important;\r\n}\r\n\r\ntd {\r\n    font-family: Arial,Helvetica,Verdana,sans-serif !important;\r\n    font-size: 20px !important;\r\n    line-height: 28px !important;\r\n    color: #282c33 !important;\r\n    mso-height-rule: exactly !important;\r\n}\r\n\r\n.header {\r\n    font-size: 48px !important;\r\n    line-height: 52px !important;\r\n    font-weight: bold !important;\r\n    text-align:left !important;\r\n}\r\n\r\n.text {\r\n    font-size: 24px !important;\r\n    line-height: 36px !important;\r\n}\r\n    \r\n.text2 { \r\n    background-color: #FFF3D9 !important;\r\n}\r\n\r\n.templates, .templates-last {\r\n    background-color: #F96B13 !important;\r\n}\r\n\r\n.template-image {\r\n    width: 100% !important; \r\n    max-width: 100% !important;\r\n    vertical-align: middle !important;\r\n    background-color: #ffffff !important;\r\n    border-top-left-radius: 7px !important; \r\n    border-top-right-radius: 7px !important;\r\n}\r\n\r\n.template-subheader {\r\n    background-color: #ffffff !important;\r\n    font-weight: bold !important;\r\n    border-bottom-left-radius: 7px !important; \r\n    border-bottom-right-radius: 7px !important;\r\n}\r\n\r\n.link {\r\n    text-align: left !important;\r\n    color: #282C33 !important;\r\n}\r\n\r\n.link:hover {\r\n    color: #F96B13 !important;\r\n}\r\n    \r\n.link2 {\r\n    text-align: left !important;\r\n    color: #282C33 !important;\r\n}\r\n\r\n.link2:hover {\r\n    color: #F96B13 !important;\r\n}\r\n\r\n.button {\r\n    background: #282C33 !important;\r\n    border: 1px solid #282C33 !important;\r\n    text-decoration: none !important;\r\n    color: #ffffff !important;\r\n    border-radius: 4px !important;\r\n    display:inline-block !important;\r\n    mso-padding-alt:0 !important;\r\n    font-size:20px !important;\r\n    padding: 10px 40px !important;\r\n}\r\n\r\n.button-pad {\r\n    vertical-align: top !important;\r\n    background-color: #FFF3D9 !important;\r\n    font-weight: bold !important;\r\n}\r\n\r\n.button:hover {\r\n  background-color: #5D646F !important;\r\n  border: 1px solid #5D646F !important;\r\n  color: #FFFFFF !important;\r\n  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0) !important;\r\n}\r\n\r\n.footer {\r\n    font-size: 12px !important;\r\n    line-height:18px !important;\r\n}\r\n\r\n@media (prefers-color-scheme: dark ) {\r\n\r\n.deep-drk-bkgrd {\r\n    background-color: #23272c !important;\r\n}\r\n\r\n.drk-bkgrd { \r\n    background-color: #282C33 !important;\r\n}\r\n\r\n.hero-bkgrd { \r\n    background-color: #FFF3D9 !important;\r\n}\r\n\r\n.header {\r\n    background-color: #FFF3D9 !important;\r\n    color: #282C33 !important;\r\n}\r\n\r\n.text {\r\n    background-color: #FFF3D9 !important;\r\n    color: #282C33 !important;\r\n}\r\n\r\n.templates, .templates-last {\r\n    background-color: #282C33 !important;\r\n}\r\n\r\n.template-subheader {\r\n    background-color: #FEFEFE !important;\r\n}\r\n\r\n.template-image {\r\n    background-color: #FEFEFE !important;\r\n}\r\n\r\ntd {\r\n    color: #ffffff !important;\r\n}\r\n\r\n.button {\r\n    background: #f2f2f2 !important;\r\n    border: 1px solid #282C33 !important;\r\n    text-decoration: none !important;\r\n    color: #282C33 !important;\r\n    border-radius: 4px !important;\r\n    display: inline-block !important;\r\n    mso-padding-alt: 0 !important;\r\n    font-size: 20px !important;\r\n}\r\n\r\n.button-pad {\r\n    vertical-align: top !important;\r\n    background-color: #282C33 !important;\r\n}\r\n\r\n.button:hover {\r\n    background: #CED4DB !important;\r\n    border: 1px solid #CED4DB !important;\r\n    color: #000000 !important;\r\n}\r\n\r\n.link2 { \r\n    color: #FFFFFF !important;\r\n}\r\n\r\n.text2 { \r\n    background-color: #282C33 !important;\r\n    color: #FFFFFF !important;\r\n}\r\n    \r\n.footer-link {\r\n    color: #ffffff !important;\r\n}\r\n\r\n    .ftr-logo-dark { display:block !important;width: 80px !important;overflow: visible !important;float: none !important;max-height:inherit !important;max-width:80px !important;line-height: auto !important;margin-top:0px !important;visibility:inherit !important;}\r\n\r\n    .ftr-logo-light { display:none;display:none !important;width: 0px !important;max-width: 0px !important;}\r\n}\r\n\r\ntable table table {\r\n    table-layout: auto;\r\n}\r\n\r\nimg {\r\n    -ms-interpolation-mode: bicubic;\r\n}\r\n\r\n*[x-apple-data-detectors] {\r\n    color: inherit !important;\r\n    text-decoration: none !important;\r\n}\r\n\r\n.x-gmail-data-detectors,\r\n.x-gmail-data-detectors *,\r\n.aBn {\r\n    border-bottom: 0 !important;\r\n    cursor: default !important;\r\n}\r\n\r\n@media screen and (max-width: 480px) {\r\n    u~div {\r\n        width: 100vw !important;\r\n    }\r\n\r\n    div>u~div {\r\n        width: 100% !important;\r\n    }\r\n}\r\n\r\n      \r\n@media only screen and (max-width: 680px) {\r\n\r\n.logo {\r\n    padding-top: 15px !important;\r\n    padding-bottom: 0px !important;\r\n    padding-left: 15px !important;\r\n}\r\n\r\n.logo-img {\r\n    max-width: 60px !important;\r\n    padding-left: 15px !important;\r\n}\r\n\r\n.logo-big {\r\n    padding-top: 20px !important;\r\n    padding-bottom: 30px !important;\r\n    padding-left: 0px !important;\r\n    padding-right: 0px !important;\r\n}\r\n\r\n.logo-big-img {\r\n    max-width: 200px !important;\r\n}\r\n\r\n.header {\r\n    font-size: 30px !important;\r\n    line-height: 1.2 !important;\r\n    padding: 0px 20px 20px 20px !important;\r\n}\r\n\r\n.text {\r\n    font-size: 16px !important;\r\n    line-height: 24px !important;\r\n    max-width: 680px !important;\r\n    padding: 0px 20px 20px 20px !important;\r\n}\r\n\r\n.text2 {\r\n    font-size: 16px !important;\r\n    line-height: 24px !important;\r\n    max-width: 680px !important;\r\n    padding: 30px 20px 20px 20px !important;\r\n}\r\n    \r\n.link, .link2 {\r\n	text-decoration: underline !important;\r\n    font-weight: bold !important;\r\n}\r\n\r\n.templates {\r\n    display: block !important;\r\n    width: 100% !important;\r\n    max-width: 100% !important;\r\n    -moz-box-sizing: border-box;\r\n    -webkit-box-sizing: border-box;\r\n    box-sizing: border-box;\r\n    padding: 30px 35px 10px 35px !important;\r\n}\r\n    \r\n.templates-last {\r\n    display: block !important;\r\n    width: 100% !important;\r\n    max-width: 100% !important;\r\n    -moz-box-sizing: border-box;\r\n    -webkit-box-sizing: border-box;\r\n    box-sizing: border-box;\r\n    padding: 30px 35px 40px 35px !important;\r\n}\r\n\r\n.template-image {\r\n	padding: 20px 0px 0px 0px !important;\r\n    display: center !important;\r\n}\r\n\r\n .template-subheader {\r\n 	padding: 10px 30px 20px 35px !important;\r\n    font-weight: bold !important;\r\n    font-size: 16px !important;\r\n}\r\n\r\n.button {\r\n    line-height: 24px !important;\r\n    padding-top: 10px !important;\r\n    padding-bottom: 10px !important;\r\n    font-size: 16px !important;\r\n    text-align: center !important;\r\n    display: block !important;\r\n}\r\n\r\n.button-pad {\r\n	padding: 0px 40px 30px 40px !important;\r\n}\r\n    \r\n.footer {\r\n    font-size: 12px !important;\r\n    padding-left: 15px !important;\r\n    padding-right: 15px !important;\r\n    padding-top: 30px !important;\r\n    max-width: 680px !important;\r\n}\r\n}\r\n    </style> \r\n</head> \r\n<body width=\"100%\" style=\"Margin: 0; background-color: #FAFBFC;\" class=\"deep-drk-bkgrd\"> \r\n<div style=\"display:none;font-size:1px;color:#333333;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;\">\r\n There are hundreds of them\r\n\r\n ‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp; \r\n</div> \r\n<div lang=\"en\"> \r\n<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"100%\" height=\"100%\" bgcolor=\"#FAFBFC\" style=\"border-collapse:collapse;\" class=\"deep-drk-bkgrd\"> \r\n<tbody> \r\n<tr> \r\n<td valign=\"top\"> \r\n<center style=\"width: 100%;\"> \r\n<div style=\"max-width: 660px;\"> \r\n<!--[if mso]>\r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"660\" style=\"max-width: 660px;min-width: 660px;\" align=\"center\">\r\n<tr>\r\n<td width=\"380\">\r\n<![endif]--> \r\n<div style=\"font-size: 6px; line-height: 1; background-color: #F96B13;\">\r\n&nbsp;\r\n</div>\r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\" align=\"center\" style=\"max-width: 660px; background-color: #ffffff;\" class=\"drk-bkgrd\"> \r\n<tbody> \r\n<tr>  \r\n</tr> \r\n<tr style=\"background-color: #FFFFFF;\" class=\"hero-bkgrd\">\r\n<td align=\"left\" valign=\"middle\" width=\"80\" height=\"100%\" style=\"font-size:0; padding: 35px 24px 0px 60px;\" class=\"logo\">\r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGeej-A3cQfvwMi2a7Z-7w9tnxhvzKGIBbwEsYwivQ7Momx4ZqVkgSUoQNeMsq4h82ClPDcC54=\"\r\n><img src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Marketo-Images/Lucid-Primary-Logo-CG100-onClear-np-RGB@2x.png\" width=\"80\" alt=\"Lucid\" style=\"border: 0;width: 80px; max-width: 80px; vertical-align:middle;\" class=\"logo-img\">\r\n</a>\r\n</td>\r\n</tr> \r\n<tr style=\"background-color: #FFFFFF;\" class=\"hero-bkgrd\">\r\n<td align=\"center\" valign=\"middle\" width=\"288\" height=\"100%\" style=\"font-size:0; padding: 35px 60px 0px 60px;\" class=\"logo-big\">\r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGeej-A3VZHKlQ_b6WfV7JrjhiS435LwahjriMVFTBPaJsYrxiUpDkdjYbNh5pxg8sG9YjH2XE=\"\r\n><img src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Lucidchart-Primary3D-Logo-Default-TypeCG100-onClear-wp-RGB@2x2.png\" width=\"288\" alt=\"Lucidchart\" style=\"border: 0;width: 100%; max-width: 288px; vertical-align:middle;\" class=\"logo-big-img\"> \r\n</a>\r\n</td>\r\n</tr> \r\n<tr style=\"background-color: #FFFFFF;\" class=\"hero-bkgrd\">\r\n <tr>\r\n<td style=\"padding: 20px 60px 20px 60px;\" class=\"header\">We’ve got a template for that</td>\r\n</tr>\r\n<tr>\r\n    <td valign=\"top\" style=\"padding: 10px 60px 30px 60px;\" class=\"text\">No need to start from square one. With Lucidchart’s <a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGeej-A3VA2mCf6Q7qjj6Fws8Hv6zTG8D0idjf-Y77653jnbCI2wk3yY7b4P6oQvnxfGbXpE_c=\" class=\"link\"\r\n>customizable templates</a>, you and your team can collaborate with clarity and accelerate productivity. Here are some of our most popular templates to get you started:</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<table cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"caption-side:top;width:100%;\">\r\n<tr>\r\n<td class=\"templates\" width=\"221\" max-width=\"221\" align=\"center\" valign=\"top\" style=\"padding: 40px 20px 0px 40px;\">\r\n<table cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"caption-side: top; width: 100%;\">\r\n<tr>\r\n<td width=\"221\" max-width=\"221\" align=\"center\" valign=\"top\" style=\"padding: 20px 10px 0px 10px;\" class=\"template-image\">\r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGeej-A3d-qHasvGy8tMGo511FquLYwZNllnyceE5ccHcWlf51ZkgXRz1J51ao-cpuR9vA2_N8=\"\r\n>\r\n<img src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Self-Serve-Onboarding/Lucidchart/New/org-chart.png\" alt=\"Org chart template\" width=\"221\">\r\n</a>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" style=\"padding: 10px 20px 20px 20px;\" class=\"template-subheader\">\r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGeej-A3d-qHasvGy8tMGo511FquLYwZNllnyceE5ccHcWlf51ZkgXRz1J51ao-cpuR9vA2_N8=\" style=\"color: #282C33;\" class=\"link\"\r\n>Org chart</a>\r\n</td>\r\n</tr>\r\n</table>\r\n</td>\r\n<td class=\"templates\" width=\"221\" max-width=\"221\" align=\"center\" valign=\"top\" style=\"padding: 40px 40px 0px 20px;\">\r\n<table cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"caption-side: top; width: 100%;\">\r\n<tr>\r\n<td width=\"221\" max-width=\"221\" align=\"center\" valign=\"top\" style=\"padding: 20px 10px 0px 10px;\" class=\"template-image\">\r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGeej-A3bHOZZwJjgM226CXQYm8bjIzHL4emoNOSdlwhEAaUo_-jzfldb1elX-SfMNAJgHi8xo=\"\r\n>\r\n<img src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Self-Serve-Onboarding/Lucidchart/New/flowchart.png\" alt=\"Flow chart template\" width=\"221\">\r\n</a>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" style=\"padding: 10px 20px 20px 20px;\" class=\"template-subheader\">\r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGeej-A3bHOZZwJjgM226CXQYm8bjIzHL4emoNOSdlwhEAaUo_-jzfldb1elX-SfMNAJgHi8xo=\" style=\"color: #282C33;\" class=\"link\"\r\n>Flowchart</a>\r\n</td>\r\n</tr>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td class=\"templates\" width=\"221\" max-width=\"221\" align=\"center\" valign=\"top\" style=\"padding: 40px 20px 40px 40px;\">\r\n<table cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"caption-side: top; width: 100%;\">\r\n<tr>\r\n<td width=\"221\" max-width=\"221\" align=\"center\" valign=\"top\" style=\"padding: 20px 0px 0px 0px;\" class=\"template-image\">\r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGeej-A3UESvLlNSsrOB5IquMN8fVlhnstx4jIwXYfcLYPk6nENYvVfGrESfekDFJvbL3-EpN0=\"\r\n>\r\n<img src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Self-Serve-Onboarding/Lucidchart/New/er.png\" alt=\"Database ER diagram\" width=\"221\">\r\n</a>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" style=\"padding: 10px 20px 20px 20px;\" class=\"template-subheader\">\r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGeej-A3UESvLlNSsrOB5IquMN8fVlhnstx4jIwXYfcLYPk6nENYvVfGrESfekDFJvbL3-EpN0=\" style=\"color: #282C33;\" class=\"link\"\r\n>Database ER diagram</a>\r\n</td>\r\n</tr>\r\n</table>\r\n</td>\r\n<td class=\"templates-last\" width=\"221\" max-width=\"221\" align=\"center\" valign=\"top\" style=\"padding: 40px 40px 40px 20px;\">\r\n<table cellspacing=\"0\" width=\"100%\" role=\"presentation\" style=\"caption-side: top; width: 100%;\">\r\n<tr>\r\n<td width=\"221\" max-width=\"221\" align=\"center\" valign=\"top\" style=\"padding: 20px 0px 0px 0px;\" class=\"template-image\">\r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGeej-A3evnbqL4C2UVb4JZdMKBw_5kK-KdqzGHNEROoPzi5pFBX72o_V7nGqGhOkSJQkOEAl4=\"\r\n>\r\n<img src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Self-Serve-Onboarding/Lucidchart/New/uml.png\" alt=\"UML class diagram\" width=\"221\">\r\n</a>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" style=\"padding: 10px 20px 20px 20px;\" class=\"template-subheader\">\r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGeej-A3evnbqL4C2UVb4JZdMKBw_5kK-KdqzGHNEROoPzi5pFBX72o_V7nGqGhOkSJQkOEAl4=\" style=\"color: #282C33;\" class=\"link\"\r\n>UML class diagram</a>\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<tr>\r\n<td valign=\"top\" style=\"padding: 40px 60px 10px 60px;\" class=\"text2\">Looking for something else?</td>\r\n</tr>\r\n<tr>\r\n<td align=\"left\" style=\"padding: 20px 60px 60px 60px;\" class=\"button-pad\">\r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGeej-A3VA2mCf6Q7qjj6Fws8Hv6zTG8D0idjf-Y77653jnbCI2wk3yY7b4P6oQvnxfGbXpE_c=\" class=\"button\"\r\n>\r\n<!--[if mso]><i style=\"letter-spacing: 25px;mso-font-width:-100%;mso-text-raise:30pt\">&nbsp;</i><![endif]-->\r\n<span style=\"mso-text-raise:15pt;\">Explore templates</span>\r\n<!--[if mso]><i style=\"letter-spacing: 25px;mso-font-width:-100%\">&nbsp;</i><![endif]-->\r\n</a>\r\n</td>\r\n</tr>\r\n\r\n</tr>\r\n<tr style=\"background-color: #FAFBFC;\" class=\"deep-drk-bkgrd\">\r\n<td align=\"left\" valign=\"middle\" width=\"80\" height=\"100%\" style=\"font-size:0; padding: 35px 24px 0px 60px;\" class=\"logo\">\r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGeej-A3cQfvwMi2a7Z-7w9tnxhvzKGIBbwEsYwivQ7Momx4ZqVkgSUoQNeMsq4h82ClPDcC54=\"\r\n><img src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Marketo-Images/Lucid-Primary-Logo-CG100-onClear-np-RGB@2x.png\" width=\"80\" alt=\"Lucid\" style=\"border: 0;width: 80px; max-width: 80px; vertical-align:middle;\" class=\"ftr-logo-light\">\r\n<img src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Marketo-Images/Lucid-Primary-Logo-White-onClear-np-RGB@2x.png\" width=\"80\" alt=\"Lucid\" style=\"vertical-align:middle;display:none; overflow:hidden; float:left; width:0px; max-height:0px; max-width:0px; line-height:0px; visibility:hidden;\r\n\" class=\"ftr-logo-dark\">\r\n</a>\r\n</td>\r\n</tr> \r\n<tr style=\"background-color: #FAFBFC;\" class=\"deep-drk-bkgrd\"> \r\n<td style=\"padding:30px 60px 40px 60px; width: 400;\" class=\"footer\"><a style=\"color:#282C33; text-decoration: underline;\" href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGeej-A3BcdCo4mvKFoLVw65TBB0DLneyjLRSuBy0ujSUIZpI7lCZO9499j9SAUB2j8rc_DSdo=\" class=\"footer-link\"\r\n>Unsubscribe</a><br><br> \r\nLucid Software Inc.<br> \r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGeej-A3TpXxPigaERWRkQUe4kk0fIYbyNbIH4tpYuVUFO1czGD4gaHcvvFigeqZ3NowcbEhrk=\" target=\"_blank\" style=\"text-decoration: none; color: #282c33; cursor: default;\" class=\"footer-link\"\r\n>10355 South Jordan Gateway, Suite 300<br> \r\nSouth Jordan, UT 84095 USA<br></a><br><br>\r\nBy continuing to use Lucid\'s products, you agree to our <a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGeej-A3TN8Htb82pa6mjdaNwMWVXXnid43dD6JhIUmzvYQ0Mc0-b9c4dSRBLwZ3c4iOBqi2SQ=\" style=\"color:#282c33; text-decoration: underline\" class=\"footer-link\"\r\n>Terms of Service</a> and acknowledge our <a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGeej-A3UQ6zF3p7V-IuSjYOrZMh2GFq4vElQSgrYcIBgnHWgk_Vj2TOCb6KwsOYoqvyQSJ-Yo=\" style=\"color:#282c33; text-decoration: underline\" class=\"footer-link\"\r\n>Privacy Policy</a>.\r\n   \r\n</td> \r\n</tr> \r\n</tbody> \r\n</table> \r\n<!--[if (gte mso 9)|(IE)]>\r\n</td>\r\n</tr>\r\n</table>\r\n<![endif]--> \r\n</div> \r\n</center> </td> \r\n</tr> \r\n</tbody> \r\n</table> \r\n</div>  \r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGeej-A3bBFCWvOlG_Ln_W_fwk6iQ9ym_aduSPRoqu1dma26TIBtVjSeg2WEYwkoLvNa-KqnVI=\"\r\n></a>\r\n<img src=\"https://email.lucid.co/trk?t=1&mid=NzA0LUJFTC0zNjYAAAGeej-A3WSfMRl9kOMFMVb0ybttu9lHqB9r22_-uGjJgEVw2EztbQzqBTHnUJ_Pof99zV4YIGM7XfcBDfQ-Q0KxRkhmwi3v6QKrTZGJb26h2xEis7n0NZtxKq4\" width=\"1\" height=\"1\" style=\"display:none !important;\" alt=\"\" />\r\n\r\n<!--This is a comment -->\r\n</body>\r\n</html>','\r\n\r\n.',0,0,0,0,0,0,'2025-12-01 18:57:22','2025-12-04 14:05:22','2025-12-04 14:05:22','2025-12-04 14:05:22',NULL,NULL,NULL),
(100,4,'<20251202142016.e2bf1f80f80b2a45@emails.leatherman.com>',NULL,NULL,'Last Shot for the Best Deals','Leatherman@emails.leatherman.com','Leatherman','<!DOCTYPE html>\r\n<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" lang=\"en\"><head><title>Last Shot for the Best Deals</title><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><!--[if mso]>\r\n<xml><w:WordDocument xmlns:w=\"urn:schemas-microsoft-com:office:word\"><w:DontUseAdvancedTypographyReadingMail/></w:WordDocument>\r\n<o:OfficeDocumentSettings><o:PixelsPerInch>96</o:PixelsPerInch><o:AllowPNG/></o:OfficeDocumentSettings></xml>\r\n<![endif]--><style>\r\n*{box-sizing:border-box}body{margin:0;padding:0}a[x-apple-data-detectors]{color:inherit!important;text-decoration:inherit!important}#MessageViewBody a{color:inherit;text-decoration:none}p{line-height:inherit}.desktop_hide,.desktop_hide table{mso-hide:all;display:none;max-height:0;overflow:hidden}.image_block img+div{display:none}sub,sup{font-size:75%;line-height:0} @media (max-width:620px){.mobile_hide{display:none}.row-content{width:100%!important}.stack .column{width:100%;display:block}.mobile_hide{min-height:0;max-height:0;max-width:0;overflow:hidden;font-size:0}.desktop_hide,.desktop_hide table{display:table!important;max-height:none!important}.row-3 .column-1 .block-1.heading_block h1{font-size:29px!important}.row-3 .column-1 .block-2.paragraph_block td.pad>div{font-size:16px!important}.row-3 .column-1 .block-2.paragraph_block td.pad{padding:15px 40px 0!important}.row-5 .column-1{padding:0!important}}\r\n</style><!--[if mso ]><style>sup, sub { font-size: 100% !important; } sup { mso-text-raise:10% } sub { mso-text-raise:-10% }</style> <![endif]--><!--[if true]><style>.forceBgColor{background-color: white !important}</style><![endif]--></head><body class=\"body forceBgColor\" style=\"background-color:transparent;margin:0;padding:0;-webkit-text-size-adjust:none;text-size-adjust:none\"><span style=\"color: transparent; display: none !important; font-size: 0px; line-height: 0px; height: 0; max-height: 0; max-width: 0; opacity: 0; overflow: hidden; mso-hide: all; visibility: hidden; width: 0;\">Black Fri/Cyber Mon Deals End Tonight*</span><div style=\"display: none; max-height: 0px; overflow: hidden;\">&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847; &#8199;&#847;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy; &shy;\r\n&nbsp; </div><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/CgxoqE1BKlemu9sZFygSIGV9rJythEGOVgtWbLzZhRQ75HP_DgV2L1PnBFs5TkMbMbDi_me9S9pBagxoR0_g78-WAAdi9-TIAQGAAgM.pnPExSfadPUYJA/click\" xnpe-attr=\"notextnorew\"><img width=\"1\" height=\"1\" alt=\"\" src=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/CgxoqE1BKlemu9sZFygSIGV9rJythEGOVgtWbLzZhRQ75HP_DgV2L1PnBFs5TkMbMbDi_me9S9pBagxoR0_g78-WAAdi9-SAAgM.u-VKU0KBVnnsnQ/open\" style=\"display: none;\"></a><table class=\"nl-container\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:transparent\"><tbody><tr><td><table class=\"row row-1\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#fff;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;vertical-align:top\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"width:100%\"><div class=\"alignment\" align=\"center\"><div style=\"max-width:600px\">\r\n<a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUkitXTNnbYtjXxh3WM6em60i1k-K__OxlukHP2eJtvRzlpaSzigpKSi20tcvLy_Xy0lNLMlILcpNzNNLzs_VN9zw6F_6Xu9bjlYCXEylxUJcTjn5-blFqYnJGVbyQJFkIUkjU0MjA6N4Jzdn33ifxOIS54zEvOTU-NBgK26gglwh1tTcxMycqFB9_aT8lEr9ksSknFT9Egi7SL8kBSISbRiLKYhNBMxOySwD48QkK0PjJPM0CwMTc9Nko2QDi7QasHXxmSlWRZnJ2Q65iWVFmRV6-XmpNSaWZimWaeZmlsmpRkYpFslZPBnu_g_en5_GwJ70_UkDEzMAQIRpYQ.Yt35SJPj1MUXGQ/click\" target=\"_blank\"><img src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/ae52a6e2-ca6a-4d8e-8944-532f952aae85/9322512c-2ac4-11f0-ba62-a276e34cd400/Skeletool%20Logo%20Cyber%20Monday.png\" style=\"display:block;height:auto;border:0;width:100%\" width=\"600\" alt=\"Shop multi-tools and knives at Leatherman.com\" title=\"Shop multi-tools and knives at Leatherman.com\" height=\"auto\"></a></div></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-2\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-size:auto\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-size:auto;background-color:#000;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;vertical-align:top\"><table class=\"image_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\" style=\"width:100%\"><div class=\"alignment\" align=\"center\"><div style=\"max-width:600px\">\r\n<a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUkitXTNnbYtjXxh3WM6em60i1k-K__OxlukHP2eJtvRzlpaSzigpKSi20tcvLy_Xy0lNLMlILcpNzNNLzs_VN9zw6F_6Xu9bjlYCXEylxUJcTjn5-blFqYnJGVbyQJFkIUkjU0MjA6N4Jzdn33ifxOIS54zEvOTU-NBgK26gglwh1tTcxMycqFB9_aT8lEr9ksSknFT9Egi7SL8kBSISbRSLKYhNBMxOySwD48QkK0PjJPM0CwMTc9Nko2QDi7QasHXxmSlWRZnJ2Q65iWVFmRV6-XmpNSaWZimWaeZmlsmpRkYpFslZPBnu_g_en5_GwJ70_UkDEzMAQQdpYg.DlhuGKjr89iwlA/click\" target=\"_blank\"><img src=\"https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/ae52a6e2-ca6a-4d8e-8944-532f952aae85/9322512c-2ac4-11f0-ba62-a276e34cd400/IMG_0199.jpg\" style=\"display:block;height:auto;border:0;width:100%\" width=\"600\" alt=\"Cyber Monday. Last Shot: Skeletool&#174; Deal\" title=\"Cyber Monday. Last Shot: Skeletool&#174; Deal\" height=\"auto\"></a></div></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-3\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-size:auto\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#000;border-radius:0;color:#000;background-image:url(https://d15k2d11r6t6rl.cloudfront.net/public/users/Integrators/ae52a6e2-ca6a-4d8e-8944-532f952aae85/9322512c-2ac4-11f0-ba62-a276e34cd400/Skeletool%2020%25%20bottom%20Cyber%20Monday.png);background-repeat:no-repeat;background-size:cover;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:25px;padding-top:20px;vertical-align:top\"><table class=\"heading_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"30\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><h1 style=\"margin:0;color:#fff;direction:ltr;font-family:\'Trebuchet MS\',\'Lucida Grande\',\'Lucida Sans Unicode\',\'Lucida Sans\',Tahoma,sans-serif;font-size:36px;font-weight:700;letter-spacing:normal;line-height:1.2;text-align:center;margin-top:0;margin-bottom:0;mso-line-height-alt:43px\"><span class=\"tinyMce-placeholder\" style=\"word-break: break-word;\">Built Different. Gift Different.</span></h1></td></tr></table><table class=\"paragraph_block block-2\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;word-break:break-word\"><tr><td class=\"pad\" style=\"padding-left:40px;padding-right:40px\"><div style=\"color:#fff;direction:ltr;font-family:\'Trebuchet MS\',\'Lucida Grande\',\'Lucida Sans Unicode\',\'Lucida Sans\',Tahoma,sans-serif;font-size:24px;font-weight:400;letter-spacing:0;line-height:1.2;text-align:center;mso-line-height-alt:29px\"><p style=\"margin:0;margin-bottom:0\">\r\nThis holiday season don&#8217;t just give a gift, start a legacy. Leatherman tools are designed to be used, maintained, and passed down. With heirloom-quality materials and everyday functionality, these tools are gifts they&#8217;ll reach for from day one to day one million.</p><p style=\"margin:0;margin-bottom:0\">&#160;</p><p style=\"margin:0\">Last chance to shop Black Fri/Cyber Mon deals - ends tonight*</p></div></td></tr></table><table class=\"button_block block-3\" width=\"100%\" border=\"0\" cellpadding=\"30\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div class=\"alignment\" align=\"center\"><a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUkitXTNnbYtjXxh3WM6em60i1k-K__OxlukHP2eJtvRzlpaSzigpKSi20tcvLy_Xy0lNLMlILcpNzNNLzs_VN9zw6F_6Xu9bjlYCXEylxUJcTjn5-blFqYnJGVbyQJFkIUkjU0MjA6N4Jzdn33ifxOIS54zEvOTU-NBgK26gglwh1tTcxMycqBB9_aT8lEr9ksSknFT9Egi7SL8kBSISbRyLKYhDGZibklmmn5hkZWicZJ5mYWBibppslGxgkVYDti0-M8WqKDM52yE3sawos0IvPy-1xsTSLMUyzdzMMjnVyCjFIjmLJ8Pd_8H789MY2JO-P2lgYgYAyAJo2w.dAVKsBk_RPpxRw/click\" target=\"_blank\" style=\"color:#ffffff;text-decoration:none;\"><!--[if mso]>\r\n<v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\"  href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/EiBlfaycrYRBjlYLVmy82YUUO-Rz_w4Fdi9T5wRbOU5DGxobaHR0cHM6Ly93d3cubGVhdGhlcm1hbi5jb20vMbDi_me9S9pBOhAKAnVzEgpCbG9vbXJlYWNoOh8KAnVjEhkyNTEyMDJfQkZDTV9MYXN0Q2hhbmNlX1VTOgsKAnVtEgVlbWFpbGI6MTNiN2Y4MDQ3NWMyYzA4ZnxlbWFpbF9pZDpyaWNrQG1hdnJpeC5vbmV8NDk2ZDlmNzY5Y2UyMmQ4Y2oMaEdP4O_PlgAHYvfkgAID.yrPJK1P7Fe_YxA/click\"  style=\"height:38px;width:152px;v-text-anchor:middle;\" arcsize=\"0%\" fill=\"false\">\r\n<v:stroke dashstyle=\"Solid\" weight=\"3px\" color=\"#e6b800\"/>\r\n<w:anchorlock/>\r\n<v:textbox inset=\"0px,0px,0px,0px\">\r\n<center dir=\"false\" style=\"color:#ffffff;font-family:sans-serif;font-size:14px\">\r\n<![endif]-->\r\n<span class=\"button\" style=\"background-color: transparent; mso-shading: transparent; border-bottom: 3px solid #e6b800; border-left: 3px solid #e6b800; border-radius: 0px; border-right: 3px solid #e6b800; border-top: 3px solid #e6b800; color: #ffffff; display: inline-block; font-family: Arial, \'Helvetica Neue\', Helvetica, sans-serif; font-size: 14px; font-weight: 700; mso-border-alt: none; padding-bottom: 5px; padding-top: 5px; padding-left: 20px; padding-right: 20px; text-align: center; width: auto; word-break: keep-all; letter-spacing: normal;\"><span style=\"word-break: break-word; line-height: 28px;\">SHOP THE SALE</span></span>\r\n<!--[if mso]></center></v:textbox></v:roundrect><![endif]--></a></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-4\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#000;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;vertical-align:top\"><table class=\"html_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div style=\"font-family:Arial,\'Helvetica Neue\',Helvetica,sans-serif;text-align:center\" align=\"center\"><table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#000000\" align=\"center\" width=\"100%\" style=\"width: 100%; padding: 10px 0px;\"><tbody><tr><td align=\"center\">\r\n\r\n        <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\"><tbody><tr align=\"center\"><td colspan=\"5\"></td>\r\n\r\n\r\n              <td width=\"30\" style=\"padding:5px;\">\r\n                <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJx1zrtKw1AAxnGpFsGKSHFRBwVX09OcJs1FCrYFHbwNxQ6WEs6tTUxOjiTHXqCCg66OTj6Cgg-gz-Csk0jB0dFNLe3QQd3-_PiGL73Kzm5v7i6KV9VUNXh4vlzY6Mffc8kWqLxP1az98vJSy5XyJLYBaLfbGS-MJWpGiGeI4CBgSLos4iiUQgTxmsNj2g25Lx0qQiFlhIhfyK6POfBC36MFpEJsIkwUQ2VY0XIsr1gqhQrGDcQ0VTd0Han3b1_Nx52Xoj0_kziN0zOlQAgeMURce2UgJL0IdRVmoVPaKu85uyiWZReFhDmHFTs1GPB0knHkBUcdALCgXSARDhiQo46ApCOpafXf-JcMm3qt_xdjqcE6QNhWc9homFnN0AkkWbPRGz5yPGpHHvE3OWpFXicjQtbTrDy1GkbeIgxCapLjWXf74PXj6XpiGn_2zxOTPyPLlqU.bPZ696o0yk2M1g/click\" data-msdyn-tracking-id=\"060e7af814e081672338229931\">\r\n                  <img src=\"https://brxcdn.com/us3-app-storage/9322512c-2ac4-11f0-ba62-a276e34cd400/media/original/2b1b88c4-7e9c-11f0-9375-d674aa21e6f4\" width=\"30\" height=\"30\" border=\"0\" style=\"display:block;\" alt=\"Instagram\"></a>\r\n              </td>\r\n\r\n\r\n              <td width=\"30\" style=\"padding:5px;\">\r\n                <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUkitXTNnbYtjXxh3WM6em60i1k-K__OxlukHP2eJtvRzlpaKyygpKSi20tcvLy_XK8nMLsnP1kvOz9V3yElNLMlILcpNzIsvyc_PKVaOzy1OqczLzS6Jz8nMy85MsTUxTjZOSU5L1TUwMEnRNUk2Tta1NLZM1DU1ME1LM0tNBaI0ww2P_qXv9b7laCXAxVRaLMTllJOfn1uUmpicYSUPFEkWkjQyNTQyMIp3cnP2jfdJLC5xzkjMS06NDw224gYqyBViTc1NzMyJqtDXT8pPqdQvSUzKSdUvgbCL9EtSICLRJrGYgthEwOyUzDLcKhAi0cax-olJVobGSeZpFgYm5qbJRskGFmk1YBfFZ6ZYFWUmZzvkJpYVZVbo5eel1phYmqVYppmbWSanGhmlWCRn8WS4-z94f34aA3vS9ycNTMwAzE6NOw.EjsZobSNGwsMBA/click\" data-msdyn-tracking-id=\"55a2adb6bbc371672338239108\">\r\n                  <img src=\"https://brxcdn.com/us3-app-storage/9322512c-2ac4-11f0-ba62-a276e34cd400/media/original/2b1dd76e-7e9c-11f0-9375-d674aa21e6f4\" width=\"30\" height=\"30\" border=\"0\" style=\"display:block;\" alt=\"TikTok\"></a>\r\n              </td>\r\n\r\n\r\n              <td width=\"30\" style=\"padding:5px;\">\r\n                <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUkitXTNnbYtjXxh3WM6em60i1k-K__OxlukHP2eJtvRzlpYqzCgpKSi20tcvLy_XS0tMTk3Kz8_WS87P1fdJTSzJSC3KTczTV47PLU6pzMvNLolPyc_LLykpSkzOtjXQQQjnZOZlZ6bYGicbmaUYGafqmpgbmuuamKRZ6FqamiXrJpoYmBmYmVsmGhmlGW549C99r_ctRysBLqbSYiEup5z8_Nyi1MTkDCt5oEiykKSRqaGRgVG8k5uzb7xPYnGJc0ZiXnJqfGiwFTdQQa4Qa2puYmZOVIW-flJ-SqV-SWJSTqp-CYRdpF-SAhGJNonFFMQmAmanZJbhVoEQARmamGRlaJxknmZhYGJummyUbGCRVgN2UXxmilVRZnK2Q25iWVFmhV5-XmqNiaVZimWauZllcqqRUYpFchZPhrv_g_fnpzGwJ31_0sDEDAB4BZK7.3td5Sg4EKJg8Uw/click\" data-msdyn-tracking-id=\"1c347b64588db1672338250130\">\r\n                  <img src=\"https://brxcdn.com/us3-app-storage/9322512c-2ac4-11f0-ba62-a276e34cd400/media/original/2b140b4e-7e9c-11f0-9375-d674aa21e6f4\" width=\"30\" height=\"30\" border=\"0\" style=\"display:block;\" alt=\"Facebook\"></a>\r\n              </td>\r\n\r\n\r\n              <td width=\"30\" style=\"padding:5px;\">\r\n                <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJx1zj1Lw0AAxnGpFsGKSHBRBwVX00uuad6kYFvQwVaHYgdLCZe7i4l5k-TSNlDBQVdHJz-Cgh9AP4OzTiIFR0c3tbRDB3X78-MZHm6dnt3e3F2Ur5q5pvfwfLm0NYi_F7Id0HifaWn71dWV1GbsNNYB6Ha7-TRMWGLSPA59kMQ0AjWKmE0jHwV1Shy0YfgxSQPfZQYJg5CxCGG3JGxO2HMC1yElSy0QmVCBV5Bl8ZICi7xWECWeCBiqqgIVWbbE-7ev48e9l7K-OJdJYm6u4oWhH1GEbX1tKJhbhkURCtCo7FTrRg3FrGqjAFPjsKHnhgOfy1IfOd5RDwAzJClgyPQoYOOOACNjaUnt3_iXjJo4nf8XE2kV2wCZulgwFUsVJKWIIRZUqz96ZDhEjxzsbvuoEzm9fBjQvqTJRLMUWcMUQqLik3l79-D14-l6atb8HJxnpn8ArUeWpA.r0sWRzh43HVw-A/click\" data-msdyn-tracking-id=\"05f4617e605a71672338263640\">\r\n                  <img src=\"https://brxcdn.com/us3-app-storage/9322512c-2ac4-11f0-ba62-a276e34cd400/media/original/2b1ff6c0-7e9c-11f0-9375-d674aa21e6f4\" width=\"30\" height=\"30\" border=\"0\" style=\"display:block;\" alt=\"YouTube\"></a>\r\n              </td>\r\n\r\n              <td colspan=\"6\"></td>\r\n            </tr></tbody></table></td>\r\n    </tr></tbody></table></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table><table class=\"row row-5\" align=\"center\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tbody><tr><td><table class=\"row-content stack\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0;background-color:#fff;border-radius:0;color:#000;width:600px;margin:0 auto\" width=\"600\"><tbody><tr><td class=\"column column-1\" width=\"100%\" style=\"mso-table-lspace:0;mso-table-rspace:0;font-weight:400;text-align:left;padding-bottom:5px;vertical-align:top\"><table class=\"html_block block-1\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"mso-table-lspace:0;mso-table-rspace:0\"><tr><td class=\"pad\"><div style=\"font-family:Arial,\'Helvetica Neue\',Helvetica,sans-serif;text-align:center\" align=\"center\"><div data-section=\"true\" class=\"footer-container\" style=\"font-family: Arial, Verdana, sans-serif; color: #FFFFFF; background-color: #000000; margin: 0; border-radius: 0;\" data-protected=\"false\">\r\n\r\n  <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width: 100%; border-collapse: collapse; background-color: #000000;\"><tr><td align=\"center\" style=\"padding: 10px 0; text-align: center;\">\r\n\r\n        <div style=\"display: inline-block; text-align: center;\">\r\n\r\n          <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJxtzj1Lw0AYB3DfitCKSHFRBwVXk0vTvEvBtqCDb0Oxg6WEy93VnMklJTlTCxUc6uro5EdQ8APoZ3DWSaTg6OimlnRQ0OGB__Pj_8CTXyFnN9e3_fJlPVf3758u5tcH8ddsJgG1t6mGuVddWuyPu5y3YwuATqcj-gRyl0QMBiIKGWiHPkWUxKAd0QSirpBCV3Q581dtFuNuwDxu4zAIOY8g8krS2g_7NPAoLhmSo2pYIYKj6pqgGEgWzGJREjSnpZtEKurQRIW718-jh-3nsjWXnTiJ89mKH4YsIhC51vJQUH5BVguyJNuVzequvQNjXnVhgIh9ULNywwLLZwiD1D_0AHBC3AUcOj4BfJQjwPFIGmrzL_4nacY0SWd0Wmj-YjhcHatQdPSWISm6imQkGa1e-oRNsRVR5G0wmET0VAwD0lNMDZstXTMRkWVsoOMZd2v_5f3xamza-RicT0x-AyqGldw.SiW8mAGgxAdJaw/click\" style=\"font-family: Arial, Verdana, sans-serif; font-size: 11px; color: #FFFFFF; text-decoration: none; margin: 0 15px;\">\r\n            <strong><u>Privacy Policy</u></strong>\r\n          </a>\r\n\r\n          <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJxtzk9LG0EYBnCrFUFLKaEX9dB-gexkN242syKaXU20-aM1uoGEsMzMzv4xuzNxdzYkRaGHeu2xJz-Cgh-g7VfouZ6kCD322FtVEiiFenjh4cfzwpN5TU8vzi8_lD5aC1b4-fvZy9Xb5O757AA0fz7twIa5vPT1iS9EP9EBSJN8ljhMosyTcMh5FFNEfInwCIQUCZ_GEWJZwXmY7cfcSYkIOAMUmN6QH2_JRjWkUQqTdnnkNXcqFozfjIS_Vdm1PNHCtXdtf_-tpm7v2ZuepdTkPWaUE_WgV8d1vBnYEYVN2DeIN-zXBi23kJbz-_woaJl1CWarqOFrkArhNkqAcJZQJtZDxLw1yuSrH3-8L9Xrkv5ifjpNMvPG3-n6qwchmUVFlZWcYhtls27XUCJMHzFC7cOmvvBQiDKzNEJB2O4BgLkzAgLhkAIxyTEQzkQ6avd_fEzG2QkG45u8yt1_GHWULtblPNbcYm5FU4lCckX3ZDzCDhw9DkhvI0KDOBhKnNGTFVhwoKsVIKGK4hTJ0TO_snvz69unqTn8-_b99Mw9QdKq0Q.NsxcWXAgRgFq3Q/click\" style=\"font-family: Arial, Verdana, sans-serif; font-size: 11px; color: #FFFFFF; text-decoration: none; margin: 0 15px;\">\r\n            <strong><u>Manage Preferences</u></strong>\r\n          </a>\r\n\r\n          <a href=\"https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJxtzk9LG0EYBnC1iqBFSuhFe2i_QHayGzebWSmaXU3a5o_W6AYSwjIzO_vH7M6ku7MhKRY82GuPnvwICn6Atl-h53qSInj02FtVEiiFenjh4cfzwpN5RT-dnZ4fl75Yi1b49efn52vXyd3S3AA0b2Y7sGG-WPk-7QvRT3QA0iSfJQ6TKPMkHHIexRQRXyI8AiFFwqdxhFhWcB5m-zF3UiICzgAFpjfkH7ZkoxrSKIVJuzzymm8rFozfjYS_Vdm2PNHCtY9tf_e9pr7ZsTc9S6nJO8woJ-per47reDOwIwqbsG8Qb9ivDVpuIS3nd_lB0DLrEsxWUcPXIBXCbZQA4SyhTKyHiHmvKZMvfv3xvlUvS_qzhZk0ySwYf6frLx-EZJYVVVZyim2UzbpdQ4kwfcQItfeb-uJDIcrM0QgFYbsHAObOCAiEQwrEJMdAOBPpqN3_8TEZZycYjG_yKnf_YdTJd7Eu57HmFnOrmkoUkiu6h-MRduDocUB6GxEaxMFQ4owersKCA12tAAlVFKdIDp76le2r2x8nU_P49_XRzJN7QiGq0g.RL54dFHr35h5jg/click\" style=\"font-family: Arial, Verdana, sans-serif; font-size: 11px; color: #FFFFFF; text-decoration: none; margin: 0 15px;\">\r\n            <strong><u>Unsubscribe</u></strong>\r\n          </a>\r\n\r\n        </div>\r\n\r\n      </td>\r\n    </tr></table><table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width: 100%; border-collapse: collapse; background-color: #000000;\"><tr><td align=\"center\" style=\"padding: 0; text-align: center;\">\r\n        <table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"width: 100%; border-collapse: collapse;\"><tr><td align=\"center\" style=\"text-align: center; padding: 10px 30px;\">\r\n              <div style=\"font-size: 11px; color: #FFFFFF; text-align: center;\">\r\n\r\n                <p>This email was sent to Rick@mavrix.one</p>\r\n\r\n                <p>by <strong>Leatherman Tool Group, Inc.</strong></p>\r\n\r\n                <p>12106 NE Ainsworth Circle <br>Portland, Oregon 97220</p>\r\n\r\n                <p style=\"display: none;\">Preference Center (PLACEHOLDER)</p>\r\n\r\n                <p style=\"line-height: 1.25;\">&#169; 2025 Leatherman Tool Group, Inc. All Rights Reserved.</p>\r\n                <br>\r\n                Black Friday/Cyber Monday Gift with Purchase valid 11/20/25 9AM PST &#8211; 12/2/25 11:59PM PST at leatherman.com. Spend $125+ or $225+ to qualify. One gift per order based on threshold met. Higher threshold does not receive both gifts. While supplies last. Gift auto-added at checkout.\r\n              </div>\r\n            </td>\r\n          </tr></table></td>\r\n    </tr></table></div></div></td></tr></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table><!-- End --></body></html>','[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUkitXTNnbYtjXxh3WM6em60i1k-K__OxlukHP2eJtvRzlpaSzigpKSi20tcvLy_Xy0lNLMlILcpNzNNLzs_VN9zw6F_6Xu9bjlYCXEylxUJcTjn5-blFqYnJGVbyQJFkIUkjU0MjA6N4Jzdn33ifxOIS54zEvOTU-NBgK26gglwh1tTcxMycqFB9_aT8lEr9ksSknFT9Egi7SL8kBSISbRiLKYhNBMxOySwD48QkK0PjJPM0CwMTc9Nko2QDi7QasHXxmSlWRZnJ2Q65iWVFmRV6-XmpNSaWZimWaeZmlsmpRkYpFslZPBnu_g_en5_GwJ70_UkDEzMAQIRpYQ.Yt35SJPj1MUXGQ/click]\r\n\r\n[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUkitXTNnbYtjXxh3WM6em60i1k-K__OxlukHP2eJtvRzlpaSzigpKSi20tcvLy_Xy0lNLMlILcpNzNNLzs_VN9zw6F_6Xu9bjlYCXEylxUJcTjn5-blFqYnJGVbyQJFkIUkjU0MjA6N4Jzdn33ifxOIS54zEvOTU-NBgK26gglwh1tTcxMycqFB9_aT8lEr9ksSknFT9Egi7SL8kBSISbRSLKYhNBMxOySwD48QkK0PjJPM0CwMTc9Nko2QDi7QasHXxmSlWRZnJ2Q65iWVFmRV6-XmpNSaWZimWaeZmlsmpRkYpFslZPBnu_g_en5_GwJ70_UkDEzMAQQdpYg.DlhuGKjr89iwlA/click]\r\n\r\n# Built Different. Gift Different.\r\n\r\nThis holiday season don’t just give a gift, start a legacy. Leatherman tools are designed to be used, maintained, and passed down. With heirloom-quality materials and everyday functionality, these tools are gifts they’ll reach for from day one to day one million.\r\n\r\nLast chance to shop Black Fri/Cyber Mon deals - ends tonight*\r\n\r\nSHOP THE SALE [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUkitXTNnbYtjXxh3WM6em60i1k-K__OxlukHP2eJtvRzlpaSzigpKSi20tcvLy_Xy0lNLMlILcpNzNNLzs_VN9zw6F_6Xu9bjlYCXEylxUJcTjn5-blFqYnJGVbyQJFkIUkjU0MjA6N4Jzdn33ifxOIS54zEvOTU-NBgK26gglwh1tTcxMycqBB9_aT8lEr9ksSknFT9Egi7SL8kBSISbRyLKYhDGZibklmmn5hkZWicZJ5mYWBibppslGxgkVYDti0-M8WqKDM52yE3sawos0IvPy-1xsTSLMUyzdzMMjnVyCjFIjmLJ8Pd_8H789MY2JO-P2lgYgYAyAJo2w.dAVKsBk_RPpxRw/click]\r\n\r\n[https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJx1zrtKw1AAxnGpFsGKSHFRBwVX09OcJs1FCrYFHbwNxQ6WEs6tTUxOjiTHXqCCg66OTj6Cgg-gz-Csk0jB0dFNLe3QQd3-_PiGL73Kzm5v7i6KV9VUNXh4vlzY6Mffc8kWqLxP1az98vJSy5XyJLYBaLfbGS-MJWpGiGeI4CBgSLos4iiUQgTxmsNj2g25Lx0qQiFlhIhfyK6POfBC36MFpEJsIkwUQ2VY0XIsr1gqhQrGDcQ0VTd0Han3b1_Nx52Xoj0_kziN0zOlQAgeMURce2UgJL0IdRVmoVPaKu85uyiWZReFhDmHFTs1GPB0knHkBUcdALCgXSARDhiQo46ApCOpafXf-JcMm3qt_xdjqcE6QNhWc9homFnN0AkkWbPRGz5yPGpHHvE3OWpFXicjQtbTrDy1GkbeIgxCapLjWXf74PXj6XpiGn_2zxOTPyPLlqU.bPZ696o0yk2M1g/click] [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUkitXTNnbYtjXxh3WM6em60i1k-K__OxlukHP2eJtvRzlpaKyygpKSi20tcvLy_XK8nMLsnP1kvOz9V3yElNLMlILcpNzIsvyc_PKVaOzy1OqczLzS6Jz8nMy85MsTUxTjZOSU5L1TUwMEnRNUk2Tta1NLZM1DU1ME1LM0tNBaI0ww2P_qXv9b7laCXAxVRaLMTllJOfn1uUmpicYSUPFEkWkjQyNTQyMIp3cnP2jfdJLC5xzkjMS06NDw224gYqyBViTc1NzMyJqtDXT8pPqdQvSUzKSdUvgbCL9EtSICLRJrGYgthEwOyUzDLcKhAi0cax-olJVobGSeZpFgYm5qbJRskGFmk1YBfFZ6ZYFWUmZzvkJpYVZVbo5eel1phYmqVYppmbWSanGhmlWCRn8WS4-z94f34aA3vS9ycNTMwAzE6NOw.EjsZobSNGwsMBA/click] [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJwTUkitXTNnbYtjXxh3WM6em60i1k-K__OxlukHP2eJtvRzlpYqzCgpKSi20tcvLy_XS0tMTk3Kz8_WS87P1fdJTSzJSC3KTczTV47PLU6pzMvNLolPyc_LLykpSkzOtjXQQQjnZOZlZ6bYGicbmaUYGafqmpgbmuuamKRZ6FqamiXrJpoYmBmYmVsmGhmlGW549C99r_ctRysBLqbSYiEup5z8_Nyi1MTkDCt5oEiykKSRqaGRgVG8k5uzb7xPYnGJc0ZiXnJqfGiwFTdQQa4Qa2puYmZOVIW-flJ-SqV-SWJSTqp-CYRdpF-SAhGJNonFFMQmAmanZJbhVoEQARmamGRlaJxknmZhYGJummyUbGCRVgN2UXxmilVRZnK2Q25iWVFmhV5-XmqNiaVZimWauZllcqqRUYpFchZPhrv_g_fnpzGwJ31_0sDEDAB4BZK7.3td5Sg4EKJg8Uw/click] [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJx1zj1Lw0AAxnGpFsGKSHBRBwVX00uuad6kYFvQwVaHYgdLCZe7i4l5k-TSNlDBQVdHJz-Cgh9AP4OzTiIFR0c3tbRDB3X78-MZHm6dnt3e3F2Ur5q5pvfwfLm0NYi_F7Id0HifaWn71dWV1GbsNNYB6Ha7-TRMWGLSPA59kMQ0AjWKmE0jHwV1Shy0YfgxSQPfZQYJg5CxCGG3JGxO2HMC1yElSy0QmVCBV5Bl8ZICi7xWECWeCBiqqgIVWbbE-7ev48e9l7K-OJdJYm6u4oWhH1GEbX1tKJhbhkURCtCo7FTrRg3FrGqjAFPjsKHnhgOfy1IfOd5RDwAzJClgyPQoYOOOACNjaUnt3_iXjJo4nf8XE2kV2wCZulgwFUsVJKWIIRZUqz96ZDhEjxzsbvuoEzm9fBjQvqTJRLMUWcMUQqLik3l79-D14-l6atb8HJxnpn8ArUeWpA.r0sWRzh43HVw-A/click] \r\n\r\n*Privacy Policy* [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJxtzj1Lw0AYB3DfitCKSHFRBwVXk0vTvEvBtqCDb0Oxg6WEy93VnMklJTlTCxUc6uro5EdQ8APoZ3DWSaTg6OimlnRQ0OGB__Pj_8CTXyFnN9e3_fJlPVf3758u5tcH8ddsJgG1t6mGuVddWuyPu5y3YwuATqcj-gRyl0QMBiIKGWiHPkWUxKAd0QSirpBCV3Q581dtFuNuwDxu4zAIOY8g8krS2g_7NPAoLhmSo2pYIYKj6pqgGEgWzGJREjSnpZtEKurQRIW718-jh-3nsjWXnTiJ89mKH4YsIhC51vJQUH5BVguyJNuVzequvQNjXnVhgIh9ULNywwLLZwiD1D_0AHBC3AUcOj4BfJQjwPFIGmrzL_4nacY0SWd0Wmj-YjhcHatQdPSWISm6imQkGa1e-oRNsRVR5G0wmET0VAwD0lNMDZstXTMRkWVsoOMZd2v_5f3xamza-RicT0x-AyqGldw.SiW8mAGgxAdJaw/click] *Manage Preferences* [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJxtzk9LG0EYBnCrFUFLKaEX9dB-gexkN242syKaXU20-aM1uoGEsMzMzv4xuzNxdzYkRaGHeu2xJz-Cgh-g7VfouZ6kCD322FtVEiiFenjh4cfzwpN5TU8vzi8_lD5aC1b4-fvZy9Xb5O757AA0fz7twIa5vPT1iS9EP9EBSJN8ljhMosyTcMh5FFNEfInwCIQUCZ_GEWJZwXmY7cfcSYkIOAMUmN6QH2_JRjWkUQqTdnnkNXcqFozfjIS_Vdm1PNHCtXdtf_-tpm7v2ZuepdTkPWaUE_WgV8d1vBnYEYVN2DeIN-zXBi23kJbz-_woaJl1CWarqOFrkArhNkqAcJZQJtZDxLw1yuSrH3-8L9Xrkv5ifjpNMvPG3-n6qwchmUVFlZWcYhtls27XUCJMHzFC7cOmvvBQiDKzNEJB2O4BgLkzAgLhkAIxyTEQzkQ6avd_fEzG2QkG45u8yt1_GHWULtblPNbcYm5FU4lCckX3ZDzCDhw9DkhvI0KDOBhKnNGTFVhwoKsVIKGK4hTJ0TO_snvz69unqTn8-_b99Mw9QdKq0Q.NsxcWXAgRgFq3Q/click] *Unsubscribe* [https://us3-cdn.eng.bloomreach.com/leatherman-tool-production/e/.eJxtzk9LG0EYBnC1iqBFSuhFe2i_QHayGzebWSmaXU3a5o_W6AYSwjIzO_vH7M6ku7MhKRY82GuPnvwICn6Atl-h53qSInj02FtVEiiFenjh4cfzwpN5RT-dnZ4fl75Yi1b49efn52vXyd3S3AA0b2Y7sGG-WPk-7QvRT3QA0iSfJQ6TKPMkHHIexRQRXyI8AiFFwqdxhFhWcB5m-zF3UiICzgAFpjfkH7ZkoxrSKIVJuzzymm8rFozfjYS_Vdm2PNHCtY9tf_e9pr7ZsTc9S6nJO8woJ-per47reDOwIwqbsG8Qb9ivDVpuIS3nd_lB0DLrEsxWUcPXIBXCbZQA4SyhTKyHiHmvKZMvfv3xvlUvS_qzhZk0ySwYf6frLx-EZJYVVVZyim2UzbpdQ4kwfcQItfeb-uJDIcrM0QgFYbsHAObOCAiEQwrEJMdAOBPpqN3_8TEZZycYjG_yKnf_YdTJd7Eu57HmFnOrmkoUkiu6h-MRduDocUB6GxEaxMFQ4owersKCA12tAAlVFKdIDp76le2r2x8nU_P49_XRzJN7QiGq0g.RL54dFHr35h5jg/click] \r\n\r\nThis email was sent to Rick@mavrix.one\r\n\r\nby *Leatherman Tool Group, Inc.*\r\n\r\n12106 NE Ainsworth Circle \r\nPortland, Oregon 97220\r\n\r\n© 2025 Leatherman Tool Group, Inc. All Rights Reserved.\r\n\r\nBlack Friday/Cyber Monday Gift with Purchase valid 11/20/25 9AM PST – 12/2/25 11:59PM PST at leatherman.com. Spend $125+ or $225+ to qualify. One gift per order based on threshold met. Higher threshold does not receive both gifts. While supplies last. Gift auto-added at checkout. ',0,0,0,0,0,0,'2025-12-02 14:20:16','2025-12-04 14:05:22','2025-12-04 14:05:22','2025-12-04 14:05:22',NULL,NULL,NULL),
(101,4,'<CAPzxmXaL_EJR2g++CRJM2PAsczaOYe3e9wwhbm29OWdNx1xUuQ@mail.gmail.com>',NULL,NULL,'Re: Grafik: Request for Information','tanya@grafik.com','Tanya Nazarian','<div dir=\"ltr\">Hi Rick, <div><br></div><div>I hope you had a restful holiday weekend. I wanted to touch base to see if you were ready to regroup on the Mavrix story. Looking forward to hearing back. Thanks! </div></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Fri, Oct 24, 2025 at 9:13 AM Tanya Nazarian &lt;<a href=\"mailto:tanya@grafik.com\">tanya@grafik.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\">Hi Rick, <div><br></div><div>I appreciate the update and love to hear that you&#39;re focused on the Mavrix1 story. We&#39;ll be on the lookout for next steps soon. Have a great weekend! </div></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Fri, Oct 24, 2025 at 7:44 AM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex\"> Hi Tanya,<br>Sorry we’ve been a bit busy on our end….&quot;building our story&quot; you could say…<br>That all said, thanks for the quote and getting it to us so quickly. <br>I think we’ll be in touch later this month if not next to discuss some next steps.<br>Thanks for your patience. Talk soon.<br>Rick <br> <br><p>On October 23, 2025 at 10:17:54, Tanya Nazarian (<a href=\"mailto:tanya@grafik.com\" target=\"_blank\">tanya@grafik.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"ltr\"><div>Hi Rick, </div><div><br></div><div>I hope all is well. I wanted to follow up with you on the ROM we shared. Do you have a few minutes to connect one day next week? As mentioned, it would be great to bring in our strategy team to continue the conversation.</div><div><br></div><div>Thanks! </div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Fri, Oct 3, 2025 at 5:28 PM Tanya Nazarian &lt;<a href=\"mailto:tanya@grafik.com\" target=\"_blank\">tanya@grafik.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\">Rick, <div><br></div><div>Thank you again for your interest in Grafik. We&#39;ve taken the time to consider your near-term goals and the current state of the Mavrix1 brand, and feel well-equipped to deliver on your needs. Per our conversation, we wanted to share with you a rough order of magnitude that outlines what you can expect when working with our team.<span> </span></div><div><br></div><div>Take a look, and if you remain interested in continuing the conversation, I recommend setting up a follow-up discussion with our brand and client strategy teams to take a deeper dive into what it will actually take to get the brand where it needs to be. Let us know your thoughts, and please confirm receipt when you get a moment. </div><div><br></div><div>Have a great weekend!  </div><div><br></div></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Sep 24, 2025 at 3:46 PM Ian Olsen &lt;<a href=\"mailto:ian@grafik.com\" target=\"_blank\">ian@grafik.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div dir=\"ltr\"><div>Hi Rick,</div><div><br></div><div>Let&#39;s do 3-3:30pm. I can shoot over an invite here shortly!<br><br>Much appreciated, glad we can work it out.</div><div><br></div><div>Look forward to chatting,</div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0px 0px 2px;line-height:normal\"><br><font color=\"#222222\" face=\"arial, sans-serif\"><b>Ian Olsen</b></font><br></p><p style=\"margin:0px 0px 2px;line-height:normal\"><font color=\"#222222\" face=\"arial, sans-serif\"><span>Business Development Manager</span></font><span style=\"color:rgb(34,34,34);font-family:arial,sans-serif\">  •<span>  </span><b>P</b> (</span><font color=\"#222222\" face=\"arial, sans-serif\"><span>703) 249-9771</span></font></p><p style=\"color:rgb(34,34,34);margin:0px 0px 2px;line-height:normal\"><b style=\"font-family:arial,sans-serif\">Grafik</b><span style=\"font-family:&quot;Helvetica Neue&quot;\">  •  Philadelphia  •  </span><span style=\"font-family:&quot;Helvetica Neue&quot;\">Washington, D.C.</span><br></p><p style=\"color:rgb(34,34,34);margin:0px 0px 2px;line-height:normal\"><span style=\"font-family:arial,sans-serif\"><b><a href=\"https://grafik.agency/\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">grafik.agency</font></a><font color=\"#3db3b5\">   <font color=\"#3db3b5\"><a href=\"https://instagram.com/grafikagency\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">instagram</font></a>   <a href=\"https://linkedin.com/company/grafik\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">linkedin</font></a></font></font><font color=\"#3db3b5\"> </font></b></span></p></div></div></div><br><div></div></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Sep 24, 2025 at 3:30 PM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex\"> Can we still take tomorrow 2-5: <br>Sometime in that range???<br>Sorry for the confusion.<br>Thanks!<br>Rick <br> <br><p>On September 23, 2025 at 11:42:41, Ian Olsen (<a href=\"mailto:ian@grafik.com\" target=\"_blank\">ian@grafik.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"ltr\"><div dir=\"ltr\"><div>Hi Rick,</div><div><br></div><div>Next week looks good on our end. We can do Monday 1-3:30pm or Wednesday is mostly open. </div><div><br></div><div>Let me know what works for you.</div><div><br></div><div>Thanks,</div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0px 0px 2px;line-height:normal\"><br><font color=\"#222222\" face=\"arial, sans-serif\"><b>Ian Olsen</b></font><br></p><p style=\"margin:0px 0px 2px;line-height:normal\"><font color=\"#222222\" face=\"arial, sans-serif\"><span>Business Development Manager</span></font><span style=\"color:rgb(34,34,34);font-family:arial,sans-serif\">  •<span>  </span><b>P</b> (</span><font color=\"#222222\" face=\"arial, sans-serif\"><span>703) 249-9771</span></font></p><p style=\"color:rgb(34,34,34);margin:0px 0px 2px;line-height:normal\"><b style=\"font-family:arial,sans-serif\">Grafik</b><span style=\"font-family:&quot;Helvetica Neue&quot;\">  •  Philadelphia  •  </span><span style=\"font-family:&quot;Helvetica Neue&quot;\">Washington, D.C.</span><br></p><p style=\"color:rgb(34,34,34);margin:0px 0px 2px;line-height:normal\"><span style=\"font-family:arial,sans-serif\"><b><a href=\"https://grafik.agency/\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">grafik.agency</font></a><font color=\"#3db3b5\">   <font color=\"#3db3b5\"><a href=\"https://instagram.com/grafikagency\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">instagram</font></a>   <a href=\"https://linkedin.com/company/grafik\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">linkedin</font></a></font></font><font color=\"#3db3b5\"> </font></b></span></p></div></div></div><br><div></div></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Tue, Sep 23, 2025 at 10:28 AM Rick &lt;rick@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex\">\r\n\r\n\r\n\r\n    <div id=\"m_-5257253216587140171m_-6971739334956016662m_-3361122506656212532m_6920436297612873467m_-2301860473099566765m_-5563736346807328379bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Hi Ian,</div><div id=\"m_-5257253216587140171m_-6971739334956016662m_-3361122506656212532m_6920436297612873467m_-2301860473099566765m_-5563736346807328379bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Thanks for the response.</div><div id=\"m_-5257253216587140171m_-6971739334956016662m_-3361122506656212532m_6920436297612873467m_-2301860473099566765m_-5563736346807328379bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">It was quick enough. </div><div id=\"m_-5257253216587140171m_-6971739334956016662m_-3361122506656212532m_6920436297612873467m_-2301860473099566765m_-5563736346807328379bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">How does next week look?</div><div id=\"m_-5257253216587140171m_-6971739334956016662m_-3361122506656212532m_6920436297612873467m_-2301860473099566765m_-5563736346807328379bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Thanks again,</div><div id=\"m_-5257253216587140171m_-6971739334956016662m_-3361122506656212532m_6920436297612873467m_-2301860473099566765m_-5563736346807328379bloop_customfont\" style=\"font-family:Helvetica,Arial;font-size:13px;margin:0px\">Rick</div> <br> <div id=\"m_-5257253216587140171m_-6971739334956016662m_-3361122506656212532m_6920436297612873467m_-2301860473099566765m_-5563736346807328379bloop_sign_1758637591710331904\">\r\n\r\n\r\n\r\n          \r\n       \r\n    Rick Mislan, PhD<br><div><a href=\"https://mavrix.onehttps://mavrix.onehttps://mavrix.one\" target=\"_blank\">https://mavrix.one</a></div><div><img style=\"height: 11px;\"></div>\r\n\r\n\r\n\r\n       \r\n</div> <br><p>On September 23, 2025 at 09:31:55, Ian Olsen (<a href=\"mailto:ian@grafik.com\" target=\"_blank\">ian@grafik.com</a>) wrote:</p> <blockquote type=\"cite\"><span><div><div></div><div><div dir=\"ltr\"><div>Hi Rick,</div><div><br></div><div>Apologies for the late reply. Thanks for reaching out to Grafik. We&#39;re happy to talk through your branding &amp; campaign needs soup to nuts. We have some openings tomorrow at 10 or 10:30am, or Thursday between 2-5pm ET. Let me know if that works on your end and we can get it on the books.</div><div><br></div><div>Look forward to hearing from you soon.</div><div><br></div><div>Thanks,</div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0px 0px 2px;line-height:normal\"><br><font color=\"#222222\" face=\"arial, sans-serif\"><b>Ian Olsen</b></font><br></p><p style=\"margin:0px 0px 2px;line-height:normal\"><font color=\"#222222\" face=\"arial, sans-serif\"><span>Business Development Manager</span></font><span style=\"color:rgb(34,34,34);font-family:arial,sans-serif\">  •<span>  </span><b>P</b> (</span><font color=\"#222222\" face=\"arial, sans-serif\"><span>703) 249-9771</span></font></p><p style=\"color:rgb(34,34,34);margin:0px 0px 2px;line-height:normal\"><b style=\"font-family:arial,sans-serif\">Grafik</b><span style=\"font-family:&quot;Helvetica Neue&quot;\">  •  Philadelphia  •  </span><span style=\"font-family:&quot;Helvetica Neue&quot;\">Washington, D.C.</span><br></p><p style=\"color:rgb(34,34,34);margin:0px 0px 2px;line-height:normal\"><span style=\"font-family:arial,sans-serif\"><b><a href=\"https://grafik.agency/\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">grafik.agency</font></a><font color=\"#3db3b5\">   <font color=\"#3db3b5\"><a href=\"https://instagram.com/grafikagency\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">instagram</font></a>   <a href=\"https://linkedin.com/company/grafik\" style=\"color:rgb(17,85,204)\" target=\"_blank\"><font color=\"#3db3b5\">linkedin</font></a></font></font><font color=\"#3db3b5\"> </font></b></span></p></div></div></div><div></div></div>\r\n\r\n\r\n\r\n</div></div></span></blockquote>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</blockquote></div><div></div></div>\r\n\r\n\r\n\r\n</div></div></span></blockquote></blockquote></div><img src=\"https://c3chr04.na1.hs-salescrm-engage.com/Cto/F9+23284/c3chr04/R5Q8b47KQW174dQh1kQnsgW3C6vB320TTh4W3LDP5q1Q68ztW25d0xB1G9Wn6W1QsWFK3z8hH2W22z0GD1Z0NBmf1-_dqx12\" alt=\"\" height=\"1\" width=\"1\" style=\"display: none;\"><div></div><div id=\"m_-5257253216587140171m_-6971739334956016662m_-3361122506656212532m_6920436297612873467data-hbsasc-v0-f0a73054-d677-4c93-b7a3-427e281c6c20\"></div></div>\r\n\r\n</blockquote></div><div><br clear=\"all\"></div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div><div dir=\"ltr\"><p style=\"margin:0px 0px 2px;line-height:normal;font-family:Arial;color:rgb(61,179,181)\"><span><b>—</b></span></p><p style=\"color:rgb(0,0,0);margin:0px 0px 3px;line-height:normal;font-family:Arial\"><span><b>Tanya Nazarian</b></span></p><p style=\"color:rgb(0,0,0);margin:0px 0px 2px;line-height:normal;font-family:Arial\"><span>SVP, Growth  • <b>T</b> 703.299.5984</span></p><p style=\"color:rgb(0,0,0);margin:0px 0px 2px;line-height:normal;font-family:Arial\"><span><b>Grafik</b>  •  Washington, DC </span>• Philadelphia, PA </p><p style=\"color:rgb(0,0,0);margin:0px 0px 2px;line-height:normal;font-family:Arial\"><b><span><a href=\"https://grafik.agency/\" target=\"_blank\"><font color=\"#3db3b5\">grafik.agency</font></a></span><span><font color=\"#3db3b5\">   <font color=\"#3db3b5\"><a href=\"https://instagram.com/grafikagency\" target=\"_blank\"><span><font color=\"#3db3b5\">instagram</font></span></a>   <a href=\"https://linkedin.com/company/grafik\" target=\"_blank\"><span><font color=\"#3db3b5\">linkedin</font></span></a></font></font><font color=\"#3db3b5\">  </font></span></b></p><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px\"></div></div></div></div></div>\r\n\r\n</blockquote></div><div><br clear=\"all\"></div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div><div dir=\"ltr\"><p style=\"margin:0px 0px 2px;line-height:normal;font-family:Arial;color:rgb(61,179,181)\"><span><b>—</b></span></p><p style=\"color:rgb(0,0,0);margin:0px 0px 3px;line-height:normal;font-family:Arial\"><span><b>Tanya Nazarian</b></span></p><p style=\"color:rgb(0,0,0);margin:0px 0px 2px;line-height:normal;font-family:Arial\"><span>SVP, Growth  • <b>T</b> 703.299.5984</span></p><p style=\"color:rgb(0,0,0);margin:0px 0px 2px;line-height:normal;font-family:Arial\"><span><b>Grafik</b>  •  Washington, DC </span>• Philadelphia, PA </p><p style=\"color:rgb(0,0,0);margin:0px 0px 2px;line-height:normal;font-family:Arial\"><b><span><a href=\"https://grafik.agency/\" target=\"_blank\"><font color=\"#3db3b5\">grafik.agency</font></a></span><span><font color=\"#3db3b5\">   <font color=\"#3db3b5\"><a href=\"https://instagram.com/grafikagency\" target=\"_blank\"><span><font color=\"#3db3b5\">instagram</font></span></a>   <a href=\"https://linkedin.com/company/grafik\" target=\"_blank\"><span><font color=\"#3db3b5\">linkedin</font></span></a></font></font><font color=\"#3db3b5\">  </font></span></b></p><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px\"></div></div></div></div></div></div>\r\n\r\n</div></div></span></blockquote></blockquote></div><div><br clear=\"all\"></div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div><div dir=\"ltr\"><p style=\"margin:0px 0px 2px;line-height:normal;font-family:Arial;color:rgb(61,179,181)\"><span><b>—</b></span></p><p style=\"color:rgb(0,0,0);margin:0px 0px 3px;line-height:normal;font-family:Arial\"><span><b>Tanya Nazarian</b></span></p><p style=\"color:rgb(0,0,0);margin:0px 0px 2px;line-height:normal;font-family:Arial\"><span>SVP, Growth  • <b>T</b> 703.299.5984</span></p><p style=\"color:rgb(0,0,0);margin:0px 0px 2px;line-height:normal;font-family:Arial\"><span><b>Grafik</b>  •  Washington, DC </span>• Philadelphia, PA </p><p style=\"color:rgb(0,0,0);margin:0px 0px 2px;line-height:normal;font-family:Arial\"><b><span><a href=\"https://grafik.agency/\" target=\"_blank\"><font color=\"#3db3b5\">grafik.agency</font></a></span><span><font color=\"#3db3b5\">   <font color=\"#3db3b5\"><a href=\"https://instagram.com/grafikagency\" target=\"_blank\"><span><font color=\"#3db3b5\">instagram</font></span></a>   <a href=\"https://linkedin.com/company/grafik\" target=\"_blank\"><span><font color=\"#3db3b5\">linkedin</font></span></a></font></font><font color=\"#3db3b5\">  </font></span></b></p><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px\"></div></div></div></div></div>\r\n</blockquote></div><div><br clear=\"all\"></div><div><br></div><span class=\"gmail_signature_prefix\">-- </span><br><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div><div dir=\"ltr\"><p style=\"margin:0px 0px 2px;line-height:normal;font-family:Arial;color:rgb(61,179,181)\"><span><b>—</b></span></p><p style=\"color:rgb(0,0,0);margin:0px 0px 3px;line-height:normal;font-family:Arial\"><span><b>Tanya Nazarian</b></span></p><p style=\"color:rgb(0,0,0);margin:0px 0px 2px;line-height:normal;font-family:Arial\"><span>SVP, Growth  • <b>T</b> 703.299.5984</span></p><p style=\"color:rgb(0,0,0);margin:0px 0px 2px;line-height:normal;font-family:Arial\"><span><b>Grafik</b>  •  Washington, DC </span>• Philadelphia, PA </p><p style=\"color:rgb(0,0,0);margin:0px 0px 2px;line-height:normal;font-family:Arial\"><b><span><a href=\"https://grafik.agency/\" target=\"_blank\"><font color=\"#3db3b5\">grafik.agency</font></a></span><span><font color=\"#3db3b5\">   <font color=\"#3db3b5\"><a href=\"https://instagram.com/grafikagency\" target=\"_blank\"><span><font color=\"#3db3b5\">instagram</font></span></a>   <a href=\"https://linkedin.com/company/grafik\" target=\"_blank\"><span><font color=\"#3db3b5\">linkedin</font></span></a></font></font><font color=\"#3db3b5\">  </font></span></b></p><div style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px\"></div></div></div></div></div>','Hi Rick,\r\n\r\nI hope you had a restful holiday weekend. I wanted to touch base to see if\r\nyou were ready to regroup on the Mavrix story. Looking forward to hearing\r\nback. Thanks!\r\n\r\nOn Fri, Oct 24, 2025 at 9:13 AM Tanya Nazarian <tanya@grafik.com> wrote:\r\n\r\n> Hi Rick,\r\n>\r\n> I appreciate the update and love to hear that you\'re focused on the\r\n> Mavrix1 story. We\'ll be on the lookout for next steps soon. Have a great\r\n> weekend!\r\n>\r\n> On Fri, Oct 24, 2025 at 7:44 AM Rick <rick@mavrix.one> wrote:\r\n>\r\n>> Hi Tanya,\r\n>> Sorry we’ve been a bit busy on our end….\"building our story\" you could\r\n>> say…\r\n>> That all said, thanks for the quote and getting it to us so quickly.\r\n>> I think we’ll be in touch later this month if not next to discuss some\r\n>> next steps.\r\n>> Thanks for your patience. Talk soon.\r\n>> Rick\r\n>>\r\n>> On October 23, 2025 at 10:17:54, Tanya Nazarian (tanya@grafik.com) wrote:\r\n>>\r\n>> Hi Rick,\r\n>>\r\n>> I hope all is well. I wanted to follow up with you on the ROM we shared.\r\n>> Do you have a few minutes to connect one day next week? As mentioned, it\r\n>> would be great to bring in our strategy team to continue the conversation.\r\n>>\r\n>> Thanks!\r\n>>\r\n>> On Fri, Oct 3, 2025 at 5:28 PM Tanya Nazarian <tanya@grafik.com> wrote:\r\n>>\r\n>>> Rick,\r\n>>>\r\n>>> Thank you again for your interest in Grafik. We\'ve taken the time to\r\n>>> consider your near-term goals and the current state of the Mavrix1 brand,\r\n>>> and feel well-equipped to deliver on your needs. Per our conversation, we\r\n>>> wanted to share with you a rough order of magnitude that outlines what you\r\n>>> can expect when working with our team.\r\n>>>\r\n>>> Take a look, and if you remain interested in continuing the\r\n>>> conversation, I recommend setting up a follow-up discussion with our brand\r\n>>> and client strategy teams to take a deeper dive into what it will actually\r\n>>> take to get the brand where it needs to be. Let us know your thoughts, and\r\n>>> please confirm receipt when you get a moment.\r\n>>>\r\n>>> Have a great weekend!\r\n>>>\r\n>>>\r\n>>> On Wed, Sep 24, 2025 at 3:46 PM Ian Olsen <ian@grafik.com> wrote:\r\n>>>\r\n>>>> Hi Rick,\r\n>>>>\r\n>>>> Let\'s do 3-3:30pm. I can shoot over an invite here shortly!\r\n>>>>\r\n>>>> Much appreciated, glad we can work it out.\r\n>>>>\r\n>>>> Look forward to chatting,\r\n>>>>\r\n>>>>\r\n>>>> *Ian Olsen*\r\n>>>>\r\n>>>> Business Development Manager  •  *P* (703) 249-9771\r\n>>>>\r\n>>>> *Grafik*  •  Philadelphia  •  Washington, D.C.\r\n>>>>\r\n>>>> *grafik.agency <https://grafik.agency/>   instagram\r\n>>>> <https://instagram.com/grafikagency>   linkedin\r\n>>>> <https://linkedin.com/company/grafik> *\r\n>>>>\r\n>>>>\r\n>>>> On Wed, Sep 24, 2025 at 3:30 PM Rick <rick@mavrix.one> wrote:\r\n>>>>\r\n>>>>> Can we still take tomorrow 2-5:\r\n>>>>> Sometime in that range???\r\n>>>>> Sorry for the confusion.\r\n>>>>> Thanks!\r\n>>>>> Rick\r\n>>>>>\r\n>>>>> On September 23, 2025 at 11:42:41, Ian Olsen (ian@grafik.com) wrote:\r\n>>>>>\r\n>>>>> Hi Rick,\r\n>>>>>\r\n>>>>> Next week looks good on our end. We can do Monday 1-3:30pm or\r\n>>>>> Wednesday is mostly open.\r\n>>>>>\r\n>>>>> Let me know what works for you.\r\n>>>>>\r\n>>>>> Thanks,\r\n>>>>>\r\n>>>>>\r\n>>>>> *Ian Olsen*\r\n>>>>>\r\n>>>>> Business Development Manager  •  *P* (703) 249-9771\r\n>>>>>\r\n>>>>> *Grafik*  •  Philadelphia  •  Washington, D.C.\r\n>>>>>\r\n>>>>> *grafik.agency <https://grafik.agency/>   instagram\r\n>>>>> <https://instagram.com/grafikagency>   linkedin\r\n>>>>> <https://linkedin.com/company/grafik> *\r\n>>>>>\r\n>>>>>\r\n>>>>> On Tue, Sep 23, 2025 at 10:28 AM Rick <rick@mavrix.one> wrote:\r\n>>>>>\r\n>>>>>> Hi Ian,\r\n>>>>>> Thanks for the response.\r\n>>>>>> It was quick enough.\r\n>>>>>> How does next week look?\r\n>>>>>> Thanks again,\r\n>>>>>> Rick\r\n>>>>>>\r\n>>>>>> Rick Mislan, PhD\r\n>>>>>> https://mavrix.one\r\n>>>>>> <https://mavrix.onehttps://mavrix.onehttps://mavrix.one>\r\n>>>>>>\r\n>>>>>> On September 23, 2025 at 09:31:55, Ian Olsen (ian@grafik.com) wrote:\r\n>>>>>>\r\n>>>>>> Hi Rick,\r\n>>>>>>\r\n>>>>>> Apologies for the late reply. Thanks for reaching out to Grafik.\r\n>>>>>> We\'re happy to talk through your branding & campaign needs soup to nuts. We\r\n>>>>>> have some openings tomorrow at 10 or 10:30am, or Thursday between 2-5pm ET.\r\n>>>>>> Let me know if that works on your end and we can get it on the books.\r\n>>>>>>\r\n>>>>>> Look forward to hearing from you soon.\r\n>>>>>>\r\n>>>>>> Thanks,\r\n>>>>>>\r\n>>>>>>\r\n>>>>>> *Ian Olsen*\r\n>>>>>>\r\n>>>>>> Business Development Manager  •  *P* (703) 249-9771\r\n>>>>>>\r\n>>>>>> *Grafik*  •  Philadelphia  •  Washington, D.C.\r\n>>>>>>\r\n>>>>>> *grafik.agency <https://grafik.agency/>   instagram\r\n>>>>>> <https://instagram.com/grafikagency>   linkedin\r\n>>>>>> <https://linkedin.com/company/grafik> *\r\n>>>>>>\r\n>>>>>>\r\n>>>\r\n>>> --\r\n>>>\r\n>>> *—*\r\n>>>\r\n>>> *Tanya Nazarian*\r\n>>>\r\n>>> SVP, Growth  • *T* 703.299.5984\r\n>>>\r\n>>> *Grafik*  •  Washington, DC • Philadelphia, PA\r\n>>>\r\n>>> *grafik.agency <https://grafik.agency/>   instagram\r\n>>> <https://instagram.com/grafikagency>   linkedin\r\n>>> <https://linkedin.com/company/grafik>  *\r\n>>>\r\n>>\r\n>>\r\n>> --\r\n>>\r\n>> *—*\r\n>>\r\n>> *Tanya Nazarian*\r\n>>\r\n>> SVP, Growth  • *T* 703.299.5984\r\n>>\r\n>> *Grafik*  •  Washington, DC • Philadelphia, PA\r\n>>\r\n>> *grafik.agency <https://grafik.agency/>   instagram\r\n>> <https://instagram.com/grafikagency>   linkedin\r\n>> <https://linkedin.com/company/grafik>  *\r\n>>\r\n>>\r\n>\r\n> --\r\n>\r\n> *—*\r\n>\r\n> *Tanya Nazarian*\r\n>\r\n> SVP, Growth  • *T* 703.299.5984\r\n>\r\n> *Grafik*  •  Washington, DC • Philadelphia, PA\r\n>\r\n> *grafik.agency <https://grafik.agency/>   instagram\r\n> <https://instagram.com/grafikagency>   linkedin\r\n> <https://linkedin.com/company/grafik>  *\r\n>\r\n\r\n\r\n-- \r\n\r\n*—*\r\n\r\n*Tanya Nazarian*\r\n\r\nSVP, Growth  • *T* 703.299.5984\r\n\r\n*Grafik*  •  Washington, DC • Philadelphia, PA\r\n\r\n*grafik.agency <https://grafik.agency/>   instagram\r\n<https://instagram.com/grafikagency>   linkedin\r\n<https://linkedin.com/company/grafik>  *',0,0,0,0,0,0,'2025-12-02 17:16:55','2025-12-04 14:05:22','2025-12-04 14:05:22','2025-12-04 14:05:22',NULL,NULL,NULL),
(102,4,'<CAGOCFXiDFeGwG16ZuY2E+cJH0jVYeWps_vaqF8GoXY1akdNSVg@mail.gmail.com>',NULL,NULL,'Fwd: BMS and component cost assumptions','Nathan@lithiumbatterycompany.com','Nathan Staron','<div><br clear=\"all\"><br clear=\"all\"><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div></div><div><br></div><div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">---------- Forwarded message ---------<br>From: <strong class=\"gmail_sendername\" dir=\"auto\">Jarrett Brownfield</strong> <span dir=\"auto\">&lt;<a href=\"mailto:jarrett@lithiumbatterycompany.com\">jarrett@lithiumbatterycompany.com</a>&gt;</span><br>Date: Tue, Dec 2, 2025 at 11:19 AM<br>Subject: BMS and component cost assumptions<br>To: Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\">jordan@lithiumbatterycompany.com</a>&gt;<br>CC: Nick Powell &lt;<a href=\"mailto:nick@lithiumbatterycompany.com\">nick@lithiumbatterycompany.com</a>&gt;, Nathan Staron &lt;<a href=\"mailto:nathan@lithiumbatterycompany.com\">nathan@lithiumbatterycompany.com</a>&gt;<br></div><br><br>\r\n\r\n\r\n\r\n\r\n<div dir=\"ltr\">\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\nJordan / Nick, <br>\r\n<br>\r\nComponent Cost per Pack and BMS cost per pack on the &quot;Battery_Production_Pipeline&quot; in columns O and P, respectively. These two figures should only include components and BMS with cells accounted for separately (similar to sol-ark attached)</div>\r\n<div id=\"m_-3776843232282097020Signature\">\r\n<div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)\">\r\n<br>\r\n</div>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:11pt;color:black\"><b>Jarrett Brownfield </b></span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt;color:black;background-color:white\">Partner\r\n</span><span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt;color:black\">I Chief Financial Officer</span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt;color:black\">Lithium Battery Company</span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:10pt;color:black\">Direct: (812) 552-6854</span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:9pt;color:rgb(0,36,81)\"><u><a style=\"color:rgb(0,36,81);margin:0px\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"m_-3776843232282097020OWAac83a8ff-6f02-db1d-6141-850df7245244\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\">Jarrett@</a>lithiumbatterycompany<a style=\"color:rgb(0,36,81);margin:0px\" title=\"mailto:Jarrett.brownfield@trackmastermobility.com\" id=\"m_-3776843232282097020OWAb228ec0f-2ea2-43d1-650e-dc74ef216e65\" href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" target=\"_blank\">.com</a></u></span></p>\r\n<p style=\"text-align:left;text-indent:0px;background-color:rgb(255,255,255);margin:0in\">\r\n<span style=\"font-family:Arial,sans-serif,serif,EmojiFont;font-size:9pt;color:rgb(0,36,81)\"><u><a style=\"color:rgb(0,36,81);margin:0px\" title=\"https://lithiumbatterycompany.com/\" id=\"m_-3776843232282097020OWAc171676b-c3df-e247-1f58-f4a9ed9e02eb\" href=\"https://lithiumbatterycompany.com/\" target=\"_blank\">Lithium\r\n Battery Company</a></u></span></p>\r\n</div>\r\n</div>\r\n\r\n</div></div>','<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\n---------- Forwarded message ---------\r\nFrom: Jarrett Brownfield <jarrett@lithiumbatterycompany.com>\r\nDate: Tue, Dec 2, 2025 at 11:19 AM\r\nSubject: BMS and component cost assumptions\r\nTo: Jordan Wroblewski <jordan@lithiumbatterycompany.com>\r\nCC: Nick Powell <nick@lithiumbatterycompany.com>, Nathan Staron <\r\nnathan@lithiumbatterycompany.com>\r\n\r\n\r\nJordan / Nick,\r\n\r\nComponent Cost per Pack and BMS cost per pack on the\r\n\"Battery_Production_Pipeline\" in columns O and P, respectively. These two\r\nfigures should only include components and BMS with cells accounted for\r\nseparately (similar to sol-ark attached)\r\n\r\n*Jarrett Brownfield *\r\n\r\nPartner I Chief Financial Officer\r\n\r\nLithium Battery Company\r\n\r\nDirect: (812) 552-6854\r\n\r\n*Jarrett@\r\n<Jarrett.brownfield@trackmastermobility.com>lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\n*Lithium Battery Company <https://lithiumbatterycompany.com/>*',1,0,0,0,0,0,'2025-12-02 17:21:25','2025-12-04 14:05:25','2025-12-04 14:05:25','2025-12-04 16:19:13',NULL,NULL,NULL),
(103,4,'<1764701278273.6896e622-be57-4cae-bc8f-70f9c4bbde14@bf03.hubspotemail.net>',NULL,NULL,'When a prime spins off, brand drives value','tanya@grafik.com','Tanya Nazarian','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional //EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"><html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:v=\"urn:schemas-microsoft-com:vml\" lang=\"en\"><head>\r\n    <title>When a prime spins off, brand drives value</title>\r\n    <meta property=\"og:title\" content=\"When a prime spins off, brand drives value\">\r\n    <meta name=\"twitter:title\" content=\"When a prime spins off, brand drives value\">\r\n    \r\n    \r\n    \r\n<meta name=\"x-apple-disable-message-reformatting\">\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\r\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\r\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n    <!--[if gte mso 9]>\r\n  <xml>\r\n    <o:OfficeDocumentSettings>\r\n      <o:AllowPNG/>\r\n      <o:PixelsPerInch>96</o:PixelsPerInch>\r\n    </o:OfficeDocumentSettings>\r\n    <w:WordDocument xmlns:w=\"urn:schemas-microsoft-com:office:word\">\r\n      <w:DontUseAdvancedTypographyReadingMail/>\r\n    </w:WordDocument>\r\n  </xml>\r\n  \r\n  <style>\r\n    ul > li {\r\n      text-indent: -1em;\r\n    }\r\n  </style>\r\n<![endif]-->\r\n<!--[if mso]>\r\n<style type=\"text/css\">\r\n body, td {font-family: Arial, Helvetica, sans-serif;}\r\n .hse-body-wrapper-table {background-color: #f2efea;}\r\n</style>\r\n<![endif]-->\r\n<!--[if mso | IE]>\r\n  <style type=\"text/css\">\r\n    .hse-column-container { border: none !important; padding: 0 !important; }\r\n  </style>\r\n<![endif]-->\r\n    \r\n      \r\n  \r\n  \r\n    \r\n  <meta name=\"generator\" content=\"HubSpot\"><meta property=\"og:url\" content=\"http://grafik-7.hs-sites.com/when-a-prime-spins-off-brand-drives-value\"><meta name=\"robots\" content=\"noindex,follow\"><!--[if !((mso)|(IE))]><!-- --><style type=\"text/css\">@media only screen and (max-width:639px){img.stretch-on-mobile,.hs_rss_email_entries_table img,.hs-stretch-cta .hs-cta-img{height:auto !important;width:100% !important}\r\n.display_block_on_small_screens{display:block}.hs_padded{padding-left:20px !important;padding-right:20px !important}\r\n.hs-hm,table.hs-hm{display:none}.hs-hd{display:block !important}table.hs-hd{display:table !important}\r\n}@media only screen and (max-width:639px){.hse-border-m{border-left:1px solid #cbd6e2 !important;border-right:1px solid #cbd6e2 !important;box-sizing:border-box}\r\n.hse-border-bottom-m{border-bottom:1px solid #cbd6e2 !important}.hse-border-top-m{border-top:1px solid #cbd6e2 !important}\r\n.hse-border-top-hm{border-top:none !important}.hse-border-bottom-hm{border-bottom:none !important}\r\n}.moz-text-html .hse-column-container{max-width:600px !important;width:600px !important}\r\n.moz-text-html .hse-column{display:table-cell;vertical-align:top}.moz-text-html .hse-section .hse-size-6{max-width:300px !important;width:300px !important}\r\n.moz-text-html .hse-section .hse-size-12{max-width:600px !important;width:600px !important}\r\n@media only screen and (min-width:640px){.hse-column-container{max-width:600px !important;width:600px !important}\r\n.hse-column{display:table-cell;vertical-align:top}.hse-section .hse-size-6{max-width:300px !important;width:300px !important}\r\n.hse-section .hse-size-12{max-width:600px !important;width:600px !important} }@media only screen and (max-width:639px){.hse-body-wrapper-td{padding-top:0px !important}\r\n#section_1747855946904 .hse-column-container{background-color:transparent !important}\r\n#section_1747855946904 .hse-column-container{background-color:transparent !important}\r\n}@media only screen and (max-width:639px){ #section_17468034824076 .hse-column-container{background-color:#151515 !important}\r\n}@media only screen and (max-width:639px){.hse-body-wrapper-td{padding-bottom:0px !important}\r\n#section_17468034857699 .hse-column-container{padding-top:0px !important;padding-bottom:10px !important}\r\n#section_17468034857699 .hse-column-container{background-color:#151515 !important}\r\n}</style><!--<![endif]--><style type=\"text/css\">#hs_body #hs_cos_wrapper_main a[x-apple-data-detectors]{color:inherit !important;text-decoration:none !important;font-size:inherit !important;font-family:inherit !important;font-weight:inherit !important;line-height:inherit !important}\r\na{text-decoration:underline}p{margin:0}body{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;-webkit-font-smoothing:antialiased;moz-osx-font-smoothing:grayscale}\r\ntable{border-spacing:0;mso-table-lspace:0;mso-table-rspace:0}table,td{border-collapse:collapse}\r\nimg{-ms-interpolation-mode:bicubic}p,a,li,td,blockquote{mso-line-height-rule:exactly}\r\n.ShadowHTML p,.sh-modified-inline p{margin:0}</style></head>\r\n  <body id=\"hs_body\" bgcolor=\"#f2efea\" style=\"margin:0 !important; padding:0 !important; font-family:Arial, sans-serif; font-size:15px; color:#000000; word-break:break-word\">\r\n    <div id=\"preview_text\" style=\"display:none;font-size:1px;color:#f2efea;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;\" lang=\"en\">The new acquisition environment is favoring companies with sharp positioning and clear purpose.</div>\r\n    \r\n<!--[if gte mso 9]>\r\n<v:background xmlns:v=\"urn:schemas-microsoft-com:vml\" fill=\"t\">\r\n    <v:fill type=\"tile\" size=\"100%,100%\" color=\"#ffffff\"/>\r\n</v:background>\r\n<![endif]-->\r\n    <div class=\"hse-body-background\" lang=\"en\" style=\"background-color:#f2efea\" bgcolor=\"#f2efea\">\r\n      <table role=\"presentation\" class=\"hse-body-wrapper-table\" cellpadding=\"0\" cellspacing=\"0\" style=\"margin:0; padding:0; width:100% !important; min-width:320px !important; height:100% !important\" width=\"100%\" height=\"100%\">\r\n        <tbody><tr>\r\n          <td class=\"hse-body-wrapper-td\" valign=\"top\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#000000; word-break:break-word; padding-top:20px; padding-bottom:20px\">\r\n            <div id=\"hs_cos_wrapper_main\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_dnd_area\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"dnd_area\">  <div id=\"section_1747855946904\" class=\"hse-section hse-section-first\" style=\"padding-left:0px; padding-right:0px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\">\r\n      <tr>\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column_1747855946904_0\" class=\"hse-column hse-size-12\">\r\n  <div id=\"hs_cos_wrapper_module_17478559469032\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div style=\"overflow:hidden\">\r\n  <table role=\"presentation\" class=\"hse-pre-header hse-secondary\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"text-align:right; font-family:Arial, sans-serif; font-size:12px; line-height:135%; color:#23496d; margin-bottom:0; padding:0\" align=\"right\">\r\n    <tbody>\r\n      <tr>\r\n        <td align=\"right\" valign=\"top\" style=\"color:#000000; word-break:break-word; text-align:right; font-family:Arial, sans-serif; font-size:12px; padding:10px 0; margin-bottom:0; line-height:135%\">\r\n          <a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VW8FJj1gyPZPW6nNyqC96QXV8VLsY3L5GBxHjN2nfYxK5nXHCW7lCGcx6lZ3lyW9lQcCb5vCc-6W2Qkrqw7y7Ph6W8N7yN51tQKwkW2w6ZJw2M3SnKN8WJjXkF3h3NW4LlnVk4hvBljW2gVwGg8jPrwrW5cm6wt68Mz8fW8VHxgc21LPQyN5kjcpStJCZbW5jSr903GLlbjN6PzXdTx1GJ8W37Ck0T7WkmBPW7f1VBC6zmV7fW2Mnh-k5FVjCXW42Fgq43bskd-W7C7LqY86s3SWW5LWPJd4SDpTGV9tppc2T3DbYW3VT9V13dDbJpW66MvPL8nnL3wW4dGFKj2CBFMfW74FrJH7PcxYqW9hC-yk4V8TwMW5JbHTH8JGp0TW4Qg8d557Sr2MW4pV5b79l2V6TMFvHn3MCM2YW20kJqx5_JC2zN7nfbZt1JlLWW3C42mF5MWxSdW5TvbZv2MqhxKW8N9V665y2KRsW2tCdVW8mVnH4W6xMzb81Xfcc6Vf-6G997S2GtW1N9sgB9kg3yjV9yt8-4v2sGDW2sWGcp36X4MQW59mSCF1XMH7Rf38FV3Y04\" style=\"color:#d01300; font-weight:normal; text-decoration:underline; font-style:normal\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"/dZSk7EX\" target=\"_blank\">View in browser</a>\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n</div></div>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"builtin_section-2\" class=\"hse-section\" style=\"padding-left:0px; padding-right:0px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#ffffff\" bgcolor=\"#ffffff\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#ffffff\">\r\n      <tr style=\"background-color:#ffffff;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"builtin_column_2-0\" class=\"hse-column hse-size-12\">\r\n  <div id=\"hs_cos_wrapper_module_16389778621911\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table class=\"hse-image-wrapper\" role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td align=\"center\" valign=\"top\" style=\"font-family:Arial, sans-serif; color:#000000; word-break:break-word; text-align:center; padding:0px; font-size:0px\">\r\n        <a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VW8FJj1gyPZPW6nNyqC96QXV8VLsY3L5GBxHjN2nfYwx5nXHCW50kH_H6lZ3pJW8HrN7b6WDNWsW6V0HjC8khZyfW4Pv5g97t3mrMW2Qq0QK5VmnNnW7zSj8w7Cfpt8W6PGcVg80vV46W1jK6WF2WrB5vW7yL6FF5qHb40W72lrRY82tT8CW1nDrSF80SVn0W707dLr6dr3c_W4Nt9b-6v6N1sW98Mn6p2c_Cp-W2GrRL-1r1Q5LW8JFZ3R8RWK-YN38TtGWTv-BdW3Kpb2Y8nWcqVW96hqFv687jZCVVBCbV1GR00yVSd7w256J9fKW6mLQ-v55rtB7W848_TQ8cjl0tW7TMJrB8vyNnbN8Sn4HMjyMMhVMS-sT5CjvmHVT2sjS8gJCC_N7DWxZ5bX1hPW4JSrJL3ZzFppW6811ss3FNdG2W168Wjx3sFCDTW1xg7Dz93LRchW99s-XX4R4VHRd-pWm604\" target=\"_blank\" style=\"color:#00a4bd\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"IBRbojCh\">\r\n        <img alt=\"B2B Tech email header (2)\" src=\"https://hs-505301.f.hubspotemail.net/hub/505301/hubfs/B2B%20Tech%20email%20header%20(2).png?width=1200&amp;upscale=true&amp;name=B2B%20Tech%20email%20header%20(2).png\" style=\"outline:none; text-decoration:none; border:none; max-width:100%; font-size:16px\" width=\"600\" align=\"middle\" class=\"stretch-on-mobile\">\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#000000; word-break:break-word; padding:20px 20px 0px\"><div id=\"hs_cos_wrapper_builtin_module_2_0_0\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_builtin_module_2_0_0_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><p style=\"line-height:175%\"><span style=\"color: #000000; font-family: Arial, sans-serif;\">Hi Rick,</span></p>\r\n<p data-start=\"470\" data-end=\"643\" style=\"line-height:175%\">Spin-offs are accelerating across the defense sector, and the reason is becoming clear. In the new acquisition environment, focus is not just operational. It is financial.</p>\r\n<p data-start=\"645\" data-end=\"956\" style=\"line-height:175%\"><br>At the Baird 2025 Defense and Government Conference, leaders from across the industry made the same point. The <a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VW8FJj1gyPZPW6nNyqC96QXV8VLsY3L5GBxHjN2nfYwx5nXHCW50kH_H6lZ3nsW3Tr_gL5C6d4zW8524mm8D3cK9W3YPYlr3YyKnzW8BtzdZ4fq1bLW2nGdZD3H7pJ4W2-ybRJ6_VZSPW3L5Ycj67H-51VLx8SS1GvlW8W8fn6PX8jW6LZW6_KSRh3D-JMnW4qkHJ07rR8FLW6kvwm47lM03XW1PPTKK2ZJ3CrW2z-3Tp6-9VKCN4gpmlMcY5rGVqJ4Vw44Vv05W72dvcT6RxSt7W1M5GPP1wD7rmW5DVR_13knMdnW5VfhHH7SVkWcW3npGWg60841bW7FfQgZ4S6BxgW29LPCP76fCdtW7rmJCh7qP0CbW1SMYSc6F2DP3Vj58sD5w40PhW9fDqcw1K-yXXW11jjqr93fbJGW4PnYwr6pv_J4W26ZJMX8FD0SYW5C3g0s3jFdYTW4KNCg261znBMf6Qj_Zv04\" rel=\"noopener\" style=\"color:#d01300\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"RFAhPYwj\" target=\"_blank\">Warfighting Acquisition System</a> is shifting attention from incumbency to relevance. Companies that show clear mission alignment are gaining momentum faster than those relying on size or legacy alone.</p>\r\n<p data-start=\"958\" data-end=\"997\" style=\"line-height:175%\"><strong data-start=\"958\" data-end=\"995\"><br>Recent moves reinforce the trend:</strong></p>\r\n<ul data-start=\"998\" data-end=\"1225\" style=\"line-height:175%\">\r\n<li data-start=\"998\" data-end=\"1059\">\r\n<p data-start=\"1000\" data-end=\"1059\" style=\"line-height:175%\">KBR’s planned carve-out of Mission Technologies Solutions</p>\r\n</li>\r\n<li data-start=\"1060\" data-end=\"1102\">\r\n<p data-start=\"1062\" data-end=\"1102\" style=\"line-height:175%\"><a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VW8FJj1gyPZPW6nNyqC96QXV8VLsY3L5GBxHjN2nfYy03qn9qW7Y8-PT6lZ3lqW4Wf3wq6Z2pfYW2Zxsyw58H0d_W4vFrFJ7bQ1DNW3G-nm15CBX5gW1LRFlr2pPc7_N6tV8nKM1-lGW10cJR02DGK1RW9fjkZm7NlCyXVcWJck7Bp00LW173vMf5S6QVhN6gL87R6RgY4W1JXt094clq1ZVjrZHd21Dbr_W5SDvTR34sPJNW2ZSyqz7D2w2mW2Ly1pp91V5zxN26vn0L1K0w_VF9sBQ9bWXdhW6jnWT23fSRj4W2BH2r17XQ7C5W7knG1H2YwtnWW8Rt3wl7-WmpCW4CDtxg83yff6W96T-Wh1vhfJhVpnH-j8q4hDCW8cQkf-1r0f09f8bcF-s04\" rel=\"noopener\" style=\"color:#d01300\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"36AG222V\" target=\"_blank\">Maxar’s</a> split into Vantor and Lanteris</p>\r\n</li>\r\n<li data-start=\"1103\" data-end=\"1156\">\r\n<p data-start=\"1105\" data-end=\"1156\" style=\"line-height:175%\">Intuitive Machines’ rapid acquisition of Lanteris</p>\r\n</li>\r\n<li data-start=\"1157\" data-end=\"1225\">\r\n<p data-start=\"1159\" data-end=\"1225\" style=\"line-height:175%\">Defense tech valuation multiples far outpacing traditional primes</p>\r\n</li>\r\n</ul>\r\n<p data-start=\"1227\" data-end=\"1455\" style=\"line-height:175%\">When a business separates from its parent, the brand becomes the signal that tells customers and investors what the new entity stands for and why it exists.<br><br></p>\r\n<p data-start=\"1457\" data-end=\"1664\" style=\"line-height:175%\">In <a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VW8FJj1gyPZPW6nNyqC96QXV8VLsY3L5GBxHjN2nfYwx5nXHCW50kH_H6lZ3lkW7whKt15tvH5_W2JKHnS2NZrXbVrxvLh5vl3_WN2nFMDtzvmSrW5TQlKB5gB08SW3TQGY64FLB-MW4T5Sl41VtPq3W1fzSP-4Z91m3W9cCFc96Ltbw5W5WFp7c4prQ_JV3nPz26vVBVcV76XcS2s0fBsW81SxKF7n1BjvVnnkqF8yRm3BW3KF94d2C1DSRW4Wk4BK2FMVGtW8Lkv228-wj_cW6LXBrM2DF-fDW4C-DCd5sm_zyW5NvZm46nmqLPN6h83fjL2xZXW9hrzvd6ncdfHW7T1zDz8xk2c1W417jqz8-jwyQW7y7BC_3vT70TW3Vkfpz3glsq1W6lGhhY38XnqCW8--g-c7J13NNW8M_3VW5Jl4KgW5MFB7h9kXWmrW417F_S1yCBmpW6jL2J456M89Pf7vqtfT04\" rel=\"noopener\" style=\"color:#d01300\" data-hs-link-id=\"1\" data-hs-link-id-v2=\"cVB6nSLQ\" target=\"_blank\">our latest blog</a>, we outline the brand imperatives every carve-out should prioritize to capture full value, including narrative clarity, investor confidence, customer reassurance, and internal alignment.</p>\r\n<p data-start=\"1209\" data-end=\"1281\" style=\"line-height:175%\">&nbsp;</p></div></div></td></tr></tbody></table>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#000000; word-break:break-word; padding:0px 20px 10px\"><div id=\"hs_cos_wrapper_module_17521663901933\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse:separate!important\">\r\n    <tbody><tr>\r\n      <td align=\"center\" valign=\"middle\" bgcolor=\"#ff2d0f\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#000000; word-break:break-word; border-radius:4px; cursor:auto; background-color:#ff2d0f; mso-padding-alt:12px 18px\">\r\n        <a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VW8FJj1gyPZPW6nNyqC96QXV8VLsY3L5GBxHjN2nfYwx5nXHCW50kH_H6lZ3mnW3Zb3NN4K5M9xW3W9G6m5KyKSlW8ZV-t51_kCB4N944R4CmGvDDW8_rCV_9h-_msVWv3zF4t0Sc6W3GVr7Z2JZw5JW3LY4y04dHYMlW4RKjjR6jDKMsW6CmpYy856F7vW5HmT7h3l226kW3mmP3d1dXBXtW1VXK084Df7-tN8Ktbn_K0rgbW1bTmxG8j4QbCN3hFhPNrZRZ-W7PPSbk5c_vCPW1BV-Yc8pN78jN96qWK_ZMsqDN2Qnft_m3RxSW8s5zTF4Ygc4SW408PhZ7P7xW7W6Ztnpt667dPZW1v1Cdh1fvzw5W6btzLq5djM9lV9L4XD9lyssqW25RcNl29ggYKW7C8V7144t-cNW7dkGpZ5xJm3GW7Gggwb3vvkp_W1QPgCL92DkcjVQYNKs5mjx51d95_Lb04\" target=\"_blank\" style=\"color:#00a4bd; font-size:16px; font-family:Arial, sans-serif; Margin:0; text-transform:none; text-decoration:none; padding:12px 18px; display:block\" data-hs-link-id=\"2\" data-hs-link-id-v2=\"F1uBLoDq\">\r\n          <strong style=\"color:#ffffff;font-weight:bold;text-decoration:none;font-style:normal;\">Read the full blog</strong>\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody></table></div></td></tr></tbody></table>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#000000; word-break:break-word; padding:5px 30px 0px\"><div id=\"hs_cos_wrapper_module_17521664251794\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_17521664251794_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><p style=\"line-height:175%\"><span style=\"color: #3574e3;\"><a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VW8FJj1gyPZPW6nNyqC96QXV8VLsY3L5GBxHjN2nfYxK3qn9qW7lCdLW6lZ3mFW67Xlkh15vBktW5673lJ63BLS9W5bCCnx5fBgK5W8D5SjT3F9VnsW48W7zl3YhgkpW3tGx195RnrPxW4fm4nZ1Q4yXnW3DwFBB5SxdHDVCpCgK5vN3VFW4s2rtt2-b99RVfyssm3dT4JqW32FlYc6TkBglW2ZF5dD7-RpKhW1Z8WDg7YV45tW8wt8RW39w20jW7C2bVZ1kG4BGW7tV_4n8qjC4xW125Whc2NCGXRW4Ghmz41DrwnNW28BFfR43kWWDN6S_DmHMyMDZN297G-dCjTwTVn-4nP2WNGRWW6gkKLR7yGFKhf364f9K04\" style=\"color:#3574e3; text-decoration:none; font-weight:normal\" rel=\"noopener\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"B1oh/uBP\" target=\"_blank\"> </a></span></p>\r\n<p data-start=\"1687\" data-end=\"1799\" style=\"line-height:175%\">We help carve-outs and newly focused organizations turn structural change into strategic advantage.<br><br></p>\r\n<p data-start=\"1801\" data-end=\"1900\" style=\"line-height:175%\">If your organization is preparing for a carve-out or repositioning for greater focus, <a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VW8FJj1gyPZPW6nNyqC96QXV8VLsY3L5GBxHjN2nfYxK3qn9qW7lCdLW6lZ3phW7dFDXG8sXnCDW2lsP8y68MyPFN694pZKNySJwW3D74Rt4pb0DsW3N4M642qp_sPW6_-SxH2pP8kHW60SMDF187CLlW63SYLY1LNW9fW6ZDBvz312wSCW76gw8w2n_mVYN45vzG41mvngW4nrSV75RKwb5VDHRhx3D5CfkW2n-b8n6LZTPKW2ncHnP8clP7QN2B7XYfDdyy6W3FqSCj4dtlJdN1384WRHW3C3W7F4DqN3pDVKPW7J4YqH97LgKWW19jKTK4ctY9fW8pxN3K4y56TwW1jcP_r1PjHZzW7qZbHj1QbYn4f8BctWH04\" rel=\"noopener\" style=\"color:#d01300\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"fLyDNOI6\" target=\"_blank\">let’s talk</a>.</p></div></div></td></tr></tbody></table>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section_1638569706852\" class=\"hse-section\" style=\"padding-left:0px; padding-right:0px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#ffffff; padding-bottom:20px\" bgcolor=\"#ffffff\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#ffffff\">\r\n      <tr style=\"background-color:#ffffff;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;padding-bottom:20px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column_1638569706852_0\" class=\"hse-column hse-size-12\">\r\n    <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#000000; word-break:break-word; padding:10px 30px\"><div id=\"hs_cos_wrapper_module_15948141236582\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_15948141236582_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><p style=\"font-size:15px; line-height:150%\"><span style=\"color: #000000; font-family: Arial, sans-serif;\"><br>Best Regards,</span></p>\r\n<p style=\"font-size:15px; line-height:150%\">&nbsp;</p>\r\n<p style=\"font-size:18px; line-height:125%\"><span style=\"color: #000000; font-family: Arial, sans-serif; font-size: 15px; font-weight: normal;\">Tanya Nazarian</span></p>\r\n<p style=\"font-size:18px; line-height:125%; font-weight:normal\"><span style=\"color: #000000; font-family: Arial, sans-serif; font-size: 15px;\">SVP, Growth</span></p>\r\n<p style=\"font-size:18px; line-height:125%; font-weight:normal\"><span style=\"text-decoration: underline; font-family: Arial, sans-serif;\"><span style=\"color: #000000; font-size: 15px; text-decoration: underline;\">703-299-5984</span></span></p>\r\n<p style=\"font-size:18px; line-height:125%; font-weight:normal\"><span style=\"font-family: Helvetica, Arial, sans-serif;\"><span style=\"color: #000000;\"><a href=\"mailto:tanya@grafik.com\" style=\"color:#000000\" rel=\"noopener\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"2P7oQQm8\" target=\"_blank\"><span style=\"font-size: 15px;\"><span style=\"font-family: Arial, sans-serif;\">tanya@grafik.com</span></span></a></span></span></p></div></div></td></tr></tbody></table>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section_17468034824076\" class=\"hse-section\" style=\"padding-left:0px; padding-right:0px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container hse-no-stack-row\" style=\"min-width:280px; max-width:600px; margin:0 auto; border-collapse:separate; display:table; width:100%; background-color:#151515; padding-bottom:30px; padding-top:15px\" bgcolor=\"#151515\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" class=\"hse-no-stack-row\" width=\"600\" bgcolor=\"#151515\">\r\n      <tr style=\"background-color:#151515;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:300px;padding-bottom:30px; padding-top:15px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"300\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:300px\">\r\n<![endif]-->\r\n<div id=\"column_1747057387726_0\" class=\"hse-column hse-size-6 hse-no-stack\" style=\"display:table-cell; vertical-align:top; max-width:300px; width:50%\">\r\n  <div id=\"hs_cos_wrapper_module_17468034824075\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;table-layout:fixed\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table class=\"hse-image-wrapper\" role=\"presentation\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td align=\"left\" valign=\"top\" style=\"font-family:Arial, sans-serif; color:#000000; word-break:break-word; text-align:left; padding:10px 20px 10px 30px; font-size:0px\">\r\n        <a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VW8FJj1gyPZPW6nNyqC96QXV8VLsY3L5GBxHjN2nfYxK3qn9qW7lCdLW6lZ3npW5VtnCs3g4f1vW2QCqcD6qrCpfVyYY586HHRd-W4L91yL7C2mpZW4WqGcs3MvPhqN8sf3FRDklXVW2nvBS86xXrWZW3vH_672fZWLYW3tY8c_31Z381W3pd-865FRsVzW6wGS662vjkyQN3M7jMTpsdYhW8xPvBz1tsb7cW57QRql8ySG_BW3WD5Vg284x3zW1tdP_B7GvKJcW4w00qR438kkTW64DsFg4_93CZW4VjNxz8j-vFQW6sFHb95Bp9ybW1HTvt27vCy29N96HtRQxGZ2lN1RJH0C2YcKRW2fbL76999-LZf4RRKHW04\" target=\"_blank\" style=\"color:#00a4bd\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"jBtPrh1/\">\r\n        <img alt=\"Grafik-Logo-Tagline-1\" src=\"https://hs-505301.f.hubspotemail.net/hub/505301/hubfs/Grafik-Logo-Tagline-1.png?width=380&amp;upscale=true&amp;name=Grafik-Logo-Tagline-1.png\" style=\"outline:none; text-decoration:none; border:none; max-width:100%; font-size:16px\" width=\"190\" align=\"middle\">\r\n        </a>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n<!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:300px;padding-bottom:30px; padding-top:15px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"300\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:300px\">\r\n<![endif]-->\r\n<div id=\"column-1746803482407-0\" class=\"hse-column hse-size-6 hse-no-stack\" style=\"display:table-cell; vertical-align:top; max-width:300px; width:50%\">\r\n    <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"table-layout:fixed\"><tbody><tr><td style=\"font-family:Arial, sans-serif; font-size:15px; color:#000000; word-break:break-word; padding:10px 30px 10px 20px\"><div id=\"hs_cos_wrapper_module_17468034486883\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_17468034486883_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><p style=\"text-align:right; line-height:175%\" align=\"right\"><span style=\"color: #ffffff;\"><a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VW8FJj1gyPZPW6nNyqC96QXV8VLsY3L5GBxHjN2nfYy03qn9qW7Y8-PT6lZ3kWVfH4K55G3rGCN8RK8J5sPhXdN97Ly2B3_4N1W8GhkfY1vSy-KW7fPQkV3kZT45W1m2Mk28ysHjpW9jjj855McVlQW3S2Wc-7qxgtQW8Lw4HT5Hfp4zW1dp7Ng7vlrZcW2vq0zv84kL9QW3RHpMf5QshJTW4XxZzf8QXG2WW249qL95PjGKRN2psMm6PngvrW828Lcl7_T47VVFqmg51YNq5-W4-6lrl8TFllvN74qlGpPC48-W1bPjtx4hSYtVW5DYbW12BswH6W6nClDv1rgHYTW8Xsznt2CZ7T6W4pwTBz9dPQW5W2qnJ5g4LQvz-W4g2TwY2yZGxCf7BF0WC04\" style=\"text-decoration:underline; color:#ffffff\" rel=\"noopener\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"pBQ+yHPN\" target=\"_blank\"><span style=\"color: #ffffff;\">LinkedIn</span></a></span></p>\r\n<p style=\"text-align:right; line-height:175%\" align=\"right\"><span style=\"color: #ffffff;\"><a href=\"https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VW8FJj1gyPZPW6nNyqC96QXV8VLsY3L5GBxHjN2nfYy03qn9qW7Y8-PT6lZ3pkW4BZ25T7pPCylN1_knSPkFD51W7S-Pd24kf7zxW6sXm5f3BvvbsW1Mztl05j35vWW6K7Pm774yY-pN3DK0Gp_Mb1lW3lV9Kq1nJv3mN8BDRJVs9RVKW6kcB7Y4NhjJFF90bvFbrW5mVGHkJJ4nkYJLW7zX5sJ71lSRNN13056HFBw6kW5HdVqm1gq4njW5Vrjzp2qfDwTW2-yRt-3h70ZpW7zByMX8063TyW1W-Nrx4k3QhfW30PKcv7ZDpSmW5qnM_84YtQLKW3vFLXB1V4-80W67Jx5V89PRsfW1wCR4G773pblV_gBvx7jKd67W4ljDx287WJyxf1MDB9604\" style=\"text-decoration:underline; color:#ffffff\" rel=\"noopener\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"pfSNRZcW\" target=\"_blank\"><span style=\"color: #ffffff;\">Instagram</span></a></span></p></div></div></td></tr></tbody></table>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div>\r\n  <div id=\"section_17468034857699\" class=\"hse-section hse-section-last\" style=\"padding-left:0px; padding-right:0px\">\r\n    \r\n    \r\n      <div class=\"hse-column-container\" style=\"min-width:280px; max-width:600px; margin:0 auto; background-color:#151515; padding-bottom:10px\" bgcolor=\"#151515\">\r\n    \r\n    <!--[if (mso)|(IE)]>\r\n      <table align=\"center\" style=\"width:600px;\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"600\" bgcolor=\"#151515\">\r\n      <tr style=\"background-color:#151515;\">\r\n    <![endif]-->\r\n    <!--[if (mso)|(IE)]>\r\n  <td valign=\"top\" style=\"width:600px;padding-bottom:10px;\">\r\n<![endif]-->\r\n<!--[if gte mso 9]>\r\n  <table role=\"presentation\" width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px\">\r\n<![endif]-->\r\n<div id=\"column-1746803485769-0\" class=\"hse-column hse-size-12\">\r\n    <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#000000; word-break:break-word; padding:10px 20px 0px\"><div id=\"hs_cos_wrapper_module_17468034857697\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><div id=\"hs_cos_wrapper_module_17468034857697_\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"rich_text\"><p style=\"line-height:175%; text-align:center\" align=\"center\"><span style=\"color: #ffffff;\">© 2025&nbsp;Grafik. All rights reserved.</span></p></div></div></td></tr></tbody></table>\r\n  <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"\" style=\"\"><tbody><tr><td class=\"hs_padded\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#000000; word-break:break-word; padding:5px 20px 10px\"><div id=\"hs_cos_wrapper_module_17468034857698\" class=\"hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module\" style=\"color: inherit; font-size: inherit; line-height: inherit;\" data-hs-cos-general-type=\"widget\" data-hs-cos-type=\"module\"><table role=\"presentation\" class=\"hse-footer hse-secondary\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-family:Arial, sans-serif; font-size:12px; line-height:135%; color:#23496d; margin-bottom:0; padding:0\">\r\n  <tbody>\r\n    <tr>\r\n      <td align=\"center\" valign=\"top\" style=\"font-family:Arial, sans-serif; font-size:15px; color:#000000; word-break:break-word; text-align:center; margin-bottom:0; line-height:135%; padding:10px 20px\">\r\n          <p><span style=\"color: #ffffff;\"><span style=\"text-align: left;\">Grafik</span>, 8045 Leesburg Pike, Suite 503, Vienna,VA,22182,United States,</span></p>\r\n<p><span style=\"color: #ffffff;\"><a href=\"https://hs-505301.s.hubspotemail.net/hs/preferences-center/en/direct?data=W2nXS-N30h-S1W47MPR73dbF0YW43FXtR2zxTn3W1NkJnX3gtRq9W2Ymm602r425gW45QV0W1Bsws8W3R6Ws_2qWNY5W47wRHQ4mbT3YW2HGPqf1QlhBzW23mNBw2F-87dW32gBNw2-bqCNW3XYNjS3jrZgkW1BJ2Jt1Bs82hW23kctL256D3zW4kGzfp3Szk94W2t2xPd4cyvKCW3bwSMS1NxY_gW2B1Vsn3dxt9yW25q0sF4fqKgRW32stQG2RCVccW2WsYP63bhMB3W2sZYBx2TRdqZW1Xx-lK21hkXrW2KNNL0346SqGW2HFyqz3g8gbyW2HSh_V23rwvQW30CJvY3j4l8dW2RCmGz1_6p8DW2B1Ys12YMyt-W4chQxD3XZzMrW3dh-Z72pb0cLW365SBy2HXt8KW43lLBZ3CgNCtW2nGls83_FYnsW3Zw9x44fP8JqW2Whj8D2-H_6kW41PFXv2zQSQxW3yNZdR3Ch7DqW4hhnq92-zNMjW2HX4DN4tBNsKW2PCGDX2Tx514W45mjc849gmRJW2vMXVt2MzJrmW2w4pQQ4mkwGwW2FttRh2t6gZXW38Bs2G1BDKVCW2B2l1v3XGHq6W3g9ysX2RtlXnW25d50_3SBcbZW2TpPQD2w3b3HW1NkJWN3T0WGGW1_j0ys3B_Q7tW47Qgfv4hPRdJ0&amp;utm_campaign=Defense%20Technology&amp;utm_source=hs_automation&amp;utm_medium=email&amp;utm_content=392657847&amp;_hsenc=p2ANqtz--EcEbVlVjzgIekIpnTT7VGgruALxYmSitq_ZgfI0pFMjQ6vTWPNowKIhNsjyEG_6LofI-uO4tE6Zo-ztoEiIEVCvorkQ&amp;_hsmi=392657847\" style=\"color:#ffffff\" data-unsubscribe=\"true\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"SFRZzEXk\" target=\"_blank\">Unsubscribe</a> <a href=\"https://hs-505301.s.hubspotemail.net/hs/preferences-center/en/page?data=W2nXS-N30h-S1W47MPR73dbF0YW43FXtR2zxTn3W1NkJnX3gtRq9W2Ymm602r425gW45QV0W1Bsws8W3R6Ws_2qWNY5W47wRHQ4mbT3YW2HGPqf1QlhBzW23mNBw2F-87dW32gBNw2-bqCNW3XYNjS3jrZgkW1BJ2Jt1Bs82hW23kctL256D3zW4kGzfp3Szk94W2t2xPd4cyvKCW3bwSMS1NxY_gW2B1Vsn3dxt9yW25q0sF4fqKgRW32stQG2RCVccW2WsYP63bhMB3W2sZYBx2TRdqZW1Xx-lK21hkXrW2KNNL0346SqGW2HFyqz3g8gbyW2HSh_V23rwvQW30CJvY3j4l8dW2RCmGz1_6p8DW2B1Ys12YMyt-W4chQxD3XZzMrW3dh-Z72pb0cLW365SBy2HXt8KW43lLBZ3CgNCtW2nGls83_FYnsW3Zw9x44fP8JqW2Whj8D2-H_6kW41PFXv2zQSQxW3yNZdR3Ch7DqW4hhnq92-zNMjW2HX4DN4tBNsKW2PCGDX2Tx514W45mjc849gmRJW2vMXVt2MzJrmW2w4pQQ4mkwGwW2FttRh2t6gZXW38Bs2G1BDKVCW2B2l1v3XGHq6W3g9ysX2RtlXnW25d50_3SBcbZW2TpPQD2w3b3HW1NkJWN3T0WGGW1_j0ys3B_Q7tW47Qgfv4hPRdJ0&amp;utm_campaign=Defense%20Technology&amp;utm_source=hs_automation&amp;utm_medium=email&amp;utm_content=392657847&amp;_hsenc=p2ANqtz--EcEbVlVjzgIekIpnTT7VGgruALxYmSitq_ZgfI0pFMjQ6vTWPNowKIhNsjyEG_6LofI-uO4tE6Zo-ztoEiIEVCvorkQ&amp;_hsmi=392657847\" style=\"color:#ffffff\" data-unsubscribe=\"true\" data-hs-link-id=\"0\" data-hs-link-id-v2=\"qjPJqCop\" target=\"_blank\">Manage Preferences</a></span></p>\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table></div></td></tr></tbody></table>\r\n</div>\r\n<!--[if gte mso 9]></table><![endif]-->\r\n<!--[if (mso)|(IE)]></td><![endif]-->\r\n    <!--[if (mso)|(IE)]></tr></table><![endif]-->\r\n    </div>\r\n   \r\n  </div></div>\r\n          </td>\r\n        </tr>\r\n      </tbody></table>\r\n    </div>\r\n  \r\n<img src=\"https://c3chr04.na1.hubspotlinks.com/Cto/F9+113/c3chr04/VW8FJj1gyPZPW6nNyqC96QXV8VLsY3L5GBxHjW2nfYhw8fYGwf1z2\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" style=\"display:none!important;min-height:1px!important;width:1px!important;border-width:0!important;margin-top:0!important;margin-bottom:0!important;margin-right:0!important;margin-left:0!important;padding-top:0!important;padding-bottom:0!important;padding-right:0!important;padding-left:0!important\"></body></html>','The new acquisition environment is favoring companies with sharp positioning and clear purpose.\r\n\r\nView in browser (https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VW8FJj1gyPZPW6nNyqC96QXV8VLsY3L5GBxHjN2nfYxq5n4LbW6N1X8z6lZ3mBVDGcq65w4GCsW7JxkgC62vK4sW27TCq93kJ6z0W7vt-5R32HryQW2tQPLS4WvHB9W2-RlSZ3Qp_3TW8Nm6b68tW2K9W4k5L6P3sRVxmN8yRzY5-GsRPV8vGqg8j45H3W6hK50g3DR2vvW4XwKwg75rV6NW3CXVch5PBS_fW2bHSJy33_6DQW3my4qR6Nfw3nVY2QdV81h0SyN3yHhxrvNmp-VLnyLy674LR5VgBJCk4P1CjJW1slZDq7x4ZCMV2BLyn1sxhr4W36rvgm39093JW11tm_s1_v21_W4x_jxQ3tgwLXW1LKDM727srNTW67-n1Z7NB2zlW91BG7x1jtXhGN5rR4qttC1BrW2L3QvX4CclPVW1N5GdL96dZgpW1m1BzC5nm2mlW1CFfN45xzyHsW78ptTk7YrfNyW8nJFJn6zGJMhW56Hy4z2057FJW3_pDMR400l4LW1WzCrr3dZQ2GW34XF1t6Cdb_7f8DWQdx04 )\r\n\r\nB2B Tech email header (2) (https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VW8FJj1gyPZPW6nNyqC96QXV8VLsY3L5GBxHjN2nfYyC3pyd0W95jsWP6lZ3mWW8Zs7Px8XBQBwW7xDQz47_BLFGW6V0pS11Xs0ZRW8lzGR45k5g45W4-qFZ_4cb5jFW3xJWYd873K8KW5QfhnZ4x3pP4W8-V_ZV4Rdb_sW34ZnGw1Pfwr6W21w5kJ7S_yKYW7Sc1QL3bkSkyW8gpfFl7nMrF1W1tXsJr5F5QhtW8TJC-b5h0dRhV5fkZV3GGXtQW58qZLw70Rmm3W3-BM9Y5B_QhtW92rNzh2bV-YqW2BBpN4773RgZN83RfzGGFQ04W1Lz0t59jqprhW3pv4l438LtZmW7pbDtb8B6SWlW6bg34w6_yV_qV6_mTz7jNTwwW5yzyq26QkcQ3W6Fswf78nC8kPW7YB5px3FjwmcW4Jxn1K3jBz7XMwTD4tM3dwMf5bWsSF04 )\r\n\r\nHi Rick,\r\n\r\nSpin-offs are accelerating across the defense sector, and the reason is becoming clear. In the new acquisition environment, focus is not just operational. It is financial.\r\n\r\nAt the Baird 2025 Defense and Government Conference, leaders from across the industry made the same point. The Warfighting Acquisition System (https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VW8FJj1gyPZPW6nNyqC96QXV8VLsY3L5GBxHjN2nfYyC3pyd0W95jsWP6lZ3mCW2vKthv6xx6CMW6gHss_1t8BWwW7kq2zB31T59MW7rfqfJ20hZcGW2WWSxh3YQCymW3HVRQZ5pfXjHW1NRfP54gXX2ZW6mVx3c6Kn9XrV7-qbY7J1DwGW7ZD36V753SzwW1jFr7d83CW3_W2KfvND1MMpRjW7hvsg22zWBdlW136NMb8N4XS7W5rX6yt3ZTltNW7QBr-56rq_nsW64YSNL6vMJ9jW3hV1YD1Ytf7DW2T27Gf3_Gz5GW93HzdH6rrrx8W8lZrds1qgFQBW3qy8_86LSbvgN1Qx72tMH34cW5r3_Qn95NmZ9W5Nhqyz7jStnBW25dDVl7nKT4sW7QYcfF8Vlq3RW8L9qGL8hdRT9W7K_v4D2JHT_yW569vvy8dXYZ9f1hfNM404 ) is shifting attention from incumbency to relevance. Companies that show clear mission alignment are gaining momentum faster than those relying on size or legacy alone.\r\n\r\nRecent moves reinforce the trend:\r\n\r\n-\r\n\r\nKBR’s planned carve-out of Mission Technologies Solutions\r\n\r\n-\r\n\r\nMaxar’s (https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VW8FJj1gyPZPW6nNyqC96QXV8VLsY3L5GBxHjN2nfYy03pyd0W7Y8-PT6lZ3kTW5RGVkp1wXKqNW1vMp8n1bP-LnV-0C0p29wGwJW62491C6tYNzsN5d7zkf1_x6MMyRBnZvdqN0W3zvwHF6PWCX9N3jCNX69MqDcN3lMb0WYdMPBW23b3gZ1clrt6W44rJYS1QD1qPW1prnwr7wF-PGW3Zzjvh1lk7JqW7Jk_wM5796_NW4skXPM66KJXxVy0KYK8_zlxNN2TThdzvmN_dW8s342C6yznb-W4m75RC2lkgvZW29S4273pqTvvN7f-snrFVW2MW4-95JJ1FMv_wW946Hv59htX6FW10PjQs7MGK0FN2_ZJ9J_M0YFW1mn9b75yv9pPf7nD8T-04 ) split into Vantor and Lanteris\r\n\r\n-\r\n\r\nIntuitive Machines’ rapid acquisition of Lanteris\r\n\r\n-\r\n\r\nDefense tech valuation multiples far outpacing traditional primes\r\n\r\nWhen a business separates from its parent, the brand becomes the signal that tells customers and investors what the new entity stands for and why it exists.\r\n\r\nIn our latest blog (https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VW8FJj1gyPZPW6nNyqC96QXV8VLsY3L5GBxHjN2nfYyC3pyd0W95jsWP6lZ3mWW8Zs7Px8XBQBwW7xDQz47_BLFGW6V0pS11Xs0ZRW8lzGR45k5g45W4-qFZ_4cb5jFW3xJWYd873K8KW5QfhnZ4x3pP4W8-V_ZV4Rdb_sW34ZnGw1Pfwr6W21w5kJ7S_yKYW7Sc1QL3bkSkyW8gpfFl7nMrF1W1tXsJr5F5QhtW8TJC-b5h0dRhV5fkZV3GGXtQW58qZLw70Rmm3W3-BM9Y5B_QhtW92rNzh2bV-YqW2BBpN4773RgZN83RfzGGFQ04W1Lz0t59jqprhW3pv4l438LtZmW7pbDtb8B6SWlW6bg34w6_yV_qV6_mTz7jNTwwW5yzyq26QkcQ3W6Fswf78nC8kPW7YB5px3FjwmcW4Jxn1K3jBz7XMwTD4tM3dwMf5bWsSF04 ) , we outline the brand imperatives every carve-out should prioritize to capture full value, including narrative clarity, investor confidence, customer reassurance, and internal alignment.\r\n\r\nRead the full blog\r\n(https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VW8FJj1gyPZPW6nNyqC96QXV8VLsY3L5GBxHjN2nfYyC3pyd0W95jsWP6lZ3mWW8Zs7Px8XBQBwW7xDQz47_BLFGW6V0pS11Xs0ZRW8lzGR45k5g45W4-qFZ_4cb5jFW3xJWYd873K8KW5QfhnZ4x3pP4W8-V_ZV4Rdb_sW34ZnGw1Pfwr6W21w5kJ7S_yKYW7Sc1QL3bkSkyW8gpfFl7nMrF1W1tXsJr5F5QhtW8TJC-b5h0dRhV5fkZV3GGXtQW58qZLw70Rmm3W3-BM9Y5B_QhtW92rNzh2bV-YqW2BBpN4773RgZN83RfzGGFQ04W1Lz0t59jqprhW3pv4l438LtZmW7pbDtb8B6SWlW6bg34w6_yV_qV6_mTz7jNTwwW5yzyq26QkcQ3W6Fswf78nC8kPW7YB5px3FjwmcW4Jxn1K3jBz7XMwTD4tM3dwMf5bWsSF04 )\r\n\r\nWe help carve-outs and newly focused organizations turn structural change into strategic advantage.\r\n\r\nIf your organization is preparing for a carve-out or repositioning for greater focus, let’s talk (https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VW8FJj1gyPZPW6nNyqC96QXV8VLsY3L5GBxHjN2nfYxK3pyd0W7lCdLW6lZ3mDW4-v42P371b6RN5GFvZXMvV_BN8MZzzrzP60jW2n9g1V79-f-pW1WQ_Rt8TkZ4JW1s_PYr52Tj3NW2QvqTl4hChCQM19bFWXJ1b0W1fk2wR6nw81KW2PlKSd90FHvvW3Rp8yZ1snSQvW68LZwY4LK448W8XqP1z1l6MSCW2Z1mNW3kGnJbVYCyN17xxLcgW60cy6-6mLXC9W1rNjTq4C9RpWW6QzG1j51SswHW3thRhl6-BxQKW2TD_5R5kTSC0W5nxNf88DdGk3W58yd1w7Q7SgTW6bDkxm2M_0nBVsp7C1761dQ7f5X8RW004 ) .\r\n\r\nBest Regards,\r\n\r\nTanya Nazarian\r\n\r\nSVP, Growth\r\n\r\n703-299-5984\r\n\r\ntanya@grafik.com (mailto:tanya@grafik.com)\r\n\r\nGrafik-Logo-Tagline-1 (https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VW8FJj1gyPZPW6nNyqC96QXV8VLsY3L5GBxHjN2nfYxq3pyd0W6N1vHY6lZ3nsVnt-9h3rV_jbW4dtR2x1CQ6dYW9hDnk-85V1-vW4BVmKZ2Sm2MjW4H31rF4mTkd0W6qbDLT1lzqSTW1gjp4J6pyg8bN5DRG_vQ6CxXVJ-8C042LhQwMlDNgNTVY9-N7C_p1tP8r7bW3tLJ-16jkxJ6W7Bw2wV4TYTnMW2TFmnz5h2DfQVRC9jT9lWkMcVclmMK1KKqlMW8fB2Xv5sMdp3W1B4_g-2WkVJhW3qzntz6BZ1K9W2t2lKV4_vrY5W4DwGtZ4tmrKcW8lQqH934tLLff1LVlC004 )\r\n\r\nLinkedIn (https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VW8FJj1gyPZPW6nNyqC96QXV8VLsY3L5GBxHjN2nfYxK3pyd0W7lCdLW6lZ3pBW9dn4pP40pSHKW72Xv_b2HjCWCW3rYyJz9b_RvwW66zK1s5S3XmHW6L_38B8D2sYwW32r57f6r3zZ2W44DTVt199PDJW8Lnw_K3_xkYpW5ks2D84z44ZFW3b98r44c_K5yVj0QRT3p-rfwW7JL2yM7VsQXNN8Y5ZX7M86rfW433rHL5xPsN4W6PCvVZ1JM4ZTW8BVPvJ6gGz0cW86x3RZ84z8Q0N4y11pLPsQj2W3llHl66Hg6wFW6xTZ_R4cZkfNW79p_9L2K4ypfW2stY8x5jgBN-W3MLL5t8QnvC_W4slnv_7Ycj6Vf6qwvSY04 )\r\n\r\nInstagram (https://c3chr04.na1.hubspotlinks.com/Ctc/F9+113/c3chr04/VW8FJj1gyPZPW6nNyqC96QXV8VLsY3L5GBxHjN2nfYxK3pyd0W7lCdLW6lZ3lSW2xfn_q8hq9ZkW856ltV9cHn5vW3ykh4x8jyVbxW2-5JHP2Cx_5BW14wYJg7hNyV5W8dbGCL8CTh2BW8KTrNK15Zbn1W299dY47Tk2kyW8_DpRs1dJtnDW2vwJ9795W_Q8W78ZXXs3qM6RTW6Yvp4p7p2zQ_W8DnS008DZPh5W40NW486QGSTxW3K4Gy83vF80ZW5cDv4J5K-ByJW5B9d6Q8Wwr3HW4YcQkM2W5RqPW5VPlg64qQs0nVG28RL655cXXW5JP4h-64SjCcW6J6fcl5zwPh4N24PGQqxJ8HNW4sscZ04FPTBDf2Nzbrz04 )\r\n\r\n© 2025 Grafik. All rights reserved.\r\n\r\nGrafik, 8045 Leesburg Pike, Suite 503, Vienna,VA,22182,United States,\r\n\r\nUnsubscribe (https://hs-505301.s.hubspotemail.net/hs/preferences-center/en/direct?data=W2nXS-N30h-S1W47MPR73dbF0YW43FXtR2zxTn3W1NkJnX3gtRq9W2Ymm602r425gW45QV0W1Bsws8W3R6Ws_2qWNY5W47wRHQ4mbT3YW2HGPqf1QlhBzW23mNBw2F-87dW32gBNw2-bqCNW3XYNjS3jrZgkW1BJ2Jt1Bs82hW23kctL256D3zW4kGzfp3Szk94W2t2xPd4cyvKCW3bwSMS1NxY_gW2B1Vsn3dxt9yW25q0sF4fqKgRW32stQG2RCVccW2WsYP63bhMB3W2sZYBx2TRdqZW1Xx-lK21hkXrW2KNNL0346SqGW2HFyqz3g8gbyW2HSh_V23rwvQW30CJvY3j4l8dW2RCmGz1_6p8DW2B1Ys12YMyt-W4chQxD3XZzMrW3dh-Z72pb0cLW365SBy2HXt8KW43lLBZ3CgNCtW2nGls83_FYnsW3Zw9x44fP8JqW2Whj8D2-H_6kW41PFXv2zQSQxW3yNZdR3Ch7DqW4hhnq92-zNMjW2HX4DN4tBNsKW2PCGDX2Tx514W45mjc849gmRJW2vMXVt2MzJrmW2w4pQQ4mkwGwW2FttRh2t6gZXW38Bs2G1BDKVCW2B2l1v3XGHq6W3g9ysX2RtlXnW25d50_3SBcbZW2TpPQD2w3b3HW1NkJWN3T0WGGW1_j0ys3B_Q7tW47Qgfv4hPRdJ0&_hsenc=p2ANqtz-_s9mC_21hgk5q63ldFthis7IW5EtA6kSVigwJhet-8_JWzNvorQtE1GLvdrgIs68hlTPOPcy6TTjLvbb6Y80UKDs8onQ&_hsmi=392657847 ) Manage Preferences (https://hs-505301.s.hubspotemail.net/hs/preferences-center/en/page?data=W2nXS-N30h-S1W47MPR73dbF0YW43FXtR2zxTn3W1NkJnX3gtRq9W2Ymm602r425gW45QV0W1Bsws8W3R6Ws_2qWNY5W47wRHQ4mbT3YW2HGPqf1QlhBzW23mNBw2F-87dW32gBNw2-bqCNW3XYNjS3jrZgkW1BJ2Jt1Bs82hW23kctL256D3zW4kGzfp3Szk94W2t2xPd4cyvKCW3bwSMS1NxY_gW2B1Vsn3dxt9yW25q0sF4fqKgRW32stQG2RCVccW2WsYP63bhMB3W2sZYBx2TRdqZW1Xx-lK21hkXrW2KNNL0346SqGW2HFyqz3g8gbyW2HSh_V23rwvQW30CJvY3j4l8dW2RCmGz1_6p8DW2B1Ys12YMyt-W4chQxD3XZzMrW3dh-Z72pb0cLW365SBy2HXt8KW43lLBZ3CgNCtW2nGls83_FYnsW3Zw9x44fP8JqW2Whj8D2-H_6kW41PFXv2zQSQxW3yNZdR3Ch7DqW4hhnq92-zNMjW2HX4DN4tBNsKW2PCGDX2Tx514W45mjc849gmRJW2vMXVt2MzJrmW2w4pQQ4mkwGwW2FttRh2t6gZXW38Bs2G1BDKVCW2B2l1v3XGHq6W3g9ysX2RtlXnW25d50_3SBcbZW2TpPQD2w3b3HW1NkJWN3T0WGGW1_j0ys3B_Q7tW47Qgfv4hPRdJ0&_hsenc=p2ANqtz-_s9mC_21hgk5q63ldFthis7IW5EtA6kSVigwJhet-8_JWzNvorQtE1GLvdrgIs68hlTPOPcy6TTjLvbb6Y80UKDs8onQ&_hsmi=392657847 )',0,0,0,0,0,0,'2025-12-02 18:47:58','2025-12-04 14:05:25','2025-12-04 14:05:25','2025-12-04 14:05:25',NULL,NULL,NULL),
(104,4,'<PH7PR84MB176758D113F6B0FC21611B2EFBD8A@PH7PR84MB1767.NAMPRD84.PROD.OUTLOOK.COM>',NULL,NULL,'RE: HP MJF Printers','gary.fudge@hp.com','\"Fudge, Gary\"','<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:w=\"urn:schemas-microsoft-com:office:word\" xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\" xmlns=\"http://www.w3.org/TR/REC-html40\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\">\r\n<!--[if !mso]><style>v\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style><![endif]--><style><!--\r\n/* Font Definitions */\r\n@font-face\r\n	{font-family:\"Cambria Math\";\r\n	panose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n	{font-family:Calibri;\r\n	panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n	{font-family:Aptos;}\r\n@font-face\r\n	{font-family:\"Forma DJR Micro\";\r\n	panose-1:0 0 0 0 0 0 0 9 0 0;}\r\n@font-face\r\n	{font-family:\"Forma DJR Display\";\r\n	panose-1:0 0 0 0 0 0 0 9 0 0;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n	{margin:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\na:link, span.MsoHyperlink\r\n	{mso-style-priority:99;\r\n	color:blue;\r\n	text-decoration:underline;}\r\np.airmailon, li.airmailon, div.airmailon\r\n	{mso-style-name:airmail_on;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\np.xairmailon, li.xairmailon, div.xairmailon\r\n	{mso-style-name:x_airmail_on;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\np.xmsonormal, li.xmsonormal, div.xmsonormal\r\n	{mso-style-name:x_msonormal;\r\n	mso-margin-top-alt:auto;\r\n	margin-right:0in;\r\n	mso-margin-bottom-alt:auto;\r\n	margin-left:0in;\r\n	font-size:12.0pt;\r\n	font-family:\"Aptos\",sans-serif;}\r\nspan.EmailStyle23\r\n	{mso-style-type:personal-reply;\r\n	font-family:\"Aptos\",sans-serif;\r\n	color:windowtext;}\r\n.MsoChpDefault\r\n	{mso-style-type:export-only;\r\n	font-size:10.0pt;\r\n	mso-ligatures:none;}\r\n@page WordSection1\r\n	{size:8.5in 11.0in;\r\n	margin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n	{page:WordSection1;}\r\n--></style>\r\n</head>\r\n<body lang=\"EN-US\" link=\"blue\" vlink=\"purple\" style=\"word-wrap:break-word\">\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\">Hello Rick,<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">How are things progressing/when should we connect back?&nbsp; Last we talked you mentioned wanting to get some equipment about this time.&nbsp;\r\n<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Please advise<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">Gary Fudge</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">3D Print - Enterprise Account Manager – US South\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">Atlanta , GA</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black;mso-ligatures:standardcontextual\">M -&nbsp;(678) 654-6734</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;text-align:center\">\r\n<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black;mso-ligatures:standardcontextual\">|</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"color:black;mso-ligatures:standardcontextual\"><a href=\"mailto:Gary.Fudge@HP.com\">Gary.Fudge<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;\">@HP.com</span></a></span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;color:black\"><img border=\"0\" width=\"368\" height=\"85\" style=\"width:3.8333in;height:.8819in\" id=\"Picture_x0020_535934039\" src=\"cid:image001.png@01DC63AC.FC62A440\" alt=\"image001.png\"><span style=\"mso-ligatures:standardcontextual\"><o:p></o:p></span></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><span style=\"mso-ligatures:standardcontextual\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Fudge, Gary\r\n<br>\r\n<b>Sent:</b> Monday, November 3, 2025 5:47 PM<br>\r\n<b>To:</b> \'Rick\' &lt;rick@mavrix.one&gt;<br>\r\n<b>Subject:</b> RE: HP MJF Printers<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Hello Rick,<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Any questions on the site prep guide?<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Also, please email me the physical address in FL so I can start getting you set up in our system.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Thanks<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">Gary Fudge</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">3D Print - Enterprise Account Manager – US South\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">Atlanta , GA</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black;mso-ligatures:standardcontextual\">M -&nbsp;(678) 654-6734</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;text-align:center\">\r\n<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black;mso-ligatures:standardcontextual\">|</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"color:black;mso-ligatures:standardcontextual\"><a href=\"mailto:Gary.Fudge@HP.com\">Gary.Fudge<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;\">@HP.com</span></a></span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;color:black\"><img border=\"0\" width=\"368\" height=\"85\" style=\"width:3.8333in;height:.8819in\" id=\"Picture_x0020_877011165\" src=\"cid:image001.png@01DC63AC.FC62A440\" alt=\"image001.png\"></span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><span style=\"mso-ligatures:standardcontextual\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Fudge, Gary\r\n<br>\r\n<b>Sent:</b> Friday, October 24, 2025 6:27 PM<br>\r\n<b>To:</b> \'Rick\' &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt;<br>\r\n<b>Subject:</b> RE: HP MJF Printers<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Hello Rick,<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Good catching up with you today.&nbsp; See attached site prep guide as requested.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Can you please email me your address now that you have the land secure so I can go ahead and get you into our system?<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Please let me know if you have any questions or need any additional information.<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\">Best Regards<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">Gary Fudge</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">3D Print - Enterprise Account Manager – US South\r\n<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black;mso-ligatures:standardcontextual\">Atlanta , GA</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black;mso-ligatures:standardcontextual\">M -&nbsp;(678) 654-6734</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;text-align:center\">\r\n<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black;mso-ligatures:standardcontextual\">|</span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"color:black;mso-ligatures:standardcontextual\"><a href=\"mailto:Gary.Fudge@HP.com\">Gary.Fudge<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;\">@HP.com</span></a></span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt:auto;mso-margin-bottom-alt:auto\"><span style=\"font-size:11.0pt;color:black\"><img border=\"0\" width=\"368\" height=\"85\" style=\"width:3.8333in;height:.8819in\" id=\"Picture_x0020_2\" src=\"cid:image001.png@01DC63AC.FC62A440\" alt=\"image001.png\"></span><span style=\"font-size:11.0pt;color:black;mso-ligatures:standardcontextual\"><o:p></o:p></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\"><span style=\"mso-ligatures:standardcontextual\"><o:p>&nbsp;</o:p></span></p>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<div>\r\n<div style=\"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif\"> Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt;\r\n<br>\r\n<b>Sent:</b> Friday, October 24, 2025 8:46 AM<br>\r\n<b>To:</b> Fudge, Gary &lt;<a href=\"mailto:gary.fudge@hp.com\">gary.fudge@hp.com</a>&gt;<br>\r\n<b>Subject:</b> Re: HP MJF Printers<o:p></o:p></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;color:red\">CAUTION: External Email\r\n</span></b><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:12.0pt\">585.797.9473<br>\r\nSafe travels!<br>\r\nThanks,<br>\r\nRick <o:p></o:p></p>\r\n<p class=\"airmailon\">On October 24, 2025 at 08:56:44, Fudge, Gary (<a href=\"mailto:gary.fudge@hp.com\">gary.fudge@hp.com</a>) wrote:<o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"MsoNormal\">I’m on a flight but should land around 10:30-10:45. &nbsp; Let me know of a good number to reach you and I can call then<o:p></o:p></p>\r\n</div>\r\n</div>\r\n<div id=\"ms-outlook-mobile-body-separator-line\">\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n<div id=\"ms-outlook-mobile-signature\">\r\n<div>\r\n<p class=\"MsoNormal\">Gary Fudge<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\">678-654-6734<o:p></o:p></p>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><o:p>&nbsp;</o:p></p>\r\n</div>\r\n</div>\r\n<div class=\"MsoNormal\" align=\"center\" style=\"text-align:center\">\r\n<hr size=\"1\" width=\"98%\" align=\"center\">\r\n</div>\r\n<div id=\"divRplyFwdMsg\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black\">From:</span></b><span style=\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;color:black\"> Rick &lt;<a href=\"mailto:rick@mavrix.one\">rick@mavrix.one</a>&gt;<br>\r\n<b>Sent:</b> Friday, October 24, 2025 7:41:17 AM<br>\r\n<b>To:</b> Fudge, Gary &lt;<a href=\"mailto:gary.fudge@hp.com\">gary.fudge@hp.com</a>&gt;<br>\r\n<b>Subject:</b> Re: HP MJF Printers</span> <o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n</div>\r\n<div>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11.0pt;color:red\">CAUTION: External Email\r\n</span></b><o:p></o:p></p>\r\n<div>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:12.0pt\">Hey Gary,<br>\r\nAre you available to day at 10a for a call?<br>\r\nTalking about power requirements for our facilities next week and need to start pulling together numbers.&nbsp;<br>\r\nOr, can you send me power requirements for the MJF Printers?<br>\r\nLet me know what works.<br>\r\nThanks!<br>\r\nRick <o:p></o:p></p>\r\n<p class=\"xairmailon\">On October 2, 2025 at 11:28:38, Fudge, Gary (<a href=\"mailto:gary.fudge@hp.com\">gary.fudge@hp.com</a>) wrote:<o:p></o:p></p>\r\n<blockquote style=\"margin-top:5.0pt;margin-bottom:5.0pt\">\r\n<div>\r\n<div>\r\n<div>\r\n<p class=\"xmsonormal\">Hello Rick,<o:p></o:p></p>\r\n<p class=\"xmsonormal\">&nbsp;<o:p></o:p></p>\r\n<p class=\"xmsonormal\">Are you all ready to continue the conversation about our 3D Printers/3DP Services?&nbsp; If not, when should I check back with you?<o:p></o:p></p>\r\n<p class=\"xmsonormal\">&nbsp;<o:p></o:p></p>\r\n<p class=\"xmsonormal\">Best Regards,<o:p></o:p></p>\r\n<p class=\"xmsonormal\">&nbsp;<o:p></o:p></p>\r\n<table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"xmsonormal\"><span style=\"font-size:14.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Gary Fudge</span><o:p></o:p></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:23.3pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:23.3pt\">\r\n<p class=\"xmsonormal\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">3D Print - Enterprise Account Manager – US South\r\n</span><o:p></o:p></p>\r\n<p class=\"xmsonormal\"><span style=\"font-size:11.0pt;font-family:&quot;Forma DJR Display&quot;;color:black\">Atlanta , GA</span><o:p></o:p></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:20.6pt\">\r\n<td width=\"126\" style=\"width:94.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"xmsonormal\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">M -&nbsp;(678) 654-6734</span><o:p></o:p></p>\r\n</td>\r\n<td width=\"30\" style=\"width:22.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"xmsonormal\" align=\"center\" style=\"text-align:center\"><span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;;color:black\">|</span><o:p></o:p></p>\r\n</td>\r\n<td width=\"234\" style=\"width:175.5pt;padding:0in 5.4pt 0in 5.4pt;height:20.6pt\">\r\n<p class=\"xmsonormal\"><span style=\"color:black\"><a href=\"mailto:Gary.Fudge@HP.com\">Gary.Fudge<span style=\"font-size:10.0pt;font-family:&quot;Forma DJR Micro&quot;\">@HP.com</span></a></span><o:p></o:p></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:22.5pt\">\r\n<td width=\"390\" colspan=\"3\" style=\"width:292.5pt;padding:0in 5.4pt 0in 5.4pt;height:22.5pt\">\r\n<p class=\"xmsonormal\"><span style=\"font-size:11.0pt;color:black\"><img border=\"0\" width=\"368\" height=\"85\" style=\"width:3.8333in;height:.8819in\" id=\"_x0000_i1028\" src=\"cid:92845B48-0023-45F7-81C1-620B3C947B46\"></span><o:p></o:p></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"xmsonormal\">&nbsp;<o:p></o:p></p>\r\n<p class=\"xmsonormal\">&nbsp;<o:p></o:p></p>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</blockquote>\r\n</div>\r\n</div>\r\n</body>\r\n</html>\r\n','Hello Rick,\r\n\r\nHow are things progressing/when should we connect back?  Last we talked you mentioned wanting to get some equipment about this time.\r\n\r\nPlease advise\r\n\r\nGary Fudge\r\n3D Print - Enterprise Account Manager – US South\r\nAtlanta , GA\r\nM - (678) 654-6734\r\n|\r\nGary.Fudge@HP.com<mailto:Gary.Fudge@HP.com>\r\n[image001.png]\r\n\r\n\r\nFrom: Fudge, Gary\r\nSent: Monday, November 3, 2025 5:47 PM\r\nTo: \'Rick\' <rick@mavrix.one>\r\nSubject: RE: HP MJF Printers\r\n\r\nHello Rick,\r\n\r\nAny questions on the site prep guide?\r\n\r\nAlso, please email me the physical address in FL so I can start getting you set up in our system.\r\n\r\nThanks\r\n\r\nGary Fudge\r\n3D Print - Enterprise Account Manager – US South\r\nAtlanta , GA\r\nM - (678) 654-6734\r\n|\r\nGary.Fudge@HP.com<mailto:Gary.Fudge@HP.com>\r\n[image001.png]\r\n\r\n\r\nFrom: Fudge, Gary\r\nSent: Friday, October 24, 2025 6:27 PM\r\nTo: \'Rick\' <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSubject: RE: HP MJF Printers\r\n\r\nHello Rick,\r\n\r\nGood catching up with you today.  See attached site prep guide as requested.\r\n\r\nCan you please email me your address now that you have the land secure so I can go ahead and get you into our system?\r\n\r\nPlease let me know if you have any questions or need any additional information.\r\n\r\nBest Regards\r\n\r\nGary Fudge\r\n3D Print - Enterprise Account Manager – US South\r\nAtlanta , GA\r\nM - (678) 654-6734\r\n|\r\nGary.Fudge@HP.com<mailto:Gary.Fudge@HP.com>\r\n[image001.png]\r\n\r\n\r\nFrom: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSent: Friday, October 24, 2025 8:46 AM\r\nTo: Fudge, Gary <gary.fudge@hp.com<mailto:gary.fudge@hp.com>>\r\nSubject: Re: HP MJF Printers\r\n\r\nCAUTION: External Email\r\n585.797.9473\r\nSafe travels!\r\nThanks,\r\nRick\r\n\r\nOn October 24, 2025 at 08:56:44, Fudge, Gary (gary.fudge@hp.com<mailto:gary.fudge@hp.com>) wrote:\r\nI’m on a flight but should land around 10:30-10:45.   Let me know of a good number to reach you and I can call then\r\n\r\nGary Fudge\r\n678-654-6734\r\n\r\n________________________________\r\nFrom: Rick <rick@mavrix.one<mailto:rick@mavrix.one>>\r\nSent: Friday, October 24, 2025 7:41:17 AM\r\nTo: Fudge, Gary <gary.fudge@hp.com<mailto:gary.fudge@hp.com>>\r\nSubject: Re: HP MJF Printers\r\n\r\nCAUTION: External Email\r\nHey Gary,\r\nAre you available to day at 10a for a call?\r\nTalking about power requirements for our facilities next week and need to start pulling together numbers.\r\nOr, can you send me power requirements for the MJF Printers?\r\nLet me know what works.\r\nThanks!\r\nRick\r\n\r\nOn October 2, 2025 at 11:28:38, Fudge, Gary (gary.fudge@hp.com<mailto:gary.fudge@hp.com>) wrote:\r\n\r\nHello Rick,\r\n\r\n\r\n\r\nAre you all ready to continue the conversation about our 3D Printers/3DP Services?  If not, when should I check back with you?\r\n\r\n\r\n\r\nBest Regards,\r\n\r\n\r\n\r\nGary Fudge\r\n\r\n3D Print - Enterprise Account Manager – US South\r\n\r\nAtlanta , GA\r\n\r\nM - (678) 654-6734\r\n\r\n|\r\n\r\nGary.Fudge@HP.com<mailto:Gary.Fudge@HP.com>\r\n\r\n[cid:92845B48-0023-45F7-81C1-620B3C947B46]\r\n\r\n\r\n\r\n\r\n',1,0,0,0,0,0,'2025-12-02 21:59:14','2025-12-04 14:05:25','2025-12-04 14:05:25','2025-12-04 16:04:32',NULL,NULL,NULL),
(105,4,'<49812c77-be30-434d-b023-24239dbb6fed@atl1s07mta3028.xt.local>',NULL,NULL,'Try TinyMCE\'s advanced features before your free trial expires','team@engage.tiny.cloud','\"The TinyMCE Team\"','<!DOCTYPE html>\r\n<html xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" lang=\"en\">\r\n\r\n<head>\r\n	<title></title>\r\n	<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n	<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"><!--[if mso]>\r\n<xml><w:WordDocument xmlns:w=\"urn:schemas-microsoft-com:office:word\"><w:DontUseAdvancedTypographyReadingMail/></w:WordDocument>\r\n<o:OfficeDocumentSettings><o:PixelsPerInch>96</o:PixelsPerInch><o:AllowPNG/></o:OfficeDocumentSettings></xml>\r\n<![endif]--><!--[if !mso]><!-->\r\n	<link href=\"https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&amp;display=swap\" rel=\"stylesheet\" type=\"text/css\">\r\n	<link href=\"https://fonts.googleapis.com/css2?family=Fira+Code:wght@300..700&amp;display=swap\" rel=\"stylesheet\" type=\"text/css\"><!--<![endif]-->\r\n	<style>\r\n		* {\r\n			box-sizing: border-box;\r\n		}\r\n\r\n		body {\r\n			margin: 0;\r\n			padding: 0;\r\n		}\r\n\r\n		a[x-apple-data-detectors] {\r\n			color: inherit !important;\r\n			text-decoration: inherit !important;\r\n		}\r\n\r\n		#MessageViewBody a {\r\n			color: inherit;\r\n			text-decoration: none;\r\n		}\r\n\r\n		p {\r\n			line-height: inherit\r\n		}\r\n\r\n		.desktop_hide,\r\n		.desktop_hide table {\r\n			mso-hide: all;\r\n			display: none;\r\n			max-height: 0px;\r\n			overflow: hidden;\r\n		}\r\n\r\n		.image_block img+div {\r\n			display: none;\r\n		}\r\n\r\n		sup,\r\n		sub {\r\n			font-size: 75%;\r\n			line-height: 0;\r\n		}\r\n\r\n		#converted-body .list_block ul,\r\n		#converted-body .list_block ol,\r\n		.body [class~=\"x_list_block\"] ul,\r\n		.body [class~=\"x_list_block\"] ol,\r\n		u+.body .list_block ul,\r\n		u+.body .list_block ol {\r\n			padding-left: 20px;\r\n		}\r\n\r\n		@media (max-width:620px) {\r\n			.desktop_hide table.icons-outer {\r\n				display: inline-table !important;\r\n			}\r\n\r\n			.image_block div.fullWidth {\r\n				max-width: 100% !important;\r\n			}\r\n\r\n			.mobile_hide {\r\n				display: none;\r\n			}\r\n\r\n			.row-content {\r\n				width: 100% !important;\r\n			}\r\n\r\n			.stack .column {\r\n				width: 100%;\r\n				display: block;\r\n			}\r\n\r\n			.mobile_hide {\r\n				min-height: 0;\r\n				max-height: 0;\r\n				max-width: 0;\r\n				overflow: hidden;\r\n				font-size: 0px;\r\n			}\r\n\r\n			.desktop_hide,\r\n			.desktop_hide table {\r\n				display: table !important;\r\n				max-height: none !important;\r\n			}\r\n		}\r\n	</style><!--[if mso ]><style>sup, sub { font-size: 100% !important; } sup { mso-text-raise:10% } sub { mso-text-raise:-10% }</style> <![endif]-->\r\n</head>\r\n\r\n<body class=\"body\" style=\"background-color: #ffffff; margin: 0; padding: 0; -webkit-text-size-adjust: none; text-size-adjust: none;\">\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"nl-container\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #ffffff;\" width=\"100%\">\r\n	<tbody>\r\n		<tr>\r\n			<td>\r\n			<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"row row-1\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f4f4f4;\" width=\"100%\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"row-content stack\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f4f4f4; border-radius: 0; color: #000000; width: 600px; margin: 0 auto;\" width=\"600\">\r\n							<tbody>\r\n								<tr>\r\n									<td class=\"column column-1\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400; text-align: left; vertical-align: top;\" width=\"100%\">\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"paragraph_block block-1\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"pad\" style=\"padding-bottom:10px;padding-left:40px;padding-right:40px;padding-top:10px;\">\r\n												<div style=\"color:#233477;direction:ltr;font-family:\'Inter\',\'Arial\';font-size:14px;font-weight:300;letter-spacing:0px;line-height:1.5;text-align:center;mso-line-height-alt:21px;\">\r\n												<p style=\"margin: 0;\">Is this email not displaying correctly? <a href=\"https://pi.tiny.cloud/webmail/2202/1924500100/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864\" style=\"text-decoration: underline; color: #335dff;\">View it in your browser</a></p>\r\n												</div>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n\r\n			<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"row row-2\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f4f4f4;\" width=\"100%\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"row-content stack\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f9f9fb; border-radius: 0; color: #000000; width: 600px; margin: 0 auto;\" width=\"600\">\r\n							<tbody>\r\n								<tr>\r\n									<td class=\"column column-1\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400; text-align: left; padding-bottom: 5px; padding-top: 5px; vertical-align: top;\" width=\"100%\">\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"image_block block-1\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt;\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"pad\" style=\"padding-bottom:20px;padding-left:40px;padding-right:40px;padding-top:30px;width:100%;\">\r\n												<div align=\"left\" class=\"alignment\">\r\n												<div style=\"max-width: 90px;\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xsx/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\" target=\"_blank\"><img alt=\"Tiny logo\" height=\"auto\" src=\"https://www2.ephox.com/l/2202/2021-02-22/d55tdv/2202/16140490780zkI7GHy/logo_tiny__lock_secondary.png\" style=\"display: block; height: auto; border: 0; width: 100%;\" title=\"Tiny logo\" width=\"90\"></a></div>\r\n												</div>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n\r\n			<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"row row-3\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f4f4f4;\" width=\"100%\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"row-content stack\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f9f9fb; border-radius: 0; color: #000000; width: 600px; margin: 0 auto;\" width=\"600\">\r\n							<tbody>\r\n								<tr>\r\n									<td class=\"column column-1\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400; text-align: left; padding-bottom: 5px; padding-top: 5px; vertical-align: top;\" width=\"100%\">\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"paragraph_block block-1\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"pad\" style=\"padding-bottom:10px;padding-left:40px;padding-right:40px;padding-top:10px;\">\r\n												<div style=\"color:#05bc84;direction:ltr;font-family:\'Inter\',\'Arial\';font-size:16px;font-weight:400;letter-spacing:0px;line-height:1.8;text-align:center;mso-line-height-alt:29px;\">\r\n												<p style=\"margin: 0;\">7 of 14 days remaining in trial</p>\r\n												</div>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"image_block block-2\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt;\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"pad\" style=\"padding-left:40px;padding-right:40px;width:100%;\">\r\n												<div align=\"center\" class=\"alignment\">\r\n												<div class=\"fullWidth\" style=\"max-width: 450px;\"><img alt=\"time tracker image\" height=\"auto\" src=\"https://pi.tiny.cloud/l/2202/2024-06-20/dh87s3/2202/1718923446A5erkv8K/ProgressBar_halfway.png\" style=\"display: block; height: auto; border: 0; width: 100%;\" title=\"time tracker image\" width=\"450\"></div>\r\n												</div>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"paragraph_block block-3\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"pad\" style=\"padding-bottom:10px;padding-left:40px;padding-right:40px;padding-top:10px;\">\r\n												<div style=\"color:#202533;direction:ltr;font-family:\'Inter\',\'Arial\';font-size:16px;font-weight:200;letter-spacing:0px;line-height:1.8;text-align:center;mso-line-height-alt:29px;\">\r\n												<p style=\"margin: 0;\">Explore TinyMCE\'s <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xrq/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\" rel=\"noopener\" style=\"text-decoration: underline; color: #335dff;\" target=\"_blank\">advanced features</a>&nbsp;before it\'s too late!</p>\r\n												</div>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"paragraph_block block-4\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"pad\" style=\"padding-left:40px;padding-right:40px;padding-top:10px;\">\r\n												<div style=\"color:#202533;direction:ltr;font-family:\'Inter\',\'Arial\';font-size:16px;font-weight:200;letter-spacing:0px;line-height:1.8;text-align:left;mso-line-height-alt:29px;\">\r\n												<p style=\"margin: 0; margin-bottom: 16px;\">Build with some of our most popular features like PowerPaste, Spell Checker, Merge Tags, Comments and more.</p>\r\n\r\n												<p style=\"margin: 0;\">Simply add the TinyMCE code snippet to your project to get started</p>\r\n												</div>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"list_block block-5\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word; color: #202533; direction: ltr; font-family: \'Inter\',\'Arial\'; font-size: 16px; font-weight: 200; letter-spacing: 0px; line-height: 1.8; text-align: left; mso-line-height-alt: 29px;\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"pad\" style=\"padding-bottom:30px;padding-left:60px;padding-right:40px;padding-top:10px;\">\r\n												<div style=\"margin-left:-20px\">\r\n												<ul style=\"margin-top: 0; margin-bottom: 0; list-style-type: circle;\">\r\n													<li aria-level=\"1\" style=\"Margin: 0 0 0 0;\"><a href=\"https://pi.tiny.cloud/e/2202/-campaign-onboarding-free-html/dk6xrt/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\" style=\"text-decoration: underline; color: #335dff;\">Log into </a>the Customer Portal&nbsp;</li>\r\n													<li aria-level=\"1\" style=\"Margin: 0 0 0 0;\">Add the TinyMCE code snippet to your project (this snippet will contain your API key)</li>\r\n													<li aria-level=\"1\" style=\"Margin: 0 0 0 0;\">Add your website or project URL to the “Approved Domains” section of the Customer Portal</li>\r\n													<li aria-level=\"1\" style=\"Margin: 0 0 0 0;\">Start building! 🎉</li>\r\n												</ul>\r\n												</div>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n\r\n			<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"row row-4\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f4f4f4;\" width=\"100%\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"row-content stack\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #ffffff; border-radius: 0; color: #000000; width: 600px; margin: 0 auto;\" width=\"600\">\r\n							<tbody>\r\n								<tr>\r\n									<td class=\"column column-1\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400; text-align: left; padding-bottom: 5px; padding-top: 5px; vertical-align: top;\" width=\"100%\">\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"paragraph_block block-1\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"pad\" style=\"padding-bottom:10px;padding-left:40px;padding-right:40px;padding-top:30px;\">\r\n												<div style=\"color:#202533;direction:ltr;font-family:\'Inter\',\'Arial\';font-size:16px;font-weight:200;letter-spacing:0px;line-height:1.8;text-align:left;mso-line-height-alt:29px;\">\r\n												<p style=\"margin: 0; margin-bottom: 16px;\"><strong>For the next 7 days, enjoy full access to TinyMCE’s most powerful features</strong> — including <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xrx/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\" style=\"text-decoration: underline; color: #335dff;\">PowerPaste</a>, <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xs1/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\" style=\"text-decoration: underline; color: #335dff;\">Spell Checker</a>, <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xs4/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\" style=\"text-decoration: underline; color: #335dff;\">Merge Tags</a>, <a\r\nhref=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xs7/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\" style=\"text-decoration: underline; color: #335dff;\">Comments</a>, and more. It’s your chance to test the editor’s full potential and see how it performs with your most complex use cases.</p>\r\n\r\n												<p style=\"margin: 0;\">Plus, don’t miss out on our most popular premium add-ons: <strong><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xsb/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\" style=\"text-decoration: underline; color: #335dff;\">AI Assistant</a></strong>, <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xsf/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\" style=\"text-decoration: underline; color: #335dff;\"><strong>Document Converters</strong></a><strong>, </strong><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xsj/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\" style=\"text-decoration: underline; color: #335dff;\"><strong>Revision History</strong></a><strong>, </strong><a\r\nhref=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xsm/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\" style=\"text-decoration: underline; color: #335dff;\"><strong>Suggested Edits</strong></a><strong>,</strong> and <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xsq/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\" style=\"text-decoration: underline; color: #335dff;\"><strong>Image Optimizer</strong></a> — all available to try free for 7 more days.</p>\r\n												</div>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"paragraph_block block-2\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"pad\" style=\"padding-bottom:10px;padding-left:40px;padding-right:40px;padding-top:30px;\">\r\n												<div style=\"color:#202533;direction:ltr;font-family:\'Inter\',\'Arial\';font-size:16px;font-weight:200;letter-spacing:0px;line-height:1.8;text-align:left;mso-line-height-alt:29px;\">\r\n												<p style=\"margin: 0;\"><strong>Need additional help?</strong><br>\r\n												Follow our <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xst/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\" rel=\"noopener\" style=\"text-decoration: underline; color: #335dff;\" target=\"_blank\">Cloud-hosted Quick-start guide</a> or simply forward this email to your developer.</p>\r\n												</div>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"button_block block-3\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt;\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"pad\" style=\"padding-bottom:40px;padding-left:40px;padding-right:40px;padding-top:10px;text-align:left;\">\r\n												<div align=\"left\" class=\"alignment\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xst/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\" style=\"color:#ffffff;text-decoration:none;\" target=\"_blank\">\r\n<!--[if mso]>\r\n<v:roundrect xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:w=\"urn:schemas-microsoft-com:office:word\"  href=\"https://www.tiny.cloud/blog/cloud-based-tinymce-editor/?utm_medium=email&utm_source=email&utm_campaign=onboarding_free\"  style=\"height:46px;width:357px;v-text-anchor:middle;\" arcsize=\"0%\" fillcolor=\"#335dff\">\r\n<v:stroke dashstyle=\"Solid\" weight=\"0px\" color=\"#335dff\"/>\r\n<w:anchorlock/>\r\n<v:textbox inset=\"0px,0px,0px,0px\">\r\n<center dir=\"false\" style=\"color:#ffffff;font-family:sans-serif;font-size:16px\">\r\n<![endif]--><span class=\"button\" style=\"background-color: #335dff; border-bottom: 0px solid transparent; border-left: 0px solid transparent; border-radius: 0px; border-right: 0px solid transparent; border-top: 0px solid transparent; color: #ffffff; display: inline-block; font-family: \'Fira Code\',\'Arial\'; font-size: 16px; font-weight: 400; mso-border-alt: none; padding-bottom: 7px; padding-top: 7px; padding-left: 22px; padding-right: 22px; text-align: center; width: auto; word-break: keep-all; letter-spacing: normal;\"><span style=\"word-break: break-word; line-height: 32px;\">Cloud-hosted Quick-start guide →</span></span>\r\n <!--[if mso]></center></v:textbox></v:roundrect><![endif]--></a></div>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n\r\n			<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"row row-5\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f4f4f4;\" width=\"100%\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"row-content stack\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #0c132c; border-radius: 0; color: #000000; width: 600px; margin: 0 auto;\" width=\"600\">\r\n							<tbody>\r\n								<tr>\r\n									<td class=\"column column-1\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400; text-align: left; padding-bottom: 5px; padding-top: 5px; vertical-align: top;\" width=\"100%\">\r\n									<div class=\"spacer_block block-1\" style=\"height:40px;line-height:40px;font-size:1px;\"> </div>\r\n\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"icons_block block-2\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; text-align: center; line-height: 0;\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"pad\" style=\"vertical-align: middle; color: #000000; font-family: inherit; font-size: 14px; font-weight: 400; padding-left: 40px; padding-right: 40px; text-align: center;\">\r\n												<table cellpadding=\"0\" cellspacing=\"0\" class=\"icons-outer\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; display: inline-table;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"vertical-align: middle; text-align: center; padding-top: 5px; padding-bottom: 5px; padding-left: 10px; padding-right: 20px;\" class=\"\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xt1/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\" style=\"text-decoration: none;\" target=\"_self\"><img align=\"center\" alt=\"facebook\" class=\"icon\" height=\"auto\" src=\"https://pi.tiny.cloud/l/2202/2024-08-27/dhld41/2202/1724751073mZ9u0qBj/icons8_facebook_96.png\" style=\"display: block; height: auto; margin: 0 auto; border: 0;\" width=\"32\"></a></td>\r\n															<td style=\"vertical-align: middle; text-align: center; padding-top: 5px; padding-bottom: 5px; padding-left: 20px; padding-right: 20px;\" class=\"\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xt4/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\" style=\"text-decoration: none;\" target=\"_self\"><img align=\"center\" alt=\"twitter\" class=\"icon\" height=\"auto\" src=\"https://pi.tiny.cloud/l/2202/2024-08-27/dhld54/2202/17247512213yTqKMau/Twitter_X_icon_white.png\" style=\"display: block; height: auto; margin: 0 auto; border: 0;\" width=\"32\"></a></td>\r\n															<td style=\"vertical-align: middle; text-align: center; padding-top: 5px; padding-bottom: 5px; padding-left: 20px; padding-right: 20px;\" class=\"\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xt7/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\" style=\"text-decoration: none;\" target=\"_self\"><img align=\"center\" alt=\"linkedin\" class=\"icon\" height=\"auto\" src=\"https://pi.tiny.cloud/l/2202/2024-08-27/dhld4m/2202/1724751160RDTHTZoS/icons8_linkedin_104.png\" style=\"display: block; height: auto; margin: 0 auto; border: 0;\" width=\"32\"></a></td>\r\n															<td style=\"vertical-align: middle; text-align: center; padding-top: 5px; padding-bottom: 5px; padding-left: 20px; padding-right: 20px;\" class=\"\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xtb/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\" style=\"text-decoration: none;\" target=\"_self\"><img align=\"center\" alt=\"stack overflow\" class=\"icon\" height=\"auto\" src=\"https://pi.tiny.cloud/l/2202/2024-08-27/dhld4x/2202/1724751181bzH3aYSZ/icons8_stack_overflow_100.png\" style=\"display: block; height: auto; margin: 0 auto; border: 0;\" width=\"32\"></a></td>\r\n															<td style=\"vertical-align: middle; text-align: center; padding-top: 5px; padding-bottom: 5px; padding-left: 20px; padding-right: 10px;\" class=\"\"><a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xtf/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\" style=\"text-decoration: none;\" target=\"_self\"><img align=\"center\" alt=\"github\" class=\"icon\" height=\"auto\" src=\"https://pi.tiny.cloud/l/2202/2024-08-27/dhld4j/2202/1724751125SZG76c9m/icons8_github_96.png\" style=\"display: block; height: auto; margin: 0 auto; border: 0;\" width=\"32\"></a></td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n\r\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"paragraph_block block-3\" role=\"presentation\" style=\"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;\" width=\"100%\">\r\n										<tbody>\r\n											<tr>\r\n												<td class=\"pad\" style=\"padding-bottom:20px;padding-left:40px;padding-right:40px;padding-top:20px;\">\r\n												<div style=\"color:#ffffff;direction:ltr;font-family:\'Inter\',\'Arial\';font-size:14px;font-weight:200;letter-spacing:0px;line-height:1.5;text-align:center;mso-line-height-alt:21px;\">\r\n												<p style=\"margin: 0;\">This email was sent to rick@mavrix.one<br>\r\n												<br>\r\n												Update your <a href=\"https://pi.tiny.cloud/emailPreference/epc/2202/GCJnM6uCa9lowWujzzOgjgKBTs4rqjHMIMbbbl-kBW4/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864/1924500100\" style=\"text-decoration: underline; color: #fff;\">email preferences</a> or <a href=\"https://pi.tiny.cloud/unsubscribe/u/2202/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864/1924500100\" style=\"text-decoration: underline; color: #fff;\">unsubscribe</a><br>\r\n												<br>\r\n												© 2025 Tiny Technologies | All rights reserved<br>\r\n												www.tiny.cloud | View our <a href=\"https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xtj/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\" style=\"text-decoration: underline; color: #fff;\">privacy policy</a><br>\r\n												2100 Geng Road, Palo Alto, CA 94303 USA</p>\r\n												</div>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n\r\n									<div class=\"spacer_block block-4\" style=\"height:40px;line-height:40px;font-size:1px;\"> </div>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n<!-- End -->\r\n<img alt=\"\" src=\"https://pi.tiny.cloud/r/2202/1/1924500100/open/1\" /></body>\r\n\r\n</html>','Explore all that TinyMCE has to offer\r\n\r\nEmail not displaying correctly? View it in your browser https://pi.tiny.cloud/webmail/2202/1924500100/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864\r\n\r\nhttps://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dc7d55/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\r\n\r\n7 of 14 days remaining in trial\r\nExplore TinyMCE\'s advanced features (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xrq/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk)  before it\'s too late!\r\n\r\nBuild with some of our most popular features like PowerPaste, Spell Checker, Merge Tags, Comments and more.\r\n\r\nSimply add the TinyMCE code snippet to your project to get started\r\n* Log into (https://pi.tiny.cloud/e/2202/-campaign-onboarding-free-html/dk6xrt/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk) the Customer Portal\r\n* Add the TinyMCE code snippet to your project (this snippet will contain your API key)\r\n* Add your website or project URL to the “Approved Domains” section of the Customer Portal\r\n* Start building! 🎉\r\n\r\nFor the next 7 days, enjoy full access to TinyMCE’s most powerful features — including PowerPaste (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xrx/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk) , Spell Checker (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xs1/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk) , Merge Tags (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xs4/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk) , Comments (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xs7/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk) , and more. It’s your chance to test the editor’s full potential and see how it performs with your most complex use cases.\r\n\r\nPlus, don’t miss out on our most popular premium add-ons: AI Assistant (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xsb/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk) , Document Converters (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xsf/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk) , Revision History (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xsj/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk) , Suggested Edits (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xsm/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk) , and Image Optimizer (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xsq/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk) — all available to try free for 7 more days.\r\n\r\nNeed additional help?\r\nFollow our Cloud-hosted Quick-start guide (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xst/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk) or simply forward this email to your developer.\r\nCloud-hosted Quick-start guide → (https://pi.tiny.cloud/e/2202/l-utm-campaign-onboarding-free/dk6xst/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk)\r\n\r\nhttps://pi.tiny.cloud/e/2202/jointiny-/dc7d5k/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\r\nhttps://pi.tiny.cloud/e/2202/jointiny/dc7d5n/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\r\nhttps://pi.tiny.cloud/e/2202/company-jointiny-/dc7d5r/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\r\nhttps://pi.tiny.cloud/e/2202/search-q-23tinymce/dc7d5v/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\r\nhttps://pi.tiny.cloud/e/2202/tinymce/dc7d5y/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\r\n\r\nThis email was sent to rick@mavrix.one\r\nUpdate your email preferences https://pi.tiny.cloud/emailPreference/epc/2202/GCJnM6uCa9lowWujzzOgjgKBTs4rqjHMIMbbbl-kBW4/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864/1924500100or unsubscribe https://pi.tiny.cloud/unsubscribe/u/2202/03484172d609e73b0e3383fe58a4556d57d5f14bc74ed283d17e1a6cbcec5864/1924500100\r\n\r\n© 2025 Tiny Technologies | All rights reserved\r\nwww.tiny.cloud | View our privacy policy\r\nhttps://pi.tiny.cloud/e/2202/legal-privacy/dc7d62/1924500100/h/qSztK9huQo404zaszLKd0opn98P0-1e-j2ZY9OWoupk\r\n2100 Geng Road, Palo Alto, CA 94303 USA',0,0,0,0,0,0,'2025-12-03 13:00:41','2025-12-04 14:05:25','2025-12-04 14:05:25','2025-12-04 14:05:25',NULL,NULL,NULL),
(106,4,'<1976873432.64059005.1764788547535@abmktmail-trigger1i.marketo.org>',NULL,NULL,'[Onboarding] Lucid Training Labs','email@e.lucid.co','Lucid','<!doctype html>\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" lang=\"en\">\r\n<head> \r\n<meta http-equiv=\"Content-Type\" content=\"text/html charset=UTF-8\"> \r\n<meta name=\"viewport\" content=\"width=device-width\"> \r\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"> \r\n<meta name=\"color-scheme\" content=\"light dark\"> \r\n<meta name=\"supported-color-schemes\" content=\"light dark\"> \r\n<title>[Onboarding] Lucid Training Labs</title> \r\n<!--[if mso]>\r\n        <style>\r\n        * {\r\n        font-family: sans-serif!important;\r\n        }\r\n        </style>\r\n        <![endif]--> \r\n<style>\r\n        \r\nhtml,\r\nbody {\r\n    margin: 0 auto !important;\r\n    padding: 0 !important;\r\n    height: 100% !important;\r\n    width: 100% !important;\r\n}\r\n\r\n* {\r\n    -ms-text-size-adjust: 100%;\r\n    -webkit-text-size-adjust: 100%;\r\n}\r\n\r\ndiv[style*=\"margin: 16px 0\"] {\r\n    margin: 0 !important;\r\n}\r\n\r\ntable,\r\ntd {\r\n    mso-table-lspace: 0pt !important;\r\n    mso-table-rspace: 0pt !important;\r\n}\r\n\r\ntable {\r\n    border-spacing: 0 !important;\r\n    border-collapse: collapse !important;\r\n    table-layout: fixed !important;\r\n    margin: 0 auto !important;\r\n}\r\n\r\ntd {\r\n    font-family: Arial,Helvetica,Verdana,sans-serif !important;\r\n    font-size: 20px !important;\r\n    line-height: 28px !important;\r\n    color: #282c33 !important;\r\n    mso-height-rule: exactly !important;\r\n}\r\n\r\n.header {\r\n    font-size: 48px !important;\r\n    line-height: 52px !important;\r\n    font-weight: bold !important;\r\n    text-align: left !important;\r\n    background-color: #FFDDA6 !important;\r\n}\r\n      \r\n.subheader {\r\n	font-weight: bold !important;\r\n}\r\n\r\n.text {\r\n    background-color: #FFDDA6 !important;\r\n    color: #282C33 !important;\r\n    font-size: 24px !important;\r\n    line-height: 36px !important;\r\n}\r\n      \r\n.text2 {\r\n    background-color: #FFFFFF !important;\r\n    color: #282C33 !important;\r\n    font-size: 24px !important;\r\n    line-height: 36px !important;\r\n}\r\n      \r\n.text3 {\r\n    background-color: #FFFFFF !important;\r\n    color: #282C33 !important;\r\n    font-size: 24px !important;\r\n    line-height: 36px !important;\r\n}\r\n\r\n.link {\r\n    font-weight: bold !important;\r\n    font-size: 20px !important;\r\n    line-height: 28px !important;\r\n    text-decoration: none !important;\r\n    color: #282C33 !important;\r\n}\r\n\r\n.link:hover {\r\n    color: #CC4E00 !important;\r\n}\r\n\r\n.link2 {\r\n    font-weight: bold !important;\r\n    color: #282C33 !important;\r\n    text-decoration: underline !important;\r\n}\r\n\r\n.link2:hover {\r\n    color: #F96B13 !important;\r\n}\r\n      \r\n.left-image {\r\n	background-color: #FFF3D9 !important;\r\n}\r\n      \r\n.subheader {\r\n	background-color: #FFF3D9 !important;\r\n}\r\n      \r\n.course-text {\r\n	background-color: #FFF3D9 !important;\r\n}\r\n   \r\n.button1 {\r\n    background: #282C33 !important;\r\n    border: 1px solid #282C33 !important;\r\n    text-decoration: none !important;\r\n    color: #ffffff !important;\r\n    border-radius: 4px !important;\r\n    display:inline-block !important;\r\n    mso-padding-alt:0 !important;\r\n    font-size: 18px !important;\r\n    padding: 10px 20px !important;\r\n}\r\n\r\n.button-pad1 {\r\n    vertical-align: top !important;\r\n    background-color: #FFF3D9 !important;\r\n    font-weight: bold !important;\r\n    width: 280px !important;\r\n    max-width: 280px !important;\r\n}\r\n\r\n.button1:hover {\r\n  background-color: #F96B13 !important;\r\n  border: 1px solid #F96B13 !important;\r\n  color: #FFFFFF !important;\r\n  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0) !important;\r\n}\r\n      \r\n.button2 {\r\n    background: #F96B13 !important;\r\n    border: 1px solid #F96B13 !important;\r\n    text-decoration: none !important;\r\n    color: #ffffff !important;\r\n    border-radius: 4px !important;\r\n    display:inline-block !important;\r\n    mso-padding-alt:0 !important;\r\n    font-size: 18px !important;\r\n    padding: 10px 20px !important;\r\n}\r\n\r\n.button-pad2 {\r\n    vertical-align: top !important;\r\n    background-color: #FFFFFF !important;\r\n    font-weight: bold !important;\r\n    width: 280px !important;\r\n    max-width: 280px !important;\r\n}\r\n\r\n.button2:hover {\r\n  background-color: #5D646F !important;\r\n  border: 1px solid #5D646F !important;\r\n  color: #FFFFFF !important;\r\n  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0) !important;\r\n}\r\n      \r\n.footer {\r\n    font-size: 12px !important;\r\n    line-height: 18px !important;\r\n}\r\n        \r\n@media (prefers-color-scheme: dark ) {\r\n\r\n.deep-drk-bkgrd {\r\n    background-color: #23272c !important;\r\n}\r\n\r\n.drk-bkgrd { \r\n    background-color: #282C33 !important; \r\n}\r\n\r\n.hero-bkgrd { \r\n    background-color: #FFDDA6 !important; \r\n}\r\n\r\ntd {\r\n    color: #ffffff !important;\r\n}    \r\n\r\n.header {\r\n    color: #282C33 !important; \r\n}\r\n    \r\n.text { \r\n    background-color: #FFDDA6 !important; \r\n}\r\n \r\n.text2, .text3, .col, .left-col, .left-image, .subheader, .course-text {\r\n	color: #FFFFFF !important;\r\n    background-color: #282C33 !important;\r\n}\r\n\r\n.link { \r\n    color: #F96B13 !important; \r\n}\r\n\r\n.link2:hover {\r\n    color: #F96B13 !important;\r\n}\r\n\r\n.link2 {\r\n    color: #282C33 !important;\r\n}\r\n    \r\n.button1 {\r\n    background: #f2f2f2 !important;\r\n    border: 1px solid #282C33 !important;\r\n    text-decoration: none !important;\r\n    color: #282C33 !important;\r\n    border-radius: 4px !important;\r\n    display: inline-block !important;\r\n    mso-padding-alt: 0 !important;\r\n    font-size: 20px !important;\r\n}\r\n\r\n.button-pad1, .button-pad2 {\r\n    vertical-align: top !important;\r\n    background-color: #282C33 !important;\r\n}\r\n\r\n.button1:hover {\r\n    background: #CED4DB !important;\r\n    border: 1px solid #CED4DB !important;\r\n    color: #000000 !important;\r\n}\r\n\r\n.footer-link {\r\n    color: #ffffff !important; \r\n}\r\n\r\n    .ftr-logo-dark { display:block !important; width: 80px !important; overflow: visible !important; float: none !important; max-height:inherit !important; max-width:80px !important; line-height: auto !important; margin-top:0px !important; visibility:inherit !important; }\r\n\r\n    .ftr-logo-light { display:none !important; width: 0px !important; max-width: 0px !important;}\r\n}\r\n\r\ntable table table {\r\n    table-layout: auto;\r\n}\r\n\r\nimg {\r\n    -ms-interpolation-mode: bicubic;\r\n}\r\n\r\n*[x-apple-data-detectors] {\r\n    color: inherit !important;\r\n    text-decoration: none !important;\r\n}\r\n\r\n.x-gmail-data-detectors,\r\n.x-gmail-data-detectors *,\r\n.aBn {\r\n    border-bottom: 0 !important;\r\n    cursor: default !important;\r\n}\r\n\r\n\r\n</style> \r\n<!--[if gte mso 9]>\r\n    <xml>\r\n    <o:OfficeDocumentSettings>\r\n    <o:AllowPNG/>\r\n    <o:PixelsPerInch>96</o:PixelsPerInch>\r\n    </o:OfficeDocumentSettings>\r\n    </xml>\r\n<![endif]--> \r\n<style>\r\n\r\n@media only screen and (max-width: 660px) {\r\n\r\n.logo {\r\n    padding-top: 15px !important;\r\n    padding-bottom: 0px !important;\r\n    padding-left: 15px !important;\r\n}\r\n\r\n.logo-img {\r\n    max-width: 60px !important;\r\n    padding-left: 15px !important;\r\n}\r\n\r\n.logo-big {\r\n     padding-top: 20px !important;\r\n     padding-bottom: 30px !important;\r\n     padding-left: 0px !important;\r\n     padding-right:0px !important;\r\n}\r\n\r\n.logo-big-img {\r\n    max-width: 200px !important;\r\n}\r\n\r\n.header {\r\n    font-size: 30px !important;\r\n    line-height: 1.2 !important;\r\n    padding: 0px 20px 20px 20px !important;\r\n}\r\n\r\n.link {\r\n    font-size: 18px !important;\r\n    line-height: 24px !important;\r\n    padding: 30px 0px 30px 0px !important;\r\n    max-width: 680px !important;\r\n}\r\n    \r\n.subheader {\r\n    font-size: 18px !important;\r\n    text-align: left !important;\r\n    line-height: 24px !important;\r\n    padding: 0px 20px 10px 20px !important;\r\n    max-width: 680px !important;\r\n}\r\n    \r\n.text {\r\n    font-size: 18px !important;\r\n    text-align: left !important;\r\n    line-height: 24px !important;\r\n    padding: 0px 20px 20px 20px !important;\r\n    max-width: 680px !important;\r\n}\r\n    \r\n.text2 {\r\n    font-size: 18px !important;\r\n    text-align: left !important;\r\n    line-height: 24px !important;\r\n    padding: 30px 20px 10px 20px !important;\r\n    max-width: 680px !important;\r\n}\r\n    \r\n.text3 {\r\n    font-size: 18px !important;\r\n    text-align: left !important;\r\n    line-height: 24px !important;\r\n    padding: 30px 20px 0px 20px !important;\r\n    max-width: 680px !important;\r\n}\r\n    \r\n.course-text {\r\n    font-size: 18px !important;\r\n    text-align: left !important;\r\n    line-height: 24px !important;\r\n    padding: 0px 20px 10px 20px !important;\r\n    max-width: 680px !important;\r\n}\r\n    \r\n .col {\r\n    padding: 20px 20px 0px 20px !important;\r\n    max-width: 680px !important;\r\n    display: block !important;\r\n    width: 100% !important;\r\n    max-width: 100% !important;\r\n    box-sizing: border-box;\r\n}\r\n    \r\n .left-col {\r\n    padding: 0px 20px 0px 20px !important;\r\n    max-width: 680px !important;\r\n    display: block !important;\r\n    width: 100% !important;\r\n    max-width: 100% !important;\r\n    box-sizing: border-box;\r\n}\r\n    \r\n.left-image {\r\n    padding: 20px 20px 10px 20px !important;\r\n    display: block !important;\r\n    width: 100% !important;\r\n    max-width: 100% !important;\r\n    box-sizing: border-box;  \r\n    text-align: center !important;\r\n}\r\n    \r\n.right-text {\r\n    padding-left: 0px !important;\r\n    padding-right: 0px !important;\r\n    font-size: 16px !important;\r\n    line-height: 24px !important;\r\n    padding-bottom: 0px !important;\r\n    padding-top: 0px !important;\r\n    display: block !important;\r\n    width: 100% !important;\r\n    max-width: 100% !important;\r\n    box-sizing: border-box;\r\n}\r\n    \r\n.button1 {\r\n    line-height: 24px !important;\r\n    padding-top: 10px !important;\r\n    padding-bottom: 10px !important;\r\n    font-size: 16px !important;\r\n    text-align: center !important;\r\n    display: block !important;\r\n}\r\n\r\n.button-pad1 {\r\n	padding: 10px 60px 20px 60px !important;\r\n    display: block !important;\r\n    width: 100% !important;\r\n    max-width: 100% !important;\r\n    -moz-box-sizing: border-box;\r\n    -webkit-box-sizing: border-box;\r\n    box-sizing: border-box;\r\n}\r\n    \r\n.button2 {\r\n    line-height: 24px !important;\r\n    padding-top: 10px !important;\r\n    padding-bottom: 10px !important;\r\n    font-size: 16px !important;\r\n    text-align: center !important;\r\n    display: block !important;\r\n}\r\n\r\n.button-pad2 {\r\n	padding: 20px 40px 40px 40px !important;\r\n    display: block !important;\r\n    width: 100% !important;\r\n    max-width: 100% !important;\r\n    -moz-box-sizing: border-box;\r\n    -webkit-box-sizing: border-box;\r\n    box-sizing: border-box;\r\n}\r\n\r\n.footer {\r\n    font-size: 12px !important;\r\n    padding-left: 15px !important;\r\n    padding-right: 15px !important;\r\n    padding-top: 30px !important;\r\n    max-width: 660px !important;\r\n}\r\n}\r\n    </style> \r\n</head> \r\n<body width=\"100%\" style=\"Margin: 0; background-color: #FAFBFC;\" class=\"deep-drk-bkgrd\"> \r\n<div style=\"display:none;font-size:1px;color:#333333;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;\">\r\n Free, self-paced courses to help you get started ‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp;‌&nbsp; \r\n</div> \r\n<div lang=\"en\"> \r\n<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"100%\" height=\"100%\" bgcolor=\"#FAFBFC\" style=\"border-collapse:collapse;\" class=\"deep-drk-bkgrd\"> \r\n<tbody> \r\n<tr> \r\n<td valign=\"top\"> \r\n<center style=\"width: 100%;\"> \r\n<div style=\"max-width: 660px;\"> \r\n<!--[if mso]>\r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"660\" style=\"max-width: 660px;min-width: 660px;\" align=\"center\">\r\n<tr>\r\n<td width=\"380\">\r\n<![endif]--> \r\n<div style=\"font-size: 6px; line-height: 1; background-color: #282C33;\">\r\n&nbsp;\r\n</div>\r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\" align=\"center\" style=\"max-width: 660px; background-color: #ffffff;\" class=\"drk-bkgrd\"> \r\n<tbody> \r\n<tr>  \r\n</tr> \r\n<tr style=\"background-color: #FFDDA6;\" class=\"hero-bkgrd\">\r\n<td align=\"left\" valign=\"middle\" width=\"80\" height=\"100%\" style=\"font-size:0; padding: 35px 24px 0px 60px;\" class=\"logo\">\r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGehJDfylQ9I4TvtiWflSAw9E1k8HvFDyz6BoIajYdF9KLgA4KPeITRKmaT4Fc_zvexM1hYm-4=\"\r\n><img src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Marketo-Images/Lucid-Primary-Logo-CG100-onClear-np-RGB@2x.png\" width=\"80\" alt=\"Lucid\" style=\"border: 0;width: 80px; max-width: 80px; vertical-align:middle;\" class=\"logo-img\">\r\n</a>\r\n</td>\r\n</tr> \r\n<tr style=\"background-color: #FFDDA6;\" class=\"hero-bkgrd\">\r\n<td align=\"center\" valign=\"middle\" width=\"288\" height=\"100%\" style=\"font-size:0; padding: 35px 60px 0px 60px;\" class=\"logo-big\">\r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGehJDfylZOKSBo0ZsjmdSkM1IpLAVZU5SJK4VmQpClfPxSqBXi-f5e5ynD0kba8Sa7GUjsuo0=\"\r\n><img src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Lucidchart-Primary3D-Logo-Default-TypeCG100-onClear-wp-RGB@2x2.png\" width=\"288\" alt=\"Lucidchart\" style=\"border: 0;width: 100%; max-width: 288px; vertical-align:middle;\" class=\"logo-big-img\"> \r\n</a>\r\n</td>\r\n</tr> \r\n<tr style=\"background-color: #FFDDA6;\" class=\"hero-bkgrd\"> \r\n</tr>\r\n<tr> \r\n<td style=\"padding: 30px 60px 20px 60px;\" class=\"header\">Become a Lucidchart pro with your team </td> \r\n</tr> \r\n<tr> \r\n<td valign=\"top\" style=\"padding: 10px 60px 20px 60px;\" class=\"text\">Hey there—we wanted to encourage you to check out our <a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGehJDfyvltA_k5vCdradSuvWJejcKpFSD5vOsQ4Nb8jT8o5gwrCM4guvLHw_a5Tuv9WOy-xCE=\" class=\"link2\"\r\n>Lucid Training Labs</a>. They’re free, self-paced courses covering a wide range of topics that will help you and your team dive deeper into Lucidchart. </td> \r\n</tr> \r\n<tr> \r\n<td align=\"center\" valign=\"middle\" style=\"padding: 0px 0px;\" class=\"img\"> <a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGehJDfyvltA_k5vCdradSuvWJejcKpFSD5vOsQ4Nb8jT8o5gwrCM4guvLHw_a5Tuv9WOy-xCE=\"\r\n><img src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Self-Serve-Onboarding/Lucidchart/New/training-labs_Hero.png\" width=\"680\" alt=\"Lucid Training Labs\" style=\"border: 0;width: 100%;max-width: 680px; vertical-align:middle;\"></a> </td> \r\n</tr> \r\n<tr> \r\n<td valign=\"top\" style=\"padding: 40px 60px 30px 60px;\" class=\"text2\">Here are a few courses we think you’ll like: </td> \r\n</tr> \r\n<tr> \r\n<td bgcolor=\"#FFFFFF\" style=\"padding: 0px 40px 20px 40px\" class=\"col\"> \r\n<table cellspacing=\"0\" cellpadding=\"0\" width=\"100%\"> \r\n<tbody>\r\n<tr style=\"border: 2px solid #282C33; background-color: #FFF3D9;\"> \r\n<td style=\"padding: 0px 0px 0px 0px;\" class=\"left-col\"> \r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\"> \r\n<tbody>\r\n<tr> \r\n<td align=\"center\" valign=\"middle\" style=\"padding: 0px 0px 0px 0px; width: 120px;\" class=\"left-image\"> <a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGehJDfynklckYQ6pXJOHPEfa_lqul_k4rUsTrDmIRbestIEHgq4eB201YYSCnRRC52TBbm9lI=\"\r\n> <img class=\"fadeimg\" src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Self-Serve-Onboarding/Lucidchart/New/Welcome_LC_Course.png\" alt=\"Welcome to Lucidchart\" border=\"0\" width=\"100\"> </a> </td> \r\n</tr> \r\n</tbody>\r\n</table> </td> \r\n<td style=\"padding: 0px 0px 0px 0px; width: 380px;\" class=\"right-text\"> \r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\"> \r\n<tbody>\r\n<tr> \r\n<td style=\"padding: 10px 0px 0px 0px;\" class=\"subheader\"> <a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGehJDfynklckYQ6pXJOHPEfa_lqul_k4rUsTrDmIRbestIEHgq4eB201YYSCnRRC52TBbm9lI=\" class=\"link\"\r\n>Welcome to Lucidchart </a> </td> \r\n</tr> \r\n<tr> \r\n<td style=\"padding: 10px 0px 0px 0px; font-size: 18px;\" class=\"course-text\"> Kickstart your diagramming journey. </td> \r\n</tr> \r\n<tr> \r\n<td style=\"padding: 10px 0px 0px 0px; font-size: 18px; font-weight: bold;\" class=\"course-text\"> 25 minutes </td> \r\n</tr> \r\n<tr> \r\n<td align=\"left\" style=\"padding: 10px 0px 17px 0px;\" class=\"button-pad1\"> <a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGehJDfynklckYQ6pXJOHPEfa_lqul_k4rUsTrDmIRbestIEHgq4eB201YYSCnRRC52TBbm9lI=\" class=\"button1\"\r\n> \r\n<!--[if mso]><i style=\"letter-spacing: 25px;mso-font-width:-100%;mso-text-raise:30pt\">&nbsp;</i><![endif]--> <span style=\"mso-text-raise:15pt; text-decoration: underline;\">Register</span> \r\n<!--[if mso]><i style=\"letter-spacing: 25px;mso-font-width:-100%\">&nbsp;</i><![endif]--> </a> </td> \r\n</tr> \r\n</tbody>\r\n</table> </td> \r\n</tr> \r\n</tbody>\r\n</table> </td> \r\n</tr> \r\n<tr> \r\n<td bgcolor=\"#FFFFFF\" style=\"padding: 0px 40px 20px 40px\" class=\"col\"> \r\n<table cellspacing=\"0\" cellpadding=\"0\" width=\"100%\"> \r\n<tbody>\r\n<tr style=\"border: 2px solid #282C33; background-color: #FFF3D9;\"> \r\n<td style=\"padding: 0px 0px 0px 0px;\" class=\"left-col\"> \r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\"> \r\n<tbody>\r\n<tr> \r\n<td align=\"center\" valign=\"middle\" style=\"padding: 0px 0px 0px 0px; width: 120px;\" class=\"left-image\"> <a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGehJDfyc8KXB5NDHu4LT6HZxF2_l58FIp5JP5_nMmtVX_zf1pUF8-vl1SgSRUUkjRLaEnpIvc=\"\r\n> <img class=\"fadeimg\" src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Self-Serve-Onboarding/Lucidchart/New/Basic_Diagrams_Course.png\" alt=\"Create basic diagrams\" border=\"0\" width=\"100\"> </a> </td> \r\n</tr> \r\n</tbody>\r\n</table> </td> \r\n<td style=\"padding: 0px 0px 0px 0px; width: 380px;\" class=\"right-text\"> \r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\"> \r\n<tbody>\r\n<tr> \r\n<td style=\"padding: 10px 0px 0px 0px;\" class=\"subheader\"> <a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGehJDfyc8KXB5NDHu4LT6HZxF2_l58FIp5JP5_nMmtVX_zf1pUF8-vl1SgSRUUkjRLaEnpIvc=\" class=\"link\"\r\n>Create basic diagrams</a> </td> \r\n</tr> \r\n<tr> \r\n<td style=\"padding: 10px 0px 0px 0px; font-size: 18px;\" class=\"course-text\"> Create and customize your diagrams to drive team alignment. </td> \r\n</tr> \r\n<tr> \r\n<td style=\"padding: 10px 0px 0px 0px; font-size: 18px; font-weight: bold;\" class=\"course-text\"> 50 minutes </td> \r\n</tr> \r\n<tr> \r\n<td align=\"left\" style=\"padding: 10px 0px 17px 0px;\" class=\"button-pad1\"> <a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGehJDfyc8KXB5NDHu4LT6HZxF2_l58FIp5JP5_nMmtVX_zf1pUF8-vl1SgSRUUkjRLaEnpIvc=\" class=\"button1\"\r\n> \r\n<!--[if mso]><i style=\"letter-spacing: 25px;mso-font-width:-100%;mso-text-raise:30pt\">&nbsp;</i><![endif]--> <span style=\"mso-text-raise:15pt; text-decoration: underline;\">Register</span> \r\n<!--[if mso]><i style=\"letter-spacing: 25px;mso-font-width:-100%\">&nbsp;</i><![endif]--> </a> </td> \r\n</tr> \r\n</tbody>\r\n</table> </td> \r\n</tr> \r\n</tbody>\r\n</table> </td> \r\n</tr> \r\n<tr> \r\n<td bgcolor=\"#FFFFFF\" style=\"padding: 0px 40px 20px 40px\" class=\"col\"> \r\n<table cellspacing=\"0\" cellpadding=\"0\" width=\"100%\"> \r\n<tbody>\r\n<tr style=\"border: 2px solid #282C33; background-color: #FFF3D9;\"> \r\n<td style=\"padding: 0px 0px 0px 0px;\" class=\"left-col\"> \r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\"> \r\n<tbody>\r\n<tr> \r\n<td align=\"center\" valign=\"middle\" style=\"padding: 0px 0px 0px 0px; width: 120px;\" class=\"left-image\"> <a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGehJDfyr4WBwsqT0jjc344xHtg2a2g8jSiV7S7q3FNpau588UryLecQdKEi7JcTAJePuIRBzk=\"\r\n> <img class=\"fadeimg\" src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Self-Serve-Onboarding/Lucidchart/New/Team_Collab_Course.png\" alt=\"Enhance team collaboration\" border=\"0\" width=\"100\"> </a> </td> \r\n</tr> \r\n</tbody>\r\n</table> </td> \r\n<td style=\"padding: 0px 0px 0px 0px; width: 380px;\" class=\"right-text\"> \r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\"> \r\n<tbody>\r\n<tr> \r\n<td style=\"padding: 10px 0px 0px 0px;\" class=\"subheader\"> <a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGehJDfyr4WBwsqT0jjc344xHtg2a2g8jSiV7S7q3FNpau588UryLecQdKEi7JcTAJePuIRBzk=\" class=\"link\"\r\n>Enhance team collaboration</a> </td> \r\n</tr> \r\n<tr> \r\n<td style=\"padding: 10px 0px 0px 0px; font-size: 18px;\" class=\"course-text\"> Create a shared visual language to enhance clarity. </td> \r\n</tr> \r\n<tr> \r\n<td style=\"padding: 10px 0px 0px 0px; font-size: 18px; font-weight: bold;\" class=\"course-text\"> 36 minutes </td> \r\n</tr> \r\n<tr> \r\n<td align=\"left\" style=\"padding: 10px 0px 17px 0px;\" class=\"button-pad1\"> <a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGehJDfyr4WBwsqT0jjc344xHtg2a2g8jSiV7S7q3FNpau588UryLecQdKEi7JcTAJePuIRBzk=\" class=\"button1\"\r\n> \r\n<!--[if mso]><i style=\"letter-spacing: 25px;mso-font-width:-100%;mso-text-raise:30pt\">&nbsp;</i><![endif]--> <span style=\"mso-text-raise:15pt; text-decoration: underline;\">Register</span> \r\n<!--[if mso]><i style=\"letter-spacing: 25px;mso-font-width:-100%\">&nbsp;</i><![endif]--> </a> </td> \r\n</tr> \r\n</tbody>\r\n</table> </td> \r\n</tr> \r\n</tbody>\r\n</table> </td> \r\n</tr> \r\n<tr> \r\n<td valign=\"top\" style=\"padding: 20px 60px 20px 60px;\" class=\"text3\">Explore in-product resources. </td> \r\n</tr> \r\n<tr> \r\n<td align=\"left\" style=\"padding: 0px 0px 40px 60px;\" class=\"button-pad2\"> <a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGehJDfysbosyarGcTXJql7ozwynFvyATVRPitCqOlK_kRjYC9IPnEImZpEg8Jrz0aFIhaDMtg=\" class=\"button2\"\r\n> \r\n<!--[if mso]><i style=\"letter-spacing: 25px;mso-font-width:-100%;mso-text-raise:30pt\">&nbsp;</i><![endif]--> <span style=\"mso-text-raise:15pt; text-decoration: underline;\">Jump into Lucidchart</span> \r\n<!--[if mso]><i style=\"letter-spacing: 25px;mso-font-width:-100%\">&nbsp;</i><![endif]--> </a> </td> \r\n</tr> \r\n<tr style=\"background-color: #FAFBFC;\" class=\"deep-drk-bkgrd\">\r\n<td align=\"left\" valign=\"middle\" width=\"80\" height=\"100%\" style=\"font-size:0; padding: 35px 24px 0px 60px;\" class=\"logo\">\r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGehJDfylQ9I4TvtiWflSAw9E1k8HvFDyz6BoIajYdF9KLgA4KPeITRKmaT4Fc_zvexM1hYm-4=\"\r\n><img src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Marketo-Images/Lucid-Primary-Logo-CG100-onClear-np-RGB@2x.png\" width=\"80\" alt=\"Lucid\" style=\"border: 0;width: 80px; max-width: 80px; vertical-align:middle;\" class=\"ftr-logo-light\">\r\n<img src=\"https://cdn-cashy-static-assets.lucidchart.com/marketing/emails/Marketo-Images/Lucid-Primary-Logo-White-onClear-np-RGB@2x.png\" width=\"80\" alt=\"Lucid\" style=\"vertical-align:middle;display:none; overflow:hidden; float:left; width:0px; max-height:0px; max-width:0px; line-height:0px; visibility:hidden;\r\n\" class=\"ftr-logo-dark\">\r\n</a>\r\n</td>\r\n</tr> \r\n<tr style=\"background-color: #FAFBFC;\" class=\"deep-drk-bkgrd\"> \r\n<td style=\"padding:30px 60px 40px 60px; width: 400;\" class=\"footer\"><a style=\"color:#282C33; text-decoration: underline;\" href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGehJDfydeui0xsH9SjFbZ8Hvip7UzpyVQe1rtI6zjiiZ_dSD_SnPt9vcdaZ4i4uQ47-I500lA=\" class=\"footer-link\"\r\n>Unsubscribe</a><br><br> \r\nLucid Software Inc.<br> \r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGehJDfyZL_EfWN2Sbmlv57sPGWYwllodsb3uYavHemxfn1ewC_1UqxXT9n_JitKMJueIgPa9M=\" target=\"_blank\" style=\"text-decoration: none; color: #282c33; cursor: default;\" class=\"footer-link\"\r\n>10355 South Jordan Gateway, Suite 300<br> \r\nSouth Jordan, UT 84095 USA<br></a><br><br>\r\nBy continuing to use Lucid\'s products, you agree to our <a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGehJDfyjU3fKzRbwF4ZWPWPTK1Ovk8LFYCbZjDG_SmYOY0fdJKjZWnIyRRE_Xhmki3PJDN9gA=\" style=\"color:#282c33; text-decoration: underline\" class=\"footer-link\"\r\n>Terms of Service</a> and acknowledge our <a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGehJDfykxD5tUOMGb_lRJgGAgL7vGAnvJa59pM-iGfP7lWVKKvpccZsFFlqNdehKSRvQzeY7w=\" style=\"color:#282c33; text-decoration: underline\" class=\"footer-link\"\r\n>Privacy Policy</a>.\r\n   \r\n</td> \r\n</tr> \r\n</tbody> \r\n</table> \r\n<!--[if (gte mso 9)|(IE)]>\r\n</td>\r\n</tr>\r\n</table>\r\n<![endif]--> \r\n</div> \r\n</center> </td> \r\n</tr> \r\n</tbody> \r\n</table> \r\n</div>  \r\n<a href=\r\n\"https://email.lucid.co/NzA0LUJFTC0zNjYAAAGehJDfyh6wmeG8tQzuShqC6V9nZ6c8R9CeLgyBtO0MmWP72lE6n6gMICNuNfAOyTEFo9rDsNQ=\"\r\n></a>\r\n<img src=\"https://email.lucid.co/trk?t=1&mid=NzA0LUJFTC0zNjYAAAGehJDfyv97z4UpQfUKIIMJXILMBhsEkGIUcFD3sWtbzla5RSMr69v5KVpjL_RaSu-W5GbomotfBcFEmWcqICcQB4xnpG64zYO6S0corhGqvEf33WthoULTPl0\" width=\"1\" height=\"1\" style=\"display:none !important;\" alt=\"\" />\r\n\r\n<!--This is a comment -->\r\n</body>\r\n</html>','\r\n\r\n.',0,0,0,0,0,0,'2025-12-03 19:02:27','2025-12-04 14:05:25','2025-12-04 14:05:25','2025-12-04 14:05:25',NULL,NULL,NULL),
(107,4,'<CAGOCFXiG6-3cqfLZVaD29FYFbmXdRy-oDviCJXuwLW6PBAejww@mail.gmail.com>',NULL,NULL,'Re: Lithium Battery Company @ 3900 W Coachman HVAC','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"ltr\"><div><div class=\"gmail-w-full gmail-my-[1px]\"><div class=\"gmail-py-[3px]\"><span class=\"gmail-\" style=\"word-break:break-word\">Steve, \r\n\r\nThank you for your detailed email and for proactively seeking clarification on the HVAC requirements for our new lithium battery pack assembly facility. Your summary of the situation is accurate, and we appreciate the opportunity to align on the design basis before proceeding.\r\n\r\n</span></div></div><div class=\"gmail-w-full gmail-my-[1px]\"><div class=\"gmail-py-[3px]\"><span class=\"gmail-\" style=\"word-break:break-word\">After an internal review and consideration of our specific process needs, we can confirm that our intent is for a </span><span class=\"gmail-font-[600]\" style=\"word-break:break-word\">comfort-conditioned industrial space with specific humidity control</span><span class=\"gmail-\" style=\"word-break:break-word\">, rather than a full ISO-8 cleanroom environment. The mention of &quot;ISO-8&quot; in the kickoff meeting was intended to convey a general need for a clean and controlled environment but was not meant to be a formal classification requirement.\r\n\r\n</span></div></div><div class=\"gmail-w-full gmail-my-[1px]\"><div class=\"gmail-py-[3px]\"><span class=\"gmail-\" style=\"word-break:break-word\">To directly address your questions:\r\n\r\n</span></div></div><div class=\"gmail-w-full gmail-my-[1px]\"><div class=\"gmail-flex gmail-flex-row gmail-ps-[2px]\"><span class=\"gmail-select-none gmail-flex gmail-flex-row gmail-justify-center gmail-items-center gmail-h-[30px] gmail-w-[24px] gmail-me-[2px] gmail-whitespace-nowrap gmail-flex-shrink-0\"><span class=\"gmail-Helvetica gmail-Neue gmail-font-normal\">1.</span></span><span class=\"gmail-flex-1 gmail-py-[3px] gmail-font-normal gmail-text-[16px] gmail-text-[var(--text-primary)]\"><span class=\"gmail-font-[600]\" style=\"word-break:break-word\">Is ISO-8 a firm requirement?</span><span class=\"gmail-\" style=\"word-break:break-word\"> No, it is not. An ISO-8 classification is not necessary for our battery pack assembly process. We believe that an </span><span class=\"gmail-font-[600]\" style=\"word-break:break-word\">ISO-9 classification (or even a well-maintained, unclassified space)</span><span class=\"gmail-\" style=\"word-break:break-word\"> with good housekeeping and filtration practices will be more than sufficient for our needs. Our primary concern is controlling airborne particulates that could affect final product quality, not meeting a specific cleanroom standard.\r\n\r\n</span></span></div></div><div class=\"gmail-w-full gmail-my-[1px]\"><div class=\"gmail-flex gmail-flex-row gmail-ps-[2px]\"><span class=\"gmail-select-none gmail-flex gmail-flex-row gmail-justify-center gmail-items-center gmail-h-[30px] gmail-w-[24px] gmail-me-[2px] gmail-whitespace-nowrap gmail-flex-shrink-0\"><span class=\"gmail-Helvetica gmail-Neue gmail-font-normal\">2.</span></span><span class=\"gmail-flex-1 gmail-py-[3px] gmail-font-normal gmail-text-[16px] gmail-text-[var(--text-primary)]\"><span class=\"gmail-font-[600]\" style=\"word-break:break-word\">Is humidity &lt;50% mandatory?</span><span class=\"gmail-\" style=\"word-break:break-word\"> Yes, this is a </span><span class=\"gmail-font-[600]\" style=\"word-break:break-word\">mandatory requirement</span><span class=\"gmail-\" style=\"word-break:break-word\"> for our equipment and process. Maintaining a relative humidity of less than 50% is critical to prevent moisture absorption and ensure the quality and safety of our battery packs. However, we do not require the extremely low dew points (-35°C or lower) associated with lithium-ion </span><span class=\"gmail-italic\" style=\"word-break:break-word\">cell manufacturing</span><span class=\"gmail-\" style=\"word-break:break-word\">. Our process involves the assembly of pre-sealed cells, which is a far less moisture-sensitive operation.\r\n\r\n</span></span></div></div><div class=\"gmail-w-full gmail-my-[1px]\"><div class=\"gmail-flex gmail-flex-row gmail-ps-[2px]\"><span class=\"gmail-select-none gmail-flex gmail-flex-row gmail-justify-center gmail-items-center gmail-h-[30px] gmail-w-[24px] gmail-me-[2px] gmail-whitespace-nowrap gmail-flex-shrink-0\"><span class=\"gmail-Helvetica gmail-Neue gmail-font-normal\">3.</span></span><span class=\"gmail-flex-1 gmail-py-[3px] gmail-font-normal gmail-text-[16px] gmail-text-[var(--text-primary)]\"><span class=\"gmail-font-[600]\" style=\"word-break:break-word\">Will future products require tighter control?</span><span class=\"gmail-\" style=\"word-break:break-word\"> We do not anticipate any future products or process changes that would require significantly lower humidity or higher filtration levels. Our long-term forecast is based on the assembly of similar battery pack architectures.\r\n\r\n</span></span></div></div><div class=\"gmail-w-full gmail-my-[1px]\"><div class=\"gmail-flex gmail-flex-row gmail-ps-[2px]\"><span class=\"gmail-select-none gmail-flex gmail-flex-row gmail-justify-center gmail-items-center gmail-h-[30px] gmail-w-[24px] gmail-me-[2px] gmail-whitespace-nowrap gmail-flex-shrink-0\"><span class=\"gmail-Helvetica gmail-Neue gmail-font-normal\">4.</span></span><span class=\"gmail-flex-1 gmail-py-[3px] gmail-font-normal gmail-text-[16px] gmail-text-[var(--text-primary)]\"><span class=\"gmail-font-[600]\" style=\"word-break:break-word\">Is positive pressure required?</span><span class=\"gmail-\" style=\"word-break:break-word\"> No, positive pressure relative to adjacent spaces is </span><span class=\"gmail-font-[600]\" style=\"word-break:break-word\">not required</span><span class=\"gmail-\" style=\"word-break:break-word\">. A neutral or even slightly negative pressure environment would be acceptable, as long as the primary production space is well-sealed and the HVAC system can effectively maintain the required temperature and humidity levels.\r\n\r\n</span></span></div></div><div class=\"gmail-w-full gmail-my-[1px]\"><div class=\"gmail-py-[3px]\"><span class=\"gmail-\" style=\"word-break:break-word\">Based on this, we agree that the project scope should align with your description of a </span><span class=\"gmail-font-[600]\" style=\"word-break:break-word\">comfort-conditioned industrial space with robust dehumidification</span><span class=\"gmail-\" style=\"word-break:break-word\">, rather than a full cleanroom approach. This will allow us to achieve our operational goals without the unnecessary cost and complexity of an ISO-8 buildout.\r\n\r\n</span></div></div><div class=\"gmail-w-full gmail-my-[1px]\"><div class=\"gmail-py-[3px]\"><span class=\"gmail-\" style=\"word-break:break-word\">We are happy to schedule a brief follow-up meeting to confirm these details and answer any further questions you may have. Please let us know what time works best for your team.</span></div></div><div class=\"gmail-w-full gmail-my-[1px]\"><div class=\"gmail-py-[3px]\"><span class=\"gmail-\" style=\"word-break:break-word\">Thank you again for your diligence and partnership.</span></div></div></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Tue, Nov 25, 2025 at 3:51 PM Steve Barthlow &lt;<a href=\"mailto:Steve.Barthlow@lddblueline.com\">Steve.Barthlow@lddblueline.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div class=\"msg-2153113158076329948\">\r\n\r\n\r\n\r\n\r\n\r\n<div lang=\"EN-US\" style=\"overflow-wrap: break-word;\">\r\n<div class=\"m_-2153113158076329948WordSection1\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Arial,sans-serif\">Nathan, Jordan, and Jarrett,<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Arial,sans-serif\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Arial,sans-serif\">Please see email below from Hahn Engineering regarding potential HVAC requirements at the 3900 Coachman building.<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Arial,sans-serif\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Arial,sans-serif\">Thanks,<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Arial,sans-serif\"><u></u> <u></u></span></p>\r\n<div>\r\n<table border=\"0\" cellpadding=\"0\" width=\"400\" style=\"width:300pt;background:white\">\r\n<tbody>\r\n<tr>\r\n<td width=\"396\" style=\"width:297pt;padding:0in 0in 4.5pt\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-family:Arial,sans-serif;color:rgb(34,86,161);border:1pt none windowtext;padding:0in\">Steven D. Barthlow, AIA, NCARB</span></b><span style=\"font-size:10pt;font-family:Calibri,sans-serif;color:rgb(36,36,36)\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\" style=\"line-height:105%\"><span style=\"font-size:10pt;line-height:105%;font-family:Arial,sans-serif;color:rgb(135,135,135);border:1pt none windowtext;padding:0in\">principal | vice president | regional director</span><span style=\"font-size:10pt;line-height:105%;font-family:Arial,sans-serif;color:rgb(135,135,135)\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:1.65pt\">\r\n<td width=\"396\" style=\"width:297pt;border-right:none;border-bottom:none;border-left:none;border-top:1pt solid rgb(34,86,161);padding:0in;height:1.65pt\">\r\n<p class=\"MsoNormal\" style=\"line-height:6pt\"><span style=\"font-size:5pt;font-family:Calibri,sans-serif\"><u></u> <u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:24.9pt\">\r\n<td width=\"396\" style=\"width:297pt;padding:0in;height:24.9pt\">\r\n<p class=\"MsoNormal\" style=\"line-height:105%\"><b><span style=\"font-size:18pt;line-height:105%;font-family:&quot;Arial Black&quot;,sans-serif;color:rgb(191,13,62);background:white\">LDD</span></b><b><span style=\"font-size:18pt;line-height:105%;font-family:&quot;Arial Black&quot;,sans-serif;color:rgb(0,76,151);background:white\">Blueline</span></b><b><sup><span style=\"font-size:10pt;line-height:105%;font-family:Arial,sans-serif;color:black;background:white\">TM<u></u><u></u></span></sup></b></p>\r\n</td>\r\n</tr>\r\n<tr style=\"height:8.25pt\">\r\n<td width=\"396\" style=\"width:297pt;padding:0in;height:8.25pt\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:10pt;font-family:&quot;Arial Black&quot;,sans-serif;color:rgb(89,89,89)\">Discover | Design | Deliver<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"color:black\">We&#39;re hiring! We&#39;re looking for a Project Manager and a Project Architect. Send your resume to\r\n<a href=\"mailto:careers@lddblueline.com\" target=\"_blank\">careers@lddblueline.com</a></span><span style=\"font-size:10pt;font-family:&quot;Arial Black&quot;,sans-serif;color:rgb(89,89,89)\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"396\" style=\"width:297pt;padding:0in\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:8pt;font-family:Arial,sans-serif;color:black\">306 East Oak Avenue, Tampa, FL 33602</span><span style=\"font-size:8pt;font-family:Arial,sans-serif\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"396\" valign=\"top\" style=\"width:297pt;padding:0in\">\r\n<p class=\"MsoNormal\" style=\"line-height:105%\"><u><span style=\"font-family:Arial,sans-serif;color:blue;border:1pt none windowtext;padding:0in\">Steve.Barthlow@LDDBlueline.com</span></u><span style=\"font-family:Arial,sans-serif;color:rgb(135,135,135)\">\r\n</span><span style=\"font-size:11pt;line-height:105%\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"396\" valign=\"top\" style=\"width:297pt;padding:0in\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\">AR 103560 | office 813.771.2378 | cell 404.245.0451<u></u><u></u></p>\r\n</div>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:Arial,sans-serif\"><u></u> <u></u></span></p>\r\n<div>\r\n<div style=\"border-right:none;border-bottom:none;border-left:none;border-top:1pt solid rgb(225,225,225);padding:3pt 0in 0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11pt;font-family:Calibri,sans-serif\">From:</span></b><span style=\"font-size:11pt;font-family:Calibri,sans-serif\"> Jeffrey Hahn &lt;<a href=\"mailto:jjhahn@hahneng.com\" target=\"_blank\">jjhahn@hahneng.com</a>&gt;\r\n<br>\r\n<b>Sent:</b> Tuesday, November 25, 2025 3:44 PM<br>\r\n<b>To:</b> Steve Barthlow &lt;<a href=\"mailto:Steve.Barthlow@lddblueline.com\" target=\"_blank\">Steve.Barthlow@lddblueline.com</a>&gt;; James Jacobik &lt;<a href=\"mailto:James.Jacobik@lddblueline.com\" target=\"_blank\">James.Jacobik@lddblueline.com</a>&gt;<br>\r\n<b>Cc:</b> Stephen Morris &lt;<a href=\"mailto:sjmorris@hahneng.com\" target=\"_blank\">sjmorris@hahneng.com</a>&gt;; William Augensen &lt;<a href=\"mailto:waugensen@hahneng.com\" target=\"_blank\">waugensen@hahneng.com</a>&gt;; Justin Erman &lt;<a href=\"mailto:jerman@hahneng.com\" target=\"_blank\">jerman@hahneng.com</a>&gt;<br>\r\n<b>Subject:</b> Lithium Battery Company @ 3900 W Coachman [25029-Email]<u></u><u></u></span></p>\r\n</div>\r\n</div>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n<p class=\"MsoNormal\">Steve,<u></u><u></u></p>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n<p class=\"MsoNormal\">Over the past few days been reviewing the production space requirements and the information provided. We originally asked whether any specialized HVAC conditions—such as positive pressurization, controlled filtration, or humidity limits—were\r\n required for the production area or the building as a whole. The response we received at that time was that no positively pressurized spaces and no specific direction on cooling and humidity requirements.\r\n<u></u><u></u></p>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n<p class=\"MsoNormal\">Last week during the kickoff meeting it was mentioned that ISO-8 conditions for the production space, with a target of humidity below 50%, are desired. This represents a significantly higher level of HVAC sophistication than standard comfort\r\n cooling, as it introduces air-change-rate requirements, filtration requirements (HEPA or near-HEPA), positive or neutral pressure considerations, and much more precise humidity and dew-point control. These items directly affect airflow quantities, equipment\r\n selection, duct routing, ceiling/architectural details, and—importantly—electrical capacity.\r\n<u></u><u></u></p>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n<p class=\"MsoNormal\">Before we proceed with finalizing our basis of design, we want to confirm the actual intent of the owner and equipment team. Several indicators suggest that the production line may be low shedding and relatively enclosed, and they indicated\r\n that similar equipment in other facilities overseas often operates in minimally conditioned spaces. If the true requirement is to simply temper the space—cooling, dehumidifying to a comfortable level, and preventing condensation—then the system can be much\r\n simpler and far less costly. However, if the intent is to meet ISO-8 cleanliness, maintain &lt;50% RH, or anticipate future products that require tighter environmental control, then we need to design the space accordingly from the start to avoid rework or service\r\n interruptions later.<u></u><u></u></p>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n<p class=\"MsoNormal\">At this point, the HVAC project could fall into one of two very different scopes:<u></u><u></u></p>\r\n<ol style=\"margin-top:0in\" start=\"1\" type=\"1\">\r\n<li class=\"MsoNormal\">A full ISO-8 environmental cleanroom approach, with defined air changes per hour, filtration, and controlled humidity; or<u></u><u></u></li><li class=\"MsoNormal\">A comfort-conditioned industrial space, with no pressurization and only general cooling and dehumidification.<u></u><u></u></li></ol>\r\n<p class=\"MsoNormal\">Each path has different implications for HVAC equipment size, system complexity, construction coordination, and electrical infrastructure.\r\n<u></u><u></u></p>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n<p class=\"MsoNormal\">We respectfully request a clarification meeting to confirm:<u></u><u></u></p>\r\n<ul style=\"margin-top:0in\" type=\"disc\">\r\n<li class=\"MsoNormal\">Whether ISO-8 is a firm requirement or an aspirational target,<u></u><u></u></li><li class=\"MsoNormal\">Whether humidity &lt;50% is mandatory or optional for initial operations (sounds mandatory based on a reference to equipment operational requirements discussed in the meeting)<u></u><u></u></li><li class=\"MsoNormal\">Whether future products or process steps may require lower humidity or higher filtration, and<u></u><u></u></li><li class=\"MsoNormal\">Whether positive pressure relative to adjacent spaces is required.<u></u><u></u></li></ul>\r\n<p class=\"MsoNormal\">Once these items are confirmed, we can move forward with confidence that the system matches the owner’s true operational needs.<u></u><u></u></p>\r\n<p class=\"MsoNormal\">Thank you,<u></u><u></u></p>\r\n<p class=\"MsoNormal\">Jeff<u></u><u></u></p>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\">\r\n<tbody>\r\n<tr>\r\n<td width=\"452\" colspan=\"2\" valign=\"top\" style=\"width:338.75pt;padding:0in\">\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11pt;font-family:&quot;Book Antiqua&quot;,serif;color:rgb(90,47,33)\">Jeffrey J. Hahn, P.E.<u></u><u></u></span></b></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:6pt\"><i><span style=\"font-size:11pt;font-family:&quot;Book Antiqua&quot;,serif;color:rgb(90,47,33)\">President<u></u><u></u></span></i></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"186\" valign=\"top\" style=\"width:139.25pt;padding:0in\">\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt\"><a href=\"mailto:jjhahn@hahneng.com\" target=\"_blank\"><span style=\"font-family:&quot;Book Antiqua&quot;,serif;color:rgb(90,47,33)\">jjhahn@hahneng.com</span></a></span><span style=\"font-size:11pt;font-family:&quot;Book Antiqua&quot;,serif;color:rgb(90,47,33)\"><u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:&quot;Book Antiqua&quot;,serif\">Direct: 813.537.2162<span style=\"color:rgb(90,47,33)\"><u></u><u></u></span></span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom:6pt\"><span style=\"font-size:11pt;font-family:&quot;Book Antiqua&quot;,serif\">Office: 813.831.8599<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><b><span style=\"font-size:11pt;font-family:&quot;Book Antiqua&quot;,serif;color:rgb(90,47,33)\">Hahn Engineering, Inc.<u></u><u></u></span></b></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:&quot;Book Antiqua&quot;,serif\">3060 S. Dale Mabry Hwy.<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size:11pt;font-family:&quot;Book Antiqua&quot;,serif\">Tampa, FL 33629<u></u><u></u></span></p>\r\n</td>\r\n<td width=\"266\" valign=\"top\" style=\"width:199.5pt;padding:0in\">\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><u></u><a href=\"https://www.hahneng.com/\" target=\"_blank\"><img border=\"0\" width=\"249\" height=\"118\" style=\"width: 2.5937in; height: 1.2291in;\" src=\"cid:ii_19ae5b9d98f6917eb1\" align=\"left\" hspace=\"12\" title=\"\"></a><u></u><span style=\"font-size:3pt;font-family:&quot;Gill Sans MT&quot;,sans-serif;color:rgb(89,89,89)\"><u></u><u></u></span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:7pt;font-family:&quot;Gill Sans MT&quot;,sans-serif;color:rgb(89,89,89)\"><u></u> <u></u></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:7pt;font-family:&quot;Gill Sans MT&quot;,sans-serif;color:rgb(89,89,89)\">THE ELECTRONIC DATA ON THIS TRANSMISSION IS TRANSMITTED FOR YOUR CONVENIENCE.  BY ACCEPTING DELIVERY OF THESE FILES, THE RECIPIENT\r\n HEREBY AGREES TO INDEMNIFY AND HOLD HARMLESS HAHN ENGINEERING, INC. FROM ANY LIABILITY RESULTING FROM USE OF THIS DATA.  THE DATA ON THIS TRANSMISSION IS SUBJECT TO CHANGE.  COORDINATION FOR UPDATES IS THE SOLE RESPONSIBILITY OF THE RECIPIENT.  HAHN ENGINEERING,\r\n INC. IS NOT RESPONSIBLE TO THE RECIPIENT OR ANY OTHER PARTY ALLOWED TO UTILIZE THE DATA BY THE RECIPIENT FOR UPDATING THE DISK OR FOR COMPATIBILITY WITH RECIPIENT HARDWARE OR SOFTWARE.<u></u><u></u></span></p>\r\n<p class=\"MsoNormal\"><u></u> <u></u></p>\r\n</div>\r\n</div>\r\n\r\n</div></blockquote></div>','Steve, Thank you for your detailed email and for proactively seeking\r\nclarification on the HVAC requirements for our new lithium battery pack\r\nassembly facility. Your summary of the situation is accurate, and we\r\nappreciate the opportunity to align on the design basis before proceeding.\r\nAfter an internal review and consideration of our specific process needs,\r\nwe can confirm that our intent is for a comfort-conditioned industrial\r\nspace with specific humidity control, rather than a full ISO-8 cleanroom\r\nenvironment. The mention of \"ISO-8\" in the kickoff meeting was intended to\r\nconvey a general need for a clean and controlled environment but was not\r\nmeant to be a formal classification requirement.\r\nTo directly address your questions:\r\n1.Is ISO-8 a firm requirement? No, it is not. An ISO-8 classification is\r\nnot necessary for our battery pack assembly process. We believe that an ISO-9\r\nclassification (or even a well-maintained, unclassified space) with good\r\nhousekeeping and filtration practices will be more than sufficient for our\r\nneeds. Our primary concern is controlling airborne particulates that could\r\naffect final product quality, not meeting a specific cleanroom standard.\r\n2.Is humidity <50% mandatory? Yes, this is a mandatory requirement for our\r\nequipment and process. Maintaining a relative humidity of less than 50% is\r\ncritical to prevent moisture absorption and ensure the quality and safety\r\nof our battery packs. However, we do not require the extremely low dew\r\npoints (-35°C or lower) associated with lithium-ion cell manufacturing. Our\r\nprocess involves the assembly of pre-sealed cells, which is a far less\r\nmoisture-sensitive operation.\r\n3.Will future products require tighter control? We do not anticipate any\r\nfuture products or process changes that would require significantly lower\r\nhumidity or higher filtration levels. Our long-term forecast is based on\r\nthe assembly of similar battery pack architectures.\r\n4.Is positive pressure required? No, positive pressure relative to adjacent\r\nspaces is not required. A neutral or even slightly negative pressure\r\nenvironment would be acceptable, as long as the primary production space is\r\nwell-sealed and the HVAC system can effectively maintain the required\r\ntemperature and humidity levels.\r\nBased on this, we agree that the project scope should align with your\r\ndescription of a comfort-conditioned industrial space with robust\r\ndehumidification, rather than a full cleanroom approach. This will allow us\r\nto achieve our operational goals without the unnecessary cost and\r\ncomplexity of an ISO-8 buildout.\r\nWe are happy to schedule a brief follow-up meeting to confirm these details\r\nand answer any further questions you may have. Please let us know what time\r\nworks best for your team.\r\nThank you again for your diligence and partnership.\r\n\r\n\r\n<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\nOn Tue, Nov 25, 2025 at 3:51 PM Steve Barthlow <\r\nSteve.Barthlow@lddblueline.com> wrote:\r\n\r\n> Nathan, Jordan, and Jarrett,\r\n>\r\n>\r\n>\r\n> Please see email below from Hahn Engineering regarding potential HVAC\r\n> requirements at the 3900 Coachman building.\r\n>\r\n>\r\n>\r\n> Thanks,\r\n>\r\n>\r\n>\r\n> *Steven D. Barthlow, AIA, NCARB*\r\n>\r\n> principal | vice president | regional director\r\n>\r\n>\r\n>\r\n> *LDD**Blueline**TM*\r\n>\r\n> Discover | Design | Deliver\r\n>\r\n> We\'re hiring! We\'re looking for a Project Manager and a Project Architect.\r\n> Send your resume to careers@lddblueline.com\r\n>\r\n> 306 East Oak Avenue, Tampa, FL 33602\r\n>\r\n> *Steve.Barthlow@LDDBlueline.com*\r\n>\r\n> AR 103560 | office 813.771.2378 | cell 404.245.0451\r\n>\r\n>\r\n>\r\n> *From:* Jeffrey Hahn <jjhahn@hahneng.com>\r\n> *Sent:* Tuesday, November 25, 2025 3:44 PM\r\n> *To:* Steve Barthlow <Steve.Barthlow@lddblueline.com>; James Jacobik <\r\n> James.Jacobik@lddblueline.com>\r\n> *Cc:* Stephen Morris <sjmorris@hahneng.com>; William Augensen <\r\n> waugensen@hahneng.com>; Justin Erman <jerman@hahneng.com>\r\n> *Subject:* Lithium Battery Company @ 3900 W Coachman [25029-Email]\r\n>\r\n>\r\n>\r\n> Steve,\r\n>\r\n>\r\n>\r\n> Over the past few days been reviewing the production space requirements\r\n> and the information provided. We originally asked whether any specialized\r\n> HVAC conditions—such as positive pressurization, controlled filtration, or\r\n> humidity limits—were required for the production area or the building as a\r\n> whole. The response we received at that time was that no positively\r\n> pressurized spaces and no specific direction on cooling and humidity\r\n> requirements.\r\n>\r\n>\r\n>\r\n> Last week during the kickoff meeting it was mentioned that ISO-8\r\n> conditions for the production space, with a target of humidity below 50%,\r\n> are desired. This represents a significantly higher level of HVAC\r\n> sophistication than standard comfort cooling, as it introduces\r\n> air-change-rate requirements, filtration requirements (HEPA or near-HEPA),\r\n> positive or neutral pressure considerations, and much more precise humidity\r\n> and dew-point control. These items directly affect airflow quantities,\r\n> equipment selection, duct routing, ceiling/architectural details,\r\n> and—importantly—electrical capacity.\r\n>\r\n>\r\n>\r\n> Before we proceed with finalizing our basis of design, we want to confirm\r\n> the actual intent of the owner and equipment team. Several indicators\r\n> suggest that the production line may be low shedding and relatively\r\n> enclosed, and they indicated that similar equipment in other facilities\r\n> overseas often operates in minimally conditioned spaces. If the true\r\n> requirement is to simply temper the space—cooling, dehumidifying to a\r\n> comfortable level, and preventing condensation—then the system can be much\r\n> simpler and far less costly. However, if the intent is to meet ISO-8\r\n> cleanliness, maintain <50% RH, or anticipate future products that require\r\n> tighter environmental control, then we need to design the space accordingly\r\n> from the start to avoid rework or service interruptions later.\r\n>\r\n>\r\n>\r\n> At this point, the HVAC project could fall into one of two very different\r\n> scopes:\r\n>\r\n>    1. A full ISO-8 environmental cleanroom approach, with defined air\r\n>    changes per hour, filtration, and controlled humidity; or\r\n>    2. A comfort-conditioned industrial space, with no pressurization and\r\n>    only general cooling and dehumidification.\r\n>\r\n> Each path has different implications for HVAC equipment size, system\r\n> complexity, construction coordination, and electrical infrastructure.\r\n>\r\n>\r\n>\r\n> We respectfully request a clarification meeting to confirm:\r\n>\r\n>    - Whether ISO-8 is a firm requirement or an aspirational target,\r\n>    - Whether humidity <50% is mandatory or optional for initial\r\n>    operations (sounds mandatory based on a reference to equipment operational\r\n>    requirements discussed in the meeting)\r\n>    - Whether future products or process steps may require lower humidity\r\n>    or higher filtration, and\r\n>    - Whether positive pressure relative to adjacent spaces is required.\r\n>\r\n> Once these items are confirmed, we can move forward with confidence that\r\n> the system matches the owner’s true operational needs.\r\n>\r\n> Thank you,\r\n>\r\n> Jeff\r\n>\r\n>\r\n>\r\n>\r\n>\r\n> *Jeffrey J. Hahn, P.E.*\r\n>\r\n> *President*\r\n>\r\n> jjhahn@hahneng.com\r\n>\r\n> Direct: 813.537.2162\r\n>\r\n> Office: 813.831.8599\r\n>\r\n> *Hahn Engineering, Inc.*\r\n>\r\n> 3060 S. Dale Mabry Hwy.\r\n>\r\n> Tampa, FL 33629\r\n>\r\n> <https://www.hahneng.com/>\r\n>\r\n>\r\n>\r\n> THE ELECTRONIC DATA ON THIS TRANSMISSION IS TRANSMITTED FOR YOUR\r\n> CONVENIENCE.  BY ACCEPTING DELIVERY OF THESE FILES, THE RECIPIENT HEREBY\r\n> AGREES TO INDEMNIFY AND HOLD HARMLESS HAHN ENGINEERING, INC. FROM ANY\r\n> LIABILITY RESULTING FROM USE OF THIS DATA.  THE DATA ON THIS TRANSMISSION\r\n> IS SUBJECT TO CHANGE.  COORDINATION FOR UPDATES IS THE SOLE RESPONSIBILITY\r\n> OF THE RECIPIENT.  HAHN ENGINEERING, INC. IS NOT RESPONSIBLE TO THE\r\n> RECIPIENT OR ANY OTHER PARTY ALLOWED TO UTILIZE THE DATA BY THE RECIPIENT\r\n> FOR UPDATING THE DISK OR FOR COMPATIBILITY WITH RECIPIENT HARDWARE OR\r\n> SOFTWARE.\r\n>\r\n>\r\n>',1,0,0,0,0,0,'2025-12-03 19:40:33','2025-12-04 14:05:25','2025-12-04 14:05:25','2025-12-04 16:04:20',NULL,NULL,NULL),
(108,4,'<2EF9B58B-4032-491F-B9A6-C2FF660902AA@mavrix.one>',NULL,NULL,'Re: Sol-Ark Preferred Prototype Specs','Brian@mavrix.one','Brian Stufflebean','\r\n--Apple-Mail=_3AED1276-DD28-4659-A629-E1BAE21291AF\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Type: text/html;\r\n	charset=utf-8\r\n\r\n<html><head><meta http-equiv=3D\"content-type\" content=3D\"text/html; =\r\ncharset=3Dutf-8\"></head><body style=3D\"overflow-wrap: break-word; =\r\n-webkit-nbsp-mode: space; line-break: after-white-space;\"><span =\r\nstyle=3D\"font-size: 14px;\"><b>Nathan and =\r\nJordan,&nbsp;</b></span><div><span style=3D\"font-size: =\r\n14px;\"><br></span></div><div><span style=3D\"font-size: 14px;\">I need to =\r\nhave the proposed Sol-Ark annual units, price per unit and total annual =\r\nprojected forecast for the next 5-years, broken out into an Excel table, =\r\nby year.&nbsp;</span></div><div><span style=3D\"font-size: =\r\n14px;\"><br></span></div><div><span style=3D\"font-size: 14px;\">We need =\r\nthis ASAP for meetings tomorrow (Thursday, 12/4/25) =\r\n&nbsp;afternoon.&nbsp;</span></div><div><span style=3D\"font-size: =\r\n14px;\"><br></span></div><div><span style=3D\"font-size: 14px;\">Need the =\r\nsame thing for Sonnen and Mitsubishi.</span></div><div><span =\r\nstyle=3D\"font-size: 14px;\"><br></span></div><div><span style=3D\"font-size:=\r\n 14px;\">Please place at high priority. &nbsp;</span></div><div><span =\r\nstyle=3D\"font-size: 14px;\"><br></span></div><div><span style=3D\"font-size:=\r\n 14px;\">Thank you,</span></div><div><span style=3D\"font-size: =\r\n14px;\"><br></span></div><div><span style=3D\"font-size: =\r\n14px;\">Brian&nbsp;</span><br><div><div><br><blockquote =\r\ntype=3D\"cite\"><div>On Nov 5, 2025, at 11:20=E2=80=AFPM, Nathan Staron =\r\n&lt;Nathan@lithiumbatterycompany.com&gt; wrote:</div><br =\r\nclass=3D\"Apple-interchange-newline\"><div><div dir=3D\"auto\">Will respond =\r\nmore clearly tomorrow morning.&nbsp; I want to make sure Nick is =\r\nincluded with the communication. &nbsp;&nbsp;</div><div =\r\ndir=3D\"auto\"><br></div><div dir=3D\"auto\">The BMS could handle 300A for =\r\n15 seconds.&nbsp; It is a heat dissipation issue from FETS.&nbsp; It can =\r\nbe programmed in back end software. &nbsp;</div><div =\r\ndir=3D\"auto\"><br></div><div dir=3D\"auto\">Susan and Wilson have new =\r\nrelationship together so their working relationship and knowledge needs =\r\nto be communicated. &nbsp;&nbsp;</div><div dir=3D\"auto\"><br></div><div =\r\ndir=3D\"auto\">Try not to be persuaded from GSL to accept their =\r\nparameters.&nbsp; Sol Ark is just setting their battery management =\r\nsystem and cells to a better quality which will lower their after sales =\r\nsupport and align the battery for better performance and =\r\nbalancing.&nbsp; Chinese have very narrow scope and we need to be =\r\nspecific on laying out our requirements for the project.&nbsp;</div><div =\r\ndir=3D\"auto\"><br></div><div dir=3D\"auto\">Let=E2=80=99s discuss tomorrow =\r\nmorning.&nbsp;<br clear=3D\"all\"><div dir=3D\"auto\"><div dir=3D\"ltr\" =\r\nclass=3D\"gmail_signature\" data-smartmail=3D\"gmail_signature\"><div =\r\ndir=3D\"ltr\"><br><div><br></div><div><table cellpadding=3D\"0\" =\r\ncellspacing=3D\"0\" border=3D\"0\" style=3D\"border: medium; border-collapse: =\r\ncollapse; font-size: 10px; font-family: Inter, sans-serif;\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;line-height:16px\"><table =\r\ncellpadding=3D\"0\" cellspacing=3D\"0\" style=3D\"border:none\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td valign=3D\"top\" =\r\nalign=3D\"left\" style=3D\"border:1px solid =\r\nrgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px =\r\n8px 8px\"><table border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://lithiumbatterycompany.com/\" target=3D\"_blank\"><img =\r\nalt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/web-icon=\r\n.gif\" width=3D\"24\" style=3D\"display:block\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://www.instagram.com/lithiumbatteryco/\" =\r\ntarget=3D\"_blank\"><img alt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/insta-ic=\r\non.gif\" width=3D\"24\" style=3D\"display:block\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://www.linkedin.com/company/the-lithium-battery-company\" =\r\ntarget=3D\"_blank\"><img alt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/linkedin=\r\n-icon.gif\" width=3D\"24\" style=3D\"display:block\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://www.facebook.com/LithiumBatteryCompany/\" =\r\ntarget=3D\"_blank\"><img alt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/facebook=\r\n-icon.gif\" width=3D\"24\" style=3D\"display:block\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a =\r\nhref=3D\"https://www.youtube.com/c/LithiumBatteryCompany\" =\r\ntarget=3D\"_blank\"><img alt=3D\"\" =\r\nsrc=3D\"https://app.customesignature.com/images/social/animation/4/youtube-=\r\nicon.gif\" width=3D\"24\" style=3D\"display:block\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr></tbody></table></td><td =\r\nwidth=3D\"8\" =\r\nstyle=3D\"border:none;border-collapse:collapse;display:revert\">&nbsp;</td><=\r\ntd valign=3D\"top\" align=3D\"left\" style=3D\"border:1px solid =\r\nrgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\">=\r\n<table width=3D\"100%\" border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td align=3D\"left\" =\r\nvalign=3D\"middle\" style=3D\"border:none;border-collapse:collapse\"><table =\r\nwidth=3D\"100%\" border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><a =\r\nhref=3D\"https://lithiumbatterycompany.com/\" target=3D\"_blank\"><img =\r\nsrc=3D\"https://app.customesignature.com/upload/signature/11122/11122.png\" =\r\nwidth=3D\"170\" style=3D\"display:block\" =\r\ndata-unique-identifier=3D\"\"></a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:0px 0px =\r\n10px\"><table border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:15px 0px =\r\n0px\"><table border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td align=3D\"left\" =\r\nvalign=3D\"middle\" style=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-weight:bold;font-size:20px\">NATHAN A. =\r\nSTARON</span></td><td align=3D\"left\" valign=3D\"middle\" =\r\nstyle=3D\"border:none;border-collapse:collapse;padding-left:5px\"><img =\r\nwidth=3D\"15\" height=3D\"15\" =\r\nsrc=3D\"https://app.customesignature.com/images/verify.gif\" =\r\nstyle=3D\"display:block\" =\r\ndata-unique-identifier=3D\"\"></td></tr></tbody></table></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-size:12px\">Founder / =\r\nCEO</span></td></tr></tbody></table></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-weight:bold;font-size:12px\">Lithium Battery =\r\nCompany</span></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-weight:bold;font-size:12px\">Cell Phone</span>&nbsp;<a =\r\nhref=3D\"tel:813-504-0074\" style=3D\"font-size: 12px;\" =\r\ntarget=3D\"_blank\">813-504-0074</a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><span =\r\nstyle=3D\"font-weight:bold;font-size:12px\">Phone</span>&nbsp;<a =\r\nhref=3D\"tel:844-GET-LITHIUM\" style=3D\"font-size: 12px;\" =\r\ntarget=3D\"_blank\">844-GET-LITHIUM</a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><a =\r\nhref=3D\"mailto:Nathan@lithiumbatterycompany.com\" style=3D\"\" =\r\ntarget=3D\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:5px 0px =\r\n0px\"><table cellpadding=3D\"0\" cellspacing=3D\"0\" border=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;display:flex;font-weight:bol=\r\nd\"><a href=3D\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" =\r\nstyle=3D\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px =\r\n15px;text-align:center;font-size:12px;line-height:14px;display:inline-bloc=\r\nk\" target=3D\"_blank\">Schedule A =\r\nZoom</a></td></tr></tbody></table></td></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse\"><table cellpadding=3D\"0\" =\r\ncellspacing=3D\"0\" border=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"></tr></tbody></table></td><=\r\n/tr></tbody></table></td><td align=3D\"left\" valign=3D\"middle\" =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:0px 0px 0px =\r\n15px;display:revert\"><div style=3D\"max-height:0px;overflow:visible\"><img =\r\nsrc=3D\"https://app.customesignature.com/upload/signature/profile/173870830=\r\n7-11122.jpg\" width=3D\"140\" style=3D\"display:block;border-radius:10px\" =\r\ndata-unique-identifier=3D\"\"></div><img =\r\nsrc=3D\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gi=\r\nf\" name=3D\"SignatureSanitizer_profile_annimation_gif\" width=3D\"140\" =\r\nstyle=3D\"display:block;border-radius:10px\" =\r\ndata-unique-identifier=3D\"\"></td></tr></tbody></table></td></tr></tbody></=\r\ntable></td></tr><tr style=3D\"border:none;border-collapse:collapse\"><td =\r\nalign=3D\"left\" valign=3D\"top\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><table border=3D\"0\" =\r\ncellspacing=3D\"0\" cellpadding=3D\"0\" =\r\nstyle=3D\"border:none;border-collapse:collapse\"><tbody><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"></tr></tbody></table></td><=\r\n/tr><tr style=3D\"border:none;border-collapse:collapse\"></tr><tr =\r\nstyle=3D\"border:none;border-collapse:collapse\"><td =\r\nstyle=3D\"border:none;border-collapse:collapse;padding:10px 0px =\r\n0px\"><a></a></td></tr></tbody></table></div></div></div></div></div><div><=\r\nbr></div><div><br><div class=3D\"gmail_quote gmail_quote_container\"><div =\r\ndir=3D\"ltr\" class=3D\"gmail_attr\">On Wed, Nov 5, 2025 at 10:36=E2=80=AFPM =\r\nJordan Wroblewski &lt;<a =\r\nhref=3D\"mailto:jordan@lithiumbatterycompany.com\">jordan@lithiumbatterycomp=\r\nany.com</a>&gt; wrote:<br></div><blockquote class=3D\"gmail_quote\" =\r\nstyle=3D\"margin:0 0 0 .8ex;border-left:1px #ccc =\r\nsolid;padding-left:1ex\"><div dir=3D\"ltr\"><div>Good evening =\r\nteam.&nbsp;&nbsp;</div><div><br></div><div>Back from Sol-Ark - BMS =\r\nquestion.&nbsp;</div><div><br></div><div><span =\r\nid=3D\"cid:ii_mhmv8y361\">&lt;image (7).png&gt;</span><br></div><div><span =\r\nstyle=3D\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, =\r\nCalibri, Helvetica, sans-serif; font-size: 14.6667px;\">Is there any =\r\npossibility of setting the Max Charge/Discharge at 200A to align with =\r\nthe performance targets we=E2=80=99re aiming for? I understand that =\r\nmaintaining 300A for 15 seconds may not be feasible, 15 seconds is a =\r\nlong duration, and most appliances don=E2=80=99t require that much =\r\nramp-up time. Could you share any data regarding the peak power =\r\ncapability for a shorter duration, such as 10ms or =\r\nless?</span></div><div><span style=3D\"font-family: Aptos, =\r\nAptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; =\r\nfont-size: 14.6667px;\"><br></span></div><div><span style=3D\"font-family: =\r\nAptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, =\r\nsans-serif; font-size: 14.6667px;\">I reached out to Susan and Wilson on =\r\nthis.&nbsp; The 16kWh battery can support 200Ah burst but not =\r\ncontinuous.&nbsp; The 314Ah cell is a .5C charge/discharge so they don\'t =\r\nsuggest continuous over 157A.&nbsp;&nbsp;</span></div><div><span =\r\nstyle=3D\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, =\r\nCalibri, Helvetica, sans-serif; font-size: =\r\n14.6667px;\"><br></span></div><div><span style=3D\"font-family: Aptos, =\r\nAptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; =\r\nfont-size: 14.6667px;\">I want to confirm with you and see if you have =\r\nany thoughts or ideas before I =\r\nrespond.&nbsp;&nbsp;</span></div><div><span style=3D\"font-family: Aptos, =\r\nAptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; =\r\nfont-size: 14.6667px;\"><br></span></div><div><span style=3D\"font-family: =\r\nAptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, =\r\nsans-serif; font-size: 14.6667px;\">Thanks,</span></div></div><div =\r\ndir=3D\"ltr\"><div><div dir=3D\"ltr\" class=3D\"gmail_signature\" =\r\ndata-smartmail=3D\"gmail_signature\"><div dir=3D\"ltr\"><div style=3D\"margin: =\r\n0in;\"><span style=3D\"font-family: Arial, =\r\nsans-serif;\"><br></span></div><div style=3D\"margin: 0in;\"><span =\r\nstyle=3D\"font-family: Arial, sans-serif;\">Jordan G. =\r\nWroblewski</span></div><div style=3D\"margin: 0in;\"><span =\r\nstyle=3D\"font-family: Arial, sans-serif; font-size: 9pt;\">Partner | =\r\nPresident&nbsp;<br></span></div><div style=3D\"margin: 0in;\"><span =\r\nstyle=3D\"font-family: Arial, sans-serif; font-size: 10pt;\">Lithium =\r\nBattery Company</span></div><div style=3D\"margin: 0in;\"><span =\r\nstyle=3D\"font-family: Arial, sans-serif; font-size: 10pt;\">Direct: (917) =\r\n266-5336<br></span></div><div style=3D\"margin: 0in;\"><span =\r\nstyle=3D\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<=\r\na href=3D\"mailto:Jarrett.brownfield@trackmastermobility.com\" =\r\nstyle=3D\"color:blue;margin:0px\" =\r\ntarget=3D\"_blank\">@lithiumbatterycompany.com</a></u></span></div><div =\r\nstyle=3D\"margin: 0in;\"><span =\r\nstyle=3D\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><=\r\na href=3D\"http://lithiumbatterycompany.com/\" target=3D\"_blank\">Lithium =\r\nBattery Company</a></span></div></div></div></div><br></div><br><div =\r\nclass=3D\"gmail_quote\"><div dir=3D\"ltr\" class=3D\"gmail_attr\">On Mon, Nov =\r\n3, 2025 at 2:10=E2=80=AFPM Jordan Wroblewski &lt;<a =\r\nhref=3D\"mailto:jordan@lithiumbatterycompany.com\" =\r\ntarget=3D\"_blank\">jordan@lithiumbatterycompany.com</a>&gt; =\r\nwrote:<br></div><blockquote class=3D\"gmail_quote\" style=3D\"margin:0px =\r\n0px 0px 0.8ex;border-left:1px solid =\r\nrgb(204,204,204);padding-left:1ex\"><div dir=3D\"ltr\"><div>Hi Nathan and =\r\nteam,</div><div><br></div><div>Here are the list of preferred prototype =\r\nspecs from Sol-Ark</div><div><br></div><div><div style=3D\"font-family: =\r\nAptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, =\r\nsans-serif; font-size: 11pt;\">Please see the below specs for the =\r\nprototype battery for testing:</div><ul =\r\nstyle=3D\"margin-top:0px;margin-bottom:0px\"><li style=3D\"margin-left: =\r\n15px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, =\r\nCalibri, Helvetica, sans-serif; font-size: 11pt;\"><div =\r\nrole=3D\"presentation\">LBC512314</div></li><ul =\r\nstyle=3D\"margin-top:0px;margin-bottom:0px\"><li style=3D\"margin-left: =\r\n15px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, =\r\nCalibri, Helvetica, sans-serif; font-size: 11pt;\"><div =\r\nrole=3D\"presentation\">Capacity: 16.1kWh</div></li><li =\r\nstyle=3D\"margin-left: 15px; font-family: Aptos, Aptos_EmbeddedFont, =\r\nAptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: =\r\n11pt;\"><div role=3D\"presentation\">Amp Hours (Ah): 314Ah</div></li><li =\r\nstyle=3D\"margin-left: 15px; font-family: Aptos, Aptos_EmbeddedFont, =\r\nAptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: =\r\n11pt;\"><div role=3D\"presentation\">Nominal Voltage: 51.2v</div></li><li =\r\nstyle=3D\"margin-left: 15px; font-family: Aptos, Aptos_EmbeddedFont, =\r\nAptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: =\r\n11pt;\"><div role=3D\"presentation\">Operating Range: 48v - =\r\n56v</div></li><li style=3D\"margin-left: 15px; font-family: Aptos, =\r\nAptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; =\r\nfont-size: 11pt;\"><div role=3D\"presentation\">Max Continuous Charge: 200A =\r\nOptimal | 150A Minimum</div></li><li style=3D\"margin-left: 15px; =\r\nfont-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, =\r\nHelvetica, sans-serif; font-size: 11pt;\"><div role=3D\"presentation\">Max =\r\nContinuous Discharge: 220A Optimal | 200A Minimum</div></li><li =\r\nstyle=3D\"margin-left: 15px; font-family: Aptos, Aptos_EmbeddedFont, =\r\nAptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: =\r\n11pt;\"><div role=3D\"presentation\">Peak Discharge Current: =\r\n300A</div></li><li style=3D\"margin-left: 15px; font-family: Aptos, =\r\nAptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; =\r\nfont-size: 11pt;\"><div role=3D\"presentation\">Communication Protocol: =\r\nRS-485 Modbus RTU &amp; CANBUS<span =\r\nstyle=3D\"font-size:11pt\"></span></div></li></ul></ul><div><font =\r\nface=3D\"Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, =\r\nHelvetica, sans-serif\"><span =\r\nstyle=3D\"font-size:14.6667px\"><br></span></font></div></div><div><span =\r\nstyle=3D\"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, =\r\nCalibri, Helvetica, sans-serif; font-size: 14.6667px;\">Here is a list of =\r\nspecs that would be comparable:</span><font face=3D\"Aptos, =\r\nAptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, =\r\nsans-serif\"><span =\r\nstyle=3D\"font-size:14.6667px\"></span></font></div><div><span =\r\nid=3D\"cid:ii_mhjik7da1\">&lt;image =\r\n(5).png&gt;</span><br></div><div><br></div><div>I have reached out to =\r\nSusan from GSL and shared the specs. I\'ve also inquired if this would be =\r\navailable&nbsp;from one of their dealers in the =\r\nUS.</div><div><br></div><div>Let me know if you have any other thoughts =\r\non what we should send thier =\r\nway.</div><div><br></div><div>Best,&nbsp;</div><div><div dir=3D\"ltr\" =\r\nclass=3D\"gmail_signature\"><div dir=3D\"ltr\"><div style=3D\"margin: =\r\n0in;\"><span style=3D\"font-family: Arial, =\r\nsans-serif;\"><br></span></div><div style=3D\"margin: 0in;\"><span =\r\nstyle=3D\"font-family: Arial, sans-serif;\">Jordan G. =\r\nWroblewski</span></div><div style=3D\"margin: 0in;\"><span =\r\nstyle=3D\"font-family: Arial, sans-serif; font-size: 9pt;\">Partner | =\r\nPresident&nbsp;<br></span></div><div style=3D\"margin: 0in;\"><span =\r\nstyle=3D\"font-family: Arial, sans-serif; font-size: 10pt;\">Lithium =\r\nBattery Company</span></div><div style=3D\"margin: 0in;\"><span =\r\nstyle=3D\"font-family: Arial, sans-serif; font-size: 10pt;\">Direct: (917) =\r\n266-5336<br></span></div><div style=3D\"margin: 0in;\"><span =\r\nstyle=3D\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<=\r\na href=3D\"mailto:Jarrett.brownfield@trackmastermobility.com\" =\r\nstyle=3D\"color:blue;margin:0px\" =\r\ntarget=3D\"_blank\">@lithiumbatterycompany.com</a></u></span></div><div =\r\nstyle=3D\"margin: 0in;\"><span =\r\nstyle=3D\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><=\r\na href=3D\"http://lithiumbatterycompany.com/\" target=3D\"_blank\">Lithium =\r\nBattery Company</a></span></div></div></div></div></div>\r\n</blockquote></div>\r\n</blockquote></div></div>\r\n</div></blockquote></div><br><div>\r\n<div style=3D\"font-family: Helvetica; font-size: 12px; font-style: =\r\nnormal; font-variant-caps: normal; font-weight: 400; letter-spacing: =\r\nnormal; orphans: auto; text-align: start; text-indent: 0px; =\r\ntext-transform: none; white-space: normal; widows: auto; word-spacing: =\r\n0px; -webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><font size=3D\"2\">Best =\r\nregards,</font></div><div style=3D\"font-family: Helvetica; font-size: =\r\n12px; font-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><font =\r\nsize=3D\"2\"><br></font></div><div style=3D\"font-family: Helvetica; =\r\nfont-size: 12px; font-style: normal; font-variant-caps: normal; =\r\nfont-weight: 400; letter-spacing: normal; orphans: auto; text-align: =\r\nstart; text-indent: 0px; text-transform: none; white-space: normal; =\r\nwidows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\"><br></font></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\"><br></font></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><font size=3D\"2\" style=3D\"font-family: Helvetica; font-style: =\r\nnormal; font-weight: 400; font-size: 12px;\"><b>Brian C. =\r\nStufflebean</b><br>CEO, Co-Founder</font><br><div><b>(941)545-4153 =\r\nDirect</b></div><div style=3D\"font-family: Helvetica; font-style: =\r\nnormal; font-weight: 400; font-size: 12px;\"><span style=3D\"font-size: =\r\n11px;\">(866)896-2423 Fax</span></div></div><span style=3D\"caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0); font-family: Helvetica; font-size: =\r\n12px; font-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone;\"></span><br class=3D\"Apple-interchange-newline\"><span><img =\r\nalt=3D\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\" =\r\nsrc=3D\"cid:CB596987-D3CC-4C61-B9D3-CE1C1DF1C723\"></span><meta =\r\ncharset=3D\"UTF-8\"><div style=3D\"font-family: Helvetica; font-size: 12px; =\r\nfont-style: normal; font-variant-caps: normal; font-weight: 400; =\r\nletter-spacing: normal; orphans: auto; text-align: start; text-indent: =\r\n0px; text-transform: none; white-space: normal; widows: auto; =\r\nword-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: =\r\nnone; caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0);\"><br =\r\nclass=3D\"Apple-interchange-newline\"><br =\r\nclass=3D\"Apple-interchange-newline\"><a =\r\nhref=3D\"mailto:brian@mavrix.one\">brian@mavrix.one</a></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><br><a =\r\nhref=3D\"https://mavrix1.com\">https://mavrix1.com/</a></div><div =\r\nstyle=3D\"font-family: Helvetica; font-size: 12px; font-style: normal; =\r\nfont-variant-caps: normal; font-weight: 400; letter-spacing: normal; =\r\norphans: auto; text-align: start; text-indent: 0px; text-transform: =\r\nnone; white-space: normal; widows: auto; word-spacing: 0px; =\r\n-webkit-text-stroke-width: 0px; text-decoration: none; caret-color: =\r\nrgb(0, 0, 0); color: rgb(0, 0, 0);\"><br></div><div style=3D\"font-family: =\r\nHelvetica; font-size: 12px; font-style: normal; font-variant-caps: =\r\nnormal; font-weight: 400; letter-spacing: normal; orphans: auto; =\r\ntext-align: start; text-indent: 0px; text-transform: none; white-space: =\r\nnormal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =\r\ntext-decoration: none; caret-color: rgb(0, 0, 0); color: rgb(0, 0, =\r\n0);\"><br><br><br><br><br><br><br><br><br><b>CONFIDENTIALITY =\r\nNOTICE:</b><span style=3D\"font-family: Helvetica; font-style: normal; =\r\nfont-weight: 400; font-size: =\r\n12px;\">&nbsp;This&nbsp;communication&nbsp;is =\r\nconfidential&nbsp;and&nbsp;intended only for the =\r\nintended&nbsp;recipient.&nbsp;&nbsp;If you are not the =\r\nintended&nbsp;recipient,&nbsp;you&nbsp;may not copy, disclose, =\r\nor&nbsp;distribute&nbsp;this message&nbsp;to anyone else;&nbsp;any =\r\nsuch&nbsp;actions may be unlawful. If&nbsp;you have&nbsp;received this =\r\ncommunication&nbsp;in error,&nbsp;please contact the sender =\r\nof&nbsp;the&nbsp;message to inform him or her of =\r\nthe&nbsp;error.<br><br></span></div>\r\n</div>\r\n<br></div></div></body></html>=\r\n\r\n--Apple-Mail=_3AED1276-DD28-4659-A629-E1BAE21291AF\r\nContent-Transfer-Encoding: base64\r\nContent-Disposition: inline;\r\n	filename=CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\r\nContent-Type: image/png;\r\n	name=\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\"\r\nContent-Id: <CB596987-D3CC-4C61-B9D3-CE1C1DF1C723>\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAGwAAAAYCAYAAAAf1RgaAAAAAXNSR0IArs4c6QAAAIRlWElmTU0A\r\nKgAAAAgABQESAAMAAAABAAEAAAEaAAUAAAABAAAASgEbAAUAAAABAAAAUgEoAAMAAAABAAIAAIdp\r\nAAQAAAABAAAAWgAAAAAAAABIAAAAAQAAAEgAAAABAAOgAQADAAAAAQABAACgAgAEAAAAAQAAAGyg\r\nAwAEAAAAAQAAABgAAAAABrPxEgAAAAlwSFlzAAALEwAACxMBAJqcGAAAAVlpVFh0WE1MOmNvbS5h\r\nZG9iZS54bXAAAAAAADx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9\r\nIlhNUCBDb3JlIDYuMC4wIj4KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9y\r\nZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6\r\nYWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZm\r\nLzEuMC8iPgogICAgICAgICA8dGlmZjpPcmllbnRhdGlvbj4xPC90aWZmOk9yaWVudGF0aW9uPgog\r\nICAgICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KGV7hBwAA\r\nC6FJREFUaAXtWnuMVUcZnznPe/fuZYEtDxHCQ1ADBNuuAlKh24dRaqURWFotj5haKAn9SxOaauRi\r\nxEBsMMFSAmnUCDTKWtDioyEm3RLKq6VKC7Rg20VA5Lmwz3vPa8bfN+ecu+fevbugjQQrX5g735n5\r\nvm++13wz5yyc3YKb0gP19a8YTU33+NNmbx0puHjJtGsm+U7beoMxyRsaGrUJE45JxlbclMp/1JXK\r\nsZWM5XLwP6PG6+tzOgVr8tzN0wWTjRq3hojAw6TU+EfdGf9T9uVyGsutQNC4nDpn8zz0m7lmWEwE\r\njm6mbd/r3MCnzNk6DlEbyRFCqfNbAbyBEeaBlJzrkula1mOFQ683fvMcLT917tblGF8dbTgmhe8a\r\nZsbyvY4NhsbEdwy7ZrHntDHOtBuo7q2lGLyvGSnmOe2/fH3S3//EGhGsOZuf03RrKRMC/3wBL30f\r\nW24uxm6XHhcaQuxjgrwXMNpgt9p/3wfYGsrPMmC+07H8wPYFiyYfHj1gypwtr+JysZROMiG80wjO\r\nPftfnL9KpTaxoFQakk4y3WKB13Wc+97DbuB5hm5qXAvoAPzQ4GmG1HxRlCUMjZvC/7dLL7SCnkKK\r\nAPxmN388fr2Klq8fCI2yGGAzYXjXpRvZxBzGknqEcmxUt3xJmeqWH64S/5rwg+dI9+DOhc00pjF3\r\nMJPp51y3bRWXwuaafHNv46J/1H11Z5XGWsPqCDqDosbDo6uwd8fCI7HAW/2N9cD+HY+/gxWpdQMu\r\nIa0HmoNaa2BxDNd6gMp/zsfcv7rm9Gs/+bRuZ1OMBwJnmsA+LO6OIpeUGjZmcZdwbMfinEI4piUK\r\ntPDM9ND32s7sa8G1FTegnMgMnjJEeBfHMcXTLaOUP34iOULXNf1yx+UT76IoyMygzw0N3Avjuaa7\r\nKCtiyqQFB5uaVgT0atKoXk1i3tK+volpTU05Pz1s4gjZ1fEJyBJcZ4UH711zSPFBt+zHJ9f6+Qvj\r\nmNR1kg3HFG0MpflSCs3UrcHHNcNHUWoZj+KlG1rmQkfLsaO3fWpWtv2fb35B0+02KQMzlep/8uq5\r\nv56sq1tsjhlzv4j1m9B41Dh6tNEdO3amffLMnsk8KLiala2pqhn97pWzh07hWm/U168QuRx0mLmu\r\nxBA+dc7Wn1rp/su8QuuBD97a+o1LzX98Q9MzA6T0wjpbQh49oI6WQG+XS6Lj/DwK8lrfdZ8Bj4AV\r\nizG6sYT/Wg9wE0j2aFI+4bruacO2D0HuJ5EUJP9HfqHwXczraGWJUxQczmUyQ0zf3weu0eCjg+Ip\r\n6LWGqEzbfhKlJgeZA9VckbUUURGUcikUOo3K9Hs1K+VO33FmAa+CfRshf36k20UpxJLAdXdgjlip\r\nXFLvs0xmqOH7vwJ+N60npfwAu2em4zgnQjplnBw7c51dWzVwv50acLtbuPpsuMNAEcqhHidhN7wB\r\nSXTVJDroES3G+Z0YHxaRBcD3AO9AI8cQHTUTbQrmhjBNW6Nb1gko/lsodgrjr6Ll0Uh5ar0B3YZG\r\noY2HUTME5z8HPpULMU9q2m7g/SD/aT2VeicoFLbgmfRUNyj0MZB8sonDQVsRlNE0AT2ehz4qWEYq\r\nNQMKr8MgTXWhfw09MlY5WA3SBECAvz90OY5g91MjYbJG5yDLe4XCAiTUYcz9GG0Qgrod8lcgqX6A\r\nZ+VbPN/NfH8L5AxXMhDwwHEWYvIqnimoJK+iX8jAcqAySC4/gkXuBdZeTgDnN3BN2xYZ+Aqy64vl\r\nNPRsWNbTCNYqwqH4WOpB+zI6atcHlIlBcBRrUeaPRGYO8To7D0OHRZBJmYtCKTeZpvm253nkqPKg\r\nkQMC3bbXgf8+ogfshYOWhKjKrlGQQUpiGfkzzD0Zz/XW6+n01xG08mlKUg82PoOgvQV8M2QORr8S\r\nz5/xbftx03EewRrPYpwWozVXgf57kaC+qoQiqRSwkJfzLiC4CykgoynTiN7DWm1qNPyhnUUQ0xBO\r\niruga0mkZ2hdNnub5Ti0O2NrEyTEWgSwcy8IAjJYkjMBSCacawDarUiIp5AQq2F4WmjabzD8WTRc\r\nqYpZqoKnyrCUyyIHnfN1fQ5oaH0Ljc5CfPcJ1cCaxE9Ac7TLyoGcWr6LY5rYJgNB2GXb9jTsmm2Q\r\nfyfabMN178IqQ4DDItmBKrEkyOdfiJhVYsWCeut7D1hoNAlJgrIKP7hdFoEMIAgtLsUpcDEoOtPz\r\nZsO5GyPnxXN995EzYWgyKXQ6fxCMiShT86HPWGTxC3DUVyCMHKey3Uinp+Ec2RAtQCXpYdbZGZd5\r\nVaIwljBHJSWRJ+2h5+sF4qOAGjiP3kdfB722o/8a2iA0gvNwxnQnn/8bcNKT6ONgA+0dygNSThkr\r\nTX2ME00Sj3limuRcEo/p/Cib8V0TWYbDFuXoJFpzecMcjZ0GY28ZzXBmPIZ5OmupvDyA8wGfdBR4\r\ndLCjbP0aT8pO7J4nUOZ341ntvJCsx29SZ8IrtR5MZQOUAEoOJQzwiWo+TDjMyGpE58GIJz4ro8e+\r\nu752WN+c//lsmM1QHsgf4MBHkOYZiIuzPZZMdC520AhE6yBwys6kMykjade6MGKez/l+OILK53Jc\r\nQo7QJQRn34sI4nCMkZPWIrjPAyOeXhOASD8kxFUggB6LkDCboINFCQWDqPxNR0UYAUPW4lydgPPy\r\nWxgj2/tKoqJKlXZY7JS4LxL3glSii8fiPskabn0YgB1Ug4ksy2bTaJkeDYEUQlQVmcFQxENEGVoo\r\nFJrxOA9NzcMxa1CGfocFKLspWLtQKr+t8MqlJyk3iUcs1+xiHvIn2Sex03+I6vAL4BSsADotRcI8\r\nirEv4fkYxhFH/hjodtNFCo+URJXiQaRFSOwwekfFu3J42JKRyfOnyBAhREcrEl1CRjTbfSZQNpcA\r\nruT7kWGd4M2A98tQuJl5nguiUGaSOpWiFzADdIPUWpSpPenIUAM7Fd/h7GWQvR70w0BP70VA5fuB\r\nZT3KHHV/ih1KU91AL/nhpYYYeujcTZjAiKcbYh+QHdVIli3oH4pkXgQ+D8FqQm/iPZK+ZtxF5y3m\r\nZwKfjkrwNkunH/Lz+X14rqwjJgiSi+KLPkqrZl1G1RBcs66OGlUfOTFHkeGsvl4xGUYN6q5Bvixw\r\nzY5ujPRVIGp1ixUd0zMFrnY6PtLpVV00qBS2+kFR689MM7GWkUbrj4bd1qPReAZ0eD8xujgzW6qr\r\nh0bZHOkUrhmwhgbdc5znOE+tZ9x08NZ1Ge2cptfOY+3tl1hdHRKQdmhCz/rQPt2ogqNhC3TV9LTS\r\nk01o6LanEg+vwhpWB3gkfKBefQYMqKsxUtmXODdnQYdW9Ac1c+AMJFMTw9cOrO3DhxTcq9jxDyhd\r\nmQleoxo+32FWDbsDc4JsYbmVyvfD81nVk+8Iwi8dqf7L8Bb9F6+2Y8qhTer1hLKMyk2lay3xEdhh\r\np+h6OxNoMdoVBCQLQS4BmovLSclE2QPJoUa0lMXXglg30qv8bKzEey09r8VDa9Ba5Dc4X31EoApV\r\nQCOIdQ+fSn9TeCRe0pl8VGIf/VeBQu3Zg1aq/x2JLx3kB3yzu5jq9/mGbV3ZVA123nm9s9UjYT3A\r\ntLOyfUBaOb82bxmdrWewS3pCki57JW/i7z6kOCvYvpZyDFEYOvh6nFkUPAxYy7kLcTCK4+VILJd0\r\na710UTdMp8+kSOoZ2ZOsPOXi1XMFnjSNscwgJ2t12GdBBZur29kVnWwtF+J7tvKFP6LGh13WpSu1\r\nIpt6z4TPlX00n65uFV3+KRsfZZEIoQlqh+lGalkQ5Nuw88/hICvmAw7FHobSymQNzga1ICnSGx0O\r\n2CIN0eF8UYWfZJTP0fz1QFIG6RF7IsbL5ZbrFusfr1VJl3iNmKZSn7Sf5mOeSuM0X54BldZNyiFc\r\n0aiDUHwMZTsb+AX6lihxSGIXO6yfZtjh9zGivgU3jQeE7zCKUeDnq3EDYy+7nRfpL4wdgZcv2RE3\r\njcb/74rgq6NAsBCrXf8CAf/+y47p6ecAAAAASUVORK5CYII=\r\n--Apple-Mail=_3AED1276-DD28-4659-A629-E1BAE21291AF--','Nathan and Jordan, \r\n\r\nI need to have the proposed Sol-Ark annual units, price per unit and total annual projected forecast for the next 5-years, broken out into an Excel table, by year. \r\n\r\nWe need this ASAP for meetings tomorrow (Thursday, 12/4/25)  afternoon. \r\n\r\nNeed the same thing for Sonnen and Mitsubishi.\r\n\r\nPlease place at high priority.  \r\n\r\nThank you,\r\n\r\nBrian \r\n\r\n> On Nov 5, 2025, at 11:20 PM, Nathan Staron <Nathan@lithiumbatterycompany.com> wrote:\r\n> \r\n> Will respond more clearly tomorrow morning.  I want to make sure Nick is included with the communication.   \r\n> \r\n> The BMS could handle 300A for 15 seconds.  It is a heat dissipation issue from FETS.  It can be programmed in back end software.  \r\n> \r\n> Susan and Wilson have new relationship together so their working relationship and knowledge needs to be communicated.   \r\n> \r\n> Try not to be persuaded from GSL to accept their parameters.  Sol Ark is just setting their battery management system and cells to a better quality which will lower their after sales support and align the battery for better performance and balancing.  Chinese have very narrow scope and we need to be specific on laying out our requirements for the project. \r\n> \r\n> Let’s discuss tomorrow morning. \r\n> \r\n> \r\n>  <https://lithiumbatterycompany.com/>\r\n>  <https://www.instagram.com/lithiumbatteryco/>\r\n>  <https://www.linkedin.com/company/the-lithium-battery-company>\r\n>  <https://www.facebook.com/LithiumBatteryCompany/>\r\n>  <https://www.youtube.com/c/LithiumBatteryCompany>	 	\r\n>  <https://lithiumbatterycompany.com/>\r\n> NATHAN A. STARON	\r\n> Founder / CEO\r\n> Lithium Battery Company\r\n> Cell Phone 813-504-0074 <tel:813-504-0074>\r\n> Phone 844-GET-LITHIUM <tel:844-GET-LITHIUM>\r\n> Nathan@lithiumbatterycompany.com <mailto:Nathan@lithiumbatterycompany.com>\r\n> Schedule A Zoom\r\n>  <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n> \r\n> \r\n> \r\n> On Wed, Nov 5, 2025 at 10:36 PM Jordan Wroblewski <jordan@lithiumbatterycompany.com <mailto:jordan@lithiumbatterycompany.com>> wrote:\r\n>> Good evening team.  \r\n>> \r\n>> Back from Sol-Ark - BMS question. \r\n>> \r\n>> <image (7).png>\r\n>> Is there any possibility of setting the Max Charge/Discharge at 200A to align with the performance targets we’re aiming for? I understand that maintaining 300A for 15 seconds may not be feasible, 15 seconds is a long duration, and most appliances don’t require that much ramp-up time. Could you share any data regarding the peak power capability for a shorter duration, such as 10ms or less?\r\n>> \r\n>> I reached out to Susan and Wilson on this.  The 16kWh battery can support 200Ah burst but not continuous.  The 314Ah cell is a .5C charge/discharge so they don\'t suggest continuous over 157A.  \r\n>> \r\n>> I want to confirm with you and see if you have any thoughts or ideas before I respond.  \r\n>> \r\n>> Thanks,\r\n>> \r\n>> Jordan G. Wroblewski\r\n>> Partner | President \r\n>> Lithium Battery Company\r\n>> Direct: (917) 266-5336\r\n>> jordan@lithiumbatterycompany.com <mailto:Jarrett.brownfield@trackmastermobility.com>\r\n>> Lithium Battery Company <http://lithiumbatterycompany.com/>\r\n>> \r\n>> On Mon, Nov 3, 2025 at 2:10 PM Jordan Wroblewski <jordan@lithiumbatterycompany.com <mailto:jordan@lithiumbatterycompany.com>> wrote:\r\n>>> Hi Nathan and team,\r\n>>> \r\n>>> Here are the list of preferred prototype specs from Sol-Ark\r\n>>> \r\n>>> Please see the below specs for the prototype battery for testing:\r\n>>> LBC512314\r\n>>> Capacity: 16.1kWh\r\n>>> Amp Hours (Ah): 314Ah\r\n>>> Nominal Voltage: 51.2v\r\n>>> Operating Range: 48v - 56v\r\n>>> Max Continuous Charge: 200A Optimal | 150A Minimum\r\n>>> Max Continuous Discharge: 220A Optimal | 200A Minimum\r\n>>> Peak Discharge Current: 300A\r\n>>> Communication Protocol: RS-485 Modbus RTU & CANBUS\r\n>>> \r\n>>> Here is a list of specs that would be comparable:\r\n>>> <image (5).png>\r\n>>> \r\n>>> I have reached out to Susan from GSL and shared the specs. I\'ve also inquired if this would be available from one of their dealers in the US.\r\n>>> \r\n>>> Let me know if you have any other thoughts on what we should send thier way.\r\n>>> \r\n>>> Best, \r\n>>> \r\n>>> Jordan G. Wroblewski\r\n>>> Partner | President \r\n>>> Lithium Battery Company\r\n>>> Direct: (917) 266-5336\r\n>>> jordan@lithiumbatterycompany.com <mailto:Jarrett.brownfield@trackmastermobility.com>\r\n>>> Lithium Battery Company <http://lithiumbatterycompany.com/>\r\nBest regards,\r\n\r\n\r\n\r\nBrian C. Stufflebean\r\nCEO, Co-Founder\r\n(941)545-4153 Direct\r\n(866)896-2423 Fax\r\n\r\n￼\r\n\r\n\r\nbrian@mavrix.one <mailto:brian@mavrix.one>\r\n\r\nhttps://mavrix1.com/\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE: This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.',1,0,0,0,0,0,'2025-12-04 01:49:21','2025-12-04 14:05:26','2025-12-04 14:05:26','2025-12-04 16:04:13',NULL,NULL,NULL),
(109,4,'<CAGOCFXiR-YpQ+LF9yXtMmmzobh2eY1Z9eewb2b9O-XOq9AVOjA@mail.gmail.com>',NULL,NULL,'Re: Sol-Ark Preferred Prototype Specs','Nathan@lithiumbatterycompany.com','Nathan Staron','<div dir=\"auto\">Got it.  Will work on this tomorrow morning. </div><div dir=\"auto\"><br clear=\"all\"><div dir=\"auto\"><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div></div><div><br></div><div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Dec 3, 2025 at 8:50 PM Brian Stufflebean &lt;Brian@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex\"><div style=\"line-break:after-white-space\"><span style=\"font-size:14px\"><b>Nathan and Jordan, </b></span><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">I need to have the proposed Sol-Ark annual units, price per unit and total annual projected forecast for the next 5-years, broken out into an Excel table, by year. </span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">We need this ASAP for meetings tomorrow (Thursday, 12/4/25)  afternoon. </span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Need the same thing for Sonnen and Mitsubishi.</span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Please place at high priority.  </span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Thank you,</span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Brian </span><br><div><div><br><blockquote type=\"cite\"></blockquote></div></div></div></div><div style=\"line-break:after-white-space\"><div><div><div><blockquote type=\"cite\"><div>On Nov 5, 2025, at 11:20 PM, Nathan Staron &lt;<a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a>&gt; wrote:</div><br></blockquote></div></div></div></div><div style=\"line-break:after-white-space\"><div><div><div><blockquote type=\"cite\"><div></div></blockquote></div></div></div></div><div style=\"line-break:after-white-space\"><div><div><div><blockquote type=\"cite\"><div><div dir=\"auto\">Will respond more clearly tomorrow morning.  I want to make sure Nick is included with the communication.   </div><div dir=\"auto\"><br></div><div dir=\"auto\">The BMS could handle 300A for 15 seconds.  It is a heat dissipation issue from FETS.  It can be programmed in back end software.  </div><div dir=\"auto\"><br></div><div dir=\"auto\">Susan and Wilson have new relationship together so their working relationship and knowledge needs to be communicated.   </div><div dir=\"auto\"><br></div><div dir=\"auto\">Try not to be persuaded from GSL to accept their parameters.  Sol Ark is just setting their battery management system and cells to a better quality which will lower their after sales support and align the battery for better performance and balancing.  Chinese have very narrow scope and we need to be specific on laying out our requirements for the project. </div><div dir=\"auto\"><br></div><div dir=\"auto\">Let’s discuss tomorrow morning. <br clear=\"all\"><div dir=\"auto\"><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:medium;border-collapse:collapse;font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display:block\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display:block\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display:block\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display:block;border-radius:10px\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"m_578106803208480977_SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display:block;border-radius:10px\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div></div><div><br></div></div></blockquote></div></div></div></div><div style=\"line-break:after-white-space\"><div><div><div><blockquote type=\"cite\"><div><div><br><div class=\"gmail_quote\"></div></div></div></blockquote></div></div></div></div><div style=\"line-break:after-white-space\"><div><div><div><blockquote type=\"cite\"><div><div><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Nov 5, 2025 at 10:36 PM Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt; wrote:<br></div></div></div></div></blockquote></div></div></div></div><div style=\"line-break:after-white-space\"><div><div><div><blockquote type=\"cite\"><div><div><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex\"><div dir=\"ltr\"></div></blockquote></div></div></div></blockquote></div></div></div></div><div style=\"line-break:after-white-space\"><div><div><div><blockquote type=\"cite\"><div><div><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex\"><div dir=\"ltr\"><div>Good evening team.  </div><div><br></div><div>Back from Sol-Ark - BMS question. </div><div><br></div><div><span id=\"m_578106803208480977cid:ii_mhmv8y361\">&lt;image (7).png&gt;</span><br></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">Is there any possibility of setting the Max Charge/Discharge at 200A to align with the performance targets we’re aiming for? I understand that maintaining 300A for 15 seconds may not be feasible, 15 seconds is a long duration, and most appliances don’t require that much ramp-up time. Could you share any data regarding the peak power capability for a shorter duration, such as 10ms or less?</span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\"><br></span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">I reached out to Susan and Wilson on this.  The 16kWh battery can support 200Ah burst but not continuous.  The 314Ah cell is a .5C charge/discharge so they don&#39;t suggest continuous over 157A.  </span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\"><br></span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">I want to confirm with you and see if you have any thoughts or ideas before I respond.  </span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\"><br></span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">Thanks,</span></div></div></blockquote></div></div></div></blockquote></div></div></div></div><div style=\"line-break:after-white-space\"><div><div><div><blockquote type=\"cite\"><div><div><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex\"><div dir=\"ltr\"></div></blockquote></div></div></div></blockquote></div></div></div></div><div style=\"line-break:after-white-space\"><div><div><div><blockquote type=\"cite\"><div><div><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex\"><div dir=\"ltr\"><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif\"><br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt\">Partner | President <br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt\">Lithium Battery Company</span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt\">Direct: (917) 266-5336<br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com/\" target=\"_blank\">Lithium Battery Company</a></span></div></div></div></div><br></div><br></blockquote></div></div></div></blockquote></div></div></div></div><div style=\"line-break:after-white-space\"><div><div><div><blockquote type=\"cite\"><div><div><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex\"><div class=\"gmail_quote\"></div></blockquote></div></div></div></blockquote></div></div></div></div><div style=\"line-break:after-white-space\"><div><div><div><blockquote type=\"cite\"><div><div><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex\"><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Mon, Nov 3, 2025 at 2:10 PM Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt; wrote:<br></div></div></blockquote></div></div></div></blockquote></div></div></div></div><div style=\"line-break:after-white-space\"><div><div><div><blockquote type=\"cite\"><div><div><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex\"><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"></div></blockquote></div></blockquote></div></div></div></blockquote></div></div></div></div><div style=\"line-break:after-white-space\"><div><div><div><blockquote type=\"cite\"><div><div><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex\"><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div>Hi Nathan and team,</div><div><br></div><div>Here are the list of preferred prototype specs from Sol-Ark</div><div><br></div><div><div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\">Please see the below specs for the prototype battery for testing:</div><ul style=\"margin-top:0px;margin-bottom:0px\"><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">LBC512314</div></li><ul style=\"margin-top:0px;margin-bottom:0px\"><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Capacity: 16.1kWh</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Amp Hours (Ah): 314Ah</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Nominal Voltage: 51.2v</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Operating Range: 48v - 56v</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Max Continuous Charge: 200A Optimal | 150A Minimum</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Max Continuous Discharge: 220A Optimal | 200A Minimum</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Peak Discharge Current: 300A</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Communication Protocol: RS-485 Modbus RTU &amp; CANBUS<span style=\"font-size:11pt\"></span></div></li></ul></ul><div><font face=\"Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif\"><span style=\"font-size:14.6667px\"><br></span></font></div></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">Here is a list of specs that would be comparable:</span><font face=\"Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif\"><span style=\"font-size:14.6667px\"></span></font></div></div></blockquote></div></blockquote></div></div></div></blockquote></div></div></div></div><div style=\"line-break:after-white-space\"><div><div><div><blockquote type=\"cite\"><div><div><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex\"><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div><span id=\"m_578106803208480977cid:ii_mhjik7da1\">&lt;image (5).png&gt;</span><br></div><div><br></div><div>I have reached out to Susan from GSL and shared the specs. I&#39;ve also inquired if this would be available from one of their dealers in the US.</div><div><br></div><div>Let me know if you have any other thoughts on what we should send thier way.</div><div><br></div><div>Best, </div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif\"><br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt\">Partner | President <br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt\">Lithium Battery Company</span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt\">Direct: (917) 266-5336<br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com/\" target=\"_blank\">Lithium Battery Company</a></span></div></div></div></div></div>\r\n</blockquote></div>\r\n</blockquote></div></div>\r\n</div></blockquote></div><br><div>\r\n<div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\">Best regards,</font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\"><br></font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\"><br></font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\"><br></font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\" style=\"font-family:Helvetica;font-style:normal;font-weight:400;font-size:12px\"><b>Brian C. Stufflebean</b><br>CEO, Co-Founder</font><br><div><b>(941)545-4153 Direct</b></div><div style=\"font-family:Helvetica;font-style:normal;font-weight:400;font-size:12px\"><span style=\"font-size:11px\">(866)896-2423 Fax</span></div></div><span style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"></span><br><span><img alt=\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\" src=\"cid:ii_19ae76cfe50d2422db41\" style=\"width:108px;max-width:100%\"></span><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><br><br><a href=\"mailto:brian@mavrix.one\" target=\"_blank\">brian@mavrix.one</a></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><br><a href=\"https://mavrix1.com\" target=\"_blank\">https://mavrix1.com/</a></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><br></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><br><br><br><br><br><br><br><br><br><b>CONFIDENTIALITY NOTICE:</b><span style=\"font-family:Helvetica;font-style:normal;font-weight:400;font-size:12px\"> This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.<br><br></span></div>\r\n</div>\r\n<br></div></div></div></blockquote></div></div>','Got it.  Will work on this tomorrow morning.\r\n\r\n\r\n\r\n<https://lithiumbatterycompany.com/>\r\n<https://www.instagram.com/lithiumbatteryco/>\r\n<https://www.linkedin.com/company/the-lithium-battery-company>\r\n<https://www.facebook.com/LithiumBatteryCompany/>\r\n<https://www.youtube.com/c/LithiumBatteryCompany>\r\n<https://lithiumbatterycompany.com/>\r\nNATHAN A. STARON\r\nFounder / CEO\r\nLithium Battery Company\r\nCell Phone 813-504-0074\r\nPhone 844-GET-LITHIUM\r\nNathan@lithiumbatterycompany.com\r\nSchedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n\r\n\r\n\r\nOn Wed, Dec 3, 2025 at 8:50 PM Brian Stufflebean <Brian@mavrix.one> wrote:\r\n\r\n> *Nathan and Jordan, *\r\n>\r\n> I need to have the proposed Sol-Ark annual units, price per unit and total\r\n> annual projected forecast for the next 5-years, broken out into an Excel\r\n> table, by year.\r\n>\r\n> We need this ASAP for meetings tomorrow (Thursday, 12/4/25)  afternoon.\r\n>\r\n> Need the same thing for Sonnen and Mitsubishi.\r\n>\r\n> Please place at high priority.\r\n>\r\n> Thank you,\r\n>\r\n> Brian\r\n>\r\n> On Nov 5, 2025, at 11:20 PM, Nathan Staron <\r\n> Nathan@lithiumbatterycompany.com> wrote:\r\n>\r\n> Will respond more clearly tomorrow morning.  I want to make sure Nick is\r\n> included with the communication.\r\n>\r\n> The BMS could handle 300A for 15 seconds.  It is a heat dissipation issue\r\n> from FETS.  It can be programmed in back end software.\r\n>\r\n> Susan and Wilson have new relationship together so their working\r\n> relationship and knowledge needs to be communicated.\r\n>\r\n> Try not to be persuaded from GSL to accept their parameters.  Sol Ark is\r\n> just setting their battery management system and cells to a better quality\r\n> which will lower their after sales support and align the battery for better\r\n> performance and balancing.  Chinese have very narrow scope and we need to\r\n> be specific on laying out our requirements for the project.\r\n>\r\n> Let’s discuss tomorrow morning.\r\n>\r\n>\r\n> <https://lithiumbatterycompany.com/>\r\n> <https://www.instagram.com/lithiumbatteryco/>\r\n> <https://www.linkedin.com/company/the-lithium-battery-company>\r\n> <https://www.facebook.com/LithiumBatteryCompany/>\r\n> <https://www.youtube.com/c/LithiumBatteryCompany>\r\n> <https://lithiumbatterycompany.com/>\r\n> NATHAN A. STARON\r\n> Founder / CEO\r\n> Lithium Battery Company\r\n> Cell Phone 813-504-0074\r\n> Phone 844-GET-LITHIUM\r\n> Nathan@lithiumbatterycompany.com\r\n> Schedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n>\r\n>\r\n>\r\n> On Wed, Nov 5, 2025 at 10:36 PM Jordan Wroblewski <\r\n> jordan@lithiumbatterycompany.com> wrote:\r\n>\r\n> Good evening team.\r\n>>\r\n>> Back from Sol-Ark - BMS question.\r\n>>\r\n>> <image (7).png>\r\n>> Is there any possibility of setting the Max Charge/Discharge at 200A to\r\n>> align with the performance targets we’re aiming for? I understand that\r\n>> maintaining 300A for 15 seconds may not be feasible, 15 seconds is a long\r\n>> duration, and most appliances don’t require that much ramp-up time. Could\r\n>> you share any data regarding the peak power capability for a shorter\r\n>> duration, such as 10ms or less?\r\n>>\r\n>> I reached out to Susan and Wilson on this.  The 16kWh battery can support\r\n>> 200Ah burst but not continuous.  The 314Ah cell is a .5C charge/discharge\r\n>> so they don\'t suggest continuous over 157A.\r\n>>\r\n>> I want to confirm with you and see if you have any thoughts or ideas\r\n>> before I respond.\r\n>>\r\n>> Thanks,\r\n>>\r\n>\r\n>> Jordan G. Wroblewski\r\n>> Partner | President\r\n>> Lithium Battery Company\r\n>> Direct: (917) 266-5336\r\n>> *jordan@lithiumbatterycompany.com\r\n>> <Jarrett.brownfield@trackmastermobility.com>*\r\n>> Lithium Battery Company <http://lithiumbatterycompany.com/>\r\n>>\r\n>>\r\n>> On Mon, Nov 3, 2025 at 2:10 PM Jordan Wroblewski <\r\n>> jordan@lithiumbatterycompany.com> wrote:\r\n>>\r\n> Hi Nathan and team,\r\n>>>\r\n>>> Here are the list of preferred prototype specs from Sol-Ark\r\n>>>\r\n>>> Please see the below specs for the prototype battery for testing:\r\n>>>\r\n>>>    - LBC512314\r\n>>>    - Capacity: 16.1kWh\r\n>>>       - Amp Hours (Ah): 314Ah\r\n>>>       - Nominal Voltage: 51.2v\r\n>>>       - Operating Range: 48v - 56v\r\n>>>       - Max Continuous Charge: 200A Optimal | 150A Minimum\r\n>>>       - Max Continuous Discharge: 220A Optimal | 200A Minimum\r\n>>>       - Peak Discharge Current: 300A\r\n>>>       - Communication Protocol: RS-485 Modbus RTU & CANBUS\r\n>>>\r\n>>>\r\n>>> Here is a list of specs that would be comparable:\r\n>>>\r\n>> <image (5).png>\r\n>>>\r\n>>> I have reached out to Susan from GSL and shared the specs. I\'ve also\r\n>>> inquired if this would be available from one of their dealers in the US.\r\n>>>\r\n>>> Let me know if you have any other thoughts on what we should send thier\r\n>>> way.\r\n>>>\r\n>>> Best,\r\n>>>\r\n>>> Jordan G. Wroblewski\r\n>>> Partner | President\r\n>>> Lithium Battery Company\r\n>>> Direct: (917) 266-5336\r\n>>> *jordan@lithiumbatterycompany.com\r\n>>> <Jarrett.brownfield@trackmastermobility.com>*\r\n>>> Lithium Battery Company <http://lithiumbatterycompany.com/>\r\n>>>\r\n>>\r\n> Best regards,\r\n>\r\n>\r\n>\r\n> *Brian C. Stufflebean*\r\n> CEO, Co-Founder\r\n> *(941)545-4153 Direct*\r\n> (866)896-2423 Fax\r\n>\r\n> [image: CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png]\r\n>\r\n>\r\n> brian@mavrix.one\r\n>\r\n> https://mavrix1.com/\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n>\r\n> *CONFIDENTIALITY NOTICE:* This communication is confidential and intended\r\n> only for the intended recipient.  If you are not the\r\n> intended recipient, you may not copy, disclose, or distribute this\r\n> message to anyone else; any such actions may be unlawful. If you\r\n> have received this communication in error, please contact the sender\r\n> of the message to inform him or her of the error.\r\n>\r\n>\r\n>',0,0,0,0,0,0,'2025-12-04 03:34:52','2025-12-04 14:05:26','2025-12-04 14:05:26','2025-12-04 14:05:26',NULL,NULL,NULL),
(110,4,'<CAJO9__Y-hC_VZYNdUKLwS9G57YVzLkb_DzZ1g-cTiau3KYWjDw@mail.gmail.com>',NULL,NULL,'Re: Sol-Ark Preferred Prototype Specs','jordan@lithiumbatterycompany.com','Jordan Wroblewski','<div dir=\"ltr\"><div>Evening team,</div><div><br></div><div>Just spoke with Jarrett (added here).  He has those numbers broken down already.</div><div><br></div><div>Will get those over to you in the morning.  </div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\"><br></span></p><p style=\"margin:0in\"><span style=\"color:black;font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:black\">Partner | President <br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Lithium Battery Company</span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt;color:black\">Direct: (917) 266-5336<br></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></p><p style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com\" target=\"_blank\">Lithium Battery Company</a></span></p></div></div></div><br></div><br><div class=\"gmail_quote gmail_quote_container\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Dec 3, 2025 at 10:35 PM Nathan Staron &lt;<a href=\"mailto:Nathan@lithiumbatterycompany.com\">Nathan@lithiumbatterycompany.com</a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"auto\">Got it.  Will work on this tomorrow morning. </div><div dir=\"auto\"><br clear=\"all\"><div dir=\"auto\"><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse;color:rgb(0,0,0);font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display: block;\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"color:rgb(0,0,0);font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" style=\"color:rgb(0,0,0)\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display: block; border-radius: 10px;\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"m_-9120908063171834998_SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display: block; border-radius: 10px;\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div></div><div><br></div><div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Dec 3, 2025 at 8:50 PM Brian Stufflebean &lt;Brian@mavrix.one&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div><span style=\"font-size:14px\"><b>Nathan and Jordan, </b></span><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">I need to have the proposed Sol-Ark annual units, price per unit and total annual projected forecast for the next 5-years, broken out into an Excel table, by year. </span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">We need this ASAP for meetings tomorrow (Thursday, 12/4/25)  afternoon. </span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Need the same thing for Sonnen and Mitsubishi.</span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Please place at high priority.  </span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Thank you,</span></div><div><span style=\"font-size:14px\"><br></span></div><div><span style=\"font-size:14px\">Brian </span><br><div><div><br><blockquote type=\"cite\"></blockquote></div></div></div></div><div><div><div><div><blockquote type=\"cite\"><div>On Nov 5, 2025, at 11:20 PM, Nathan Staron &lt;<a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a>&gt; wrote:</div><br></blockquote></div></div></div></div><div><div><div><div><blockquote type=\"cite\"><div></div></blockquote></div></div></div></div><div><div><div><div><blockquote type=\"cite\"><div><div dir=\"auto\">Will respond more clearly tomorrow morning.  I want to make sure Nick is included with the communication.   </div><div dir=\"auto\"><br></div><div dir=\"auto\">The BMS could handle 300A for 15 seconds.  It is a heat dissipation issue from FETS.  It can be programmed in back end software.  </div><div dir=\"auto\"><br></div><div dir=\"auto\">Susan and Wilson have new relationship together so their working relationship and knowledge needs to be communicated.   </div><div dir=\"auto\"><br></div><div dir=\"auto\">Try not to be persuaded from GSL to accept their parameters.  Sol Ark is just setting their battery management system and cells to a better quality which will lower their after sales support and align the battery for better performance and balancing.  Chinese have very narrow scope and we need to be specific on laying out our requirements for the project. </div><div dir=\"auto\"><br></div><div dir=\"auto\">Let’s discuss tomorrow morning. <br clear=\"all\"><div dir=\"auto\"><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><br><div><br></div><div><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:medium;border-collapse:collapse;font-size:10px;font-family:Inter,sans-serif\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;line-height:16px\"><table cellpadding=\"0\" cellspacing=\"0\" style=\"border:none\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:separate;border-radius:5px;padding:3px 8px 8px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/web-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.instagram.com/lithiumbatteryco/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/insta-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.linkedin.com/company/the-lithium-battery-company\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/linkedin-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.facebook.com/LithiumBatteryCompany/\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/facebook-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><a href=\"https://www.youtube.com/c/LithiumBatteryCompany\" target=\"_blank\"><img alt=\"\" src=\"https://app.customesignature.com/images/social/animation/4/youtube-icon.gif\" width=\"24\" style=\"display: block;\"></a></td></tr></tbody></table></td><td width=\"8\" style=\"border:none;border-collapse:collapse;display:revert\"> </td><td valign=\"top\" align=\"left\" style=\"border:1px solid rgb(226,226,226);border-collapse:collapse;padding:15px;border-radius:5px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"https://lithiumbatterycompany.com/\" target=\"_blank\"><img src=\"https://app.customesignature.com/upload/signature/11122/11122.png\" width=\"170\" style=\"display: block;\"></a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:0px 0px 10px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:15px 0px 0px\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:20px\">NATHAN A. STARON</span></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding-left:5px\"><img width=\"15\" height=\"15\" src=\"https://app.customesignature.com/images/verify.gif\" style=\"display: block;\"></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-size:12px\">Founder / CEO</span></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Lithium Battery Company</span></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Cell Phone</span> <a href=\"tel:813-504-0074\" style=\"font-size:12px\" target=\"_blank\">813-504-0074</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><span style=\"font-weight:bold;font-size:12px\">Phone</span> <a href=\"tel:844-GET-LITHIUM\" style=\"font-size:12px\" target=\"_blank\">844-GET-LITHIUM</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><a href=\"mailto:Nathan@lithiumbatterycompany.com\" target=\"_blank\">Nathan@lithiumbatterycompany.com</a></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:5px 0px 0px\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;display:flex;font-weight:bold\"><a href=\"https://scheduler.zoom.us/nathan-staron/lithiumbatteryco\" style=\"background:rgb(0,0,0);color:rgb(255,255,255);padding:4px 15px;text-align:center;font-size:12px;line-height:14px;display:inline-block\" target=\"_blank\">Schedule A Zoom</a></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr></tbody></table></td><td align=\"left\" valign=\"middle\" style=\"border:none;border-collapse:collapse;padding:0px 0px 0px 15px;display:revert\"><div style=\"max-height:0px;overflow:visible\"><img src=\"https://app.customesignature.com/upload/signature/profile/1738708307-11122.jpg\" width=\"140\" style=\"display: block; border-radius: 10px;\"></div><img src=\"https://app.customesignature.com//upload/signature/gifs/giphyy-1.gif\" name=\"m_-9120908063171834998_m_578106803208480977_SignatureSanitizer_profile_annimation_gif\" width=\"140\" style=\"display: block; border-radius: 10px;\"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"><td align=\"left\" valign=\"top\" style=\"border:none;border-collapse:collapse\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border:none;border-collapse:collapse\"><tbody><tr style=\"border:none;border-collapse:collapse\"></tr></tbody></table></td></tr><tr style=\"border:none;border-collapse:collapse\"></tr><tr style=\"border:none;border-collapse:collapse\"><td style=\"border:none;border-collapse:collapse;padding:10px 0px 0px\"><a></a></td></tr></tbody></table></div></div></div></div></div><div><br></div></div></blockquote></div></div></div></div><div><div><div><div><blockquote type=\"cite\"><div><div><br><div class=\"gmail_quote\"></div></div></div></blockquote></div></div></div></div><div><div><div><div><blockquote type=\"cite\"><div><div><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Nov 5, 2025 at 10:36 PM Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt; wrote:<br></div></div></div></div></blockquote></div></div></div></div><div><div><div><div><blockquote type=\"cite\"><div><div><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"></div></blockquote></div></div></div></blockquote></div></div></div></div><div><div><div><div><blockquote type=\"cite\"><div><div><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div>Good evening team.  </div><div><br></div><div>Back from Sol-Ark - BMS question. </div><div><br></div><div><span id=\"m_-9120908063171834998m_578106803208480977cid:ii_mhmv8y361\">&lt;image (7).png&gt;</span><br></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">Is there any possibility of setting the Max Charge/Discharge at 200A to align with the performance targets we’re aiming for? I understand that maintaining 300A for 15 seconds may not be feasible, 15 seconds is a long duration, and most appliances don’t require that much ramp-up time. Could you share any data regarding the peak power capability for a shorter duration, such as 10ms or less?</span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\"><br></span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">I reached out to Susan and Wilson on this.  The 16kWh battery can support 200Ah burst but not continuous.  The 314Ah cell is a .5C charge/discharge so they don&#39;t suggest continuous over 157A.  </span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\"><br></span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">I want to confirm with you and see if you have any thoughts or ideas before I respond.  </span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\"><br></span></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">Thanks,</span></div></div></blockquote></div></div></div></blockquote></div></div></div></div><div><div><div><div><blockquote type=\"cite\"><div><div><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"></div></blockquote></div></div></div></blockquote></div></div></div></div><div><div><div><div><blockquote type=\"cite\"><div><div><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif\"><br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt\">Partner | President <br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt\">Lithium Battery Company</span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt\">Direct: (917) 266-5336<br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com/\" target=\"_blank\">Lithium Battery Company</a></span></div></div></div></div><br></div><br></blockquote></div></div></div></blockquote></div></div></div></div><div><div><div><div><blockquote type=\"cite\"><div><div><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div class=\"gmail_quote\"></div></blockquote></div></div></div></blockquote></div></div></div></div><div><div><div><div><blockquote type=\"cite\"><div><div><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Mon, Nov 3, 2025 at 2:10 PM Jordan Wroblewski &lt;<a href=\"mailto:jordan@lithiumbatterycompany.com\" target=\"_blank\">jordan@lithiumbatterycompany.com</a>&gt; wrote:<br></div></div></blockquote></div></div></div></blockquote></div></div></div></div><div><div><div><div><blockquote type=\"cite\"><div><div><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"></div></blockquote></div></blockquote></div></div></div></blockquote></div></div></div></div><div><div><div><div><blockquote type=\"cite\"><div><div><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div>Hi Nathan and team,</div><div><br></div><div>Here are the list of preferred prototype specs from Sol-Ark</div><div><br></div><div><div style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\">Please see the below specs for the prototype battery for testing:</div><ul style=\"margin-top:0px;margin-bottom:0px\"><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">LBC512314</div></li><ul style=\"margin-top:0px;margin-bottom:0px\"><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Capacity: 16.1kWh</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Amp Hours (Ah): 314Ah</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Nominal Voltage: 51.2v</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Operating Range: 48v - 56v</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Max Continuous Charge: 200A Optimal | 150A Minimum</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Max Continuous Discharge: 220A Optimal | 200A Minimum</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Peak Discharge Current: 300A</div></li><li style=\"margin-left:15px;font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:11pt\"><div role=\"presentation\">Communication Protocol: RS-485 Modbus RTU &amp; CANBUS<span style=\"font-size:11pt\"></span></div></li></ul></ul><div><font face=\"Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif\"><span style=\"font-size:14.6667px\"><br></span></font></div></div><div><span style=\"font-family:Aptos,Aptos_EmbeddedFont,Aptos_MSFontService,Calibri,Helvetica,sans-serif;font-size:14.6667px\">Here is a list of specs that would be comparable:</span><font face=\"Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif\"><span style=\"font-size:14.6667px\"></span></font></div></div></blockquote></div></blockquote></div></div></div></blockquote></div></div></div></div><div><div><div><div><blockquote type=\"cite\"><div><div><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div><span id=\"m_-9120908063171834998m_578106803208480977cid:ii_mhjik7da1\">&lt;image (5).png&gt;</span><br></div><div><br></div><div>I have reached out to Susan from GSL and shared the specs. I&#39;ve also inquired if this would be available from one of their dealers in the US.</div><div><br></div><div>Let me know if you have any other thoughts on what we should send thier way.</div><div><br></div><div>Best, </div><div><div dir=\"ltr\" class=\"gmail_signature\"><div dir=\"ltr\"><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif\"><br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif\">Jordan G. Wroblewski</span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt\">Partner | President <br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt\">Lithium Battery Company</span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:10pt\">Direct: (917) 266-5336<br></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:blue\"><u>jordan<a href=\"mailto:Jarrett.brownfield@trackmastermobility.com\" style=\"color:blue;margin:0px\" target=\"_blank\">@lithiumbatterycompany.com</a></u></span></div><div style=\"margin:0in\"><span style=\"font-family:Arial,sans-serif;font-size:9pt;color:rgb(5,99,193)\"><a href=\"http://lithiumbatterycompany.com/\" target=\"_blank\">Lithium Battery Company</a></span></div></div></div></div></div>\r\n</blockquote></div>\r\n</blockquote></div></div>\r\n</div></blockquote></div><br><div>\r\n<div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\">Best regards,</font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\"><br></font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\"><br></font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\"><br></font></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><font size=\"2\" style=\"font-family:Helvetica;font-style:normal;font-weight:400;font-size:12px\"><b>Brian C. Stufflebean</b><br>CEO, Co-Founder</font><br><div><b>(941)545-4153 Direct</b></div><div style=\"font-family:Helvetica;font-style:normal;font-weight:400;font-size:12px\"><span style=\"font-size:11px\">(866)896-2423 Fax</span></div></div><span style=\"color:rgb(0,0,0);font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none\"></span><br><span><img alt=\"CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png\" src=\"cid:ii_19ae76cfe50d2422db41\" style=\"width: 108px; max-width: 100%;\"></span><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><br><br><a href=\"mailto:brian@mavrix.one\" target=\"_blank\">brian@mavrix.one</a></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><br><a href=\"https://mavrix1.com\" target=\"_blank\">https://mavrix1.com/</a></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><br></div><div style=\"font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;color:rgb(0,0,0)\"><br><br><br><br><br><br><br><br><br><b>CONFIDENTIALITY NOTICE:</b><span style=\"font-family:Helvetica;font-style:normal;font-weight:400;font-size:12px\"> This communication is confidential and intended only for the intended recipient.  If you are not the intended recipient, you may not copy, disclose, or distribute this message to anyone else; any such actions may be unlawful. If you have received this communication in error, please contact the sender of the message to inform him or her of the error.<br><br></span></div>\r\n</div>\r\n<br></div></div></div></blockquote></div></div>\r\n</blockquote></div>','Evening team,\r\n\r\nJust spoke with Jarrett (added here).  He has those numbers broken down\r\nalready.\r\n\r\nWill get those over to you in the morning.\r\n\r\n\r\nJordan G. Wroblewski\r\n\r\nPartner | President\r\n\r\nLithium Battery Company\r\n\r\nDirect: (917) 266-5336\r\n\r\n*jordan@lithiumbatterycompany.com\r\n<Jarrett.brownfield@trackmastermobility.com>*\r\n\r\nLithium Battery Company <http://lithiumbatterycompany.com>\r\n\r\n\r\nOn Wed, Dec 3, 2025 at 10:35 PM Nathan Staron <\r\nNathan@lithiumbatterycompany.com> wrote:\r\n\r\n> Got it.  Will work on this tomorrow morning.\r\n>\r\n>\r\n>\r\n> <https://lithiumbatterycompany.com/>\r\n> <https://www.instagram.com/lithiumbatteryco/>\r\n> <https://www.linkedin.com/company/the-lithium-battery-company>\r\n> <https://www.facebook.com/LithiumBatteryCompany/>\r\n> <https://www.youtube.com/c/LithiumBatteryCompany>\r\n> <https://lithiumbatterycompany.com/>\r\n> NATHAN A. STARON\r\n> Founder / CEO\r\n> Lithium Battery Company\r\n> Cell Phone 813-504-0074\r\n> Phone 844-GET-LITHIUM\r\n> Nathan@lithiumbatterycompany.com\r\n> Schedule A Zoom <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n>\r\n>\r\n>\r\n> On Wed, Dec 3, 2025 at 8:50 PM Brian Stufflebean <Brian@mavrix.one> wrote:\r\n>\r\n>> *Nathan and Jordan, *\r\n>>\r\n>> I need to have the proposed Sol-Ark annual units, price per unit and\r\n>> total annual projected forecast for the next 5-years, broken out into an\r\n>> Excel table, by year.\r\n>>\r\n>> We need this ASAP for meetings tomorrow (Thursday, 12/4/25)  afternoon.\r\n>>\r\n>> Need the same thing for Sonnen and Mitsubishi.\r\n>>\r\n>> Please place at high priority.\r\n>>\r\n>> Thank you,\r\n>>\r\n>> Brian\r\n>>\r\n>> On Nov 5, 2025, at 11:20 PM, Nathan Staron <\r\n>> Nathan@lithiumbatterycompany.com> wrote:\r\n>>\r\n>> Will respond more clearly tomorrow morning.  I want to make sure Nick is\r\n>> included with the communication.\r\n>>\r\n>> The BMS could handle 300A for 15 seconds.  It is a heat dissipation issue\r\n>> from FETS.  It can be programmed in back end software.\r\n>>\r\n>> Susan and Wilson have new relationship together so their working\r\n>> relationship and knowledge needs to be communicated.\r\n>>\r\n>> Try not to be persuaded from GSL to accept their parameters.  Sol Ark is\r\n>> just setting their battery management system and cells to a better quality\r\n>> which will lower their after sales support and align the battery for better\r\n>> performance and balancing.  Chinese have very narrow scope and we need to\r\n>> be specific on laying out our requirements for the project.\r\n>>\r\n>> Let’s discuss tomorrow morning.\r\n>>\r\n>>\r\n>> <https://lithiumbatterycompany.com/>\r\n>> <https://www.instagram.com/lithiumbatteryco/>\r\n>> <https://www.linkedin.com/company/the-lithium-battery-company>\r\n>> <https://www.facebook.com/LithiumBatteryCompany/>\r\n>> <https://www.youtube.com/c/LithiumBatteryCompany>\r\n>> <https://lithiumbatterycompany.com/>\r\n>> NATHAN A. STARON\r\n>> Founder / CEO\r\n>> Lithium Battery Company\r\n>> Cell Phone 813-504-0074\r\n>> Phone 844-GET-LITHIUM\r\n>> Nathan@lithiumbatterycompany.com\r\n>> Schedule A Zoom\r\n>> <https://scheduler.zoom.us/nathan-staron/lithiumbatteryco>\r\n>>\r\n>>\r\n>>\r\n>> On Wed, Nov 5, 2025 at 10:36 PM Jordan Wroblewski <\r\n>> jordan@lithiumbatterycompany.com> wrote:\r\n>>\r\n>> Good evening team.\r\n>>>\r\n>>> Back from Sol-Ark - BMS question.\r\n>>>\r\n>>> <image (7).png>\r\n>>> Is there any possibility of setting the Max Charge/Discharge at 200A to\r\n>>> align with the performance targets we’re aiming for? I understand that\r\n>>> maintaining 300A for 15 seconds may not be feasible, 15 seconds is a long\r\n>>> duration, and most appliances don’t require that much ramp-up time. Could\r\n>>> you share any data regarding the peak power capability for a shorter\r\n>>> duration, such as 10ms or less?\r\n>>>\r\n>>> I reached out to Susan and Wilson on this.  The 16kWh battery can\r\n>>> support 200Ah burst but not continuous.  The 314Ah cell is a .5C\r\n>>> charge/discharge so they don\'t suggest continuous over 157A.\r\n>>>\r\n>>> I want to confirm with you and see if you have any thoughts or ideas\r\n>>> before I respond.\r\n>>>\r\n>>> Thanks,\r\n>>>\r\n>>\r\n>>> Jordan G. Wroblewski\r\n>>> Partner | President\r\n>>> Lithium Battery Company\r\n>>> Direct: (917) 266-5336\r\n>>> *jordan@lithiumbatterycompany.com\r\n>>> <Jarrett.brownfield@trackmastermobility.com>*\r\n>>> Lithium Battery Company <http://lithiumbatterycompany.com/>\r\n>>>\r\n>>>\r\n>>> On Mon, Nov 3, 2025 at 2:10 PM Jordan Wroblewski <\r\n>>> jordan@lithiumbatterycompany.com> wrote:\r\n>>>\r\n>> Hi Nathan and team,\r\n>>>>\r\n>>>> Here are the list of preferred prototype specs from Sol-Ark\r\n>>>>\r\n>>>> Please see the below specs for the prototype battery for testing:\r\n>>>>\r\n>>>>    - LBC512314\r\n>>>>    - Capacity: 16.1kWh\r\n>>>>       - Amp Hours (Ah): 314Ah\r\n>>>>       - Nominal Voltage: 51.2v\r\n>>>>       - Operating Range: 48v - 56v\r\n>>>>       - Max Continuous Charge: 200A Optimal | 150A Minimum\r\n>>>>       - Max Continuous Discharge: 220A Optimal | 200A Minimum\r\n>>>>       - Peak Discharge Current: 300A\r\n>>>>       - Communication Protocol: RS-485 Modbus RTU & CANBUS\r\n>>>>\r\n>>>>\r\n>>>> Here is a list of specs that would be comparable:\r\n>>>>\r\n>>> <image (5).png>\r\n>>>>\r\n>>>> I have reached out to Susan from GSL and shared the specs. I\'ve also\r\n>>>> inquired if this would be available from one of their dealers in the US.\r\n>>>>\r\n>>>> Let me know if you have any other thoughts on what we should send thier\r\n>>>> way.\r\n>>>>\r\n>>>> Best,\r\n>>>>\r\n>>>> Jordan G. Wroblewski\r\n>>>> Partner | President\r\n>>>> Lithium Battery Company\r\n>>>> Direct: (917) 266-5336\r\n>>>> *jordan@lithiumbatterycompany.com\r\n>>>> <Jarrett.brownfield@trackmastermobility.com>*\r\n>>>> Lithium Battery Company <http://lithiumbatterycompany.com/>\r\n>>>>\r\n>>>\r\n>> Best regards,\r\n>>\r\n>>\r\n>>\r\n>> *Brian C. Stufflebean*\r\n>> CEO, Co-Founder\r\n>> *(941)545-4153 Direct*\r\n>> (866)896-2423 Fax\r\n>>\r\n>> [image: CB596987-D3CC-4C61-B9D3-CE1C1DF1C723.png]\r\n>>\r\n>>\r\n>> brian@mavrix.one\r\n>>\r\n>> https://mavrix1.com/\r\n>>\r\n>>\r\n>>\r\n>>\r\n>>\r\n>>\r\n>>\r\n>>\r\n>>\r\n>>\r\n>> *CONFIDENTIALITY NOTICE:* This communication is\r\n>> confidential and intended only for the intended recipient.  If you are not\r\n>> the intended recipient, you may not copy, disclose, or distribute this\r\n>> message to anyone else; any such actions may be unlawful. If you\r\n>> have received this communication in error, please contact the sender\r\n>> of the message to inform him or her of the error.\r\n>>\r\n>>\r\n>>',1,0,0,0,0,0,'2025-12-04 03:51:04','2025-12-04 14:05:27','2025-12-04 14:05:27','2025-12-04 14:45:37',NULL,NULL,NULL),
(114,1,'<1764860348.1@erp>',NULL,NULL,'Test','admin@mavrix.one','Admin User','<p>Test</p>\r\n<p></p>\r\n<table style=\"width: 100%; max-width: 600px; border-collapse: collapse; font-family: Helvetica, Arial, sans-serif;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 0; border-top: 3px solid #0066cc;\">\r\n<table style=\"width: 100%; border-collapse: collapse; padding-top: 15px;\">\r\n<tbody>\r\n<tr><!-- LEFT COLUMN -->\r\n<td style=\"vertical-align: top; padding-left: 20px; border-left: 2px solid #e0e0e0;\">\r\n<div style=\"margin-bottom: 10px;\"><strong style=\"font-size: 14px; color: #0066cc;\">Admin User</strong><br><span style=\"font-size: 12px; color: #666;\">Administrator</span></div>\r\n<div style=\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n<div><a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></div>\r\n<div>Mobile: 906-123-4567</div>\r\n<div>Office: 906-555-4567</div>\r\n<div><a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></div>\r\n</div>\r\n</td>\r\n<!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n<td style=\"width: 200px; vertical-align: middle; text-align: center; padding-top: 10px;\"><img src=\"cid:company_logo\" alt=\"Mavrix1\" style=\"max-width: 150px; height: auto; display: block; margin: 0 auto;\">\r\n<div style=\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1.3;\">3900 W. Coachman Ave.<br>Tampa, FL 33611</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n<div style=\"font-size: 9px; color: #888; line-height: 1.4;\"><strong>CONFIDENTIALITY NOTICE:</strong><br><em>This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.</em><br><br><em>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</em><br><br><em>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</em><br><br><em>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Test\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nAdmin UserAdministrator\r\n\r\nadmin@mavrix.one\r\nMobile: 906-123-4567\r\nOffice: 906-555-4567\r\nhttps://mavrix1.com\r\n\r\n\r\n\r\n\r\n3900 W. Coachman Ave.Tampa, FL 33611\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE:This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n\r\n\r\n\r\n',1,0,0,0,0,0,'2025-12-04 14:59:08','2025-12-04 14:59:08','2025-12-04 14:59:08','2025-12-04 14:59:08',NULL,NULL,NULL),
(115,1,'<LwaL0dLXDuxDiazC6DLwLl83f4F6iDBlD5S8ptZ89A@localhost>',NULL,NULL,'Test','contact@mavrix.one','Mavrix1','--b2=_LwaL0dLXDuxDiazC6DLwLl83f4F6iDBlD5S8ptZ89A\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Transfer-Encoding: quoted-printable\r\n\r\n<p>Test</p>\r\n<p></p>\r\n<table style=3D\"width: 100%; max-width: 600px; border-collapse: collapse; f=\r\nont-family: Helvetica, Arial, sans-serif;\">\r\n<tbody>\r\n<tr>\r\n<td style=3D\"padding: 0; border-top: 3px solid #0066cc;\">\r\n<table style=3D\"width: 100%; border-collapse: collapse; padding-top: 15px;\"=\r\n>\r\n<tbody>\r\n<tr><!-- LEFT COLUMN -->\r\n<td style=3D\"vertical-align: top; padding-left: 20px; border-left: 2px soli=\r\nd #e0e0e0;\">\r\n<div style=3D\"margin-bottom: 10px;\"><strong style=3D\"font-size: 14px; color=\r\n: #0066cc;\">Admin User</strong><br><span style=3D\"font-size: 12px; color: #=\r\n666;\">Administrator</span></div>\r\n<div style=3D\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n<div><a href=3D\"mailto:admin@mavrix.one\" style=3D\"color: #0066cc; text-deco=\r\nration: none;\">admin@mavrix.one</a></div>\r\n<div>Mobile: 906-123-4567</div>\r\n<div>Office: 906-555-4567</div>\r\n<div><a href=3D\"https://mavrix1.com\" style=3D\"color: #0066cc; text-decorati=\r\non: none;\">https://mavrix1.com</a></div>\r\n</div>\r\n</td>\r\n<!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n<td style=3D\"width: 200px; vertical-align: middle; text-align: center; padd=\r\ning-top: 10px;\"><img src=3D\"cid:company_logo\" alt=3D\"Mavrix1\" style=3D\"max-=\r\nwidth: 150px; height: auto; display: block; margin: 0 auto;\">\r\n<div style=3D\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1=\r\n.3;\">3900 W. Coachman Ave.<br>Tampa, FL 33611</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=3D\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n<div style=3D\"font-size: 9px; color: #888; line-height: 1.4;\"><strong>CONFI=\r\nDENTIALITY NOTICE:</strong><br><em>This communication may contain confident=\r\nial information. Unauthorized review, use, disclosure, or distribution is p=\r\nrohibited.</em><br><br><em>This communication, including any attachments, m=\r\nay contain confidential, privileged, or Controlled Unclassified Information=\r\n (CUI) protected under federal law. It is intended solely for the use of th=\r\ne designated recipient(s). Any unauthorized review, use, disclosure, distri=\r\nbution, or copying is strictly prohibited and may be unlawful.</em><br><br>=\r\n<em>If you are not the intended recipient, please notify the sender immedia=\r\ntely, delete this email, and destroy all copies.</em><br><br><em>Unless exp=\r\nressly stated, the views and opinions expressed herein are those of the sen=\r\nder and do not necessarily reflect those of the sender=E2=80=99s employer o=\r\nr any U.S. Government agency. All recipients are responsible for handling i=\r\nnformation in accordance with applicable federal regulations, including but=\r\n not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n--b2=_LwaL0dLXDuxDiazC6DLwLl83f4F6iDBlD5S8ptZ89A\r\nContent-Type: image/png; name=logo_1762869843.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <company_logo>\r\nContent-Disposition: inline; filename=logo_1762869843.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAuwAAACiCAYAAAAa7ZjJAAAACXBIWXMAAAsSAAALEgHS3X78AAAV\r\nP0lEQVR4nO3dT1LcStbG4Te/8BzvgOoVgGfNiLoroG40Mw8oVgBegfEKKFZAEdHMHOFiBS5GHrpY\r\nQcMK2qwgv4FO0TLmX5XySCnp90R0dIejndK9NtKrzJMnQ4xRAAAAAHzt7F+OJU0kbazy+/7P5W4A\r\nAAAAPNjZvzyRdK4Vw7okvUt+NwAAAAAkSTv7l+9VzKofrDsGgR0AAABwYGF9LmmryjiUxAAAAACJ\r\n7exfbktaqGJYlwjsAAAAQFI7+5cjFTPrmynGI7ADAAAAiezsXx5L+qY1Npc+hxp2AAAAIIGd/cup\r\nKmwufQ6BHQAAAKjANpfOJO16jE9JDAAAALAm21w6l1NYl5hhBwAAANays385VDGznqxe/SnMsAMA\r\nAAAr2tm/HEv6LuewLhHYAQAAgJXs7F9OJJ3XdT1KYgAAAIA3sM2lU0l7dV6XwA4AAAC8Ymf/cqCi\r\nXr3yyaWrIrADAAAALyh1gnGvV38KNewAAADAM2xz6U81FNYlAjsAAADwpJ39yxPVuLn0OZTEAAAA\r\nACW2uXQi6aDpe5EI7AAAAMADC+tzNbC59DmUxAAAAAB62Fx6q4zCukRgBwAAALSzfzlSg51gXkJg\r\nBwAAQK/t7F8eS/qmDMO6RA07AAAAemxn/3KqTDaXPofADgAAgN7JcXPpc8I///XvgaRxw/cBAAAA\r\nPOnH148nKcezzaVTtSCsS8UM+0DS54bvAwAAAHjsXtIo5YA7+5dDSTPVU69+Z/+9WWUQNp0CAAAg\r\nRzeShj++fpynGnBn/3Is6bvqCetXkpZtIiuhhh0AAAC5uZY0+vH1469UA9a8ufTTj68fJ3bdyoMR\r\n2AEAAJCTsx9fPx6nGsw2l84k7aYa8wV3Kj40FikHpSQGAAAAuThMHNYHKjrB1BHWryRtpw7rEjPs\r\nAAAAaN69inr1ZGHXOsHMVU+9+kMJjAdm2AEAANCkGyWembbNpT/lH9bvJH3wDOsSgR0AAADNuVIx\r\ns36basCd/cuJpPNU473ArQTmMUpiAAAA0ASPzaUT+XeCuZd04j2rXkZgBwAAQJ3uJR3/+PpxmmpA\r\nC+tz+Z9ceiNpXMesehmBHQAAAHVp8+bSCxUfGsl6w78VgR0AAAB1WJ5cmvIwpLGKMhjPsJ58RWBV\r\nbDoFAACAtwulD+vHKjaXeob15UfG1PEar2KGHQAAAJ6+/Pj68STlgDv7l1P5by5trATmMQI7AAAA\r\nPNyr2KA5SzVgTZtLU5fAVA78KQL7vaRad8oCAAAge8cOm0tnkjZTjfkEjy4wC0l7VQZIEdgXP75+\r\nHCYYBwAAAHjJ2Hn8RQ4lMI9REgMAAIDs1d37PCd0iQEAAAAyRmAHAAAAMkZgBwAAADJGYAcAAAAy\r\nRmAHAAAAMkZgBwAAADJGYAcAAAAyRmAHAAAAMkZgBwAAADJGYAcAAAAyRmAHAAAAMkZgBwAAADJG\r\nYAcAAAAyRmAHAAAAMkZgBwAAADJGYAcAAAAy9q6Oi4QQhpKGdVwLrbWQ9CvGOG/6RiQphHDS9D10\r\n1K39ZxFj/OVxgRDCSNK2x9iSJl73jW7+2YUQtiW9V3/fgdMY4+1r/6cQwljSINVFY4wnVX5/CGEg\r\naZzgVp4zizEuHMfPiv0cjBwv8aa/Z21WS2BX8aD6XNO10GIhBEm6kTRf/qehgMTfV2chhDsVH2oz\r\nFX/Ot4mGnkuaSNpMNF6ZZ6DsNXuhTyVtOAx/WNdzpBRMhpJ267hm5uYqPtJfM1baf18nFX//QL7v\r\ngeMQwnGMcep4jSzYx9i582Xmetvfs9aiJAY52pJ0JOmbpP+GEKa2SoNu2ZS0p+JB/p8QwiKEMA4h\r\nvK8yqAWzkaT7BPf42FYIYeowbq/Zn/lcPmH9wjsUhRAGIYRJCOFW0k8VQY+w3m638nmGLG1IOg8h\r\nTByv0agQwnt7XnqH9Tt1PKxLBHa0w4Gk7yGEW1syRzdtqXiw34YQTqoEd1tqHqe6sUcOQgjHTmP3\r\n1Vw+Yf06xjh2GFfSQ1CfSvqPikkGj1UdNMBW/AaSrp0vdWSTFZUmKnJjJUVzFe9vT1eStrteDiMR\r\n2NEum5K+hRDmtuyMbtpQMUNZ6QMtxjiT9CnZXf3ulFWfNCzwbjkMfSenmlmbOZyoCOregQQNiTH+\r\nijEOJZ05X2pLxfNu6HydWthzeyGfn+uyLzHGUV/2FRHY0Ua7kn4yy9l5Gyo+0Gbrzj7FGCeSLtLe\r\n1oMZH47V2M+wR+C9l+TyIrc/84WKGXX0QIzxWNKh/Etkvrf9vWYNG77JZ8Vs6V7S31U3FrcNgR1t\r\ndko9cS/sSZrbEus6jlVsZE5tQ9K0a0vZdbHZxFOn4cceHThs89xPUfrSO7YPYiifZ0nZaZVJiqbY\r\nqtNc/g0bblSUwMycr5MdAjva7oDQ3gtbkhbrzGjbLOtQTptQVXQ2wQrsz9HrhfvJ42VeU6cLZMw+\r\nAocq6qY9LScpWrGCV1p18t5ofSFp2Id69acQ2NEFhPZ+WHtG2zm079G3/+3sz28qv44wybtuWE0u\r\nYR3LuvaRpC/Ol9pSEdrHzteppMZVp8MY47gv9epPIbCjKw7oINMLa89o2+yYV33o59xfrBmZymcz\r\n2o1HRxgrxZqmHhftZvXTf6mnrR9rbNl4L+lDH/rVv4bAji6ZtK3uD2vZW7ebgj30vWbGJm1Zwm6K\r\nBY89h6Hv5HeS6Il8N9Chpexk7m3517Vn1fqxxpaN15IGfToR9iUEdnTJpnyPkkY+Ttb9jTYz5tE5\r\nZkNF55gsXqq5sRUIj84qnh1hBqJtI15g9dRD+XWjWsqi9aNdv46WjWcxxmGfS2AeI7Cja8ZN3wBq\r\nsVuha4zk1zlmU8XME0ps5cFrWf/YcQau1S32UA+rax+raP3oqdHWj7ZX57vqadnIz94j75q+gYqu\r\nVHzptcVQvruob+TXecHDttIvj2+FEAYJdpF7byjqk4GKA2xSP+RHWjMExhh/lQ73SH1fWyGEqecJ\r\nm21iKw5z+bzkvzjXtg4dxrxR8e+jLzOHt03fQF1ijNMQwkJ+f9+Xlge31bIJs7RR3KOcrexGTi1Z\r\nu6Ctgb21f6g20zRX2h/m5ZLwPOGYtbBZ0pnSLq8NVPEl0bcDGbzZA3+itOUFgyq/Oca4XF7+meRu\r\nfncQQpizUUqSX3i5qOHnNPWy/yF/J7otxrgovdc8J+iWrR9ds1CpBat3F5gr1fQB0lZtLYk5aWNY\r\nlx46VYwTDztpY1iXHur/6O7ScfYQPlbajgqVN3jaz6PXMvZ50/WmTbMuEi4dYdS+cpULwno/WInM\r\nUNKZ86VcWz/auHP5h/VPMUaXfShd0srA3oETrlL/pZwnHq9WfT0EoW/sYZzdh7aFKK8X66xirX1r\r\nWZ2tx4bNexWHp7Tt5X7b9A2gXlaHfagWtn4stWz0rlf/y+PshC5qZWAHgJTsxepxemEvO8fYysKp\r\nw9BtDevoKZsQGKqe1o/zqs+aEMLA6vC9uyPdqGjZOHe+TmcQ2AGgMJbPS3VLfh1SslOqefXg2REG\r\ncGF/Z4fymRQo21XR+nGtcsEaWzZexBi3+fBeDYEdAPRQsjOSz/L1gbVE67RSNwmPZfQzasDRVlbX\r\nPpJ/B7INST9Xbf1YY8vGQzporYfADgDGeRP0Z2sl2WVT+czOXdGXGV1gnY3+km9du1S0fpy+ViIT\r\nQngfQphJ+ux8P3cqytmmztfpLAI7AJRYTaVX55jpusvVubNNbx59mm/EgWjoEHvGbMu/rv1ARReZ\r\nJ5859usL+fdXv5K0TTlbNQR2AHjEZoE8jhrv5CZUa/925DD08owJal3RKbaaN5TPc6Zs2frxt9W9\r\nGls2fqFlYxoEdgB4gtVZXjsMval2nUj8IpulO3cafkjbV3SV1bWPJX1yvtSGpG/L1o81tmz8m0MI\r\n0yGwA8DzRvJZtt5N3Te5CbZSMHca/pAldPSB9SH/IP+69qMQwi/V07JxuwNn5mSFwA4Az7Bl3LF8\r\nXqRHXicU1qEU1ukIA1RkH6cD+de1e86qS0WJDytjDgjsAPACe5F6dXc5b/Em1InoCAMkYyUy2/I7\r\nednbYYxxTL26DwI7ALzCujp41ZlWPp2wbtbj2WNZnY4w6D37YD2Uf4lMKveSPrAq5utd0zcA5KgP\r\nh9w0ZND0Dawrxjix2fDUQXVDRWgftmFmyrpNnDoMfS+J2TlARaeqEMJCxQZ1704uVVyLTk61ILAD\r\nT/M+RAItFGMcW2hPXQqypaLEZJx43KTsn33qNPyITabA/8QYF6WfOe9e6es4o3ytPpTEAMBqhipO\r\n7UvtYNXjxOtkZTtT+WxaO7SyIwAlVtc+kvSl6XspWbZszPZ51UUEdgBYgS39juRTX3r6+ICTjMzk\r\ns8n0gtpX4GXWz/xvNV/XfqOiCwwtG2tGYAeAFVnpxthp+GlunWOsZ/yuw9DXdnAMgFdYSN6Wf+vH\r\n51ypCOuUrjWAwA4Aa7CXp0fnmA0VoT2LzjHWK/7IYegb+bXLBDrJ+psPVfQ7r9OnGCObSxtEYAeA\r\nNdkJhR4vzi35be58M5vpP3cYmo4wwJqsrn2s+mbaz+xZhwYR2AGgAscX556VojSidJKphzHL6sB6\r\nQgjvQwhz+ewpecpRk88iFAjsAFDdUD6bwY6sJKVWpbDu0RHmExvWgPXYqtdcPntKXnIUQmjdIW9d\r\nQmAHgIqstGMon9A+aWAT6kR+HWGYqQPWYB2k5qpvZv2xXUmL3DbF9wWBHQASsBIPj77Ey5NQa5nZ\r\nsl7wqU9zlaQbOsIA67HTt7/JZ9VrFZsqnkdsGK8ZgR0AErF+4h4HnGzIr578gb2ETx2GvlOxAgFg\r\nBVavPlVep29vSPpmHxGoCYEdABKyA05cOsfYi9tF6Qj01O4l0Q4OWFEIYaDiQ91jxSuFzyGEGXXt\r\n9XjX9A0APXCtGmZHW2KsYkm1645VHHCSutb0IISwSF0Hbi/cqXyW2+kIA6yotLm06RKY1+zJSmSs\r\nRzycENgBf3Obde29EMJQPQjsMcZf9s96q/Qv3FML7fOEY87ks5HtCx1hgNVYZyiP8w+8bKnYjDpK\r\n/FxCCSUxAOCg1DnGw8yWyyuz/soeLeIu+FAFVmNlb20K60sbkr7bpnU4ILADgBMrBTl0GHpDRWiv\r\nVDtqM3lHSe7odzfy6ZgDdJJtLl3Iv179znn8U8+9Nn1GYAcAR9Y55sxh6C1V2CRqNbIeM3n3koZs\r\nMgXexn4WF/Lvr/4pxjiQTyersoMQwoLNqGkR2AHAWYzxWNKVw9B767RWK51kmhphHViBrXLN5bu3\r\n517SX8vN6laq9rd8Dnpb2pJ0yyFL6RDYAaAeYxWlIql9tpf+m5TCukf3iWM6wgBvYx/b5/LtBHOj\r\n4iN6Xv5F2ww+lG+JzIakn6s8n/A8AjsA1MBmnUfymdWarDCTNZFfR5ipw7hAp1i9+kz+hyFdqQjr\r\nT35E269vq2g97OmcuvbqCOwAUBPrUzx0GPpNm1Ctg4PHprYrOsIAryv1V99zvtRZjPHVA8tijL9i\r\njEP5HPZWdhBCmFPXvj4COwDUyLFzzKZeqEsPIYwknTpc90ZFuQ+AF9jZDHP5bi69l3Ro+2beLMY4\r\nls9zqWxXRb926trXQGAHgJpZ6YjHjNbWU0vP9oL849cTuJf06iwe0He2uvVdvvXqy03f03V+s/2+\r\nD/LdjLqp4mTUseM1OonADgANsBktj9rRg/LL0Jagp/IJCkOOIwdeZh/RHqtbZTeSBlU3fZfq2j02\r\nyC9tqKhrP3G8RucQ2AGgOSP5vBjPS8vOM/kswR/SEQZ4Xo2HIV3EGLdTrXSV9tp417V/DiFUPgCu\r\nLwjsgL9R0zeAPNkLdiyfJei5daLYdRj7jI4wwPPsg/lW9RyGNE49qG1GHcv/kKU9Fc8q6tpfQWAH\r\nnpayVGHL6heBP9gstcdH3YZ8OlFcrbqhDegTK0n7Kf969YfDkLzUeMjS3Dbl4hnvmr4BIFOpN9Gd\r\nWmifJh63bQZN30COYozzEMKhikNUckZHGOAFIYSJpCPny9xIGtdVkhZjnFmYnsnvRNYNSd9DCJ+8\r\nP0LaisAOPG2m9LOTm/I/KAMtFWOc2kvRu951XfcqQgIdYYBHrA7bqwSt7EoN/BzGGJftGL3/GU/t\r\nOsc8a35HSQzwtJl8lwCBP1jNqGd3hipGbDIF/lQ6DMk7rL/pMCQvdR6ypKJEhs2oJQR24An2QGRZ\r\nDk0YSrpr+iYeOYwxzpu+CSA3diDZXBkehuSlpkOWtiTdshn1fwjswPMmyi84oePsY3GkfFZ4LugI\r\nA/zJ+oh/U8aHIXmp6ZClDUk/OWSpQGAHnlEKTkCtrPRk3PR9SLr2aBkHtJn1V5/Kf09SksOQvNR0\r\nyJJUnCsxdb5G9gjswAvsgeS99Af8IcY4k/SpwVu4ER+swG9CCAMVJTCtOgzJS42HLB2EEBZ9rmsn\r\nsAOvsKW/Q+VTooCesPZm3i/Cp9ARBnjE6qkXaulhSF5qPGRpS9Kir3XtBHbgDSy0D5VvBw90VEOd\r\nY2rr8Qy0QZcOQ/JS0yFLmyo6yIwdr5ElAjvwRhZghpLOGr4V9M9Q9a3wfLJyHACSrH7a+1CzGxWb\r\nS+fO13Flz46hfBs2bKioa2/lh826COzACmzp71jSP9RMqQJ6yEpThvIP7Rdtnd0DUrPNpQv516tf\r\nqQjrnVjVKm1GvXa+1FEIYdaXunYCO7CGGOOtlSr8Q8WMO+0f4cpegp59mG/aVDcLeLLNpXXUqzd6\r\nGJKXGg9Z2lNRIjNwvk7jCOxABRbcj2OMAxU9ab/If1YBPWV7KTw2dt2pmMEHUBioqJf2ktVhSF5q\r\nPGRp4HyNxr2r6Tq3IsSU/VLafx9d+DJv/b8PmwF9WNK0newDFUuDsv89qPu+OqwTy8erijGe2BJw\r\nyk4Jx12b4Usk5XPpNuFYXZTbz3Pq9/Rjx10pgXlNjHFqpUWe5Xa5P78q/1mHf/7r30NJ3yuMcf3j\r\n68dh1RsBAAAAumZn/3KoalmbkhgAAAAgZwR2AAAAIGMEdgAAACBjBHYAAAAgYwR2AAAAIGMEdgAA\r\nACBjBHYAAAAgYwR2AAAAIGMEdgAAACBjBHYAAAAgYwR2AAAAIGMEdgAAACBjBHYAAAAgYwR2AAAA\r\nIGPvEoyxu7N/GROMAwAAAOARZtgBAACAjBHYAQAAgIwR2AEAAICMEdgBAACAjBHYAQAAgIwR2AEA\r\nAICMEdgBAACAjBHYAQAAgIwR2AEAAICMEdgBAACAjBHYAQAAgIwR2AEAAICMEdgBAACAjBHYAQAA\r\ngIwR2AEAAICMvZN0K+lLw/cBAAAA4An/D+pVjENe+oQjAAAAAElFTkSuQmCC\r\n\r\n--b2=_LwaL0dLXDuxDiazC6DLwLl83f4F6iDBlD5S8ptZ89A--','Test\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nAdmin UserAdministrator\r\n\r\nadmin@mavrix.one\r\nMobile: 906-123-4567\r\nOffice: 906-555-4567\r\nhttps://mavrix1.com\r\n\r\n\r\n\r\n\r\n3900 W. Coachman Ave.Tampa, FL 33611\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE:This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.',0,0,0,0,0,0,'2025-12-04 14:59:05','2025-12-04 14:59:09','2025-12-04 14:59:09','2025-12-04 14:59:09',NULL,NULL,NULL),
(122,4,'<1764864596.4@erp>',NULL,NULL,'Test','rick@mavrix.one','Rick M','<p>Test</p>\r\n<p></p>\r\n<table style=\"width: 100%; max-width: 600px; border-collapse: collapse; font-family: Helvetica, Arial, sans-serif;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 0; border-top: 3px solid #0066cc;\">\r\n<table style=\"width: 100%; border-collapse: collapse; padding-top: 15px;\">\r\n<tbody>\r\n<tr><!-- LEFT COLUMN -->\r\n<td style=\"vertical-align: top; padding-left: 20px; border-left: 2px solid #e0e0e0;\">\r\n<div style=\"margin-bottom: 10px;\"><strong style=\"font-size: 14px; color: #0066cc;\">Rick M</strong><br><span style=\"font-size: 12px; color: #666;\">Chief Technology Officer</span></div>\r\n<div style=\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n<div><a href=\"mailto:rick@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">rick@mavrix.one</a></div>\r\n<div>Mobile: 5857979473</div>\r\n<div>Office: 906-555-4567</div>\r\n<div><a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></div>\r\n</div>\r\n</td>\r\n<!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n<td style=\"width: 200px; vertical-align: middle; text-align: center; padding-top: 10px;\"><img src=\"cid:company_logo\" alt=\"Mavrix1\" style=\"max-width: 150px; height: auto; display: block; margin: 0 auto;\">\r\n<div style=\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1.3;\">3900 W. Coachman Ave.<br>Tampa, FL 33611</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n<div style=\"font-size: 9px; color: #888; line-height: 1.4;\"><strong>CONFIDENTIALITY NOTICE:</strong><br><em>This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.</em><br><br><em>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</em><br><br><em>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</em><br><br><em>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Test\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nRick MChief Technology Officer\r\n\r\nrick@mavrix.one\r\nMobile: 5857979473\r\nOffice: 906-555-4567\r\nhttps://mavrix1.com\r\n\r\n\r\n\r\n\r\n3900 W. Coachman Ave.Tampa, FL 33611\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE:This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n\r\n\r\n\r\n',1,0,0,0,0,0,'2025-12-04 16:09:56','2025-12-04 16:09:56','2025-12-04 16:09:56','2025-12-04 16:09:56',NULL,NULL,NULL),
(128,1,'<ntujNk40OF6Z6UM21407WBqjg5LAE6ShuOnwe0L4YM@localhost>',NULL,NULL,'Test','contact@mavrix.one','Mavrix1','--b2=_ntujNk40OF6Z6UM21407WBqjg5LAE6ShuOnwe0L4YM\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Transfer-Encoding: quoted-printable\r\n\r\n<p>Test</p>\r\n<p></p>\r\n<table style=3D\"width: 100%; max-width: 600px; border-collapse: collapse; f=\r\nont-family: Helvetica, Arial, sans-serif;\">\r\n<tbody>\r\n<tr>\r\n<td style=3D\"padding: 0; border-top: 3px solid #0066cc;\">\r\n<table style=3D\"width: 100%; border-collapse: collapse; padding-top: 15px;\"=\r\n>\r\n<tbody>\r\n<tr><!-- LEFT COLUMN -->\r\n<td style=3D\"vertical-align: top; padding-left: 20px; border-left: 2px soli=\r\nd #e0e0e0;\">\r\n<div style=3D\"margin-bottom: 10px;\"><strong style=3D\"font-size: 14px; color=\r\n: #0066cc;\">Rick M</strong><br><span style=3D\"font-size: 12px; color: #666;=\r\n\">Chief Technology Officer</span></div>\r\n<div style=3D\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n<div><a href=3D\"mailto:rick@mavrix.one\" style=3D\"color: #0066cc; text-decor=\r\nation: none;\">rick@mavrix.one</a></div>\r\n<div>Mobile: 5857979473</div>\r\n<div>Office: 906-555-4567</div>\r\n<div><a href=3D\"https://mavrix1.com\" style=3D\"color: #0066cc; text-decorati=\r\non: none;\">https://mavrix1.com</a></div>\r\n</div>\r\n</td>\r\n<!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n<td style=3D\"width: 200px; vertical-align: middle; text-align: center; padd=\r\ning-top: 10px;\"><img src=3D\"cid:company_logo\" alt=3D\"Mavrix1\" style=3D\"max-=\r\nwidth: 150px; height: auto; display: block; margin: 0 auto;\">\r\n<div style=3D\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1=\r\n.3;\">3900 W. Coachman Ave.<br>Tampa, FL 33611</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=3D\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n<div style=3D\"font-size: 9px; color: #888; line-height: 1.4;\"><strong>CONFI=\r\nDENTIALITY NOTICE:</strong><br><em>This communication may contain confident=\r\nial information. Unauthorized review, use, disclosure, or distribution is p=\r\nrohibited.</em><br><br><em>This communication, including any attachments, m=\r\nay contain confidential, privileged, or Controlled Unclassified Information=\r\n (CUI) protected under federal law. It is intended solely for the use of th=\r\ne designated recipient(s). Any unauthorized review, use, disclosure, distri=\r\nbution, or copying is strictly prohibited and may be unlawful.</em><br><br>=\r\n<em>If you are not the intended recipient, please notify the sender immedia=\r\ntely, delete this email, and destroy all copies.</em><br><br><em>Unless exp=\r\nressly stated, the views and opinions expressed herein are those of the sen=\r\nder and do not necessarily reflect those of the sender=E2=80=99s employer o=\r\nr any U.S. Government agency. All recipients are responsible for handling i=\r\nnformation in accordance with applicable federal regulations, including but=\r\n not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n--b2=_ntujNk40OF6Z6UM21407WBqjg5LAE6ShuOnwe0L4YM\r\nContent-Type: image/png; name=logo_1762869843.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <company_logo>\r\nContent-Disposition: inline; filename=logo_1762869843.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAuwAAACiCAYAAAAa7ZjJAAAACXBIWXMAAAsSAAALEgHS3X78AAAV\r\nP0lEQVR4nO3dT1LcStbG4Te/8BzvgOoVgGfNiLoroG40Mw8oVgBegfEKKFZAEdHMHOFiBS5GHrpY\r\nQcMK2qwgv4FO0TLmX5XySCnp90R0dIejndK9NtKrzJMnQ4xRAAAAAHzt7F+OJU0kbazy+/7P5W4A\r\nAAAAPNjZvzyRdK4Vw7okvUt+NwAAAAAkSTv7l+9VzKofrDsGgR0AAABwYGF9LmmryjiUxAAAAACJ\r\n7exfbktaqGJYlwjsAAAAQFI7+5cjFTPrmynGI7ADAAAAiezsXx5L+qY1Npc+hxp2AAAAIIGd/cup\r\nKmwufQ6BHQAAAKjANpfOJO16jE9JDAAAALAm21w6l1NYl5hhBwAAANays385VDGznqxe/SnMsAMA\r\nAAAr2tm/HEv6LuewLhHYAQAAgJXs7F9OJJ3XdT1KYgAAAIA3sM2lU0l7dV6XwA4AAAC8Ymf/cqCi\r\nXr3yyaWrIrADAAAALyh1gnGvV38KNewAAADAM2xz6U81FNYlAjsAAADwpJ39yxPVuLn0OZTEAAAA\r\nACW2uXQi6aDpe5EI7AAAAMADC+tzNbC59DmUxAAAAAB62Fx6q4zCukRgBwAAALSzfzlSg51gXkJg\r\nBwAAQK/t7F8eS/qmDMO6RA07AAAAemxn/3KqTDaXPofADgAAgN7JcXPpc8I///XvgaRxw/cBAAAA\r\nPOnH148nKcezzaVTtSCsS8UM+0DS54bvAwAAAHjsXtIo5YA7+5dDSTPVU69+Z/+9WWUQNp0CAAAg\r\nRzeShj++fpynGnBn/3Is6bvqCetXkpZtIiuhhh0AAAC5uZY0+vH1469UA9a8ufTTj68fJ3bdyoMR\r\n2AEAAJCTsx9fPx6nGsw2l84k7aYa8wV3Kj40FikHpSQGAAAAuThMHNYHKjrB1BHWryRtpw7rEjPs\r\nAAAAaN69inr1ZGHXOsHMVU+9+kMJjAdm2AEAANCkGyWembbNpT/lH9bvJH3wDOsSgR0AAADNuVIx\r\ns36basCd/cuJpPNU473ArQTmMUpiAAAA0ASPzaUT+XeCuZd04j2rXkZgBwAAQJ3uJR3/+PpxmmpA\r\nC+tz+Z9ceiNpXMesehmBHQAAAHVp8+bSCxUfGsl6w78VgR0AAAB1WJ5cmvIwpLGKMhjPsJ58RWBV\r\nbDoFAACAtwulD+vHKjaXeob15UfG1PEar2KGHQAAAJ6+/Pj68STlgDv7l1P5by5trATmMQI7AAAA\r\nPNyr2KA5SzVgTZtLU5fAVA78KQL7vaRad8oCAAAge8cOm0tnkjZTjfkEjy4wC0l7VQZIEdgXP75+\r\nHCYYBwAAAHjJ2Hn8RQ4lMI9REgMAAIDs1d37PCd0iQEAAAAyRmAHAAAAMkZgBwAAADJGYAcAAAAy\r\nRmAHAAAAMkZgBwAAADJGYAcAAAAyRmAHAAAAMkZgBwAAADJGYAcAAAAyRmAHAAAAMkZgBwAAADJG\r\nYAcAAAAyRmAHAAAAMkZgBwAAADJGYAcAAAAy9q6Oi4QQhpKGdVwLrbWQ9CvGOG/6RiQphHDS9D10\r\n1K39ZxFj/OVxgRDCSNK2x9iSJl73jW7+2YUQtiW9V3/fgdMY4+1r/6cQwljSINVFY4wnVX5/CGEg\r\naZzgVp4zizEuHMfPiv0cjBwv8aa/Z21WS2BX8aD6XNO10GIhBEm6kTRf/qehgMTfV2chhDsVH2oz\r\nFX/Ot4mGnkuaSNpMNF6ZZ6DsNXuhTyVtOAx/WNdzpBRMhpJ267hm5uYqPtJfM1baf18nFX//QL7v\r\ngeMQwnGMcep4jSzYx9i582Xmetvfs9aiJAY52pJ0JOmbpP+GEKa2SoNu2ZS0p+JB/p8QwiKEMA4h\r\nvK8yqAWzkaT7BPf42FYIYeowbq/Zn/lcPmH9wjsUhRAGIYRJCOFW0k8VQY+w3m638nmGLG1IOg8h\r\nTByv0agQwnt7XnqH9Tt1PKxLBHa0w4Gk7yGEW1syRzdtqXiw34YQTqoEd1tqHqe6sUcOQgjHTmP3\r\n1Vw+Yf06xjh2GFfSQ1CfSvqPikkGj1UdNMBW/AaSrp0vdWSTFZUmKnJjJUVzFe9vT1eStrteDiMR\r\n2NEum5K+hRDmtuyMbtpQMUNZ6QMtxjiT9CnZXf3ulFWfNCzwbjkMfSenmlmbOZyoCOregQQNiTH+\r\nijEOJZ05X2pLxfNu6HydWthzeyGfn+uyLzHGUV/2FRHY0Ua7kn4yy9l5Gyo+0Gbrzj7FGCeSLtLe\r\n1oMZH47V2M+wR+C9l+TyIrc/84WKGXX0QIzxWNKh/Etkvrf9vWYNG77JZ8Vs6V7S31U3FrcNgR1t\r\ndko9cS/sSZrbEus6jlVsZE5tQ9K0a0vZdbHZxFOn4cceHThs89xPUfrSO7YPYiifZ0nZaZVJiqbY\r\nqtNc/g0bblSUwMycr5MdAjva7oDQ3gtbkhbrzGjbLOtQTptQVXQ2wQrsz9HrhfvJ42VeU6cLZMw+\r\nAocq6qY9LScpWrGCV1p18t5ofSFp2Id69acQ2NEFhPZ+WHtG2zm079G3/+3sz28qv44wybtuWE0u\r\nYR3LuvaRpC/Ol9pSEdrHzteppMZVp8MY47gv9epPIbCjKw7oINMLa89o2+yYV33o59xfrBmZymcz\r\n2o1HRxgrxZqmHhftZvXTf6mnrR9rbNl4L+lDH/rVv4bAji6ZtK3uD2vZW7ebgj30vWbGJm1Zwm6K\r\nBY89h6Hv5HeS6Il8N9Chpexk7m3517Vn1fqxxpaN15IGfToR9iUEdnTJpnyPkkY+Ttb9jTYz5tE5\r\nZkNF55gsXqq5sRUIj84qnh1hBqJtI15g9dRD+XWjWsqi9aNdv46WjWcxxmGfS2AeI7Cja8ZN3wBq\r\nsVuha4zk1zlmU8XME0ps5cFrWf/YcQau1S32UA+rax+raP3oqdHWj7ZX57vqadnIz94j75q+gYqu\r\nVHzptcVQvruob+TXecHDttIvj2+FEAYJdpF7byjqk4GKA2xSP+RHWjMExhh/lQ73SH1fWyGEqecJ\r\nm21iKw5z+bzkvzjXtg4dxrxR8e+jLzOHt03fQF1ijNMQwkJ+f9+Xlge31bIJs7RR3KOcrexGTi1Z\r\nu6Ctgb21f6g20zRX2h/m5ZLwPOGYtbBZ0pnSLq8NVPEl0bcDGbzZA3+itOUFgyq/Oca4XF7+meRu\r\nfncQQpizUUqSX3i5qOHnNPWy/yF/J7otxrgovdc8J+iWrR9ds1CpBat3F5gr1fQB0lZtLYk5aWNY\r\nlx46VYwTDztpY1iXHur/6O7ScfYQPlbajgqVN3jaz6PXMvZ50/WmTbMuEi4dYdS+cpULwno/WInM\r\nUNKZ86VcWz/auHP5h/VPMUaXfShd0srA3oETrlL/pZwnHq9WfT0EoW/sYZzdh7aFKK8X66xirX1r\r\nWZ2tx4bNexWHp7Tt5X7b9A2gXlaHfagWtn4stWz0rlf/y+PshC5qZWAHgJTsxepxemEvO8fYysKp\r\nw9BtDevoKZsQGKqe1o/zqs+aEMLA6vC9uyPdqGjZOHe+TmcQ2AGgMJbPS3VLfh1SslOqefXg2REG\r\ncGF/Z4fymRQo21XR+nGtcsEaWzZexBi3+fBeDYEdAPRQsjOSz/L1gbVE67RSNwmPZfQzasDRVlbX\r\nPpJ/B7INST9Xbf1YY8vGQzporYfADgDGeRP0Z2sl2WVT+czOXdGXGV1gnY3+km9du1S0fpy+ViIT\r\nQngfQphJ+ux8P3cqytmmztfpLAI7AJRYTaVX55jpusvVubNNbx59mm/EgWjoEHvGbMu/rv1ARReZ\r\nJ5859usL+fdXv5K0TTlbNQR2AHjEZoE8jhrv5CZUa/925DD08owJal3RKbaaN5TPc6Zs2frxt9W9\r\nGls2fqFlYxoEdgB4gtVZXjsMval2nUj8IpulO3cafkjbV3SV1bWPJX1yvtSGpG/L1o81tmz8m0MI\r\n0yGwA8DzRvJZtt5N3Te5CbZSMHca/pAldPSB9SH/IP+69qMQwi/V07JxuwNn5mSFwA4Az7Bl3LF8\r\nXqRHXicU1qEU1ukIA1RkH6cD+de1e86qS0WJDytjDgjsAPACe5F6dXc5b/Em1InoCAMkYyUy2/I7\r\nednbYYxxTL26DwI7ALzCujp41ZlWPp2wbtbj2WNZnY4w6D37YD2Uf4lMKveSPrAq5utd0zcA5KgP\r\nh9w0ZND0Dawrxjix2fDUQXVDRWgftmFmyrpNnDoMfS+J2TlARaeqEMJCxQZ1704uVVyLTk61ILAD\r\nT/M+RAItFGMcW2hPXQqypaLEZJx43KTsn33qNPyITabA/8QYF6WfOe9e6es4o3ytPpTEAMBqhipO\r\n7UvtYNXjxOtkZTtT+WxaO7SyIwAlVtc+kvSl6XspWbZszPZ51UUEdgBYgS39juRTX3r6+ICTjMzk\r\ns8n0gtpX4GXWz/xvNV/XfqOiCwwtG2tGYAeAFVnpxthp+GlunWOsZ/yuw9DXdnAMgFdYSN6Wf+vH\r\n51ypCOuUrjWAwA4Aa7CXp0fnmA0VoT2LzjHWK/7IYegb+bXLBDrJ+psPVfQ7r9OnGCObSxtEYAeA\r\nNdkJhR4vzi35be58M5vpP3cYmo4wwJqsrn2s+mbaz+xZhwYR2AGgAscX556VojSidJKphzHL6sB6\r\nQgjvQwhz+ewpecpRk88iFAjsAFDdUD6bwY6sJKVWpbDu0RHmExvWgPXYqtdcPntKXnIUQmjdIW9d\r\nQmAHgIqstGMon9A+aWAT6kR+HWGYqQPWYB2k5qpvZv2xXUmL3DbF9wWBHQASsBIPj77Ey5NQa5nZ\r\nsl7wqU9zlaQbOsIA67HTt7/JZ9VrFZsqnkdsGK8ZgR0AErF+4h4HnGzIr578gb2ETx2GvlOxAgFg\r\nBVavPlVep29vSPpmHxGoCYEdABKyA05cOsfYi9tF6Qj01O4l0Q4OWFEIYaDiQ91jxSuFzyGEGXXt\r\n9XjX9A0APXCtGmZHW2KsYkm1645VHHCSutb0IISwSF0Hbi/cqXyW2+kIA6yotLm06RKY1+zJSmSs\r\nRzycENgBf3Obde29EMJQPQjsMcZf9s96q/Qv3FML7fOEY87ks5HtCx1hgNVYZyiP8w+8bKnYjDpK\r\n/FxCCSUxAOCg1DnGw8yWyyuz/soeLeIu+FAFVmNlb20K60sbkr7bpnU4ILADgBMrBTl0GHpDRWiv\r\nVDtqM3lHSe7odzfy6ZgDdJJtLl3Iv179znn8U8+9Nn1GYAcAR9Y55sxh6C1V2CRqNbIeM3n3koZs\r\nMgXexn4WF/Lvr/4pxjiQTyersoMQwoLNqGkR2AHAWYzxWNKVw9B767RWK51kmhphHViBrXLN5bu3\r\n517SX8vN6laq9rd8Dnpb2pJ0yyFL6RDYAaAeYxWlIql9tpf+m5TCukf3iWM6wgBvYx/b5/LtBHOj\r\n4iN6Xv5F2ww+lG+JzIakn6s8n/A8AjsA1MBmnUfymdWarDCTNZFfR5ipw7hAp1i9+kz+hyFdqQjr\r\nT35E269vq2g97OmcuvbqCOwAUBPrUzx0GPpNm1Ctg4PHprYrOsIAryv1V99zvtRZjPHVA8tijL9i\r\njEP5HPZWdhBCmFPXvj4COwDUyLFzzKZeqEsPIYwknTpc90ZFuQ+AF9jZDHP5bi69l3Ro+2beLMY4\r\nls9zqWxXRb926trXQGAHgJpZ6YjHjNbWU0vP9oL849cTuJf06iwe0He2uvVdvvXqy03f03V+s/2+\r\nD/LdjLqp4mTUseM1OonADgANsBktj9rRg/LL0Jagp/IJCkOOIwdeZh/RHqtbZTeSBlU3fZfq2j02\r\nyC9tqKhrP3G8RucQ2AGgOSP5vBjPS8vOM/kswR/SEQZ4Xo2HIV3EGLdTrXSV9tp417V/DiFUPgCu\r\nLwjsgL9R0zeAPNkLdiyfJei5daLYdRj7jI4wwPPsg/lW9RyGNE49qG1GHcv/kKU9Fc8q6tpfQWAH\r\nnpayVGHL6heBP9gstcdH3YZ8OlFcrbqhDegTK0n7Kf969YfDkLzUeMjS3Dbl4hnvmr4BIFOpN9Gd\r\nWmifJh63bQZN30COYozzEMKhikNUckZHGOAFIYSJpCPny9xIGtdVkhZjnFmYnsnvRNYNSd9DCJ+8\r\nP0LaisAOPG2m9LOTm/I/KAMtFWOc2kvRu951XfcqQgIdYYBHrA7bqwSt7EoN/BzGGJftGL3/GU/t\r\nOsc8a35HSQzwtJl8lwCBP1jNqGd3hipGbDIF/lQ6DMk7rL/pMCQvdR6ypKJEhs2oJQR24An2QGRZ\r\nDk0YSrpr+iYeOYwxzpu+CSA3diDZXBkehuSlpkOWtiTdshn1fwjswPMmyi84oePsY3GkfFZ4LugI\r\nA/zJ+oh/U8aHIXmp6ZClDUk/OWSpQGAHnlEKTkCtrPRk3PR9SLr2aBkHtJn1V5/Kf09SksOQvNR0\r\nyJJUnCsxdb5G9gjswAvsgeS99Af8IcY4k/SpwVu4ER+swG9CCAMVJTCtOgzJS42HLB2EEBZ9rmsn\r\nsAOvsKW/Q+VTooCesPZm3i/Cp9ARBnjE6qkXaulhSF5qPGRpS9Kir3XtBHbgDSy0D5VvBw90VEOd\r\nY2rr8Qy0QZcOQ/JS0yFLmyo6yIwdr5ElAjvwRhZghpLOGr4V9M9Q9a3wfLJyHACSrH7a+1CzGxWb\r\nS+fO13Flz46hfBs2bKioa2/lh826COzACmzp71jSP9RMqQJ6yEpThvIP7Rdtnd0DUrPNpQv516tf\r\nqQjrnVjVKm1GvXa+1FEIYdaXunYCO7CGGOOtlSr8Q8WMO+0f4cpegp59mG/aVDcLeLLNpXXUqzd6\r\nGJKXGg9Z2lNRIjNwvk7jCOxABRbcj2OMAxU9ab/If1YBPWV7KTw2dt2pmMEHUBioqJf2ktVhSF5q\r\nPGRp4HyNxr2r6Tq3IsSU/VLafx9d+DJv/b8PmwF9WNK0newDFUuDsv89qPu+OqwTy8erijGe2BJw\r\nyk4Jx12b4Usk5XPpNuFYXZTbz3Pq9/Rjx10pgXlNjHFqpUWe5Xa5P78q/1mHf/7r30NJ3yuMcf3j\r\n68dh1RsBAAAAumZn/3KoalmbkhgAAAAgZwR2AAAAIGMEdgAAACBjBHYAAAAgYwR2AAAAIGMEdgAA\r\nACBjBHYAAAAgYwR2AAAAIGMEdgAAACBjBHYAAAAgYwR2AAAAIGMEdgAAACBjBHYAAAAgYwR2AAAA\r\nIGPvEoyxu7N/GROMAwAAAOARZtgBAACAjBHYAQAAgIwR2AEAAICMEdgBAACAjBHYAQAAgIwR2AEA\r\nAICMEdgBAACAjBHYAQAAgIwR2AEAAICMEdgBAACAjBHYAQAAgIwR2AEAAICMEdgBAACAjBHYAQAA\r\ngIwR2AEAAICMvZN0K+lLw/cBAAAA4An/D+pVjENe+oQjAAAAAElFTkSuQmCC\r\n\r\n--b2=_ntujNk40OF6Z6UM21407WBqjg5LAE6ShuOnwe0L4YM--','Test\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nRick MChief Technology Officer\r\n\r\nrick@mavrix.one\r\nMobile: 5857979473\r\nOffice: 906-555-4567\r\nhttps://mavrix1.com\r\n\r\n\r\n\r\n\r\n3900 W. Coachman Ave.Tampa, FL 33611\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE:This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.',0,0,0,0,0,0,'2025-12-04 16:09:55','2025-12-04 16:18:59','2025-12-04 16:18:59','2025-12-04 16:18:59',NULL,NULL,NULL),
(130,1,'<1764866274.1@erp>',NULL,NULL,'Test','admin@mavrix.one','Admin User','<p></p>\r\n<p></p>\r\n<table style=\"width: 100%; max-width: 600px; border-collapse: collapse; font-family: Helvetica, Arial, sans-serif;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 0; border-top: 3px solid #0066cc;\">\r\n<table style=\"width: 100%; border-collapse: collapse; padding-top: 15px;\">\r\n<tbody>\r\n<tr><!-- LEFT COLUMN -->\r\n<td style=\"vertical-align: top; padding-left: 20px; border-left: 2px solid #e0e0e0;\">\r\n<div style=\"margin-bottom: 10px;\"><strong style=\"font-size: 14px; color: #0066cc;\">Admin User</strong><br><span style=\"font-size: 12px; color: #666;\">Administrator</span></div>\r\n<div style=\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n<div><a href=\"mailto:admin@mavrix.one\" style=\"color: #0066cc; text-decoration: none;\">admin@mavrix.one</a></div>\r\n<div>Mobile: 906-123-4567</div>\r\n<div>Office: 906-555-4567</div>\r\n<div><a href=\"https://mavrix1.com\" style=\"color: #0066cc; text-decoration: none;\">https://mavrix1.com</a></div>\r\n</div>\r\n</td>\r\n<!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n<td style=\"width: 200px; vertical-align: middle; text-align: center; padding-top: 10px;\"><img src=\"cid:company_logo\" alt=\"Mavrix1\" style=\"max-width: 150px; height: auto; display: block; margin: 0 auto;\">\r\n<div style=\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1.3;\">3900 W. Coachman Ave.<br>Tampa, FL 33611</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n<div style=\"font-size: 9px; color: #888; line-height: 1.4;\"><strong>CONFIDENTIALITY NOTICE:</strong><br><em>This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.</em><br><br><em>This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.</em><br><br><em>If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.</em><br><br><em>Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nAdmin UserAdministrator\r\n\r\nadmin@mavrix.one\r\nMobile: 906-123-4567\r\nOffice: 906-555-4567\r\nhttps://mavrix1.com\r\n\r\n\r\n\r\n\r\n3900 W. Coachman Ave.Tampa, FL 33611\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE:This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.\r\n\r\n\r\n\r\n',1,0,0,0,0,0,'2025-12-04 16:37:54','2025-12-04 16:37:54','2025-12-04 16:37:54','2025-12-04 16:37:54',NULL,NULL,NULL),
(131,1,'<rl8NJR70YxnAMViftpsvGWN8SlXZNq8IbssOmQVjNfc@localhost>',NULL,NULL,'Test','contact@mavrix.one','Mavrix1','--b3=_rl8NJR70YxnAMViftpsvGWN8SlXZNq8IbssOmQVjNfc\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Transfer-Encoding: quoted-printable\r\n\r\n<p></p>\r\n<p></p>\r\n<table style=3D\"width: 100%; max-width: 600px; border-collapse: collapse; f=\r\nont-family: Helvetica, Arial, sans-serif;\">\r\n<tbody>\r\n<tr>\r\n<td style=3D\"padding: 0; border-top: 3px solid #0066cc;\">\r\n<table style=3D\"width: 100%; border-collapse: collapse; padding-top: 15px;\"=\r\n>\r\n<tbody>\r\n<tr><!-- LEFT COLUMN -->\r\n<td style=3D\"vertical-align: top; padding-left: 20px; border-left: 2px soli=\r\nd #e0e0e0;\">\r\n<div style=3D\"margin-bottom: 10px;\"><strong style=3D\"font-size: 14px; color=\r\n: #0066cc;\">Admin User</strong><br><span style=3D\"font-size: 12px; color: #=\r\n666;\">Administrator</span></div>\r\n<div style=3D\"font-size: 12px; color: #333; line-height: 1.3;\">\r\n<div><a href=3D\"mailto:admin@mavrix.one\" style=3D\"color: #0066cc; text-deco=\r\nration: none;\">admin@mavrix.one</a></div>\r\n<div>Mobile: 906-123-4567</div>\r\n<div>Office: 906-555-4567</div>\r\n<div><a href=3D\"https://mavrix1.com\" style=3D\"color: #0066cc; text-decorati=\r\non: none;\">https://mavrix1.com</a></div>\r\n</div>\r\n</td>\r\n<!-- RIGHT COLUMN (CENTERED LOGO + TEXT) -->\r\n<td style=3D\"width: 200px; vertical-align: middle; text-align: center; padd=\r\ning-top: 10px;\"><img src=3D\"cid:company_logo\" alt=3D\"Mavrix1\" style=3D\"max-=\r\nwidth: 150px; height: auto; display: block; margin: 0 auto;\">\r\n<div style=3D\"margin-top: 8px; font-size: 11px; color: #666; line-height: 1=\r\n.3;\">3900 W. Coachman Ave.<br>Tampa, FL 33611</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=3D\"padding-top: 15px; border-top: 1px solid #e0e0e0;\">\r\n<div style=3D\"font-size: 9px; color: #888; line-height: 1.4;\"><strong>CONFI=\r\nDENTIALITY NOTICE:</strong><br><em>This communication may contain confident=\r\nial information. Unauthorized review, use, disclosure, or distribution is p=\r\nrohibited.</em><br><br><em>This communication, including any attachments, m=\r\nay contain confidential, privileged, or Controlled Unclassified Information=\r\n (CUI) protected under federal law. It is intended solely for the use of th=\r\ne designated recipient(s). Any unauthorized review, use, disclosure, distri=\r\nbution, or copying is strictly prohibited and may be unlawful.</em><br><br>=\r\n<em>If you are not the intended recipient, please notify the sender immedia=\r\ntely, delete this email, and destroy all copies.</em><br><br><em>Unless exp=\r\nressly stated, the views and opinions expressed herein are those of the sen=\r\nder and do not necessarily reflect those of the sender=E2=80=99s employer o=\r\nr any U.S. Government agency. All recipients are responsible for handling i=\r\nnformation in accordance with applicable federal regulations, including but=\r\n not limited to FAR, DFARS, ITAR, and CUI handling requirements.</em></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n--b3=_rl8NJR70YxnAMViftpsvGWN8SlXZNq8IbssOmQVjNfc\r\nContent-Type: image/png; name=logo_1762869843.png\r\nContent-Transfer-Encoding: base64\r\nContent-ID: <company_logo>\r\nContent-Disposition: inline; filename=logo_1762869843.png\r\n\r\niVBORw0KGgoAAAANSUhEUgAAAuwAAACiCAYAAAAa7ZjJAAAACXBIWXMAAAsSAAALEgHS3X78AAAV\r\nP0lEQVR4nO3dT1LcStbG4Te/8BzvgOoVgGfNiLoroG40Mw8oVgBegfEKKFZAEdHMHOFiBS5GHrpY\r\nQcMK2qwgv4FO0TLmX5XySCnp90R0dIejndK9NtKrzJMnQ4xRAAAAAHzt7F+OJU0kbazy+/7P5W4A\r\nAAAAPNjZvzyRdK4Vw7okvUt+NwAAAAAkSTv7l+9VzKofrDsGgR0AAABwYGF9LmmryjiUxAAAAACJ\r\n7exfbktaqGJYlwjsAAAAQFI7+5cjFTPrmynGI7ADAAAAiezsXx5L+qY1Npc+hxp2AAAAIIGd/cup\r\nKmwufQ6BHQAAAKjANpfOJO16jE9JDAAAALAm21w6l1NYl5hhBwAAANays385VDGznqxe/SnMsAMA\r\nAAAr2tm/HEv6LuewLhHYAQAAgJXs7F9OJJ3XdT1KYgAAAIA3sM2lU0l7dV6XwA4AAAC8Ymf/cqCi\r\nXr3yyaWrIrADAAAALyh1gnGvV38KNewAAADAM2xz6U81FNYlAjsAAADwpJ39yxPVuLn0OZTEAAAA\r\nACW2uXQi6aDpe5EI7AAAAMADC+tzNbC59DmUxAAAAAB62Fx6q4zCukRgBwAAALSzfzlSg51gXkJg\r\nBwAAQK/t7F8eS/qmDMO6RA07AAAAemxn/3KqTDaXPofADgAAgN7JcXPpc8I///XvgaRxw/cBAAAA\r\nPOnH148nKcezzaVTtSCsS8UM+0DS54bvAwAAAHjsXtIo5YA7+5dDSTPVU69+Z/+9WWUQNp0CAAAg\r\nRzeShj++fpynGnBn/3Is6bvqCetXkpZtIiuhhh0AAAC5uZY0+vH1469UA9a8ufTTj68fJ3bdyoMR\r\n2AEAAJCTsx9fPx6nGsw2l84k7aYa8wV3Kj40FikHpSQGAAAAuThMHNYHKjrB1BHWryRtpw7rEjPs\r\nAAAAaN69inr1ZGHXOsHMVU+9+kMJjAdm2AEAANCkGyWembbNpT/lH9bvJH3wDOsSgR0AAADNuVIx\r\ns36basCd/cuJpPNU473ArQTmMUpiAAAA0ASPzaUT+XeCuZd04j2rXkZgBwAAQJ3uJR3/+PpxmmpA\r\nC+tz+Z9ceiNpXMesehmBHQAAAHVp8+bSCxUfGsl6w78VgR0AAAB1WJ5cmvIwpLGKMhjPsJ58RWBV\r\nbDoFAACAtwulD+vHKjaXeob15UfG1PEar2KGHQAAAJ6+/Pj68STlgDv7l1P5by5trATmMQI7AAAA\r\nPNyr2KA5SzVgTZtLU5fAVA78KQL7vaRad8oCAAAge8cOm0tnkjZTjfkEjy4wC0l7VQZIEdgXP75+\r\nHCYYBwAAAHjJ2Hn8RQ4lMI9REgMAAIDs1d37PCd0iQEAAAAyRmAHAAAAMkZgBwAAADJGYAcAAAAy\r\nRmAHAAAAMkZgBwAAADJGYAcAAAAyRmAHAAAAMkZgBwAAADJGYAcAAAAyRmAHAAAAMkZgBwAAADJG\r\nYAcAAAAyRmAHAAAAMkZgBwAAADJGYAcAAAAy9q6Oi4QQhpKGdVwLrbWQ9CvGOG/6RiQphHDS9D10\r\n1K39ZxFj/OVxgRDCSNK2x9iSJl73jW7+2YUQtiW9V3/fgdMY4+1r/6cQwljSINVFY4wnVX5/CGEg\r\naZzgVp4zizEuHMfPiv0cjBwv8aa/Z21WS2BX8aD6XNO10GIhBEm6kTRf/qehgMTfV2chhDsVH2oz\r\nFX/Ot4mGnkuaSNpMNF6ZZ6DsNXuhTyVtOAx/WNdzpBRMhpJ267hm5uYqPtJfM1baf18nFX//QL7v\r\ngeMQwnGMcep4jSzYx9i582Xmetvfs9aiJAY52pJ0JOmbpP+GEKa2SoNu2ZS0p+JB/p8QwiKEMA4h\r\nvK8yqAWzkaT7BPf42FYIYeowbq/Zn/lcPmH9wjsUhRAGIYRJCOFW0k8VQY+w3m638nmGLG1IOg8h\r\nTByv0agQwnt7XnqH9Tt1PKxLBHa0w4Gk7yGEW1syRzdtqXiw34YQTqoEd1tqHqe6sUcOQgjHTmP3\r\n1Vw+Yf06xjh2GFfSQ1CfSvqPikkGj1UdNMBW/AaSrp0vdWSTFZUmKnJjJUVzFe9vT1eStrteDiMR\r\n2NEum5K+hRDmtuyMbtpQMUNZ6QMtxjiT9CnZXf3ulFWfNCzwbjkMfSenmlmbOZyoCOregQQNiTH+\r\nijEOJZ05X2pLxfNu6HydWthzeyGfn+uyLzHGUV/2FRHY0Ua7kn4yy9l5Gyo+0Gbrzj7FGCeSLtLe\r\n1oMZH47V2M+wR+C9l+TyIrc/84WKGXX0QIzxWNKh/Etkvrf9vWYNG77JZ8Vs6V7S31U3FrcNgR1t\r\ndko9cS/sSZrbEus6jlVsZE5tQ9K0a0vZdbHZxFOn4cceHThs89xPUfrSO7YPYiifZ0nZaZVJiqbY\r\nqtNc/g0bblSUwMycr5MdAjva7oDQ3gtbkhbrzGjbLOtQTptQVXQ2wQrsz9HrhfvJ42VeU6cLZMw+\r\nAocq6qY9LScpWrGCV1p18t5ofSFp2Id69acQ2NEFhPZ+WHtG2zm079G3/+3sz28qv44wybtuWE0u\r\nYR3LuvaRpC/Ol9pSEdrHzteppMZVp8MY47gv9epPIbCjKw7oINMLa89o2+yYV33o59xfrBmZymcz\r\n2o1HRxgrxZqmHhftZvXTf6mnrR9rbNl4L+lDH/rVv4bAji6ZtK3uD2vZW7ebgj30vWbGJm1Zwm6K\r\nBY89h6Hv5HeS6Il8N9Chpexk7m3517Vn1fqxxpaN15IGfToR9iUEdnTJpnyPkkY+Ttb9jTYz5tE5\r\nZkNF55gsXqq5sRUIj84qnh1hBqJtI15g9dRD+XWjWsqi9aNdv46WjWcxxmGfS2AeI7Cja8ZN3wBq\r\nsVuha4zk1zlmU8XME0ps5cFrWf/YcQau1S32UA+rax+raP3oqdHWj7ZX57vqadnIz94j75q+gYqu\r\nVHzptcVQvruob+TXecHDttIvj2+FEAYJdpF7byjqk4GKA2xSP+RHWjMExhh/lQ73SH1fWyGEqecJ\r\nm21iKw5z+bzkvzjXtg4dxrxR8e+jLzOHt03fQF1ijNMQwkJ+f9+Xlge31bIJs7RR3KOcrexGTi1Z\r\nu6Ctgb21f6g20zRX2h/m5ZLwPOGYtbBZ0pnSLq8NVPEl0bcDGbzZA3+itOUFgyq/Oca4XF7+meRu\r\nfncQQpizUUqSX3i5qOHnNPWy/yF/J7otxrgovdc8J+iWrR9ds1CpBat3F5gr1fQB0lZtLYk5aWNY\r\nlx46VYwTDztpY1iXHur/6O7ScfYQPlbajgqVN3jaz6PXMvZ50/WmTbMuEi4dYdS+cpULwno/WInM\r\nUNKZ86VcWz/auHP5h/VPMUaXfShd0srA3oETrlL/pZwnHq9WfT0EoW/sYZzdh7aFKK8X66xirX1r\r\nWZ2tx4bNexWHp7Tt5X7b9A2gXlaHfagWtn4stWz0rlf/y+PshC5qZWAHgJTsxepxemEvO8fYysKp\r\nw9BtDevoKZsQGKqe1o/zqs+aEMLA6vC9uyPdqGjZOHe+TmcQ2AGgMJbPS3VLfh1SslOqefXg2REG\r\ncGF/Z4fymRQo21XR+nGtcsEaWzZexBi3+fBeDYEdAPRQsjOSz/L1gbVE67RSNwmPZfQzasDRVlbX\r\nPpJ/B7INST9Xbf1YY8vGQzporYfADgDGeRP0Z2sl2WVT+czOXdGXGV1gnY3+km9du1S0fpy+ViIT\r\nQngfQphJ+ux8P3cqytmmztfpLAI7AJRYTaVX55jpusvVubNNbx59mm/EgWjoEHvGbMu/rv1ARReZ\r\nJ5859usL+fdXv5K0TTlbNQR2AHjEZoE8jhrv5CZUa/925DD08owJal3RKbaaN5TPc6Zs2frxt9W9\r\nGls2fqFlYxoEdgB4gtVZXjsMval2nUj8IpulO3cafkjbV3SV1bWPJX1yvtSGpG/L1o81tmz8m0MI\r\n0yGwA8DzRvJZtt5N3Te5CbZSMHca/pAldPSB9SH/IP+69qMQwi/V07JxuwNn5mSFwA4Az7Bl3LF8\r\nXqRHXicU1qEU1ukIA1RkH6cD+de1e86qS0WJDytjDgjsAPACe5F6dXc5b/Em1InoCAMkYyUy2/I7\r\nednbYYxxTL26DwI7ALzCujp41ZlWPp2wbtbj2WNZnY4w6D37YD2Uf4lMKveSPrAq5utd0zcA5KgP\r\nh9w0ZND0Dawrxjix2fDUQXVDRWgftmFmyrpNnDoMfS+J2TlARaeqEMJCxQZ1704uVVyLTk61ILAD\r\nT/M+RAItFGMcW2hPXQqypaLEZJx43KTsn33qNPyITabA/8QYF6WfOe9e6es4o3ytPpTEAMBqhipO\r\n7UvtYNXjxOtkZTtT+WxaO7SyIwAlVtc+kvSl6XspWbZszPZ51UUEdgBYgS39juRTX3r6+ICTjMzk\r\ns8n0gtpX4GXWz/xvNV/XfqOiCwwtG2tGYAeAFVnpxthp+GlunWOsZ/yuw9DXdnAMgFdYSN6Wf+vH\r\n51ypCOuUrjWAwA4Aa7CXp0fnmA0VoT2LzjHWK/7IYegb+bXLBDrJ+psPVfQ7r9OnGCObSxtEYAeA\r\nNdkJhR4vzi35be58M5vpP3cYmo4wwJqsrn2s+mbaz+xZhwYR2AGgAscX556VojSidJKphzHL6sB6\r\nQgjvQwhz+ewpecpRk88iFAjsAFDdUD6bwY6sJKVWpbDu0RHmExvWgPXYqtdcPntKXnIUQmjdIW9d\r\nQmAHgIqstGMon9A+aWAT6kR+HWGYqQPWYB2k5qpvZv2xXUmL3DbF9wWBHQASsBIPj77Ey5NQa5nZ\r\nsl7wqU9zlaQbOsIA67HTt7/JZ9VrFZsqnkdsGK8ZgR0AErF+4h4HnGzIr578gb2ETx2GvlOxAgFg\r\nBVavPlVep29vSPpmHxGoCYEdABKyA05cOsfYi9tF6Qj01O4l0Q4OWFEIYaDiQ91jxSuFzyGEGXXt\r\n9XjX9A0APXCtGmZHW2KsYkm1645VHHCSutb0IISwSF0Hbi/cqXyW2+kIA6yotLm06RKY1+zJSmSs\r\nRzycENgBf3Obde29EMJQPQjsMcZf9s96q/Qv3FML7fOEY87ks5HtCx1hgNVYZyiP8w+8bKnYjDpK\r\n/FxCCSUxAOCg1DnGw8yWyyuz/soeLeIu+FAFVmNlb20K60sbkr7bpnU4ILADgBMrBTl0GHpDRWiv\r\nVDtqM3lHSe7odzfy6ZgDdJJtLl3Iv179znn8U8+9Nn1GYAcAR9Y55sxh6C1V2CRqNbIeM3n3koZs\r\nMgXexn4WF/Lvr/4pxjiQTyersoMQwoLNqGkR2AHAWYzxWNKVw9B767RWK51kmhphHViBrXLN5bu3\r\n517SX8vN6laq9rd8Dnpb2pJ0yyFL6RDYAaAeYxWlIql9tpf+m5TCukf3iWM6wgBvYx/b5/LtBHOj\r\n4iN6Xv5F2ww+lG+JzIakn6s8n/A8AjsA1MBmnUfymdWarDCTNZFfR5ipw7hAp1i9+kz+hyFdqQjr\r\nT35E269vq2g97OmcuvbqCOwAUBPrUzx0GPpNm1Ctg4PHprYrOsIAryv1V99zvtRZjPHVA8tijL9i\r\njEP5HPZWdhBCmFPXvj4COwDUyLFzzKZeqEsPIYwknTpc90ZFuQ+AF9jZDHP5bi69l3Ro+2beLMY4\r\nls9zqWxXRb926trXQGAHgJpZ6YjHjNbWU0vP9oL849cTuJf06iwe0He2uvVdvvXqy03f03V+s/2+\r\nD/LdjLqp4mTUseM1OonADgANsBktj9rRg/LL0Jagp/IJCkOOIwdeZh/RHqtbZTeSBlU3fZfq2j02\r\nyC9tqKhrP3G8RucQ2AGgOSP5vBjPS8vOM/kswR/SEQZ4Xo2HIV3EGLdTrXSV9tp417V/DiFUPgCu\r\nLwjsgL9R0zeAPNkLdiyfJei5daLYdRj7jI4wwPPsg/lW9RyGNE49qG1GHcv/kKU9Fc8q6tpfQWAH\r\nnpayVGHL6heBP9gstcdH3YZ8OlFcrbqhDegTK0n7Kf969YfDkLzUeMjS3Dbl4hnvmr4BIFOpN9Gd\r\nWmifJh63bQZN30COYozzEMKhikNUckZHGOAFIYSJpCPny9xIGtdVkhZjnFmYnsnvRNYNSd9DCJ+8\r\nP0LaisAOPG2m9LOTm/I/KAMtFWOc2kvRu951XfcqQgIdYYBHrA7bqwSt7EoN/BzGGJftGL3/GU/t\r\nOsc8a35HSQzwtJl8lwCBP1jNqGd3hipGbDIF/lQ6DMk7rL/pMCQvdR6ypKJEhs2oJQR24An2QGRZ\r\nDk0YSrpr+iYeOYwxzpu+CSA3diDZXBkehuSlpkOWtiTdshn1fwjswPMmyi84oePsY3GkfFZ4LugI\r\nA/zJ+oh/U8aHIXmp6ZClDUk/OWSpQGAHnlEKTkCtrPRk3PR9SLr2aBkHtJn1V5/Kf09SksOQvNR0\r\nyJJUnCsxdb5G9gjswAvsgeS99Af8IcY4k/SpwVu4ER+swG9CCAMVJTCtOgzJS42HLB2EEBZ9rmsn\r\nsAOvsKW/Q+VTooCesPZm3i/Cp9ARBnjE6qkXaulhSF5qPGRpS9Kir3XtBHbgDSy0D5VvBw90VEOd\r\nY2rr8Qy0QZcOQ/JS0yFLmyo6yIwdr5ElAjvwRhZghpLOGr4V9M9Q9a3wfLJyHACSrH7a+1CzGxWb\r\nS+fO13Flz46hfBs2bKioa2/lh826COzACmzp71jSP9RMqQJ6yEpThvIP7Rdtnd0DUrPNpQv516tf\r\nqQjrnVjVKm1GvXa+1FEIYdaXunYCO7CGGOOtlSr8Q8WMO+0f4cpegp59mG/aVDcLeLLNpXXUqzd6\r\nGJKXGg9Z2lNRIjNwvk7jCOxABRbcj2OMAxU9ab/If1YBPWV7KTw2dt2pmMEHUBioqJf2ktVhSF5q\r\nPGRp4HyNxr2r6Tq3IsSU/VLafx9d+DJv/b8PmwF9WNK0newDFUuDsv89qPu+OqwTy8erijGe2BJw\r\nyk4Jx12b4Usk5XPpNuFYXZTbz3Pq9/Rjx10pgXlNjHFqpUWe5Xa5P78q/1mHf/7r30NJ3yuMcf3j\r\n68dh1RsBAAAAumZn/3KoalmbkhgAAAAgZwR2AAAAIGMEdgAAACBjBHYAAAAgYwR2AAAAIGMEdgAA\r\nACBjBHYAAAAgYwR2AAAAIGMEdgAAACBjBHYAAAAgYwR2AAAAIGMEdgAAACBjBHYAAAAgYwR2AAAA\r\nIGPvEoyxu7N/GROMAwAAAOARZtgBAACAjBHYAQAAgIwR2AEAAICMEdgBAACAjBHYAQAAgIwR2AEA\r\nAICMEdgBAACAjBHYAQAAgIwR2AEAAICMEdgBAACAjBHYAQAAgIwR2AEAAICMEdgBAACAjBHYAQAA\r\ngIwR2AEAAICMvZN0K+lLw/cBAAAA4An/D+pVjENe+oQjAAAAAElFTkSuQmCC\r\n\r\n--b3=_rl8NJR70YxnAMViftpsvGWN8SlXZNq8IbssOmQVjNfc--','\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nAdmin UserAdministrator\r\n\r\nadmin@mavrix.one\r\nMobile: 906-123-4567\r\nOffice: 906-555-4567\r\nhttps://mavrix1.com\r\n\r\n\r\n\r\n\r\n3900 W. Coachman Ave.Tampa, FL 33611\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nCONFIDENTIALITY NOTICE:This communication may contain confidential information. Unauthorized review, use, disclosure, or distribution is prohibited.This communication, including any attachments, may contain confidential, privileged, or Controlled Unclassified Information (CUI) protected under federal law. It is intended solely for the use of the designated recipient(s). Any unauthorized review, use, disclosure, distribution, or copying is strictly prohibited and may be unlawful.If you are not the intended recipient, please notify the sender immediately, delete this email, and destroy all copies.Unless expressly stated, the views and opinions expressed herein are those of the sender and do not necessarily reflect those of the sender’s employer or any U.S. Government agency. All recipients are responsible for handling information in accordance with applicable federal regulations, including but not limited to FAR, DFARS, ITAR, and CUI handling requirements.',1,0,0,0,0,0,'2025-12-04 16:37:49','2025-12-04 16:38:07','2025-12-04 16:38:07','2025-12-04 16:38:13',NULL,NULL,NULL),
(138,1,'<etPan.6932112f.659bb999.3cc3@mavrix.one>',NULL,NULL,'Demo - Top 10!','rick@mavrix.one','Rick','(No content)','(No content)',0,0,0,0,0,0,'2025-12-04 22:54:34','2025-12-04 22:54:48','2025-12-04 22:54:48','2025-12-04 22:54:48',NULL,NULL,NULL),
(139,1,'<etPan.69321177.2f8aaec3.3cc3@mavrix.one>',NULL,NULL,'$9B Drone Order- Open Quick','rick@mavrix.one','Rick','(No content)','(No content)',1,0,0,0,0,0,'2025-12-04 22:55:50','2025-12-04 22:55:58','2025-12-04 22:55:58','2025-12-04 23:06:12',NULL,NULL,NULL);
/*!40000 ALTER TABLE `emails` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `employee_issues`
--

DROP TABLE IF EXISTS `employee_issues`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `employee_issues` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `employee_id` int(10) unsigned DEFAULT NULL,
  `reported_by` int(10) unsigned DEFAULT NULL,
  `issue_type` enum('disciplinary','grievance','conflict','performance','attendance','policy-violation','harassment','safety','other') NOT NULL,
  `severity` enum('low','medium','high','critical') DEFAULT 'medium',
  `title` varchar(255) NOT NULL,
  `description` text NOT NULL,
  `action_taken` text DEFAULT NULL,
  `resolution` text DEFAULT NULL,
  `status` enum('reported','investigating','in-progress','resolved','closed','escalated') DEFAULT 'reported',
  `reported_date` date NOT NULL,
  `resolved_date` date DEFAULT NULL,
  `is_confidential` tinyint(1) DEFAULT 1,
  `witnesses` text DEFAULT NULL,
  `documents_path` varchar(500) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_employee` (`employee_id`),
  KEY `idx_type` (`issue_type`),
  KEY `idx_status` (`status`),
  KEY `idx_severity` (`severity`),
  CONSTRAINT `employee_issues_ibfk_1` FOREIGN KEY (`employee_id`) REFERENCES `employees` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `employee_issues`
--

LOCK TABLES `employee_issues` WRITE;
/*!40000 ALTER TABLE `employee_issues` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `employee_issues` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `employee_separations`
--

DROP TABLE IF EXISTS `employee_separations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `employee_separations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `employee_id` int(10) unsigned NOT NULL,
  `separation_type` enum('resignation','termination','retirement','layoff','end-of-contract','other') NOT NULL,
  `notice_date` date DEFAULT NULL,
  `last_working_date` date NOT NULL,
  `reason` text DEFAULT NULL,
  `exit_interview_completed` tinyint(1) DEFAULT 0,
  `exit_interview_notes` text DEFAULT NULL,
  `rehire_eligible` tinyint(1) DEFAULT 1,
  `final_paycheck_processed` tinyint(1) DEFAULT 0,
  `benefits_terminated` tinyint(1) DEFAULT 0,
  `equipment_returned` tinyint(1) DEFAULT 0,
  `access_revoked` tinyint(1) DEFAULT 0,
  `status` enum('pending','in-progress','completed') DEFAULT 'pending',
  `processed_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_employee` (`employee_id`),
  KEY `idx_type` (`separation_type`),
  KEY `idx_last_working_date` (`last_working_date`),
  CONSTRAINT `employee_separations_ibfk_1` FOREIGN KEY (`employee_id`) REFERENCES `employees` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `employee_separations`
--

LOCK TABLES `employee_separations` WRITE;
/*!40000 ALTER TABLE `employee_separations` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `employee_separations` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `employee_training`
--

DROP TABLE IF EXISTS `employee_training`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `employee_training` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `employee_id` int(10) unsigned NOT NULL,
  `training_program_id` int(10) unsigned NOT NULL,
  `assigned_date` date DEFAULT NULL,
  `start_date` date DEFAULT NULL,
  `completion_date` date DEFAULT NULL,
  `due_date` date DEFAULT NULL,
  `status` enum('assigned','in-progress','completed','failed','cancelled','expired') DEFAULT 'assigned',
  `score` decimal(5,2) DEFAULT NULL,
  `certificate_path` varchar(500) DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `assigned_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_employee` (`employee_id`),
  KEY `idx_training` (`training_program_id`),
  KEY `idx_status` (`status`),
  CONSTRAINT `employee_training_ibfk_1` FOREIGN KEY (`employee_id`) REFERENCES `employees` (`id`) ON DELETE CASCADE,
  CONSTRAINT `employee_training_ibfk_2` FOREIGN KEY (`training_program_id`) REFERENCES `training_programs` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `employee_training`
--

LOCK TABLES `employee_training` WRITE;
/*!40000 ALTER TABLE `employee_training` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `employee_training` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `employees`
--

DROP TABLE IF EXISTS `employees`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `employees` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `secondary_email` varchar(255) DEFAULT NULL,
  `employee_id` varchar(50) NOT NULL,
  `employee_number` varchar(50) DEFAULT NULL,
  `department_id` int(10) unsigned DEFAULT NULL,
  `position` varchar(100) DEFAULT NULL,
  `hire_date` date NOT NULL,
  `termination_date` date DEFAULT NULL,
  `salary` decimal(15,2) DEFAULT NULL,
  `salary_type` enum('hourly','monthly','yearly') DEFAULT 'monthly',
  `status` enum('active','on_leave','terminated') DEFAULT 'active',
  `employment_type` enum('full_time','part_time','contract','intern') DEFAULT 'full_time',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  `position_id` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `employee_id` (`employee_id`),
  UNIQUE KEY `user_id` (`user_id`),
  KEY `department_id` (`department_id`),
  KEY `idx_secondary_email` (`secondary_email`),
  KEY `idx_position_id` (`position_id`),
  KEY `idx_employees_deleted_at` (`deleted_at`),
  CONSTRAINT `employees_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE,
  CONSTRAINT `employees_ibfk_2` FOREIGN KEY (`department_id`) REFERENCES `departments` (`id`) ON DELETE SET NULL,
  CONSTRAINT `fk_employees_position` FOREIGN KEY (`position_id`) REFERENCES `positions` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `employees`
--

LOCK TABLES `employees` WRITE;
/*!40000 ALTER TABLE `employees` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `employees` VALUES
(8,2,NULL,'EMP-8662',NULL,1,'','2025-08-04',NULL,NULL,'monthly','active','full_time','2025-10-27 15:28:02','2025-11-15 18:19:18',NULL,1),
(15,4,NULL,'EMP-3910',NULL,1,'','2025-08-04',NULL,NULL,'monthly','active','full_time','2025-11-01 00:25:00','2025-11-15 18:15:59',NULL,4),
(17,7,NULL,'EMP-1645',NULL,4,'','2025-11-14',NULL,NULL,'monthly','active','full_time','2025-11-14 21:00:43','2025-11-15 18:23:48',NULL,117),
(18,8,NULL,'EMP-1196',NULL,4,'','2025-11-14',NULL,NULL,'monthly','active','full_time','2025-11-14 21:01:16','2025-11-15 18:24:56',NULL,111),
(19,21,NULL,'EMP-2154',NULL,5,'','2025-11-15',NULL,NULL,'monthly','active','full_time','2025-11-15 23:53:17','2025-11-15 23:53:48',NULL,6);
/*!40000 ALTER TABLE `employees` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `employment_contracts`
--

DROP TABLE IF EXISTS `employment_contracts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `employment_contracts` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `employee_id` int(10) unsigned NOT NULL,
  `offer_id` int(10) unsigned DEFAULT NULL,
  `contract_type` enum('full-time','part-time','contract','temporary','intern') DEFAULT 'full-time',
  `start_date` date NOT NULL,
  `end_date` date DEFAULT NULL,
  `probation_end_date` date DEFAULT NULL,
  `position` varchar(255) NOT NULL,
  `department` varchar(100) DEFAULT NULL,
  `salary` decimal(12,2) NOT NULL,
  `pay_frequency` enum('hourly','daily','weekly','bi-weekly','monthly','annual') DEFAULT 'monthly',
  `work_hours_per_week` decimal(5,2) DEFAULT 40.00,
  `vacation_days` int(11) DEFAULT NULL,
  `sick_days` int(11) DEFAULT NULL,
  `contract_file_path` varchar(500) DEFAULT NULL,
  `signed_contract_path` varchar(500) DEFAULT NULL,
  `status` enum('draft','active','completed','terminated','renewed') DEFAULT 'draft',
  `termination_date` date DEFAULT NULL,
  `termination_reason` text DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `offer_id` (`offer_id`),
  KEY `idx_employee` (`employee_id`),
  KEY `idx_status` (`status`),
  KEY `idx_start_date` (`start_date`),
  CONSTRAINT `employment_contracts_ibfk_1` FOREIGN KEY (`employee_id`) REFERENCES `employees` (`id`) ON DELETE CASCADE,
  CONSTRAINT `employment_contracts_ibfk_2` FOREIGN KEY (`offer_id`) REFERENCES `employment_offers` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `employment_contracts`
--

LOCK TABLES `employment_contracts` WRITE;
/*!40000 ALTER TABLE `employment_contracts` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `employment_contracts` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `employment_offers`
--

DROP TABLE IF EXISTS `employment_offers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `employment_offers` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `application_id` int(10) unsigned NOT NULL,
  `job_position_id` int(10) unsigned NOT NULL,
  `offer_date` date NOT NULL,
  `expiry_date` date DEFAULT NULL,
  `start_date` date DEFAULT NULL,
  `salary` decimal(12,2) NOT NULL,
  `bonus` decimal(12,2) DEFAULT NULL,
  `equity` varchar(100) DEFAULT NULL,
  `benefits_summary` text DEFAULT NULL,
  `contract_type` enum('full-time','part-time','contract','temporary') DEFAULT 'full-time',
  `probation_period` int(11) DEFAULT NULL COMMENT 'Probation period in months',
  `status` enum('draft','pending','accepted','rejected','countered','withdrawn','expired') DEFAULT 'draft',
  `offer_letter_path` varchar(500) DEFAULT NULL,
  `signed_offer_path` varchar(500) DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `sent_at` timestamp NULL DEFAULT NULL,
  `responded_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `job_position_id` (`job_position_id`),
  KEY `idx_application` (`application_id`),
  KEY `idx_status` (`status`),
  KEY `idx_offer_date` (`offer_date`),
  CONSTRAINT `employment_offers_ibfk_1` FOREIGN KEY (`application_id`) REFERENCES `job_applications` (`id`) ON DELETE CASCADE,
  CONSTRAINT `employment_offers_ibfk_2` FOREIGN KEY (`job_position_id`) REFERENCES `job_positions` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `employment_offers`
--

LOCK TABLES `employment_offers` WRITE;
/*!40000 ALTER TABLE `employment_offers` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `employment_offers` VALUES
(2,1,1,'2025-11-02',NULL,'2025-11-24',0.00,NULL,NULL,'','full-time',NULL,'pending',NULL,NULL,'Offer letter for the job',NULL,NULL,'2025-11-02 12:38:34','2025-11-02 12:38:34');
/*!40000 ALTER TABLE `employment_offers` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `equipment`
--

DROP TABLE IF EXISTS `equipment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `equipment` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `business_line_id` int(10) unsigned NOT NULL DEFAULT 1,
  `equipment_line_id` int(10) unsigned DEFAULT NULL COMMENT 'Optional - equipment can be standalone or in a line',
  `asset_tag` varchar(50) NOT NULL,
  `name` varchar(100) NOT NULL,
  `serial_number` varchar(100) DEFAULT NULL,
  `manufacturer` varchar(100) DEFAULT NULL,
  `model` varchar(100) DEFAULT NULL,
  `purchase_date` date DEFAULT NULL,
  `purchase_cost` decimal(15,2) DEFAULT 0.00,
  `current_value` decimal(15,2) DEFAULT 0.00,
  `sq_ft` decimal(10,2) DEFAULT 0.00 COMMENT 'Actual square footage occupied',
  `rated_capacity_per_hour` decimal(10,2) DEFAULT NULL COMMENT 'Rated production capacity',
  `actual_output_per_hour` decimal(10,2) DEFAULT NULL COMMENT 'Actual average output',
  `capacity_per_hour` decimal(10,2) DEFAULT NULL COMMENT 'Equipment-specific capacity override',
  `efficiency_factor` decimal(3,2) DEFAULT NULL COMMENT 'Equipment-specific efficiency override',
  `status` enum('operational','maintenance','down','retired') DEFAULT 'operational',
  `notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `available_hours_per_day` decimal(5,2) DEFAULT 16.00 COMMENT 'Hours available for production per day',
  `shift_configuration` varchar(50) DEFAULT '2-shift' COMMENT 'Shift setup: 1-shift, 2-shift, 3-shift, 24/7',
  `setup_time_hours` decimal(5,2) DEFAULT 0.00 COMMENT 'Time needed to switch products (hours)',
  `maintenance_schedule` text DEFAULT NULL COMMENT 'Planned maintenance schedule (JSON or text)',
  `utilization_rate` decimal(5,2) DEFAULT 0.00 COMMENT 'Current utilization percentage (0-100)',
  `annual_demand_units` decimal(12,2) DEFAULT 0.00 COMMENT 'Total annual demand for this equipment',
  `operating_days_per_year` int(11) DEFAULT 250 COMMENT 'Operating days per year',
  `operating_hours_per_day` decimal(5,2) DEFAULT 16.00 COMMENT 'Operating hours per day',
  `operators_per_machine` decimal(4,2) DEFAULT 1.00 COMMENT 'Number of operators required per machine',
  `skill_level_required` varchar(50) DEFAULT 'basic' COMMENT 'Skill level: basic, intermediate, advanced, expert',
  `setup_operators_required` decimal(4,2) DEFAULT 0.00 COMMENT 'Operators needed for changeovers',
  `supervisor_ratio` decimal(6,2) DEFAULT 0.00 COMMENT 'Supervisors per X machines (e.g., 0.1 = 1 supervisor per 10 machines)',
  `planned_maintenance_hours_per_year` decimal(8,2) DEFAULT 0.00 COMMENT 'Scheduled maintenance hours annually',
  `avg_unplanned_downtime_hours_per_year` decimal(8,2) DEFAULT 0.00 COMMENT 'Historical average unplanned downtime',
  `ramp_up_time_hours` decimal(5,2) DEFAULT 0.00 COMMENT 'Time to reach full production speed',
  `ramp_down_time_hours` decimal(5,2) DEFAULT 0.00 COMMENT 'Shutdown time',
  `quality_control_time_percent` decimal(5,2) DEFAULT 0.00 COMMENT 'Percentage of time for QC activities',
  `scrap_rate_percent` decimal(5,2) DEFAULT 0.00 COMMENT 'Expected defect/scrap rate',
  `demand_spike_buffer_percent` decimal(5,2) DEFAULT 15.00 COMMENT 'Safety buffer for demand spikes',
  `overall_equipment_effectiveness` decimal(5,2) DEFAULT 85.00 COMMENT 'OEE score (0-100)',
  `changeover_time_hours` decimal(5,2) DEFAULT 0.00 COMMENT 'Typical product changeover time',
  `min_batch_size` int(11) DEFAULT 1 COMMENT 'Minimum production batch',
  `max_batch_size` int(11) DEFAULT NULL COMMENT 'Maximum production batch',
  `power_consumption_kw` decimal(8,2) DEFAULT 0.00 COMMENT 'Power consumption in kilowatts per hour',
  `energy_cost_per_hour` decimal(10,2) DEFAULT 0.00 COMMENT 'Calculated energy cost per hour',
  `operating_cost_per_hour` decimal(10,2) DEFAULT 0.00 COMMENT 'Total operating cost per hour',
  PRIMARY KEY (`id`),
  UNIQUE KEY `asset_tag` (`asset_tag`),
  KEY `equipment_line_id` (`equipment_line_id`),
  KEY `serial_number` (`serial_number`),
  KEY `status` (`status`),
  KEY `idx_equipment_business_line` (`business_line_id`),
  KEY `idx_equipment_line` (`equipment_line_id`),
  KEY `idx_asset_tag_status` (`asset_tag`,`status`),
  KEY `idx_equipment_annual_demand` (`annual_demand_units`),
  KEY `idx_equipment_skill_level` (`skill_level_required`),
  KEY `idx_equipment_oee` (`overall_equipment_effectiveness`),
  CONSTRAINT `fk_equipment_business_line` FOREIGN KEY (`business_line_id`) REFERENCES `business_lines` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_equipment_line_optional` FOREIGN KEY (`equipment_line_id`) REFERENCES `equipment_lines` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Individual equipment units with actual sq ft';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `equipment`
--

LOCK TABLES `equipment` WRITE;
/*!40000 ALTER TABLE `equipment` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `equipment` VALUES
(1,1,5,'IndCylind','Machine #1','RR-123','RedRiver','4','2025-10-29',0.00,0.00,2200.00,15.00,NULL,NULL,NULL,'operational','','2025-10-27 22:07:39','2025-11-13 16:26:19',16.00,'2-shift',0.00,NULL,0.00,0.00,250,16.00,1.00,'basic',0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,15.00,85.00,0.00,1,NULL,0.00,0.00,0.00);
/*!40000 ALTER TABLE `equipment` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Temporary table structure for view `equipment_benchmarking_view`
--

DROP TABLE IF EXISTS `equipment_benchmarking_view`;
/*!50001 DROP VIEW IF EXISTS `equipment_benchmarking_view`*/;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8mb4;
/*!50001 CREATE VIEW `equipment_benchmarking_view` AS SELECT
 1 AS `current_equipment_id`,
  1 AS `current_equipment_name`,
  1 AS `asset_tag`,
  1 AS `equipment_line`,
  1 AS `current_capacity`,
  1 AS `current_efficiency`,
  1 AS `current_scrap_rate`,
  1 AS `current_downtime`,
  1 AS `market_research_id`,
  1 AS `market_equipment_name`,
  1 AS `market_capacity`,
  1 AS `market_efficiency`,
  1 AS `market_scrap_rate`,
  1 AS `capacity_gap_percent`,
  1 AS `efficiency_gap_percent`,
  1 AS `scrap_rate_gap`,
  1 AS `vendor_name`,
  1 AS `upgrade_cost` */;
SET character_set_client = @saved_cs_client;

--
-- Temporary table structure for view `equipment_capacity_view`
--

DROP TABLE IF EXISTS `equipment_capacity_view`;
/*!50001 DROP VIEW IF EXISTS `equipment_capacity_view`*/;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8mb4;
/*!50001 CREATE VIEW `equipment_capacity_view` AS SELECT
 1 AS `equipment_id`,
  1 AS `asset_tag`,
  1 AS `equipment_name`,
  1 AS `status`,
  1 AS `serial_number`,
  1 AS `manufacturer`,
  1 AS `model`,
  1 AS `business_line_id`,
  1 AS `business_line_name`,
  1 AS `equipment_line_id`,
  1 AS `equipment_line_name`,
  1 AS `equipment_line_code`,
  1 AS `location_id`,
  1 AS `location_name`,
  1 AS `rated_capacity_per_hour`,
  1 AS `actual_output_per_hour`,
  1 AS `efficiency_factor`,
  1 AS `available_hours_per_day`,
  1 AS `operating_days_per_year`,
  1 AS `operating_hours_per_day`,
  1 AS `shift_configuration`,
  1 AS `setup_time_hours`,
  1 AS `operators_per_machine`,
  1 AS `skill_level_required`,
  1 AS `setup_operators_required`,
  1 AS `supervisor_ratio`,
  1 AS `planned_maintenance_hours_per_year`,
  1 AS `avg_unplanned_downtime_hours_per_year`,
  1 AS `ramp_up_time_hours`,
  1 AS `ramp_down_time_hours`,
  1 AS `quality_control_time_percent`,
  1 AS `scrap_rate_percent`,
  1 AS `demand_spike_buffer_percent`,
  1 AS `overall_equipment_effectiveness`,
  1 AS `changeover_time_hours`,
  1 AS `min_batch_size`,
  1 AS `max_batch_size`,
  1 AS `power_consumption_kw`,
  1 AS `energy_cost_per_hour`,
  1 AS `operating_cost_per_hour`,
  1 AS `annual_demand_units`,
  1 AS `adjusted_production_rate`,
  1 AS `effective_hours_available_per_day`,
  1 AS `effective_hours_available_per_year`,
  1 AS `daily_capacity_units`,
  1 AS `annual_capacity_units`,
  1 AS `utilization_rate`,
  1 AS `available_daily_capacity`,
  1 AS `daily_demand_units`,
  1 AS `hours_required_per_day`,
  1 AS `machines_required`,
  1 AS `operators_required`,
  1 AS `availability_status`,
  1 AS `created_at`,
  1 AS `updated_at` */;
SET character_set_client = @saved_cs_client;

--
-- Table structure for table `equipment_downtime_log`
--

DROP TABLE IF EXISTS `equipment_downtime_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `equipment_downtime_log` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `equipment_id` int(10) unsigned NOT NULL,
  `downtime_start` datetime NOT NULL,
  `downtime_end` datetime DEFAULT NULL,
  `downtime_hours` decimal(8,2) GENERATED ALWAYS AS (timestampdiff(MINUTE,`downtime_start`,`downtime_end`) / 60) STORED,
  `downtime_type` enum('maintenance','breakdown','quality_issue','changeover','material_shortage','other') DEFAULT 'other',
  `reason` varchar(255) DEFAULT NULL,
  `impact_units_lost` int(11) DEFAULT 0,
  `cost_impact` decimal(10,2) DEFAULT 0.00,
  `resolved_by` int(10) unsigned DEFAULT NULL COMMENT 'User ID who resolved the issue',
  `notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `resolved_by` (`resolved_by`),
  KEY `idx_equipment_date` (`equipment_id`,`downtime_start`),
  KEY `idx_downtime_type` (`downtime_type`),
  KEY `idx_downtime_type_date` (`downtime_type`,`downtime_start`),
  CONSTRAINT `equipment_downtime_log_ibfk_1` FOREIGN KEY (`equipment_id`) REFERENCES `equipment` (`id`) ON DELETE CASCADE,
  CONSTRAINT `equipment_downtime_log_ibfk_2` FOREIGN KEY (`resolved_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `equipment_downtime_log`
--

LOCK TABLES `equipment_downtime_log` WRITE;
/*!40000 ALTER TABLE `equipment_downtime_log` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `equipment_downtime_log` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Temporary table structure for view `equipment_line_capacity_summary`
--

DROP TABLE IF EXISTS `equipment_line_capacity_summary`;
/*!50001 DROP VIEW IF EXISTS `equipment_line_capacity_summary`*/;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8mb4;
/*!50001 CREATE VIEW `equipment_line_capacity_summary` AS SELECT
 1 AS `equipment_line_id`,
  1 AS `equipment_line_name`,
  1 AS `equipment_line_code`,
  1 AS `equipment_line_asset_number`,
  1 AS `line_capacity_per_hour`,
  1 AS `line_efficiency_factor`,
  1 AS `business_line_id`,
  1 AS `business_line_name`,
  1 AS `total_equipment`,
  1 AS `operational_equipment`,
  1 AS `avg_utilization_rate`,
  1 AS `total_daily_capacity`,
  1 AS `available_daily_capacity` */;
SET character_set_client = @saved_cs_client;

--
-- Table structure for table `equipment_lines`
--

DROP TABLE IF EXISTS `equipment_lines`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `equipment_lines` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `business_line_id` int(10) unsigned NOT NULL,
  `name` varchar(100) NOT NULL,
  `code` varchar(50) NOT NULL,
  `asset_number` varchar(50) DEFAULT NULL COMMENT 'Asset tracking number for this line',
  `description` text DEFAULT NULL,
  `capacity_per_hour` decimal(10,2) DEFAULT 0.00 COMMENT 'Standard capacity per hour for this line',
  `efficiency_factor` decimal(3,2) DEFAULT 0.85 COMMENT 'Typical efficiency (0.00-1.00, e.g., 0.85 = 85%)',
  `manual_sq_ft` decimal(10,2) DEFAULT NULL COMMENT 'User-entered square footage (optional)',
  `status` enum('active','inactive') DEFAULT 'active',
  `notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `code` (`code`),
  KEY `business_line_id` (`business_line_id`),
  KEY `status` (`status`),
  KEY `idx_equipment_lines_business_line` (`business_line_id`),
  CONSTRAINT `equipment_lines_ibfk_1` FOREIGN KEY (`business_line_id`) REFERENCES `business_lines` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_equipment_line_business_line` FOREIGN KEY (`business_line_id`) REFERENCES `business_lines` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Equipment lines - groups of equipment (can be single type or mixed)';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `equipment_lines`
--

LOCK TABLES `equipment_lines` WRITE;
/*!40000 ALTER TABLE `equipment_lines` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `equipment_lines` VALUES
(1,1,'Large Prismatic','LgPrism',NULL,'',NULL,NULL,9688.00,'active','','2025-10-27 21:10:53','2025-10-27 21:59:26'),
(2,1,'Large Cylindrical','LgCylind',NULL,'',NULL,NULL,5200.00,'active','','2025-10-27 21:11:27','2025-10-27 21:59:26'),
(3,1,'Small Cylindrical','SmCylind',NULL,'',NULL,NULL,3875.00,'active','','2025-10-27 21:41:32','2025-10-27 21:59:26'),
(4,1,'Individual Prismatic','IndPrism',NULL,'',NULL,NULL,3900.00,'active','','2025-10-27 21:42:02','2025-10-27 21:59:26'),
(5,1,'Individual Cylindrical','IndCylind',NULL,'',NULL,NULL,2200.00,'active','','2025-10-27 21:42:24','2025-10-27 21:59:26'),
(6,1,'Testing Machine','Testing',NULL,'',0.00,0.85,500.00,'active','','2025-11-11 16:47:10','2025-11-11 16:47:18');
/*!40000 ALTER TABLE `equipment_lines` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `equipment_market_research`
--

DROP TABLE IF EXISTS `equipment_market_research`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `equipment_market_research` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `vendor_id` int(10) unsigned DEFAULT NULL,
  `equipment_name` varchar(255) NOT NULL,
  `model_number` varchar(100) DEFAULT NULL,
  `equipment_type` varchar(100) DEFAULT NULL,
  `rated_capacity_per_hour` decimal(10,2) DEFAULT NULL,
  `actual_capacity_per_hour` decimal(10,2) DEFAULT NULL COMMENT 'Real-world from research',
  `efficiency_rating` decimal(5,4) DEFAULT NULL COMMENT 'Reported efficiency 0-1',
  `reliability_mtbf_hours` decimal(10,2) DEFAULT NULL COMMENT 'Mean time between failures',
  `purchase_price` decimal(15,2) DEFAULT NULL,
  `installation_cost` decimal(15,2) DEFAULT NULL,
  `annual_maintenance_cost` decimal(15,2) DEFAULT NULL,
  `energy_consumption_kw` decimal(8,2) DEFAULT NULL,
  `operators_required` decimal(4,2) DEFAULT NULL,
  `typical_scrap_rate_percent` decimal(5,2) DEFAULT NULL,
  `quality_rating` decimal(3,2) DEFAULT NULL COMMENT 'Rating 1-5',
  `floor_space_required_sqft` decimal(10,2) DEFAULT NULL,
  `weight_lbs` decimal(10,2) DEFAULT NULL,
  `power_requirements` varchar(100) DEFAULT NULL,
  `lead_time_weeks` int(11) DEFAULT NULL,
  `warranty_years` decimal(4,2) DEFAULT NULL,
  `technology_generation` varchar(50) DEFAULT NULL COMMENT 'Latest, Current, Legacy',
  `competitive_advantages` text DEFAULT NULL,
  `known_issues` text DEFAULT NULL,
  `research_date` date DEFAULT NULL,
  `research_source` varchar(255) DEFAULT NULL COMMENT 'Trade show, spec sheet, competitor intel, etc',
  `confidence_level` enum('high','medium','low') DEFAULT 'medium',
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `created_by` (`created_by`),
  KEY `idx_equipment_type` (`equipment_type`),
  KEY `idx_vendor` (`vendor_id`),
  KEY `idx_research_date` (`research_date`),
  CONSTRAINT `equipment_market_research_ibfk_1` FOREIGN KEY (`vendor_id`) REFERENCES `equipment_vendors` (`id`) ON DELETE SET NULL,
  CONSTRAINT `equipment_market_research_ibfk_2` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `equipment_market_research`
--

LOCK TABLES `equipment_market_research` WRITE;
/*!40000 ALTER TABLE `equipment_market_research` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `equipment_market_research` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `equipment_product_demand`
--

DROP TABLE IF EXISTS `equipment_product_demand`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `equipment_product_demand` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `equipment_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned NOT NULL,
  `annual_demand_units` decimal(12,2) NOT NULL DEFAULT 0.00,
  `production_rate_per_hour` decimal(10,2) DEFAULT NULL COMMENT 'Override equipment default rate',
  `scrap_rate_percent` decimal(5,2) DEFAULT 0.00 COMMENT 'Product-specific scrap rate',
  `changeover_time_hours` decimal(5,2) DEFAULT 0.00 COMMENT 'Product-specific changeover time',
  `notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_equipment_product` (`equipment_id`,`product_id`),
  KEY `product_id` (`product_id`),
  CONSTRAINT `equipment_product_demand_ibfk_1` FOREIGN KEY (`equipment_id`) REFERENCES `equipment` (`id`) ON DELETE CASCADE,
  CONSTRAINT `equipment_product_demand_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `equipment_product_demand`
--

LOCK TABLES `equipment_product_demand` WRITE;
/*!40000 ALTER TABLE `equipment_product_demand` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `equipment_product_demand` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `equipment_replacement_analysis`
--

DROP TABLE IF EXISTS `equipment_replacement_analysis`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `equipment_replacement_analysis` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `analysis_name` varchar(255) NOT NULL,
  `current_equipment_id` int(10) unsigned DEFAULT NULL,
  `current_equipment_age_years` decimal(5,2) DEFAULT NULL,
  `current_annual_output` decimal(12,2) DEFAULT NULL,
  `current_efficiency_factor` decimal(5,4) DEFAULT NULL,
  `current_scrap_rate_percent` decimal(5,2) DEFAULT NULL,
  `current_annual_downtime_hours` decimal(8,2) DEFAULT NULL,
  `current_annual_maintenance_cost` decimal(15,2) DEFAULT NULL,
  `current_annual_energy_cost` decimal(15,2) DEFAULT NULL,
  `current_annual_labor_cost` decimal(15,2) DEFAULT NULL,
  `current_book_value` decimal(15,2) DEFAULT NULL,
  `current_salvage_value` decimal(15,2) DEFAULT NULL,
  `proposed_equipment_research_id` int(10) unsigned DEFAULT NULL,
  `proposed_purchase_price` decimal(15,2) DEFAULT NULL,
  `proposed_installation_cost` decimal(15,2) DEFAULT NULL,
  `proposed_training_cost` decimal(15,2) DEFAULT NULL,
  `proposed_annual_output` decimal(12,2) DEFAULT NULL,
  `proposed_efficiency_factor` decimal(5,4) DEFAULT NULL,
  `proposed_scrap_rate_percent` decimal(5,2) DEFAULT NULL,
  `proposed_annual_downtime_hours` decimal(8,2) DEFAULT NULL,
  `proposed_annual_maintenance_cost` decimal(15,2) DEFAULT NULL,
  `proposed_annual_energy_cost` decimal(15,2) DEFAULT NULL,
  `proposed_annual_labor_cost` decimal(15,2) DEFAULT NULL,
  `proposed_useful_life_years` int(11) DEFAULT NULL,
  `total_investment` decimal(15,2) DEFAULT NULL COMMENT 'Purchase + Install + Training - Salvage',
  `annual_cost_savings` decimal(15,2) DEFAULT NULL COMMENT 'Maintenance + Energy + Labor savings',
  `annual_revenue_increase` decimal(15,2) DEFAULT NULL COMMENT 'From capacity/quality gains',
  `annual_net_benefit` decimal(15,2) DEFAULT NULL COMMENT 'Savings + Revenue increase',
  `simple_payback_years` decimal(6,2) DEFAULT NULL,
  `roi_percent` decimal(8,2) DEFAULT NULL,
  `npv` decimal(15,2) DEFAULT NULL COMMENT 'Net present value',
  `irr_percent` decimal(8,2) DEFAULT NULL COMMENT 'Internal rate of return',
  `discount_rate` decimal(5,2) DEFAULT 10.00,
  `analysis_period_years` int(11) DEFAULT 10,
  `risk_level` enum('low','medium','high') DEFAULT 'medium',
  `risk_notes` text DEFAULT NULL,
  `recommendation` enum('approved','rejected','pending','deferred') DEFAULT 'pending',
  `recommended_by` int(10) unsigned DEFAULT NULL,
  `recommended_date` date DEFAULT NULL,
  `approved_by` int(10) unsigned DEFAULT NULL,
  `approved_date` date DEFAULT NULL,
  `implementation_date` date DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `proposed_equipment_research_id` (`proposed_equipment_research_id`),
  KEY `recommended_by` (`recommended_by`),
  KEY `approved_by` (`approved_by`),
  KEY `created_by` (`created_by`),
  KEY `idx_current_equipment` (`current_equipment_id`),
  KEY `idx_recommendation` (`recommendation`),
  KEY `idx_payback` (`simple_payback_years`),
  CONSTRAINT `equipment_replacement_analysis_ibfk_1` FOREIGN KEY (`current_equipment_id`) REFERENCES `equipment` (`id`) ON DELETE SET NULL,
  CONSTRAINT `equipment_replacement_analysis_ibfk_2` FOREIGN KEY (`proposed_equipment_research_id`) REFERENCES `equipment_market_research` (`id`) ON DELETE SET NULL,
  CONSTRAINT `equipment_replacement_analysis_ibfk_3` FOREIGN KEY (`recommended_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `equipment_replacement_analysis_ibfk_4` FOREIGN KEY (`approved_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `equipment_replacement_analysis_ibfk_5` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `equipment_replacement_analysis`
--

LOCK TABLES `equipment_replacement_analysis` WRITE;
/*!40000 ALTER TABLE `equipment_replacement_analysis` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `equipment_replacement_analysis` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `equipment_technology_trends`
--

DROP TABLE IF EXISTS `equipment_technology_trends`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `equipment_technology_trends` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `trend_category` varchar(100) NOT NULL COMMENT 'Automation, AI/ML, IoT, Efficiency, etc',
  `trend_title` varchar(255) NOT NULL,
  `trend_description` text DEFAULT NULL,
  `impact_level` enum('transformational','significant','moderate','minor') DEFAULT 'moderate',
  `adoption_stage` enum('emerging','early_adoption','mainstream','mature') DEFAULT 'emerging',
  `time_to_mainstream_years` decimal(4,1) DEFAULT NULL,
  `affected_equipment_types` text DEFAULT NULL COMMENT 'Which equipment this affects',
  `potential_benefits` text DEFAULT NULL,
  `implementation_challenges` text DEFAULT NULL,
  `estimated_cost_premium_percent` decimal(5,2) DEFAULT NULL COMMENT 'Cost vs traditional equipment',
  `source` varchar(255) DEFAULT NULL COMMENT 'Where trend identified',
  `source_date` date DEFAULT NULL,
  `confidence_level` enum('high','medium','low') DEFAULT 'medium',
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `created_by` (`created_by`),
  KEY `idx_category` (`trend_category`),
  KEY `idx_impact` (`impact_level`),
  KEY `idx_adoption` (`adoption_stage`),
  CONSTRAINT `equipment_technology_trends_ibfk_1` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `equipment_technology_trends`
--

LOCK TABLES `equipment_technology_trends` WRITE;
/*!40000 ALTER TABLE `equipment_technology_trends` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `equipment_technology_trends` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `equipment_utilization`
--

DROP TABLE IF EXISTS `equipment_utilization`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `equipment_utilization` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `equipment_id` int(10) unsigned NOT NULL,
  `date` date NOT NULL,
  `shift` varchar(20) DEFAULT NULL COMMENT 'e.g., Day, Night, Shift 1, Shift 2',
  `hours_available` decimal(5,2) DEFAULT 0.00 COMMENT 'Total hours in shift',
  `hours_operating` decimal(5,2) DEFAULT 0.00 COMMENT 'Hours actually running',
  `hours_idle` decimal(5,2) DEFAULT 0.00 COMMENT 'Hours idle/waiting',
  `hours_maintenance` decimal(5,2) DEFAULT 0.00 COMMENT 'Hours in maintenance',
  `hours_down` decimal(5,2) DEFAULT 0.00 COMMENT 'Hours broken down',
  `units_produced` int(11) DEFAULT 0 COMMENT 'Units produced during this period',
  `utilization_rate` decimal(5,2) GENERATED ALWAYS AS (case when `hours_available` > 0 then `hours_operating` / `hours_available` * 100 else 0 end) STORED COMMENT 'Calculated utilization percentage',
  `notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `equipment_date_shift` (`equipment_id`,`date`,`shift`),
  KEY `equipment_id` (`equipment_id`),
  KEY `date` (`date`),
  CONSTRAINT `equipment_utilization_ibfk_1` FOREIGN KEY (`equipment_id`) REFERENCES `equipment` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Tracks equipment utilization over time';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `equipment_utilization`
--

LOCK TABLES `equipment_utilization` WRITE;
/*!40000 ALTER TABLE `equipment_utilization` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `equipment_utilization` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `equipment_vendors`
--

DROP TABLE IF EXISTS `equipment_vendors`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `equipment_vendors` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `vendor_name` varchar(255) NOT NULL,
  `country` varchar(100) DEFAULT NULL,
  `website` varchar(255) DEFAULT NULL,
  `contact_name` varchar(255) DEFAULT NULL,
  `contact_email` varchar(255) DEFAULT NULL,
  `contact_phone` varchar(50) DEFAULT NULL,
  `specialization` varchar(255) DEFAULT NULL,
  `reliability_rating` decimal(3,2) DEFAULT NULL COMMENT 'Rating 1-5',
  `support_quality_rating` decimal(3,2) DEFAULT NULL COMMENT 'Rating 1-5',
  `price_competitiveness_rating` decimal(3,2) DEFAULT NULL COMMENT 'Rating 1-5',
  `notes` text DEFAULT NULL,
  `is_active` tinyint(1) DEFAULT 1,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_vendor_name` (`vendor_name`),
  KEY `idx_active` (`is_active`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `equipment_vendors`
--

LOCK TABLES `equipment_vendors` WRITE;
/*!40000 ALTER TABLE `equipment_vendors` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `equipment_vendors` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `exchange_rates`
--

DROP TABLE IF EXISTS `exchange_rates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `exchange_rates` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `from_currency_id` int(10) unsigned NOT NULL,
  `to_currency_id` int(10) unsigned NOT NULL,
  `rate` decimal(20,6) NOT NULL,
  `effective_date` date NOT NULL,
  `source` varchar(50) DEFAULT 'manual' COMMENT 'manual, api, import',
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_rate` (`from_currency_id`,`to_currency_id`,`effective_date`),
  KEY `to_currency_id` (`to_currency_id`),
  KEY `created_by` (`created_by`),
  KEY `idx_currencies` (`from_currency_id`,`to_currency_id`),
  KEY `idx_effective_date` (`effective_date`),
  CONSTRAINT `exchange_rates_ibfk_1` FOREIGN KEY (`from_currency_id`) REFERENCES `currencies` (`id`) ON DELETE CASCADE,
  CONSTRAINT `exchange_rates_ibfk_2` FOREIGN KEY (`to_currency_id`) REFERENCES `currencies` (`id`) ON DELETE CASCADE,
  CONSTRAINT `exchange_rates_ibfk_3` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `exchange_rates`
--

LOCK TABLES `exchange_rates` WRITE;
/*!40000 ALTER TABLE `exchange_rates` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `exchange_rates` VALUES
(1,1,2,0.863000,'2025-11-12','api','Imported from exchangerate-api.com',1,'2025-11-12 17:29:39','2025-11-12 17:48:00'),
(2,1,3,0.760000,'2025-11-12','api','Imported from exchangerate-api.com',1,'2025-11-12 17:29:39','2025-11-12 17:48:00'),
(3,1,4,154.110000,'2025-11-12','api','Imported from exchangerate-api.com',1,'2025-11-12 17:29:39','2025-11-12 17:48:00'),
(4,1,5,1.400000,'2025-11-12','api','Imported from exchangerate-api.com',1,'2025-11-12 17:29:39','2025-11-12 17:48:00'),
(5,2,1,1.158749,'2025-11-12','api','Auto-calculated inverse rate',1,'2025-11-12 17:29:39','2025-11-12 17:48:00'),
(6,3,1,1.315789,'2025-11-12','api','Auto-calculated inverse rate',1,'2025-11-12 17:29:39','2025-11-12 17:48:00'),
(7,4,1,0.006489,'2025-11-12','api','Auto-calculated inverse rate',1,'2025-11-12 17:29:39','2025-11-12 17:48:00'),
(8,5,1,0.714286,'2025-11-12','api','Auto-calculated inverse rate',1,'2025-11-12 17:29:39','2025-11-12 17:48:00'),
(9,1,6,1.530000,'2025-11-12','api','Imported from exchangerate-api.com',1,'2025-11-12 17:48:00','2025-11-12 17:48:00'),
(10,6,1,0.653595,'2025-11-12','api','Auto-calculated inverse rate',1,'2025-11-12 17:48:00','2025-11-12 17:48:00'),
(11,1,7,0.801000,'2025-11-12','api','Imported from exchangerate-api.com',1,'2025-11-12 17:48:00','2025-11-12 17:48:00'),
(12,7,1,1.248439,'2025-11-12','api','Auto-calculated inverse rate',1,'2025-11-12 17:48:00','2025-11-12 17:48:00'),
(13,1,8,7.120000,'2025-11-12','api','Imported from exchangerate-api.com',1,'2025-11-12 17:48:00','2025-11-12 17:48:00'),
(14,8,1,0.140449,'2025-11-12','api','Auto-calculated inverse rate',1,'2025-11-12 17:48:00','2025-11-12 17:48:00'),
(15,1,9,88.560000,'2025-11-12','api','Imported from exchangerate-api.com',1,'2025-11-12 17:48:00','2025-11-12 17:48:00'),
(16,9,1,0.011292,'2025-11-12','api','Auto-calculated inverse rate',1,'2025-11-12 17:48:00','2025-11-12 17:48:00'),
(17,1,10,18.340000,'2025-11-12','api','Imported from exchangerate-api.com',1,'2025-11-12 17:48:00','2025-11-12 17:48:00'),
(18,10,1,0.054526,'2025-11-12','api','Auto-calculated inverse rate',1,'2025-11-12 17:48:00','2025-11-12 17:48:00');
/*!40000 ALTER TABLE `exchange_rates` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `expense_categories`
--

DROP TABLE IF EXISTS `expense_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `expense_categories` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `category_name` varchar(100) NOT NULL,
  `parent_id` int(10) unsigned DEFAULT NULL COMMENT 'For subcategories',
  `gl_account_id` int(10) unsigned DEFAULT NULL COMMENT 'Default GL account for this category',
  `description` text DEFAULT NULL,
  `is_active` tinyint(1) DEFAULT 1,
  `requires_receipt` tinyint(1) DEFAULT 1,
  `requires_approval` tinyint(1) DEFAULT 1,
  `approval_limit` decimal(15,2) DEFAULT NULL COMMENT 'Auto-approve under this amount',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `category_name` (`category_name`),
  KEY `parent_id` (`parent_id`),
  KEY `gl_account_id` (`gl_account_id`),
  CONSTRAINT `expense_categories_ibfk_1` FOREIGN KEY (`parent_id`) REFERENCES `expense_categories` (`id`) ON DELETE SET NULL,
  CONSTRAINT `expense_categories_ibfk_2` FOREIGN KEY (`gl_account_id`) REFERENCES `chart_of_accounts` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `expense_categories`
--

LOCK TABLES `expense_categories` WRITE;
/*!40000 ALTER TABLE `expense_categories` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `expense_categories` VALUES
(1,'Travel',NULL,NULL,'Business travel expenses including airfare, hotels, meals',1,1,1,NULL,'2025-10-30 18:48:02','2025-11-11 00:36:45'),
(2,'Office Supplies',NULL,NULL,'Office supplies and equipment under $500',1,1,0,NULL,'2025-10-30 18:48:02','2025-11-11 00:36:45'),
(3,'Utilities',NULL,NULL,'Electric, water, gas, internet, phone',1,1,0,NULL,'2025-10-30 18:48:02','2025-11-11 00:36:45'),
(4,'Marketing',NULL,NULL,'Advertising, promotions, events',1,1,1,NULL,'2025-10-30 18:48:02','2025-11-11 00:36:45'),
(5,'Professional Services',NULL,NULL,'Legal, accounting, consulting fees',1,1,1,NULL,'2025-10-30 18:48:02','2025-11-11 00:36:45'),
(6,'Rent',NULL,NULL,'Office rent and related costs',1,1,1,NULL,'2025-10-30 18:48:02','2025-11-11 00:36:45'),
(7,'Insurance',NULL,NULL,'Business insurance premiums',1,1,1,NULL,'2025-10-30 18:48:02','2025-11-11 00:36:45'),
(8,'Maintenance',NULL,NULL,'Repairs and maintenance',1,1,0,NULL,'2025-10-30 18:48:02','2025-11-11 00:36:45'),
(9,'Software & Subscriptions',NULL,NULL,'Software licenses and subscriptions',1,1,0,NULL,'2025-10-30 18:48:02','2025-11-11 00:36:45'),
(10,'Meals & Entertainment',NULL,NULL,'Business meals and client entertainment',1,1,1,NULL,'2025-10-30 18:48:02','2025-11-11 00:36:45');
/*!40000 ALTER TABLE `expense_categories` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `expenses`
--

DROP TABLE IF EXISTS `expenses`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `expenses` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `expense_number` varchar(50) NOT NULL,
  `expense_date` date NOT NULL,
  `category` varchar(100) NOT NULL COMMENT 'e.g., Travel, Supplies, Utilities',
  `subcategory` varchar(100) DEFAULT NULL,
  `vendor` varchar(255) DEFAULT NULL,
  `amount` decimal(15,2) NOT NULL,
  `currency` varchar(3) DEFAULT 'USD',
  `tax_amount` decimal(15,2) DEFAULT 0.00,
  `total_amount` decimal(15,2) NOT NULL,
  `description` text DEFAULT NULL,
  `payment_method` enum('cash','credit_card','bank_transfer','check','other') DEFAULT 'credit_card',
  `reference_number` varchar(100) DEFAULT NULL,
  `receipt_file` varchar(255) DEFAULT NULL,
  `gl_account_id` int(10) unsigned DEFAULT NULL COMMENT 'Link to chart of accounts',
  `bank_account_id` int(10) unsigned DEFAULT NULL COMMENT 'Link to bank account if paid',
  `project_id` int(10) unsigned DEFAULT NULL COMMENT 'Optional project association',
  `department` varchar(100) DEFAULT NULL,
  `employee_id` int(10) unsigned DEFAULT NULL COMMENT 'Who incurred the expense',
  `status` enum('draft','pending_approval','approved','rejected','paid') DEFAULT 'draft',
  `approved_by` int(10) unsigned DEFAULT NULL,
  `approved_at` timestamp NULL DEFAULT NULL,
  `rejection_reason` text DEFAULT NULL,
  `is_reimbursable` tinyint(1) DEFAULT 0,
  `is_reimbursed` tinyint(1) DEFAULT 0,
  `reimbursement_date` date DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `expense_number` (`expense_number`),
  KEY `expense_date` (`expense_date`),
  KEY `category` (`category`),
  KEY `status` (`status`),
  KEY `gl_account_id` (`gl_account_id`),
  KEY `bank_account_id` (`bank_account_id`),
  KEY `employee_id` (`employee_id`),
  KEY `approved_by` (`approved_by`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `expenses_ibfk_1` FOREIGN KEY (`gl_account_id`) REFERENCES `chart_of_accounts` (`id`) ON DELETE SET NULL,
  CONSTRAINT `expenses_ibfk_2` FOREIGN KEY (`employee_id`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `expenses_ibfk_3` FOREIGN KEY (`approved_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `expenses_ibfk_4` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `expenses`
--

LOCK TABLES `expenses` WRITE;
/*!40000 ALTER TABLE `expenses` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `expenses` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `file_comments`
--

DROP TABLE IF EXISTS `file_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `file_comments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `file_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `comment` text NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_file_id` (`file_id`),
  KEY `idx_user_id` (`user_id`),
  KEY `idx_created_at` (`created_at`),
  CONSTRAINT `file_comments_ibfk_1` FOREIGN KEY (`file_id`) REFERENCES `files` (`id`) ON DELETE CASCADE,
  CONSTRAINT `file_comments_ibfk_2` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `file_comments`
--

LOCK TABLES `file_comments` WRITE;
/*!40000 ALTER TABLE `file_comments` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `file_comments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `file_folders`
--

DROP TABLE IF EXISTS `file_folders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `file_folders` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `parent_id` int(10) unsigned DEFAULT NULL,
  `entity_type` enum('system','crm','user','customer','vendor','project','accounting','hr','inventory','manufacturing','purchases','sales','activity') DEFAULT 'system',
  `entity_id` int(10) unsigned DEFAULT NULL COMMENT 'ID of related entity (customer_id, user_id, etc)',
  `access_level` enum('public','private','restricted') DEFAULT 'public',
  `owner_id` int(10) unsigned DEFAULT NULL,
  `required_permission` varchar(50) DEFAULT NULL,
  `path` varchar(1000) NOT NULL COMMENT 'Full folder path for hierarchy',
  `created_by` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_parent` (`parent_id`),
  KEY `idx_entity` (`entity_type`,`entity_id`),
  KEY `created_by` (`created_by`),
  KEY `idx_folder_permission` (`required_permission`),
  KEY `idx_folder_owner` (`owner_id`),
  CONSTRAINT `file_folders_ibfk_1` FOREIGN KEY (`parent_id`) REFERENCES `file_folders` (`id`) ON DELETE CASCADE,
  CONSTRAINT `file_folders_ibfk_2` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`),
  CONSTRAINT `fk_folder_owner` FOREIGN KEY (`owner_id`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `file_folders`
--

LOCK TABLES `file_folders` WRITE;
/*!40000 ALTER TABLE `file_folders` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `file_folders` VALUES
(1,'Customer Files',NULL,'customer',NULL,'restricted',NULL,'customers.view','/CRM Documents',1,'2025-11-21 04:11:25','2025-11-21 16:38:24'),
(2,'User Files',NULL,'user',NULL,'public',NULL,NULL,'/User Files',1,'2025-11-21 04:11:25','2025-11-21 04:11:25'),
(4,'Vendor Files',NULL,'vendor',NULL,'restricted',NULL,'vendors.view','/Vendor Files',1,'2025-11-21 04:11:25','2025-11-21 14:34:45'),
(5,'Project Files',NULL,'project',NULL,'restricted',NULL,'projects.view','/Project Files',1,'2025-11-21 04:11:25','2025-11-21 14:34:45'),
(6,'Accounting Files',NULL,'accounting',NULL,'restricted',NULL,'accounting.view','/Accounting Documents',1,'2025-11-21 04:11:25','2025-11-21 16:08:49'),
(7,'System Files',NULL,'system',NULL,'public',NULL,NULL,'/System Files',1,'2025-11-21 04:11:25','2025-11-21 04:11:25'),
(14,'HR Files',NULL,'hr',NULL,'restricted',NULL,'hr.view','/HR Files',1,'2025-11-21 17:03:31','2025-11-21 17:03:31'),
(15,'Inventory Files',NULL,'inventory',NULL,'restricted',NULL,'inventory.view','/Inventory Files',1,'2025-11-21 17:03:31','2025-11-21 17:03:31'),
(16,'Manufacturing Files',NULL,'manufacturing',NULL,'restricted',NULL,'manufacturing.view','/Manufacturing Files',1,'2025-11-21 17:03:31','2025-11-21 17:03:31'),
(17,'Purchases Files',NULL,'purchases',NULL,'restricted',NULL,'purchases.view','/Purchases Files',1,'2025-11-21 17:03:31','2025-11-21 17:03:31'),
(18,'Sales Files',NULL,'sales',NULL,'restricted',NULL,'sales.view','/Sales Files',1,'2025-11-21 17:03:31','2025-11-21 17:03:31'),
(21,'CRM Files',NULL,'activity',NULL,'restricted',NULL,'crm.view','/CRM Files',1,'2025-12-02 02:47:48','2025-12-02 02:47:48'),
(23,'Battery Safety',2,'user',NULL,'private',1,NULL,'/User Files/Battery Safety',1,'2025-12-04 16:02:49','2025-12-04 16:31:01'),
(24,'Applications',14,'hr',NULL,'public',NULL,NULL,'/HR Files/Applications',1,'2025-12-07 12:38:59','2025-12-07 12:38:59'),
(25,'NewHireForms',14,'hr',NULL,'public',NULL,NULL,'/HR Files/NewHireForms',1,'2025-12-07 12:39:13','2025-12-07 12:39:13'),
(26,'OfferDocs',14,'hr',NULL,'public',NULL,NULL,'/HR Files/OfferDocs',1,'2025-12-07 12:39:29','2025-12-07 12:39:29');
/*!40000 ALTER TABLE `file_folders` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `file_shares`
--

DROP TABLE IF EXISTS `file_shares`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `file_shares` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `file_id` int(10) unsigned DEFAULT NULL,
  `folder_id` int(10) unsigned DEFAULT NULL,
  `shared_with_user_id` int(10) unsigned DEFAULT NULL,
  `shared_with_role_id` int(10) unsigned DEFAULT NULL,
  `permission` enum('view','download','edit','delete') DEFAULT 'view',
  `shared_by` int(10) unsigned NOT NULL,
  `expires_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_file` (`file_id`),
  KEY `idx_user` (`shared_with_user_id`),
  KEY `idx_role` (`shared_with_role_id`),
  KEY `shared_by` (`shared_by`),
  KEY `idx_share_folder` (`folder_id`),
  CONSTRAINT `file_shares_ibfk_1` FOREIGN KEY (`file_id`) REFERENCES `files` (`id`) ON DELETE CASCADE,
  CONSTRAINT `file_shares_ibfk_2` FOREIGN KEY (`shared_with_user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE,
  CONSTRAINT `file_shares_ibfk_3` FOREIGN KEY (`shared_with_role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE,
  CONSTRAINT `file_shares_ibfk_4` FOREIGN KEY (`shared_by`) REFERENCES `users` (`id`),
  CONSTRAINT `fk_share_folder` FOREIGN KEY (`folder_id`) REFERENCES `file_folders` (`id`) ON DELETE CASCADE,
  CONSTRAINT `chk_share_target` CHECK (`file_id` is not null and `folder_id` is null or `file_id` is null and `folder_id` is not null)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `file_shares`
--

LOCK TABLES `file_shares` WRITE;
/*!40000 ALTER TABLE `file_shares` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `file_shares` VALUES
(1,8,NULL,4,NULL,'download',1,NULL,'2025-11-27 18:34:31'),
(4,8,NULL,4,NULL,'download',1,NULL,'2025-11-27 19:32:39'),
(5,8,NULL,4,NULL,'download',1,NULL,'2025-11-27 19:58:09'),
(6,8,NULL,4,NULL,'download',1,NULL,'2025-11-27 20:22:35');
/*!40000 ALTER TABLE `file_shares` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `file_tag_associations`
--

DROP TABLE IF EXISTS `file_tag_associations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `file_tag_associations` (
  `file_id` int(10) unsigned NOT NULL,
  `tag_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`file_id`,`tag_id`),
  KEY `idx_file_id` (`file_id`),
  KEY `idx_tag_id` (`tag_id`),
  CONSTRAINT `file_tag_associations_ibfk_1` FOREIGN KEY (`file_id`) REFERENCES `files` (`id`) ON DELETE CASCADE,
  CONSTRAINT `file_tag_associations_ibfk_2` FOREIGN KEY (`tag_id`) REFERENCES `file_tags` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `file_tag_associations`
--

LOCK TABLES `file_tag_associations` WRITE;
/*!40000 ALTER TABLE `file_tag_associations` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `file_tag_associations` VALUES
(8,1,'2025-12-01 17:13:15');
/*!40000 ALTER TABLE `file_tag_associations` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `file_tags`
--

DROP TABLE IF EXISTS `file_tags`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `file_tags` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `tag_name` varchar(50) NOT NULL,
  `usage_count` int(11) DEFAULT 0,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `tag_name` (`tag_name`),
  KEY `idx_tag_name` (`tag_name`),
  KEY `idx_usage_count` (`usage_count`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `file_tags`
--

LOCK TABLES `file_tags` WRITE;
/*!40000 ALTER TABLE `file_tags` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `file_tags` VALUES
(1,'Tiger1',1,'2025-12-01 17:13:15');
/*!40000 ALTER TABLE `file_tags` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `file_versions`
--

DROP TABLE IF EXISTS `file_versions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `file_versions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `file_id` int(10) unsigned NOT NULL,
  `version_number` int(10) unsigned NOT NULL,
  `file_name` varchar(255) NOT NULL,
  `file_path` varchar(500) NOT NULL,
  `file_size` bigint(20) unsigned NOT NULL,
  `mime_type` varchar(100) DEFAULT NULL,
  `uploaded_by` int(10) unsigned DEFAULT NULL,
  `upload_date` datetime DEFAULT current_timestamp(),
  `version_notes` text DEFAULT NULL,
  `is_current` tinyint(1) DEFAULT 0,
  `checksum` varchar(64) DEFAULT NULL,
  `created_at` datetime DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_file_version` (`file_id`,`version_number`),
  KEY `idx_file_id` (`file_id`),
  KEY `idx_is_current` (`is_current`),
  KEY `idx_uploaded_by` (`uploaded_by`),
  CONSTRAINT `file_versions_ibfk_1` FOREIGN KEY (`file_id`) REFERENCES `files` (`id`) ON DELETE CASCADE,
  CONSTRAINT `file_versions_ibfk_2` FOREIGN KEY (`uploaded_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `file_versions`
--

LOCK TABLES `file_versions` WRITE;
/*!40000 ALTER TABLE `file_versions` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `file_versions` VALUES
(1,8,1,'IMG_5218.JPG','uploads/files/1764259569_692876f1b2baf.jpg',239098,'image/jpeg',1,'2025-11-27 11:06:09',NULL,1,'e935e4a6a71a7002c84874276eeca64f','2025-11-27 11:06:09');
/*!40000 ALTER TABLE `file_versions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `files`
--

DROP TABLE IF EXISTS `files`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `files` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `folder_id` int(10) unsigned DEFAULT NULL,
  `file_name` varchar(255) NOT NULL,
  `file_path` varchar(1000) NOT NULL,
  `file_size` bigint(20) unsigned NOT NULL,
  `mime_type` varchar(100) NOT NULL,
  `current_version` int(10) unsigned DEFAULT 1,
  `version_count` int(10) unsigned DEFAULT 1,
  `enable_versioning` tinyint(1) DEFAULT 1,
  `file_extension` varchar(20) NOT NULL,
  `entity_type` enum('system','crm','user','customer','vendor','project','accounting','hr','inventory','manufacturing','purchases','sales','activity') DEFAULT NULL,
  `entity_id` int(10) unsigned DEFAULT NULL COMMENT 'ID of related entity',
  `description` text DEFAULT NULL,
  `tags` varchar(500) DEFAULT NULL COMMENT 'Comma-separated tags',
  `is_confidential` tinyint(1) DEFAULT 0,
  `uploaded_by` int(10) unsigned NOT NULL,
  `version` int(10) unsigned DEFAULT 1,
  `checksum` varchar(64) DEFAULT NULL COMMENT 'SHA256 hash for duplicate detection',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_folder` (`folder_id`),
  KEY `idx_entity` (`entity_type`,`entity_id`),
  KEY `idx_name` (`file_name`),
  KEY `idx_extension` (`file_extension`),
  KEY `idx_checksum` (`checksum`),
  KEY `uploaded_by` (`uploaded_by`),
  KEY `idx_enable_versioning` (`enable_versioning`),
  FULLTEXT KEY `idx_search` (`file_name`,`description`,`tags`),
  CONSTRAINT `files_ibfk_1` FOREIGN KEY (`folder_id`) REFERENCES `file_folders` (`id`) ON DELETE SET NULL,
  CONSTRAINT `files_ibfk_2` FOREIGN KEY (`uploaded_by`) REFERENCES `users` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=39 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `files`
--

LOCK TABLES `files` WRITE;
/*!40000 ALTER TABLE `files` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `files` VALUES
(8,2,'IMG_5218.JPG','uploads/files/1764259569_692876f1b2baf.jpg',239098,'image/jpeg',1,1,1,'jpg',NULL,NULL,'Tiger with Pew Pew','Tiger1',0,1,1,'d8ae286cb4dd02490f5cbd5b60c8b4522c7613fdb917757a3af2bb9486074760','2025-11-27 16:06:09','2025-12-01 14:37:03'),
(20,23,'Lithium_Battery_Safety_Guidance.pdf','uploads/files/1764864687_6931b2af67d68.pdf',1176673,'application/pdf',1,1,1,'pdf','system',NULL,'Battery Lithium Safety docs','Battery, Lithium, Safety',0,4,1,'5f9d367d8b03d7ab5573cae5ccdb5afc1d255f73ee0c8a384d00b4f0f5e1248b','2025-12-04 16:11:27','2025-12-04 16:11:27'),
(21,23,'OSHA4480.pdf','uploads/files/1764864687_6931b2af6c518.pdf',293248,'application/pdf',1,1,1,'pdf','system',NULL,'Battery Lithium Safety docs','Battery, Lithium, Safety',0,4,1,'645ef82044869a98133b114fcdf93fa323f92b69443b0c4e1eb61536d43b0f0f','2025-12-04 16:11:27','2025-12-04 16:11:27'),
(22,24,'Mavrix1 Management, LLC - Employment Application.docx','uploads/files/1765111200_693575a0855aa.docx',67287,'application/vnd.openxmlformats-officedocument.wordprocessingml.document',1,1,1,'docx','hr',NULL,'','',0,1,1,'10ed1c651054439fb73d072752d1daab9e3c70e7dcbd61abdd73590a79d03ed5','2025-12-07 12:40:00','2025-12-07 12:40:00'),
(23,25,'2005 I-9 Employment Eligibility Verification.pdf','uploads/files/1765111213_693575add1717.pdf',493147,'application/pdf',1,1,1,'pdf','hr',NULL,'','',0,1,1,'56c781a9976464a7cd1bf68b3c0f25d5b14824af06b3f3dadea8d8998ebc512f','2025-12-07 12:40:13','2025-12-07 12:40:13'),
(24,25,'2025 Commonwealth of Virginia Department of Taxation Personal Exemption Worksheet.pdf','uploads/files/1765111213_693575add455a.pdf',1235527,'application/pdf',1,1,1,'pdf','hr',NULL,'','',0,1,1,'0c158d5549b7e78eb2cb93bcc76d30b369a7c4395d8cf79a55c081689d2eb328','2025-12-07 12:40:13','2025-12-07 12:40:13'),
(25,25,'2025 Employee\'s Michigan Withholding Exemption Certificate.pdf','uploads/files/1765111213_693575add8810.pdf',198753,'application/pdf',1,1,1,'pdf','hr',NULL,'','',0,1,1,'80d1bf5c8a044b35df787664f391f07a32a78baf485b6661eb8985800d071909','2025-12-07 12:40:13','2025-12-07 12:40:13'),
(26,25,'2025 New York State Employee’s Withholding Allowance Certificate.pdf','uploads/files/1765111213_693575add9852.pdf',505884,'application/pdf',1,1,1,'pdf','hr',NULL,'','',0,1,1,'a187de82fcfece247134f569139495263629289b0dab507bfae749d5d88c3a21','2025-12-07 12:40:13','2025-12-07 12:40:13'),
(27,25,'2025 W-4 Employee\'s Withholding Certificate.pdf','uploads/files/1765111213_693575addb800.pdf',192528,'application/pdf',1,1,1,'pdf','hr',NULL,'','',0,1,1,'94fa236f26c1a6dbbdeb40b8bd8870793e7a5be0f74ead3c2799d2b0961be68a','2025-12-07 12:40:13','2025-12-07 12:40:13'),
(28,25,'I-9 List of Acceptable Documents.pdf','uploads/files/1765111213_693575addc730.pdf',259085,'application/pdf',1,1,1,'pdf','hr',NULL,'','',0,1,1,'6a218ed1614797a1a3349c5643114e27191021ce1396c74bfe764f4dc005a061','2025-12-07 12:40:13','2025-12-07 12:40:13'),
(29,25,'Mavrix1 - New Employee Information.docx','uploads/files/1765111213_693575addd977.docx',25799,'application/vnd.openxmlformats-officedocument.wordprocessingml.document',1,1,1,'docx','hr',NULL,'','',0,1,1,'f37a7f257cb59f5e3ba9adfe98bf931eb7e80540316790780bcf3b86b1e4009d','2025-12-07 12:40:13','2025-12-07 12:40:13'),
(30,25,'Mavrix1 - New Employee Information.pdf','uploads/files/1765111213_693575adde303.pdf',104848,'application/pdf',1,1,1,'pdf','hr',NULL,'','',0,1,1,'658f446446700f0dc03cc634bd3d5c8aad26959596aa421d2569faf3c677a10c','2025-12-07 12:40:13','2025-12-07 12:40:13'),
(31,26,'Confidentiality Intellectual Property Agreement - Employees.docx','uploads/files/1765111223_693575b754a52.docx',44119,'application/vnd.openxmlformats-officedocument.wordprocessingml.document',1,1,1,'docx','hr',NULL,'','',0,1,1,'18cfbf6acc86186ecaa960e9f775a38503d75aa12d087ce25c33e21764b3bbfe','2025-12-07 12:40:23','2025-12-07 12:40:23'),
(32,26,'Employee Handbook Policies included in Sign-Off.docx','uploads/files/1765111223_693575b755399.docx',18379,'application/vnd.openxmlformats-officedocument.wordprocessingml.document',1,1,1,'docx','hr',NULL,'','',0,1,1,'ae17975fcc48e79a8494e732969c17b6863d2909f3bcfd86d1b692b384e04fbb','2025-12-07 12:40:23','2025-12-07 12:40:23'),
(33,26,'Employee Handbook Policy Acknowledgement.docx','uploads/files/1765111223_693575b75593b.docx',40969,'application/vnd.openxmlformats-officedocument.wordprocessingml.document',1,1,1,'docx','hr',NULL,'','',0,1,1,'040db8754ccee87d5e229041f09ef133fcb6c870ff9d3f73dd0b603b960d5d6f','2025-12-07 12:40:23','2025-12-07 12:40:23'),
(34,26,'Employment Conditions Addendum.docx','uploads/files/1765111223_693575b7560a6.docx',47418,'application/vnd.openxmlformats-officedocument.wordprocessingml.document',1,1,1,'docx','hr',NULL,'','',0,1,1,'0b86eefcb2cdc4a0a12c28575d58e07e7538ec3f5088d86cf3c7c49aa264f268','2025-12-07 12:40:23','2025-12-07 12:40:23'),
(35,26,'Mavrix 1 NDA 07 26 2025.pdf','uploads/files/1765111223_693575b756bd0.pdf',193115,'application/pdf',1,1,1,'pdf','hr',NULL,'','',0,1,1,'364c0bedb66ed949c0400735d11c63dbdab08f57afdfd886f6668251786d8868','2025-12-07 12:40:23','2025-12-07 12:40:23'),
(36,26,'Non-Disclosure Agreement - Contractors.docx','uploads/files/1765111223_693575b757900.docx',54334,'application/vnd.openxmlformats-officedocument.wordprocessingml.document',1,1,1,'docx','hr',NULL,'','',0,1,1,'7e5bd674cfc8fb7b14657858d8c9ef6cab96263fa714c0b7d7c417ee591d70b0','2025-12-07 12:40:23','2025-12-07 12:40:23'),
(37,26,'Offer Letter - Hourly Employee.docx','uploads/files/1765111223_693575b75818d.docx',43890,'application/vnd.openxmlformats-officedocument.wordprocessingml.document',1,1,1,'docx','hr',NULL,'','',0,1,1,'29040ee32dffd2c05dd85c3f65c7a1375f53bd22615188995baf7234a8f44532','2025-12-07 12:40:23','2025-12-07 12:40:23'),
(38,26,'Offer Letter - Salaried Employee.docx','uploads/files/1765111223_693575b7588eb.docx',52164,'application/vnd.openxmlformats-officedocument.wordprocessingml.document',1,1,1,'docx','hr',NULL,'','',0,1,1,'ffe539e5fd81c600c20210d5513ebd76662484e6e9abe9d272b1e08ee2798cea','2025-12-07 12:40:23','2025-12-07 12:40:23');
/*!40000 ALTER TABLE `files` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `fiscal_year_settings`
--

DROP TABLE IF EXISTS `fiscal_year_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `fiscal_year_settings` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `fiscal_year_start_month` int(11) DEFAULT 1 COMMENT 'Month fiscal year starts (1-12)',
  `fiscal_year_start_day` int(11) DEFAULT 1 COMMENT 'Day fiscal year starts (1-31)',
  `current_fiscal_year` int(11) DEFAULT NULL COMMENT 'Current fiscal year',
  `lock_previous_periods` tinyint(1) DEFAULT 1 COMMENT 'Prevent edits to closed periods',
  `auto_close_periods` tinyint(1) DEFAULT 0 COMMENT 'Automatically close periods',
  `period_close_day` int(11) DEFAULT 5 COMMENT 'Day of month to close previous period',
  `default_currency` varchar(3) DEFAULT 'USD' COMMENT 'ISO currency code',
  `currency_symbol` varchar(10) DEFAULT '$' COMMENT 'Currency symbol',
  `decimal_places` int(11) DEFAULT 2 COMMENT 'Decimal precision',
  `thousands_separator` varchar(1) DEFAULT ',' COMMENT 'Thousands separator',
  `decimal_separator` varchar(1) DEFAULT '.' COMMENT 'Decimal separator',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Fiscal year, accounting periods, and currency settings';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fiscal_year_settings`
--

LOCK TABLES `fiscal_year_settings` WRITE;
/*!40000 ALTER TABLE `fiscal_year_settings` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `fiscal_year_settings` VALUES
(1,1,1,2025,1,0,5,'USD','$',2,',','.','2025-11-01 12:32:09','2025-11-01 12:32:09');
/*!40000 ALTER TABLE `fiscal_year_settings` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `fixed_assets`
--

DROP TABLE IF EXISTS `fixed_assets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `fixed_assets` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `asset_number` varchar(50) NOT NULL,
  `name` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `category` enum('building','equipment','vehicle','furniture','computer','other') NOT NULL,
  `account_id` int(10) unsigned DEFAULT NULL COMMENT 'Chart of Accounts ID',
  `purchase_date` date NOT NULL,
  `purchase_cost` decimal(15,2) NOT NULL,
  `salvage_value` decimal(15,2) DEFAULT 0.00,
  `useful_life_years` int(11) NOT NULL,
  `depreciation_method` enum('straight_line','declining_balance','units_of_production') DEFAULT 'straight_line',
  `location` varchar(255) DEFAULT NULL,
  `serial_number` varchar(100) DEFAULT NULL,
  `supplier_id` int(10) unsigned DEFAULT NULL,
  `warranty_expiry` date DEFAULT NULL,
  `status` enum('active','disposed','sold','retired') DEFAULT 'active',
  `disposal_date` date DEFAULT NULL,
  `disposal_value` decimal(15,2) DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `asset_number` (`asset_number`),
  KEY `idx_asset_number` (`asset_number`),
  KEY `idx_category` (`category`),
  KEY `idx_status` (`status`),
  KEY `idx_purchase_date` (`purchase_date`),
  KEY `supplier_id` (`supplier_id`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `fixed_assets_ibfk_1` FOREIGN KEY (`supplier_id`) REFERENCES `suppliers` (`id`) ON DELETE SET NULL,
  CONSTRAINT `fixed_assets_ibfk_2` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fixed_assets`
--

LOCK TABLES `fixed_assets` WRITE;
/*!40000 ALTER TABLE `fixed_assets` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `fixed_assets` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `forecast_actuals`
--

DROP TABLE IF EXISTS `forecast_actuals`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `forecast_actuals` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `variable_template_id` int(11) NOT NULL,
  `period_date` date NOT NULL COMMENT 'Date or period this actual applies to',
  `value` decimal(15,4) NOT NULL,
  `source_table` varchar(100) DEFAULT NULL COMMENT 'Source ERP table',
  `source_id` int(11) DEFAULT NULL COMMENT 'Source record ID if applicable',
  `notes` text DEFAULT NULL,
  `synced_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `uk_variable_date` (`variable_template_id`,`period_date`),
  KEY `idx_variable` (`variable_template_id`),
  KEY `idx_date` (`period_date`),
  KEY `idx_source` (`source_table`,`source_id`),
  CONSTRAINT `forecast_actuals_ibfk_1` FOREIGN KEY (`variable_template_id`) REFERENCES `forecast_variable_templates` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=61 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `forecast_actuals`
--

LOCK TABLES `forecast_actuals` WRITE;
/*!40000 ALTER TABLE `forecast_actuals` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `forecast_actuals` VALUES
(1,1,'2025-11-19',0.0000,'sales_orders',NULL,NULL,'2025-11-19 17:04:32'),
(2,3,'2025-11-19',0.0000,'sales_orders',NULL,NULL,'2025-11-19 17:04:32'),
(3,5,'2025-11-19',0.0000,'journal_entries',NULL,NULL,'2025-11-19 17:04:32'),
(4,7,'2025-11-19',0.0000,'journal_entries',NULL,NULL,'2025-11-19 17:04:32'),
(5,9,'2025-11-19',0.0000,'journal_entries',NULL,NULL,'2025-11-19 17:04:32'),
(6,10,'2025-11-19',0.0000,'journal_entries',NULL,NULL,'2025-11-19 17:04:32'),
(7,11,'2025-11-19',0.0000,'journal_entries',NULL,NULL,'2025-11-19 17:04:32'),
(8,12,'2025-11-19',0.0000,'journal_entries',NULL,NULL,'2025-11-19 17:04:32'),
(9,17,'2025-11-19',45.0000,'invoices',NULL,NULL,'2025-11-19 17:04:32'),
(10,18,'2025-11-19',90.0000,'stock_movements',NULL,NULL,'2025-11-19 17:04:32'),
(11,13,'2025-11-19',5.0000,'employees',NULL,NULL,'2025-11-19 17:04:32'),
(12,14,'2025-11-19',0.0000,'employees',NULL,NULL,'2025-11-19 17:04:32'),
(49,1,'2025-11-20',0.0000,'sales_orders',NULL,NULL,'2025-11-20 12:10:36'),
(50,3,'2025-11-20',0.0000,'sales_orders',NULL,NULL,'2025-11-20 12:10:36'),
(51,5,'2025-11-20',0.0000,'journal_entries',NULL,NULL,'2025-11-20 12:10:36'),
(52,7,'2025-11-20',0.0000,'journal_entries',NULL,NULL,'2025-11-20 12:10:36'),
(53,9,'2025-11-20',0.0000,'journal_entries',NULL,NULL,'2025-11-20 12:10:36'),
(54,10,'2025-11-20',0.0000,'journal_entries',NULL,NULL,'2025-11-20 12:10:36'),
(55,11,'2025-11-20',0.0000,'journal_entries',NULL,NULL,'2025-11-20 12:10:36'),
(56,12,'2025-11-20',0.0000,'journal_entries',NULL,NULL,'2025-11-20 12:10:36'),
(57,17,'2025-11-20',45.0000,'invoices',NULL,NULL,'2025-11-20 12:10:36'),
(58,18,'2025-11-20',90.0000,'stock_movements',NULL,NULL,'2025-11-20 12:10:36'),
(59,13,'2025-11-20',5.0000,'employees',NULL,NULL,'2025-11-20 12:10:36'),
(60,14,'2025-11-20',0.0000,'employees',NULL,NULL,'2025-11-20 12:10:36');
/*!40000 ALTER TABLE `forecast_actuals` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `forecast_assumption_sets`
--

DROP TABLE IF EXISTS `forecast_assumption_sets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `forecast_assumption_sets` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL,
  `description` text DEFAULT NULL,
  `scenario_id` int(10) unsigned DEFAULT NULL COMMENT 'Link to forecaster_scenarios if applicable',
  `is_active` tinyint(1) DEFAULT 1,
  `is_baseline` tinyint(1) DEFAULT 0 COMMENT 'Is this the baseline/default set?',
  `effective_date` date NOT NULL COMMENT 'When these assumptions take effect',
  `created_by` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_scenario` (`scenario_id`),
  KEY `idx_active` (`is_active`),
  KEY `idx_baseline` (`is_baseline`),
  KEY `idx_effective_date` (`effective_date`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `forecast_assumption_sets_ibfk_1` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`),
  CONSTRAINT `forecast_assumption_sets_ibfk_2` FOREIGN KEY (`scenario_id`) REFERENCES `forecaster_scenarios` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `forecast_assumption_sets`
--

LOCK TABLES `forecast_assumption_sets` WRITE;
/*!40000 ALTER TABLE `forecast_assumption_sets` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `forecast_assumption_sets` VALUES
(1,'Baseline Assumptions','Default baseline assumptions for forecasting',NULL,1,1,'2025-11-19',1,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(2,'Aggressive Growth','This is the aggressive one...',NULL,1,0,'2025-11-19',1,'2025-11-19 17:12:18','2025-11-19 17:14:45');
/*!40000 ALTER TABLE `forecast_assumption_sets` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `forecast_assumption_values`
--

DROP TABLE IF EXISTS `forecast_assumption_values`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `forecast_assumption_values` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `assumption_set_id` int(11) NOT NULL,
  `variable_template_id` int(11) NOT NULL,
  `value` decimal(15,4) NOT NULL,
  `notes` text DEFAULT NULL,
  `source` enum('manual','erp_actual','calculated','imported') DEFAULT 'manual',
  `last_synced_at` timestamp NULL DEFAULT NULL COMMENT 'When last synced from ERP',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `uk_set_variable` (`assumption_set_id`,`variable_template_id`),
  KEY `idx_set` (`assumption_set_id`),
  KEY `idx_template` (`variable_template_id`),
  KEY `idx_source` (`source`),
  CONSTRAINT `forecast_assumption_values_ibfk_1` FOREIGN KEY (`assumption_set_id`) REFERENCES `forecast_assumption_sets` (`id`) ON DELETE CASCADE,
  CONSTRAINT `forecast_assumption_values_ibfk_2` FOREIGN KEY (`variable_template_id`) REFERENCES `forecast_variable_templates` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=63 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `forecast_assumption_values`
--

LOCK TABLES `forecast_assumption_values` WRITE;
/*!40000 ALTER TABLE `forecast_assumption_values` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `forecast_assumption_values` VALUES
(1,1,1,100000.0000,NULL,'manual',NULL,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(2,1,2,5.0000,NULL,'manual',NULL,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(3,1,3,5000.0000,NULL,'manual',NULL,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(4,1,4,15.0000,NULL,'manual',NULL,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(5,1,5,35.0000,NULL,'manual',NULL,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(6,1,6,25.0000,NULL,'manual',NULL,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(7,1,7,15.0000,NULL,'manual',NULL,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(8,1,8,6.0000,NULL,'manual',NULL,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(9,1,9,50000.0000,NULL,'manual',NULL,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(10,1,10,10.0000,NULL,'manual',NULL,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(11,1,11,10000.0000,NULL,'manual',NULL,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(12,1,12,15000.0000,NULL,'manual',NULL,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(13,1,13,50.0000,NULL,'manual',NULL,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(14,1,14,5000.0000,NULL,'manual',NULL,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(15,1,15,30.0000,NULL,'manual',NULL,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(16,1,16,15.0000,NULL,'manual',NULL,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(17,1,17,45.0000,NULL,'manual',NULL,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(18,1,18,60.0000,NULL,'manual',NULL,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(19,1,19,30.0000,NULL,'manual',NULL,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(20,1,20,100000.0000,NULL,'manual',NULL,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(21,1,21,2.0000,NULL,'manual',NULL,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(22,1,22,5.0000,NULL,'manual',NULL,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(23,1,23,250000.0000,NULL,'manual',NULL,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(24,1,24,25.0000,NULL,'manual',NULL,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(32,2,1,100000.0000,NULL,'manual',NULL,'2025-11-19 17:12:18','2025-11-19 17:12:18'),
(33,2,2,5.0000,NULL,'manual',NULL,'2025-11-19 17:12:18','2025-11-19 17:12:18'),
(34,2,3,5000.0000,NULL,'manual',NULL,'2025-11-19 17:12:18','2025-11-19 17:12:18'),
(35,2,4,15.0000,NULL,'manual',NULL,'2025-11-19 17:12:18','2025-11-19 17:12:18'),
(36,2,5,35.0000,NULL,'manual',NULL,'2025-11-19 17:12:18','2025-11-19 17:12:18'),
(37,2,6,25.0000,NULL,'manual',NULL,'2025-11-19 17:12:18','2025-11-19 17:12:18'),
(38,2,7,15.0000,NULL,'manual',NULL,'2025-11-19 17:12:18','2025-11-19 17:12:18'),
(39,2,8,6.0000,NULL,'manual',NULL,'2025-11-19 17:12:18','2025-11-19 17:12:18'),
(40,2,9,50000.0000,NULL,'manual',NULL,'2025-11-19 17:12:18','2025-11-19 17:12:18'),
(41,2,10,10.0000,NULL,'manual',NULL,'2025-11-19 17:12:18','2025-11-19 17:12:18'),
(42,2,11,10000.0000,NULL,'manual',NULL,'2025-11-19 17:12:18','2025-11-19 17:12:18'),
(43,2,12,15000.0000,NULL,'manual',NULL,'2025-11-19 17:12:18','2025-11-19 17:12:18'),
(44,2,13,50.0000,NULL,'manual',NULL,'2025-11-19 17:12:18','2025-11-19 17:12:18'),
(45,2,14,5000.0000,NULL,'manual',NULL,'2025-11-19 17:12:18','2025-11-19 17:12:18'),
(46,2,15,30.0000,NULL,'manual',NULL,'2025-11-19 17:12:18','2025-11-19 17:12:18'),
(47,2,16,15.0000,NULL,'manual',NULL,'2025-11-19 17:12:18','2025-11-19 17:12:18'),
(48,2,17,45.0000,NULL,'manual',NULL,'2025-11-19 17:12:18','2025-11-19 17:12:18'),
(49,2,18,60.0000,NULL,'manual',NULL,'2025-11-19 17:12:18','2025-11-19 17:12:18'),
(50,2,19,30.0000,NULL,'manual',NULL,'2025-11-19 17:12:18','2025-11-19 17:12:18'),
(51,2,20,100000.0000,NULL,'manual',NULL,'2025-11-19 17:12:18','2025-11-19 17:12:18'),
(52,2,21,2.0000,NULL,'manual',NULL,'2025-11-19 17:12:18','2025-11-19 17:12:18'),
(53,2,22,5.0000,NULL,'manual',NULL,'2025-11-19 17:12:18','2025-11-19 17:12:18'),
(54,2,23,250000.0000,NULL,'manual',NULL,'2025-11-19 17:12:18','2025-11-19 17:12:18'),
(55,2,24,25.0000,NULL,'manual',NULL,'2025-11-19 17:12:18','2025-11-19 17:12:18');
/*!40000 ALTER TABLE `forecast_assumption_values` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Temporary table structure for view `forecast_equipment_capacity_view`
--

DROP TABLE IF EXISTS `forecast_equipment_capacity_view`;
/*!50001 DROP VIEW IF EXISTS `forecast_equipment_capacity_view`*/;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8mb4;
/*!50001 CREATE VIEW `forecast_equipment_capacity_view` AS SELECT
 1 AS `config_id`,
  1 AS `assumption_set_id`,
  1 AS `product_id`,
  1 AS `product_name`,
  1 AS `sku`,
  1 AS `primary_equipment_id`,
  1 AS `equipment_name`,
  1 AS `asset_tag`,
  1 AS `equipment_line_name`,
  1 AS `production_rate_per_hour`,
  1 AS `production_hours_per_unit`,
  1 AS `machines_required`,
  1 AS `equipment_annual_demand`,
  1 AS `operating_days_per_year`,
  1 AS `operating_hours_per_day`,
  1 AS `efficiency_factor`,
  1 AS `scrap_rate_percent`,
  1 AS `current_utilization_pct`,
  1 AS `equipment_labor_cost_per_unit`,
  1 AS `equipment_energy_cost_per_unit`,
  1 AS `equipment_operating_cost_per_unit`,
  1 AS `total_equipment_cost_per_unit`,
  1 AS `capacity_constraint_flag`,
  1 AS `capital_investment_required`,
  1 AS `adjusted_production_rate`,
  1 AS `effective_hours_per_day`,
  1 AS `gross_margin_pct`,
  1 AS `revenue_growth_rate`,
  1 AS `volume_growth_pct`,
  1 AS `created_at`,
  1 AS `updated_at` */;
SET character_set_client = @saved_cs_client;

--
-- Table structure for table `forecast_update_log`
--

DROP TABLE IF EXISTS `forecast_update_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `forecast_update_log` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `assumption_set_id` int(11) DEFAULT NULL,
  `variable_template_id` int(11) DEFAULT NULL,
  `old_value` decimal(15,4) DEFAULT NULL,
  `new_value` decimal(15,4) DEFAULT NULL,
  `change_type` enum('assumption_update','actual_sync','bulk_import','calculation') NOT NULL,
  `changed_by` int(10) unsigned NOT NULL,
  `change_reason` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_set` (`assumption_set_id`),
  KEY `idx_variable` (`variable_template_id`),
  KEY `idx_date` (`created_at`),
  KEY `idx_user` (`changed_by`),
  CONSTRAINT `forecast_update_log_ibfk_1` FOREIGN KEY (`assumption_set_id`) REFERENCES `forecast_assumption_sets` (`id`) ON DELETE SET NULL,
  CONSTRAINT `forecast_update_log_ibfk_2` FOREIGN KEY (`variable_template_id`) REFERENCES `forecast_variable_templates` (`id`) ON DELETE SET NULL,
  CONSTRAINT `forecast_update_log_ibfk_3` FOREIGN KEY (`changed_by`) REFERENCES `users` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `forecast_update_log`
--

LOCK TABLES `forecast_update_log` WRITE;
/*!40000 ALTER TABLE `forecast_update_log` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `forecast_update_log` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `forecast_variable_templates`
--

DROP TABLE IF EXISTS `forecast_variable_templates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `forecast_variable_templates` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `category` enum('revenue','cogs','opex','capex','working_capital','financing','tax','hr','other') NOT NULL,
  `name` varchar(100) NOT NULL,
  `label` varchar(150) NOT NULL,
  `description` text DEFAULT NULL,
  `data_type` enum('percentage','amount','growth_rate','quantity','days','rate') NOT NULL,
  `default_value` decimal(15,4) DEFAULT 0.0000,
  `min_value` decimal(15,4) DEFAULT NULL,
  `max_value` decimal(15,4) DEFAULT NULL,
  `unit` varchar(20) DEFAULT '' COMMENT 'e.g., %, $, days, qty',
  `erp_source` varchar(100) DEFAULT NULL COMMENT 'Where to pull actual data: gl_accounts, products, employees, etc',
  `erp_source_query` text DEFAULT NULL COMMENT 'SQL or reference to get actual value',
  `display_order` int(11) DEFAULT 0,
  `is_active` tinyint(1) DEFAULT 1,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `uk_name` (`name`),
  KEY `idx_category` (`category`),
  KEY `idx_active` (`is_active`),
  KEY `idx_order` (`display_order`)
) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `forecast_variable_templates`
--

LOCK TABLES `forecast_variable_templates` WRITE;
/*!40000 ALTER TABLE `forecast_variable_templates` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `forecast_variable_templates` VALUES
(1,'revenue','monthly_revenue','Monthly Revenue Target','Expected monthly revenue','amount',100000.0000,NULL,NULL,'$','sales_orders',NULL,10,1,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(2,'revenue','revenue_growth_rate','Revenue Growth Rate','Month-over-month or year-over-year growth','percentage',5.0000,NULL,NULL,'%',NULL,NULL,20,1,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(3,'revenue','avg_deal_size','Average Deal Size','Average revenue per sale','amount',5000.0000,NULL,NULL,'$','sales_orders',NULL,30,1,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(4,'revenue','conversion_rate','Lead Conversion Rate','Percentage of leads that convert to sales','percentage',15.0000,NULL,NULL,'%','opportunities',NULL,40,1,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(5,'cogs','materials_pct','Materials as % of Revenue','Direct materials cost percentage','percentage',35.0000,NULL,NULL,'%','journal_entries',NULL,110,1,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(6,'cogs','labor_pct','Direct Labor as % of Revenue','Direct labor cost percentage','percentage',25.0000,NULL,NULL,'%','payroll',NULL,120,1,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(7,'cogs','overhead_pct','Manufacturing Overhead %','Overhead allocation percentage','percentage',15.0000,NULL,NULL,'%','journal_entries',NULL,130,1,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(8,'cogs','inventory_turnover','Inventory Turnover (times/year)','How many times inventory turns per year','rate',6.0000,NULL,NULL,'x','stock_movements',NULL,140,1,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(9,'opex','fixed_monthly_opex','Fixed Monthly OpEx','Fixed operating expenses per month','amount',50000.0000,NULL,NULL,'$','journal_entries',NULL,210,1,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(10,'opex','variable_opex_pct','Variable OpEx as % Revenue','Variable operating expenses','percentage',10.0000,NULL,NULL,'%','journal_entries',NULL,220,1,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(11,'opex','marketing_budget','Monthly Marketing Budget','Marketing and advertising spend','amount',10000.0000,NULL,NULL,'$','journal_entries',NULL,230,1,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(12,'opex','rd_budget','Monthly R&D Budget','Research and development spend','amount',15000.0000,NULL,NULL,'$','journal_entries',NULL,240,1,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(13,'hr','total_headcount','Total Headcount','Number of employees','quantity',50.0000,NULL,NULL,'people','employees',NULL,310,1,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(14,'hr','avg_salary','Average Monthly Salary','Average salary per employee','amount',5000.0000,NULL,NULL,'$','employees',NULL,320,1,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(15,'hr','benefits_pct','Benefits as % of Salary','Benefits and taxes percentage','percentage',30.0000,NULL,NULL,'%','payroll',NULL,330,1,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(16,'hr','turnover_rate','Annual Turnover Rate','Employee turnover percentage','percentage',15.0000,NULL,NULL,'%','employees',NULL,340,1,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(17,'working_capital','ar_days','Accounts Receivable Days','Days to collect receivables','days',45.0000,NULL,NULL,'days','invoices',NULL,410,1,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(18,'working_capital','inventory_days','Inventory Days on Hand','Days of inventory held','days',60.0000,NULL,NULL,'days','stock_movements',NULL,420,1,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(19,'working_capital','ap_days','Accounts Payable Days','Days to pay suppliers','days',30.0000,NULL,NULL,'days','purchase_orders',NULL,430,1,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(20,'capex','annual_capex','Annual Capital Expenditure','Planned annual CapEx','amount',100000.0000,NULL,NULL,'$','fixed_assets',NULL,510,1,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(21,'capex','maintenance_capex_pct','Maintenance CapEx %','Maintenance as % of revenue','percentage',2.0000,NULL,NULL,'%','fixed_assets',NULL,520,1,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(22,'financing','interest_rate','Average Interest Rate','Weighted average interest rate','percentage',5.0000,NULL,NULL,'%','forecaster_financing_instruments',NULL,610,1,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(23,'financing','debt_balance','Total Debt Balance','Outstanding debt','amount',250000.0000,NULL,NULL,'$','forecaster_financing_instruments',NULL,620,1,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(24,'tax','effective_tax_rate','Effective Tax Rate','Combined tax rate','percentage',25.0000,NULL,NULL,'%',NULL,NULL,710,1,'2025-11-19 16:40:14','2025-11-19 16:40:14');
/*!40000 ALTER TABLE `forecast_variable_templates` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `forecast_variance_tracking`
--

DROP TABLE IF EXISTS `forecast_variance_tracking`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `forecast_variance_tracking` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `assumption_set_id` int(11) NOT NULL,
  `variable_template_id` int(11) NOT NULL,
  `period_date` date NOT NULL,
  `forecast_value` decimal(15,4) NOT NULL,
  `actual_value` decimal(15,4) DEFAULT NULL,
  `variance_amount` decimal(15,4) DEFAULT NULL,
  `variance_percent` decimal(8,2) DEFAULT NULL,
  `status` enum('on_track','warning','critical','favorable') DEFAULT 'on_track',
  `notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `uk_set_var_date` (`assumption_set_id`,`variable_template_id`,`period_date`),
  KEY `idx_set` (`assumption_set_id`),
  KEY `idx_variable` (`variable_template_id`),
  KEY `idx_date` (`period_date`),
  KEY `idx_status` (`status`),
  CONSTRAINT `forecast_variance_tracking_ibfk_1` FOREIGN KEY (`assumption_set_id`) REFERENCES `forecast_assumption_sets` (`id`) ON DELETE CASCADE,
  CONSTRAINT `forecast_variance_tracking_ibfk_2` FOREIGN KEY (`variable_template_id`) REFERENCES `forecast_variable_templates` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=1129 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `forecast_variance_tracking`
--

LOCK TABLES `forecast_variance_tracking` WRITE;
/*!40000 ALTER TABLE `forecast_variance_tracking` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `forecast_variance_tracking` VALUES
(1,1,1,'2025-11-19',100000.0000,0.0000,-100000.0000,-100.00,'critical',NULL,'2025-11-19 16:56:19','2025-11-19 16:56:19'),
(2,1,3,'2025-11-19',5000.0000,0.0000,-5000.0000,-100.00,'critical',NULL,'2025-11-19 16:56:19','2025-11-19 16:56:19'),
(3,1,5,'2025-11-19',35.0000,0.0000,-35.0000,-100.00,'critical',NULL,'2025-11-19 16:56:19','2025-11-19 16:56:19'),
(4,1,7,'2025-11-19',15.0000,0.0000,-15.0000,-100.00,'critical',NULL,'2025-11-19 16:56:19','2025-11-19 16:56:19'),
(5,1,9,'2025-11-19',50000.0000,0.0000,-50000.0000,-100.00,'critical',NULL,'2025-11-19 16:56:19','2025-11-19 16:56:19'),
(6,1,10,'2025-11-19',10.0000,0.0000,-10.0000,-100.00,'critical',NULL,'2025-11-19 16:56:19','2025-11-19 16:56:19'),
(7,1,11,'2025-11-19',10000.0000,0.0000,-10000.0000,-100.00,'critical',NULL,'2025-11-19 16:56:19','2025-11-19 16:56:19'),
(8,1,12,'2025-11-19',15000.0000,0.0000,-15000.0000,-100.00,'critical',NULL,'2025-11-19 16:56:19','2025-11-19 16:56:19'),
(9,1,17,'2025-11-19',45.0000,45.0000,0.0000,0.00,'on_track',NULL,'2025-11-19 16:56:19','2025-11-19 16:56:19'),
(10,1,18,'2025-11-19',60.0000,90.0000,30.0000,50.00,'critical',NULL,'2025-11-19 16:56:19','2025-11-19 16:56:19'),
(11,1,13,'2025-11-19',50.0000,5.0000,-45.0000,-90.00,'critical',NULL,'2025-11-19 16:56:19','2025-11-19 16:56:19'),
(12,1,14,'2025-11-19',5000.0000,0.0000,-5000.0000,-100.00,'critical',NULL,'2025-11-19 16:56:19','2025-11-19 16:56:19'),
(337,1,1,'2025-11-20',100000.0000,0.0000,-100000.0000,-100.00,'critical',NULL,'2025-11-20 12:08:20','2025-11-20 12:08:20'),
(338,1,3,'2025-11-20',5000.0000,0.0000,-5000.0000,-100.00,'critical',NULL,'2025-11-20 12:08:20','2025-11-20 12:08:20'),
(339,1,5,'2025-11-20',35.0000,0.0000,-35.0000,-100.00,'critical',NULL,'2025-11-20 12:08:20','2025-11-20 12:08:20'),
(340,1,7,'2025-11-20',15.0000,0.0000,-15.0000,-100.00,'critical',NULL,'2025-11-20 12:08:20','2025-11-20 12:08:20'),
(341,1,9,'2025-11-20',50000.0000,0.0000,-50000.0000,-100.00,'critical',NULL,'2025-11-20 12:08:20','2025-11-20 12:08:20'),
(342,1,10,'2025-11-20',10.0000,0.0000,-10.0000,-100.00,'critical',NULL,'2025-11-20 12:08:20','2025-11-20 12:08:20'),
(343,1,11,'2025-11-20',10000.0000,0.0000,-10000.0000,-100.00,'critical',NULL,'2025-11-20 12:08:20','2025-11-20 12:08:20'),
(344,1,12,'2025-11-20',15000.0000,0.0000,-15000.0000,-100.00,'critical',NULL,'2025-11-20 12:08:20','2025-11-20 12:08:20'),
(345,1,17,'2025-11-20',45.0000,45.0000,0.0000,0.00,'on_track',NULL,'2025-11-20 12:08:20','2025-11-20 12:08:20'),
(346,1,18,'2025-11-20',60.0000,90.0000,30.0000,50.00,'critical',NULL,'2025-11-20 12:08:20','2025-11-20 12:08:20'),
(347,1,13,'2025-11-20',50.0000,5.0000,-45.0000,-90.00,'critical',NULL,'2025-11-20 12:08:20','2025-11-20 12:08:20'),
(348,1,14,'2025-11-20',5000.0000,0.0000,-5000.0000,-100.00,'critical',NULL,'2025-11-20 12:08:20','2025-11-20 12:08:20'),
(853,1,1,'2025-11-21',100000.0000,0.0000,-100000.0000,-100.00,'critical',NULL,'2025-11-21 19:22:46','2025-11-21 19:22:46'),
(854,1,3,'2025-11-21',5000.0000,0.0000,-5000.0000,-100.00,'critical',NULL,'2025-11-21 19:22:46','2025-11-21 19:22:46'),
(855,1,5,'2025-11-21',35.0000,0.0000,-35.0000,-100.00,'critical',NULL,'2025-11-21 19:22:46','2025-11-21 19:22:46'),
(856,1,7,'2025-11-21',15.0000,0.0000,-15.0000,-100.00,'critical',NULL,'2025-11-21 19:22:46','2025-11-21 19:22:46'),
(857,1,9,'2025-11-21',50000.0000,0.0000,-50000.0000,-100.00,'critical',NULL,'2025-11-21 19:22:46','2025-11-21 19:22:46'),
(858,1,10,'2025-11-21',10.0000,0.0000,-10.0000,-100.00,'critical',NULL,'2025-11-21 19:22:46','2025-11-21 19:22:46'),
(859,1,11,'2025-11-21',10000.0000,0.0000,-10000.0000,-100.00,'critical',NULL,'2025-11-21 19:22:46','2025-11-21 19:22:46'),
(860,1,12,'2025-11-21',15000.0000,0.0000,-15000.0000,-100.00,'critical',NULL,'2025-11-21 19:22:46','2025-11-21 19:22:46'),
(861,1,17,'2025-11-21',45.0000,45.0000,0.0000,0.00,'on_track',NULL,'2025-11-21 19:22:46','2025-11-21 19:22:46'),
(862,1,18,'2025-11-21',60.0000,90.0000,30.0000,50.00,'critical',NULL,'2025-11-21 19:22:46','2025-11-21 19:22:46'),
(863,1,13,'2025-11-21',50.0000,5.0000,-45.0000,-90.00,'critical',NULL,'2025-11-21 19:22:46','2025-11-21 19:22:46'),
(864,1,14,'2025-11-21',5000.0000,0.0000,-5000.0000,-100.00,'critical',NULL,'2025-11-21 19:22:46','2025-11-21 19:22:46'),
(865,1,1,'2025-12-01',100000.0000,0.0000,-100000.0000,-100.00,'critical',NULL,'2025-12-02 03:08:25','2025-12-02 03:08:25'),
(866,1,3,'2025-12-01',5000.0000,0.0000,-5000.0000,-100.00,'critical',NULL,'2025-12-02 03:08:25','2025-12-02 03:08:25'),
(867,1,5,'2025-12-01',35.0000,0.0000,-35.0000,-100.00,'critical',NULL,'2025-12-02 03:08:25','2025-12-02 03:08:25'),
(868,1,7,'2025-12-01',15.0000,0.0000,-15.0000,-100.00,'critical',NULL,'2025-12-02 03:08:25','2025-12-02 03:08:25'),
(869,1,9,'2025-12-01',50000.0000,0.0000,-50000.0000,-100.00,'critical',NULL,'2025-12-02 03:08:25','2025-12-02 03:08:25'),
(870,1,10,'2025-12-01',10.0000,0.0000,-10.0000,-100.00,'critical',NULL,'2025-12-02 03:08:25','2025-12-02 03:08:25'),
(871,1,11,'2025-12-01',10000.0000,0.0000,-10000.0000,-100.00,'critical',NULL,'2025-12-02 03:08:25','2025-12-02 03:08:25'),
(872,1,12,'2025-12-01',15000.0000,0.0000,-15000.0000,-100.00,'critical',NULL,'2025-12-02 03:08:25','2025-12-02 03:08:25'),
(873,1,17,'2025-12-01',45.0000,45.0000,0.0000,0.00,'on_track',NULL,'2025-12-02 03:08:25','2025-12-02 03:08:25'),
(874,1,18,'2025-12-01',60.0000,90.0000,30.0000,50.00,'critical',NULL,'2025-12-02 03:08:25','2025-12-02 03:08:25'),
(875,1,13,'2025-12-01',50.0000,5.0000,-45.0000,-90.00,'critical',NULL,'2025-12-02 03:08:25','2025-12-02 03:08:25'),
(876,1,14,'2025-12-01',5000.0000,0.0000,-5000.0000,-100.00,'critical',NULL,'2025-12-02 03:08:25','2025-12-02 03:08:25'),
(877,1,1,'2025-12-02',100000.0000,0.0000,-100000.0000,-100.00,'critical',NULL,'2025-12-02 18:13:54','2025-12-02 18:13:54'),
(878,1,3,'2025-12-02',5000.0000,0.0000,-5000.0000,-100.00,'critical',NULL,'2025-12-02 18:13:54','2025-12-02 18:13:54'),
(879,1,5,'2025-12-02',35.0000,0.0000,-35.0000,-100.00,'critical',NULL,'2025-12-02 18:13:54','2025-12-02 18:13:54'),
(880,1,7,'2025-12-02',15.0000,0.0000,-15.0000,-100.00,'critical',NULL,'2025-12-02 18:13:54','2025-12-02 18:13:54'),
(881,1,9,'2025-12-02',50000.0000,0.0000,-50000.0000,-100.00,'critical',NULL,'2025-12-02 18:13:54','2025-12-02 18:13:54'),
(882,1,10,'2025-12-02',10.0000,0.0000,-10.0000,-100.00,'critical',NULL,'2025-12-02 18:13:54','2025-12-02 18:13:54'),
(883,1,11,'2025-12-02',10000.0000,0.0000,-10000.0000,-100.00,'critical',NULL,'2025-12-02 18:13:54','2025-12-02 18:13:54'),
(884,1,12,'2025-12-02',15000.0000,0.0000,-15000.0000,-100.00,'critical',NULL,'2025-12-02 18:13:54','2025-12-02 18:13:54'),
(885,1,17,'2025-12-02',45.0000,45.0000,0.0000,0.00,'on_track',NULL,'2025-12-02 18:13:54','2025-12-02 18:13:54'),
(886,1,18,'2025-12-02',60.0000,90.0000,30.0000,50.00,'critical',NULL,'2025-12-02 18:13:54','2025-12-02 18:13:54'),
(887,1,13,'2025-12-02',50.0000,5.0000,-45.0000,-90.00,'critical',NULL,'2025-12-02 18:13:54','2025-12-02 18:13:54'),
(888,1,14,'2025-12-02',5000.0000,0.0000,-5000.0000,-100.00,'critical',NULL,'2025-12-02 18:13:54','2025-12-02 18:13:54'),
(1009,1,1,'2025-12-03',100000.0000,0.0000,-100000.0000,-100.00,'critical',NULL,'2025-12-03 12:37:55','2025-12-03 12:37:55'),
(1010,1,3,'2025-12-03',5000.0000,0.0000,-5000.0000,-100.00,'critical',NULL,'2025-12-03 12:37:55','2025-12-03 12:37:55'),
(1011,1,5,'2025-12-03',35.0000,0.0000,-35.0000,-100.00,'critical',NULL,'2025-12-03 12:37:55','2025-12-03 12:37:55'),
(1012,1,7,'2025-12-03',15.0000,0.0000,-15.0000,-100.00,'critical',NULL,'2025-12-03 12:37:55','2025-12-03 12:37:55'),
(1013,1,9,'2025-12-03',50000.0000,0.0000,-50000.0000,-100.00,'critical',NULL,'2025-12-03 12:37:55','2025-12-03 12:37:55'),
(1014,1,10,'2025-12-03',10.0000,0.0000,-10.0000,-100.00,'critical',NULL,'2025-12-03 12:37:55','2025-12-03 12:37:55'),
(1015,1,11,'2025-12-03',10000.0000,0.0000,-10000.0000,-100.00,'critical',NULL,'2025-12-03 12:37:55','2025-12-03 12:37:55'),
(1016,1,12,'2025-12-03',15000.0000,0.0000,-15000.0000,-100.00,'critical',NULL,'2025-12-03 12:37:55','2025-12-03 12:37:55'),
(1017,1,17,'2025-12-03',45.0000,45.0000,0.0000,0.00,'on_track',NULL,'2025-12-03 12:37:55','2025-12-03 12:37:55'),
(1018,1,18,'2025-12-03',60.0000,90.0000,30.0000,50.00,'critical',NULL,'2025-12-03 12:37:55','2025-12-03 12:37:55'),
(1019,1,13,'2025-12-03',50.0000,5.0000,-45.0000,-90.00,'critical',NULL,'2025-12-03 12:37:55','2025-12-03 12:37:55'),
(1020,1,14,'2025-12-03',5000.0000,0.0000,-5000.0000,-100.00,'critical',NULL,'2025-12-03 12:37:55','2025-12-03 12:37:55'),
(1117,1,1,'2025-12-04',100000.0000,0.0000,-100000.0000,-100.00,'critical',NULL,'2025-12-04 23:46:27','2025-12-04 23:46:27'),
(1118,1,3,'2025-12-04',5000.0000,0.0000,-5000.0000,-100.00,'critical',NULL,'2025-12-04 23:46:27','2025-12-04 23:46:27'),
(1119,1,5,'2025-12-04',35.0000,0.0000,-35.0000,-100.00,'critical',NULL,'2025-12-04 23:46:27','2025-12-04 23:46:27'),
(1120,1,7,'2025-12-04',15.0000,0.0000,-15.0000,-100.00,'critical',NULL,'2025-12-04 23:46:27','2025-12-04 23:46:27'),
(1121,1,9,'2025-12-04',50000.0000,0.0000,-50000.0000,-100.00,'critical',NULL,'2025-12-04 23:46:27','2025-12-04 23:46:27'),
(1122,1,10,'2025-12-04',10.0000,0.0000,-10.0000,-100.00,'critical',NULL,'2025-12-04 23:46:27','2025-12-04 23:46:27'),
(1123,1,11,'2025-12-04',10000.0000,0.0000,-10000.0000,-100.00,'critical',NULL,'2025-12-04 23:46:27','2025-12-04 23:46:27'),
(1124,1,12,'2025-12-04',15000.0000,0.0000,-15000.0000,-100.00,'critical',NULL,'2025-12-04 23:46:27','2025-12-04 23:46:27'),
(1125,1,17,'2025-12-04',45.0000,45.0000,0.0000,0.00,'on_track',NULL,'2025-12-04 23:46:27','2025-12-04 23:46:27'),
(1126,1,18,'2025-12-04',60.0000,90.0000,30.0000,50.00,'critical',NULL,'2025-12-04 23:46:27','2025-12-04 23:46:27'),
(1127,1,13,'2025-12-04',50.0000,5.0000,-45.0000,-90.00,'critical',NULL,'2025-12-04 23:46:27','2025-12-04 23:46:27'),
(1128,1,14,'2025-12-04',5000.0000,0.0000,-5000.0000,-100.00,'critical',NULL,'2025-12-04 23:46:27','2025-12-04 23:46:27');
/*!40000 ALTER TABLE `forecast_variance_tracking` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `forecaster_equipment_scenarios`
--

DROP TABLE IF EXISTS `forecaster_equipment_scenarios`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `forecaster_equipment_scenarios` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `scenario_id` int(10) unsigned NOT NULL,
  `equipment_id` int(10) unsigned DEFAULT NULL,
  `equipment_line_id` int(10) unsigned DEFAULT NULL,
  `scenario_description` varchar(255) NOT NULL,
  `scenario_type` enum('add_equipment','upgrade_equipment','increase_efficiency','reduce_downtime','add_shift','remove_equipment') NOT NULL,
  `current_machines` int(11) DEFAULT 0,
  `current_capacity_per_day` decimal(12,2) DEFAULT 0.00,
  `current_utilization_pct` decimal(5,2) DEFAULT 0.00,
  `proposed_machines` int(11) DEFAULT 0,
  `proposed_capacity_per_day` decimal(12,2) DEFAULT 0.00,
  `proposed_utilization_pct` decimal(5,2) DEFAULT 0.00,
  `capital_investment` decimal(15,2) DEFAULT 0.00 COMMENT 'One-time investment',
  `additional_annual_operating_cost` decimal(15,2) DEFAULT 0.00,
  `additional_annual_labor_cost` decimal(15,2) DEFAULT 0.00,
  `additional_annual_revenue_capacity` decimal(15,2) DEFAULT 0.00,
  `annual_cost_savings` decimal(15,2) DEFAULT 0.00,
  `payback_period_months` decimal(6,2) DEFAULT 0.00,
  `roi_percent` decimal(8,2) DEFAULT 0.00,
  `npv` decimal(15,2) DEFAULT 0.00 COMMENT 'Net present value',
  `irr_percent` decimal(8,2) DEFAULT 0.00 COMMENT 'Internal rate of return',
  `implementation_date` date DEFAULT NULL,
  `implementation_duration_days` int(11) DEFAULT 0,
  `notes` text DEFAULT NULL,
  `is_approved` tinyint(1) DEFAULT 0,
  `approved_by` int(10) unsigned DEFAULT NULL,
  `approved_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `equipment_line_id` (`equipment_line_id`),
  KEY `approved_by` (`approved_by`),
  KEY `idx_scenario` (`scenario_id`),
  KEY `idx_equipment` (`equipment_id`),
  KEY `idx_scenario_type` (`scenario_type`),
  CONSTRAINT `forecaster_equipment_scenarios_ibfk_1` FOREIGN KEY (`scenario_id`) REFERENCES `forecaster_scenarios` (`id`) ON DELETE CASCADE,
  CONSTRAINT `forecaster_equipment_scenarios_ibfk_2` FOREIGN KEY (`equipment_id`) REFERENCES `equipment` (`id`) ON DELETE SET NULL,
  CONSTRAINT `forecaster_equipment_scenarios_ibfk_3` FOREIGN KEY (`equipment_line_id`) REFERENCES `equipment_lines` (`id`) ON DELETE SET NULL,
  CONSTRAINT `forecaster_equipment_scenarios_ibfk_4` FOREIGN KEY (`approved_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `forecaster_equipment_scenarios`
--

LOCK TABLES `forecaster_equipment_scenarios` WRITE;
/*!40000 ALTER TABLE `forecaster_equipment_scenarios` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `forecaster_equipment_scenarios` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `forecaster_financing_instruments`
--

DROP TABLE IF EXISTS `forecaster_financing_instruments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `forecaster_financing_instruments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `scenario_id` int(10) unsigned NOT NULL,
  `instrument_type` varchar(100) NOT NULL,
  `name` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `principal_amount` decimal(18,2) NOT NULL,
  `rate_type` enum('fixed','floating') NOT NULL DEFAULT 'fixed',
  `fixed_rate_pct` decimal(8,4) DEFAULT NULL,
  `index_id` int(10) unsigned DEFAULT NULL,
  `spread_bps` decimal(8,4) DEFAULT NULL,
  `start_date` date NOT NULL,
  `maturity_date` date NOT NULL,
  `payment_frequency` enum('monthly','quarterly','annual') NOT NULL DEFAULT 'monthly',
  `compounding_frequency` enum('monthly','quarterly','annual') NOT NULL DEFAULT 'monthly',
  `day_count_convention` varchar(20) DEFAULT 'actual/365',
  `origination_fee_pct` decimal(8,4) DEFAULT 0.0000,
  `prepayment_penalty_pct` decimal(8,4) DEFAULT 0.0000,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_scenario` (`scenario_id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `forecaster_financing_instruments`
--

LOCK TABLES `forecaster_financing_instruments` WRITE;
/*!40000 ALTER TABLE `forecaster_financing_instruments` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `forecaster_financing_instruments` VALUES
(1,1,'bond','New Bond1','',1500000.00,'fixed',5.5000,NULL,NULL,'2026-01-01','2026-12-31','monthly','monthly','actual/365',1.5000,2.0000,'2025-11-11 14:03:59','2025-11-11 14:03:59'),
(2,1,'loan','Term Loan','',5000000.00,'fixed',5.0000,NULL,NULL,'2026-01-01','2026-12-31','monthly','monthly','actual/365',2.0000,1.0000,'2025-11-11 14:04:28','2025-11-11 14:04:28'),
(3,1,'loan','Term Loan','',5000000.00,'fixed',5.0000,NULL,NULL,'2026-01-01','2026-12-31','monthly','monthly','actual/365',2.0000,1.0000,'2025-11-11 14:06:59','2025-11-11 14:06:59'),
(4,1,'loan','New Loan','',5000000.00,'fixed',5.0000,NULL,NULL,'2026-01-01','2026-12-31','monthly','monthly','actual/365',1.0000,2.0000,'2025-11-11 14:07:21','2025-11-11 14:07:21'),
(5,2,'loan','Bank Loan1','',5000000.00,'floating',NULL,1,200.0000,'2026-01-01','2026-12-31','monthly','quarterly','actual/365',1.0000,2.0000,'2025-11-11 14:34:33','2025-11-11 14:34:33'),
(6,4,'bond','Bond James Bond','',100000.00,'floating',NULL,1,200.0000,'2026-01-01','2026-12-31','monthly','monthly','actual/365',0.5000,1.0000,'2025-11-11 16:09:23','2025-11-11 16:09:23'),
(7,8,'loan','Loan','',500000.00,'fixed',5.0000,NULL,NULL,'2025-01-01','2030-11-14','monthly','monthly','actual/365',1.0000,2.0000,'2025-11-14 12:46:30','2025-11-14 12:46:30');
/*!40000 ALTER TABLE `forecaster_financing_instruments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `forecaster_forecasts`
--

DROP TABLE IF EXISTS `forecaster_forecasts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `forecaster_forecasts` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `start_date` date NOT NULL,
  `end_date` date NOT NULL,
  `period_type` enum('monthly','quarterly') NOT NULL DEFAULT 'monthly',
  `starting_cash` decimal(18,2) NOT NULL DEFAULT 0.00,
  `is_active` tinyint(1) NOT NULL DEFAULT 1,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `proforma_assumptions` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Stores revenue, COGS, OpEx, facility cost assumptions' CHECK (json_valid(`proforma_assumptions`)),
  PRIMARY KEY (`id`),
  KEY `idx_created_by` (`created_by`),
  KEY `idx_is_active` (`is_active`),
  KEY `idx_forecasts_location` (`created_by`,`is_active`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `forecaster_forecasts`
--

LOCK TABLES `forecaster_forecasts` WRITE;
/*!40000 ALTER TABLE `forecaster_forecasts` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `forecaster_forecasts` VALUES
(1,'2025 Agressive Foreceast','','2026-01-01','2026-12-31','monthly',0.00,1,1,'2025-11-11 13:51:12','2025-11-11 14:54:35',NULL),
(2,'2025 Loose Foreceast','','2026-01-01','2026-12-31','monthly',0.00,1,1,'2025-11-11 13:52:47','2025-11-11 14:36:57',NULL),
(4,'2025 Base Foreceast','','2026-01-01','2026-12-31','monthly',0.00,1,1,'2025-11-11 13:54:16','2025-11-11 13:54:16',NULL),
(5,'2025 Current Forecast','This is a test','2026-01-01','2026-12-31','monthly',100000.00,1,1,'2025-11-11 16:04:40','2025-11-11 16:17:26',NULL),
(6,'Garage - Financial Plan','Financial plan for Garage location','2025-01-01','2034-12-31','monthly',1000000.00,1,1,'2025-11-14 06:40:25','2025-11-14 06:40:25','{\"revenue\":{\"initial_revenue\":1000000,\"revenue_growth_rate\":5},\"cogs\":{\"materials_pct\":35,\"labor_pct\":25,\"overhead_pct\":15,\"cogs_inflation\":3},\"opex\":{\"fixed_opex\":150000,\"variable_opex_pct\":10,\"opex_inflation\":2.5},\"capex\":{\"initial_capex\":500000,\"maintenance_capex_pct\":2},\"facility\":{\"base_rent_year\":120000,\"nnn_year\":24000,\"energy_cost_year\":36000,\"insurance_year\":12000,\"utilities_year\":18000}}'),
(7,'Garage - Financial Plan','Financial plan for Garage location','2025-01-01','2034-12-31','monthly',1000000.00,1,1,'2025-11-14 06:41:14','2025-11-14 06:41:14','{\"revenue\":{\"initial_revenue\":1000000,\"revenue_growth_rate\":5},\"cogs\":{\"materials_pct\":35,\"labor_pct\":25,\"overhead_pct\":15,\"cogs_inflation\":3},\"opex\":{\"fixed_opex\":150000,\"variable_opex_pct\":10,\"opex_inflation\":2.5},\"capex\":{\"initial_capex\":500000,\"maintenance_capex_pct\":2},\"facility\":{\"base_rent_year\":120000,\"nnn_year\":24000,\"energy_cost_year\":36000,\"insurance_year\":12000,\"utilities_year\":18000}}');
/*!40000 ALTER TABLE `forecaster_forecasts` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `forecaster_instrument_cashflows`
--

DROP TABLE IF EXISTS `forecaster_instrument_cashflows`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `forecaster_instrument_cashflows` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `scenario_id` int(10) unsigned NOT NULL,
  `period_id` int(10) unsigned NOT NULL,
  `instrument_id` int(10) unsigned NOT NULL,
  `instrument_table` varchar(50) NOT NULL,
  `principal_amount` decimal(18,2) NOT NULL DEFAULT 0.00,
  `interest_amount` decimal(18,2) NOT NULL DEFAULT 0.00,
  `fee_amount` decimal(18,2) NOT NULL DEFAULT 0.00,
  `notes` text DEFAULT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_scenario` (`scenario_id`),
  KEY `idx_period` (`period_id`),
  KEY `idx_instrument` (`instrument_table`,`instrument_id`)
) ENGINE=InnoDB AUTO_INCREMENT=58 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `forecaster_instrument_cashflows`
--

LOCK TABLES `forecaster_instrument_cashflows` WRITE;
/*!40000 ALTER TABLE `forecaster_instrument_cashflows` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `forecaster_instrument_cashflows` VALUES
(1,1,25,3,'financing',445154.50,20833.33,0.00,'Auto-generated from amortization schedule','2025-11-11 14:06:59'),
(2,1,26,3,'financing',447009.32,18978.52,0.00,'Auto-generated from amortization schedule','2025-11-11 14:06:59'),
(3,1,27,3,'financing',448871.85,17115.98,0.00,'Auto-generated from amortization schedule','2025-11-11 14:06:59'),
(4,1,28,3,'financing',450742.15,15245.68,0.00,'Auto-generated from amortization schedule','2025-11-11 14:06:59'),
(5,1,29,3,'financing',452620.25,13367.59,0.00,'Auto-generated from amortization schedule','2025-11-11 14:06:59'),
(6,1,30,3,'financing',454506.16,11481.67,0.00,'Auto-generated from amortization schedule','2025-11-11 14:06:59'),
(7,1,31,3,'financing',456399.94,9587.90,0.00,'Auto-generated from amortization schedule','2025-11-11 14:06:59'),
(8,1,32,3,'financing',458301.61,7686.23,0.00,'Auto-generated from amortization schedule','2025-11-11 14:06:59'),
(9,1,33,3,'financing',460211.20,5776.64,0.00,'Auto-generated from amortization schedule','2025-11-11 14:06:59'),
(10,1,34,3,'financing',462128.74,3859.10,0.00,'Auto-generated from amortization schedule','2025-11-11 14:06:59'),
(11,1,35,3,'financing',464054.28,1933.56,0.00,'Auto-generated from amortization schedule','2025-11-11 14:06:59'),
(12,1,25,4,'financing',445154.50,20833.33,0.00,'Auto-generated from amortization schedule','2025-11-11 14:07:21'),
(13,1,26,4,'financing',447009.32,18978.52,0.00,'Auto-generated from amortization schedule','2025-11-11 14:07:21'),
(14,1,27,4,'financing',448871.85,17115.98,0.00,'Auto-generated from amortization schedule','2025-11-11 14:07:21'),
(15,1,28,4,'financing',450742.15,15245.68,0.00,'Auto-generated from amortization schedule','2025-11-11 14:07:21'),
(16,1,29,4,'financing',452620.25,13367.59,0.00,'Auto-generated from amortization schedule','2025-11-11 14:07:21'),
(17,1,30,4,'financing',454506.16,11481.67,0.00,'Auto-generated from amortization schedule','2025-11-11 14:07:21'),
(18,1,31,4,'financing',456399.94,9587.90,0.00,'Auto-generated from amortization schedule','2025-11-11 14:07:21'),
(19,1,32,4,'financing',458301.61,7686.23,0.00,'Auto-generated from amortization schedule','2025-11-11 14:07:21'),
(20,1,33,4,'financing',460211.20,5776.64,0.00,'Auto-generated from amortization schedule','2025-11-11 14:07:21'),
(21,1,34,4,'financing',462128.74,3859.10,0.00,'Auto-generated from amortization schedule','2025-11-11 14:07:21'),
(22,1,35,4,'financing',464054.28,1933.56,0.00,'Auto-generated from amortization schedule','2025-11-11 14:07:21'),
(23,1,25,1,'investment',0.00,1438.36,0.00,'Auto-generated interest income','2025-11-11 14:18:17'),
(24,1,26,1,'investment',0.00,1298.24,0.00,'Auto-generated interest income','2025-11-11 14:18:17'),
(25,1,27,1,'investment',0.00,1446.23,0.00,'Auto-generated interest income','2025-11-11 14:18:17'),
(26,1,28,1,'investment',0.00,1402.04,0.00,'Auto-generated interest income','2025-11-11 14:18:17'),
(27,1,29,1,'investment',0.00,1454.42,0.00,'Auto-generated interest income','2025-11-11 14:18:17'),
(28,1,30,1,'investment',0.00,1409.99,0.00,'Auto-generated interest income','2025-11-11 14:18:17'),
(29,1,31,1,'investment',0.00,1462.66,0.00,'Auto-generated interest income','2025-11-11 14:18:17'),
(30,1,32,1,'investment',0.00,1466.87,0.00,'Auto-generated interest income','2025-11-11 14:18:17'),
(31,1,33,1,'investment',0.00,1422.05,0.00,'Auto-generated interest income','2025-11-11 14:18:17'),
(32,1,34,1,'investment',0.00,1475.18,0.00,'Auto-generated interest income','2025-11-11 14:18:17'),
(33,1,35,1,'investment',0.00,1430.11,0.00,'Auto-generated interest income','2025-11-11 14:18:17'),
(34,1,36,1,'investment',0.00,1483.54,0.00,'Auto-generated interest income','2025-11-11 14:18:17'),
(35,4,37,6,'financing',8903.09,416.67,0.00,'Auto-generated from amortization schedule','2025-11-11 16:09:23'),
(36,4,38,6,'financing',8940.19,379.57,0.00,'Auto-generated from amortization schedule','2025-11-11 16:09:23'),
(37,4,39,6,'financing',8977.44,342.32,0.00,'Auto-generated from amortization schedule','2025-11-11 16:09:23'),
(38,4,40,6,'financing',9014.84,304.91,0.00,'Auto-generated from amortization schedule','2025-11-11 16:09:23'),
(39,4,41,6,'financing',9052.40,267.35,0.00,'Auto-generated from amortization schedule','2025-11-11 16:09:23'),
(40,4,42,6,'financing',9090.12,229.63,0.00,'Auto-generated from amortization schedule','2025-11-11 16:09:23'),
(41,4,43,6,'financing',9128.00,191.76,0.00,'Auto-generated from amortization schedule','2025-11-11 16:09:23'),
(42,4,44,6,'financing',9166.03,153.72,0.00,'Auto-generated from amortization schedule','2025-11-11 16:09:23'),
(43,4,45,6,'financing',9204.22,115.53,0.00,'Auto-generated from amortization schedule','2025-11-11 16:09:23'),
(44,4,46,6,'financing',9242.57,77.18,0.00,'Auto-generated from amortization schedule','2025-11-11 16:09:23'),
(45,4,47,6,'financing',9281.09,38.67,0.00,'Auto-generated from amortization schedule','2025-11-11 16:09:23'),
(46,4,37,3,'investment',0.00,0.14,0.00,'Auto-generated interest income','2025-11-11 16:11:08'),
(47,4,38,3,'investment',0.00,0.13,0.00,'Auto-generated interest income','2025-11-11 16:11:08'),
(48,4,39,3,'investment',0.00,0.14,0.00,'Auto-generated interest income','2025-11-11 16:11:08'),
(49,4,40,3,'investment',0.00,0.14,0.00,'Auto-generated interest income','2025-11-11 16:11:08'),
(50,4,41,3,'investment',0.00,0.15,0.00,'Auto-generated interest income','2025-11-11 16:11:08'),
(51,4,42,3,'investment',0.00,0.14,0.00,'Auto-generated interest income','2025-11-11 16:11:08'),
(52,4,43,3,'investment',0.00,0.15,0.00,'Auto-generated interest income','2025-11-11 16:11:08'),
(53,4,44,3,'investment',0.00,0.15,0.00,'Auto-generated interest income','2025-11-11 16:11:08'),
(54,4,45,3,'investment',0.00,0.14,0.00,'Auto-generated interest income','2025-11-11 16:11:08'),
(55,4,46,3,'investment',0.00,0.15,0.00,'Auto-generated interest income','2025-11-11 16:11:08'),
(56,4,47,3,'investment',0.00,0.14,0.00,'Auto-generated interest income','2025-11-11 16:11:08'),
(57,4,48,3,'investment',0.00,0.15,0.00,'Auto-generated interest income','2025-11-11 16:11:08');
/*!40000 ALTER TABLE `forecaster_instrument_cashflows` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `forecaster_investment_instruments`
--

DROP TABLE IF EXISTS `forecaster_investment_instruments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `forecaster_investment_instruments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `scenario_id` int(10) unsigned NOT NULL,
  `instrument_type` varchar(100) NOT NULL,
  `name` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `invested_amount` decimal(18,2) NOT NULL,
  `yield_type` enum('fixed','floating') NOT NULL DEFAULT 'fixed',
  `fixed_yield_pct` decimal(8,4) DEFAULT NULL,
  `index_id` int(10) unsigned DEFAULT NULL,
  `spread_bps` decimal(8,4) DEFAULT NULL,
  `purchase_date` date NOT NULL,
  `maturity_date` date DEFAULT NULL,
  `interest_payment_frequency` enum('monthly','quarterly','annual') NOT NULL DEFAULT 'annual',
  `compounding_frequency` enum('monthly','quarterly','annual') NOT NULL DEFAULT 'annual',
  `day_count_convention` varchar(20) DEFAULT 'actual/365',
  `reinvest_interest` tinyint(1) DEFAULT 0,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_scenario` (`scenario_id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `forecaster_investment_instruments`
--

LOCK TABLES `forecaster_investment_instruments` WRITE;
/*!40000 ALTER TABLE `forecaster_investment_instruments` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `forecaster_investment_instruments` VALUES
(1,1,'cd','CD Investment 1','',500000.00,'floating',NULL,1,50.0000,'2026-01-01','2026-12-31','monthly','quarterly','actual/365',1,'2025-11-11 14:18:17','2025-11-11 14:18:17'),
(2,2,'cd','CD1','',500000.00,'floating',NULL,2,50.0000,'2026-01-01','2026-12-31','quarterly','quarterly','actual/365',0,'2025-11-11 14:34:59','2025-11-11 14:34:59'),
(3,4,'cd','Def Leppard CD','text here',50.00,'floating',NULL,3,50.0000,'2026-01-01','2081-12-31','monthly','monthly','actual/365',1,'2025-11-11 16:11:08','2025-11-11 16:11:08'),
(4,8,'treasury','US T Bill','',500000.00,'fixed',3.5000,NULL,NULL,'2025-01-01','2030-12-31','monthly','monthly','actual/365',0,'2025-11-14 12:46:51','2025-11-14 12:46:51');
/*!40000 ALTER TABLE `forecaster_investment_instruments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `forecaster_periods`
--

DROP TABLE IF EXISTS `forecaster_periods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `forecaster_periods` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `forecast_id` int(10) unsigned NOT NULL,
  `period_label` varchar(50) NOT NULL,
  `start_date` date NOT NULL,
  `end_date` date NOT NULL,
  `revenue` decimal(18,2) NOT NULL DEFAULT 0.00,
  `cogs` decimal(18,2) NOT NULL DEFAULT 0.00,
  `operating_expenses` decimal(18,2) NOT NULL DEFAULT 0.00,
  `capital_expenditures` decimal(18,2) NOT NULL DEFAULT 0.00,
  `other_income` decimal(18,2) NOT NULL DEFAULT 0.00,
  `tax` decimal(18,2) NOT NULL DEFAULT 0.00,
  `net_cashflow` decimal(18,2) NOT NULL DEFAULT 0.00,
  `beginning_cash` decimal(18,2) NOT NULL DEFAULT 0.00,
  `ending_cash` decimal(18,2) NOT NULL DEFAULT 0.00,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `uq_forecast_period` (`forecast_id`,`start_date`),
  KEY `idx_forecast` (`forecast_id`)
) ENGINE=InnoDB AUTO_INCREMENT=49 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `forecaster_periods`
--

LOCK TABLES `forecaster_periods` WRITE;
/*!40000 ALTER TABLE `forecaster_periods` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `forecaster_periods` VALUES
(1,2,'Jan 2026','2026-01-01','2026-01-31',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,0.00,-1666.67,'2025-11-11 13:52:47','2025-11-11 14:37:07'),
(2,2,'Feb 2026','2026-02-01','2026-02-28',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,-1666.67,-3333.34,'2025-11-11 13:52:47','2025-11-11 14:37:07'),
(3,2,'Mar 2026','2026-03-01','2026-03-31',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,-3333.34,-5000.01,'2025-11-11 13:52:47','2025-11-11 14:37:07'),
(4,2,'Apr 2026','2026-04-01','2026-04-30',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,-5000.01,-6666.68,'2025-11-11 13:52:47','2025-11-11 14:37:07'),
(5,2,'May 2026','2026-05-01','2026-05-31',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,-6666.68,-8333.35,'2025-11-11 13:52:47','2025-11-11 14:37:07'),
(6,2,'Jun 2026','2026-06-01','2026-06-30',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,-8333.35,-10000.02,'2025-11-11 13:52:47','2025-11-11 14:37:07'),
(7,2,'Jul 2026','2026-07-01','2026-07-31',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,-10000.02,-11666.69,'2025-11-11 13:52:47','2025-11-11 14:37:07'),
(8,2,'Aug 2026','2026-08-01','2026-08-31',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,-11666.69,-13333.36,'2025-11-11 13:52:47','2025-11-11 14:37:07'),
(9,2,'Sep 2026','2026-09-01','2026-09-30',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,-13333.36,-15000.03,'2025-11-11 13:52:47','2025-11-11 14:37:07'),
(10,2,'Oct 2026','2026-10-01','2026-10-31',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,-15000.03,-16666.70,'2025-11-11 13:52:47','2025-11-11 14:37:07'),
(11,2,'Nov 2026','2026-11-01','2026-11-30',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,-16666.70,-18333.37,'2025-11-11 13:52:47','2025-11-11 14:37:07'),
(12,2,'Dec 2026','2026-12-01','2026-12-31',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,-18333.37,-20000.04,'2025-11-11 13:52:47','2025-11-11 14:37:07'),
(13,3,'Jan 2026','2026-01-01','2026-01-31',0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,'2025-11-11 13:52:52','2025-11-11 13:52:52'),
(14,3,'Feb 2026','2026-02-01','2026-02-28',0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,'2025-11-11 13:52:52','2025-11-11 13:52:52'),
(15,3,'Mar 2026','2026-03-01','2026-03-31',0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,'2025-11-11 13:52:52','2025-11-11 13:52:52'),
(16,3,'Apr 2026','2026-04-01','2026-04-30',0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,'2025-11-11 13:52:52','2025-11-11 13:52:52'),
(17,3,'May 2026','2026-05-01','2026-05-31',0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,'2025-11-11 13:52:52','2025-11-11 13:52:52'),
(18,3,'Jun 2026','2026-06-01','2026-06-30',0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,'2025-11-11 13:52:52','2025-11-11 13:52:52'),
(19,3,'Jul 2026','2026-07-01','2026-07-31',0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,'2025-11-11 13:52:52','2025-11-11 13:52:52'),
(20,3,'Aug 2026','2026-08-01','2026-08-31',0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,'2025-11-11 13:52:52','2025-11-11 13:52:52'),
(21,3,'Sep 2026','2026-09-01','2026-09-30',0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,'2025-11-11 13:52:52','2025-11-11 13:52:52'),
(22,3,'Oct 2026','2026-10-01','2026-10-31',0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,'2025-11-11 13:52:52','2025-11-11 13:52:52'),
(23,3,'Nov 2026','2026-11-01','2026-11-30',0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,'2025-11-11 13:52:52','2025-11-11 13:52:52'),
(24,3,'Dec 2026','2026-12-01','2026-12-31',0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,'2025-11-11 13:52:52','2025-11-11 13:52:52'),
(25,4,'Jan 2026','2026-01-01','2026-01-31',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,0.00,-1666.67,'2025-11-11 13:54:16','2025-11-11 14:36:31'),
(26,4,'Feb 2026','2026-02-01','2026-02-28',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,-1666.67,-3333.34,'2025-11-11 13:54:16','2025-11-11 14:36:31'),
(27,4,'Mar 2026','2026-03-01','2026-03-31',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,-3333.34,-5000.01,'2025-11-11 13:54:16','2025-11-11 14:36:31'),
(28,4,'Apr 2026','2026-04-01','2026-04-30',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,-5000.01,-6666.68,'2025-11-11 13:54:16','2025-11-11 14:36:31'),
(29,4,'May 2026','2026-05-01','2026-05-31',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,-6666.68,-8333.35,'2025-11-11 13:54:16','2025-11-11 14:36:31'),
(30,4,'Jun 2026','2026-06-01','2026-06-30',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,-8333.35,-10000.02,'2025-11-11 13:54:16','2025-11-11 14:36:31'),
(31,4,'Jul 2026','2026-07-01','2026-07-31',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,-10000.02,-11666.69,'2025-11-11 13:54:16','2025-11-11 14:36:31'),
(32,4,'Aug 2026','2026-08-01','2026-08-31',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,-11666.69,-13333.36,'2025-11-11 13:54:16','2025-11-11 14:36:31'),
(33,4,'Sep 2026','2026-09-01','2026-09-30',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,-13333.36,-15000.03,'2025-11-11 13:54:16','2025-11-11 14:36:31'),
(34,4,'Oct 2026','2026-10-01','2026-10-31',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,-15000.03,-16666.70,'2025-11-11 13:54:16','2025-11-11 14:36:31'),
(35,4,'Nov 2026','2026-11-01','2026-11-30',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,-16666.70,-18333.37,'2025-11-11 13:54:16','2025-11-11 14:36:31'),
(36,4,'Dec 2026','2026-12-01','2026-12-31',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,-18333.37,-20000.04,'2025-11-11 13:54:16','2025-11-11 14:36:31'),
(37,5,'Jan 2026','2026-01-01','2026-01-31',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,100000.00,98333.33,'2025-11-11 16:04:40','2025-11-11 16:05:31'),
(38,5,'Feb 2026','2026-02-01','2026-02-28',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,98333.33,96666.66,'2025-11-11 16:04:40','2025-11-11 16:05:31'),
(39,5,'Mar 2026','2026-03-01','2026-03-31',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,96666.66,94999.99,'2025-11-11 16:04:40','2025-11-11 16:05:31'),
(40,5,'Apr 2026','2026-04-01','2026-04-30',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,94999.99,93333.32,'2025-11-11 16:04:40','2025-11-11 16:05:31'),
(41,5,'May 2026','2026-05-01','2026-05-31',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,93333.32,91666.65,'2025-11-11 16:04:40','2025-11-11 16:05:31'),
(42,5,'Jun 2026','2026-06-01','2026-06-30',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,91666.65,89999.98,'2025-11-11 16:04:40','2025-11-11 16:05:31'),
(43,5,'Jul 2026','2026-07-01','2026-07-31',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,89999.98,88333.31,'2025-11-11 16:04:40','2025-11-11 16:05:31'),
(44,5,'Aug 2026','2026-08-01','2026-08-31',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,88333.31,86666.64,'2025-11-11 16:04:40','2025-11-11 16:05:31'),
(45,5,'Sep 2026','2026-09-01','2026-09-30',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,86666.64,84999.97,'2025-11-11 16:04:40','2025-11-11 16:05:31'),
(46,5,'Oct 2026','2026-10-01','2026-10-31',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,84999.97,83333.30,'2025-11-11 16:04:40','2025-11-11 16:05:31'),
(47,5,'Nov 2026','2026-11-01','2026-11-30',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,83333.30,81666.63,'2025-11-11 16:04:40','2025-11-11 16:05:31'),
(48,5,'Dec 2026','2026-12-01','2026-12-31',83333.33,62500.00,20833.33,1666.67,0.00,0.00,-1666.67,81666.63,79999.96,'2025-11-11 16:04:40','2025-11-11 16:05:31');
/*!40000 ALTER TABLE `forecaster_periods` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `forecaster_rate_index_values`
--

DROP TABLE IF EXISTS `forecaster_rate_index_values`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `forecaster_rate_index_values` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `rate_index_id` int(10) unsigned NOT NULL,
  `date` date NOT NULL,
  `rate_annual` decimal(8,5) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `uq_rate_index_date` (`rate_index_id`,`date`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `forecaster_rate_index_values`
--

LOCK TABLES `forecaster_rate_index_values` WRITE;
/*!40000 ALTER TABLE `forecaster_rate_index_values` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `forecaster_rate_index_values` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `forecaster_rate_indices`
--

DROP TABLE IF EXISTS `forecaster_rate_indices`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `forecaster_rate_indices` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `code` varchar(50) NOT NULL,
  `name` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `is_manual` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `code` (`code`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `forecaster_rate_indices`
--

LOCK TABLES `forecaster_rate_indices` WRITE;
/*!40000 ALTER TABLE `forecaster_rate_indices` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `forecaster_rate_indices` VALUES
(1,'SOFR','Secured Overnight Financing Rate','Federal Reserve benchmark rate replacing LIBOR',1,'2025-11-11 13:46:11','2025-11-11 13:46:11'),
(2,'PRIME','US Prime Rate','Prime rate used by banks',1,'2025-11-11 13:46:11','2025-11-11 13:46:11'),
(3,'CUSTOM','Custom Rate Index','User-defined custom rate index',1,'2025-11-11 13:46:11','2025-11-11 13:46:11');
/*!40000 ALTER TABLE `forecaster_rate_indices` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `forecaster_scenario_metrics`
--

DROP TABLE IF EXISTS `forecaster_scenario_metrics`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `forecaster_scenario_metrics` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `scenario_id` int(10) unsigned NOT NULL,
  `metric_name` varchar(100) NOT NULL,
  `metric_value` decimal(30,10) NOT NULL,
  `currency` varchar(10) DEFAULT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_scenario_metric` (`scenario_id`,`metric_name`)
) ENGINE=InnoDB AUTO_INCREMENT=121 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `forecaster_scenario_metrics`
--

LOCK TABLES `forecaster_scenario_metrics` WRITE;
/*!40000 ALTER TABLE `forecaster_scenario_metrics` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `forecaster_scenario_metrics` VALUES
(1,1,'total_revenue',0.0000000000,'USD','2025-11-11 14:22:52'),
(2,1,'total_cogs',0.0000000000,'USD','2025-11-11 14:22:52'),
(3,1,'total_opex',0.0000000000,'USD','2025-11-11 14:22:52'),
(4,1,'total_capex',0.0000000000,'USD','2025-11-11 14:22:52'),
(5,1,'total_interest_income',17189.6900000000,'USD','2025-11-11 14:22:52'),
(6,1,'total_interest_expense',251732.4000000000,'USD','2025-11-11 14:22:52'),
(7,1,'total_tax',0.0000000000,'USD','2025-11-11 14:22:52'),
(8,1,'total_net_cashflow',0.0000000000,'USD','2025-11-11 14:22:52'),
(9,1,'avg_monthly_cashflow',0.0000000000,'USD','2025-11-11 14:22:52'),
(10,1,'min_cash_position',0.0000000000,'USD','2025-11-11 14:22:52'),
(11,1,'max_cash_position',0.0000000000,'USD','2025-11-11 14:22:52'),
(12,1,'npv',0.0000000000,'USD','2025-11-11 14:22:52'),
(37,2,'total_revenue',0.0000000000,'USD','2025-11-11 14:35:15'),
(38,2,'total_cogs',0.0000000000,'USD','2025-11-11 14:35:15'),
(39,2,'total_opex',0.0000000000,'USD','2025-11-11 14:35:15'),
(40,2,'total_capex',0.0000000000,'USD','2025-11-11 14:35:15'),
(41,2,'total_interest_income',0.0000000000,'USD','2025-11-11 14:35:15'),
(42,2,'total_interest_expense',0.0000000000,'USD','2025-11-11 14:35:15'),
(43,2,'total_tax',0.0000000000,'USD','2025-11-11 14:35:15'),
(44,2,'total_net_cashflow',0.0000000000,'USD','2025-11-11 14:35:15'),
(45,2,'avg_monthly_cashflow',0.0000000000,'USD','2025-11-11 14:35:15'),
(46,2,'min_cash_position',0.0000000000,'USD','2025-11-11 14:35:15'),
(47,2,'max_cash_position',0.0000000000,'USD','2025-11-11 14:35:15'),
(48,2,'npv',0.0000000000,'USD','2025-11-11 14:35:15'),
(49,4,'total_revenue',999999.9600000000,'USD','2025-11-11 16:11:18'),
(50,4,'total_cogs',750000.0000000000,'USD','2025-11-11 16:11:18'),
(51,4,'total_opex',249999.9600000000,'USD','2025-11-11 16:11:18'),
(52,4,'total_capex',20000.0400000000,'USD','2025-11-11 16:11:18'),
(53,4,'total_interest_income',1.7200000000,'USD','2025-11-11 16:11:18'),
(54,4,'total_interest_expense',2517.3100000000,'USD','2025-11-11 16:11:18'),
(55,4,'total_tax',0.0000000000,'USD','2025-11-11 16:11:18'),
(56,4,'total_net_cashflow',-20000.0400000000,'USD','2025-11-11 16:11:18'),
(57,4,'avg_monthly_cashflow',-1666.6700000000,'USD','2025-11-11 16:11:18'),
(58,4,'min_cash_position',79999.9600000000,'USD','2025-11-11 16:11:18'),
(59,4,'max_cash_position',98333.3300000000,'USD','2025-11-11 16:11:18'),
(60,4,'npv',-19009.9127773310,'USD','2025-11-11 16:11:18'),
(61,5,'total_revenue',999999.9600000000,'USD','2025-11-11 16:13:07'),
(62,5,'total_cogs',750000.0000000000,'USD','2025-11-11 16:13:07'),
(63,5,'total_opex',249999.9600000000,'USD','2025-11-11 16:13:07'),
(64,5,'total_capex',20000.0400000000,'USD','2025-11-11 16:13:07'),
(65,5,'total_interest_income',0.0000000000,'USD','2025-11-11 16:13:07'),
(66,5,'total_interest_expense',0.0000000000,'USD','2025-11-11 16:13:07'),
(67,5,'total_tax',0.0000000000,'USD','2025-11-11 16:13:07'),
(68,5,'total_net_cashflow',-20000.0400000000,'USD','2025-11-11 16:13:07'),
(69,5,'avg_monthly_cashflow',-1666.6700000000,'USD','2025-11-11 16:13:07'),
(70,5,'min_cash_position',79999.9600000000,'USD','2025-11-11 16:13:07'),
(71,5,'max_cash_position',98333.3300000000,'USD','2025-11-11 16:13:07'),
(72,5,'npv',-19009.9127773310,'USD','2025-11-11 16:13:07'),
(109,8,'total_revenue',0.0000000000,'USD','2025-11-14 12:46:58'),
(110,8,'total_cogs',0.0000000000,'USD','2025-11-14 12:46:58'),
(111,8,'total_opex',0.0000000000,'USD','2025-11-14 12:46:58'),
(112,8,'total_capex',0.0000000000,'USD','2025-11-14 12:46:58'),
(113,8,'total_interest_income',0.0000000000,'USD','2025-11-14 12:46:58'),
(114,8,'total_interest_expense',0.0000000000,'USD','2025-11-14 12:46:58'),
(115,8,'total_tax',0.0000000000,'USD','2025-11-14 12:46:58'),
(116,8,'total_net_cashflow',0.0000000000,'USD','2025-11-14 12:46:58'),
(117,8,'avg_monthly_cashflow',0.0000000000,'USD','2025-11-14 12:46:58'),
(118,8,'min_cash_position',0.0000000000,'USD','2025-11-14 12:46:58'),
(119,8,'max_cash_position',0.0000000000,'USD','2025-11-14 12:46:58'),
(120,8,'npv',0.0000000000,'USD','2025-11-14 12:46:58');
/*!40000 ALTER TABLE `forecaster_scenario_metrics` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `forecaster_scenarios`
--

DROP TABLE IF EXISTS `forecaster_scenarios`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `forecaster_scenarios` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `forecast_id` int(10) unsigned NOT NULL,
  `name` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT 1,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `display_order` int(11) DEFAULT 0 COMMENT 'Order in comparison view',
  `color_code` varchar(7) DEFAULT '#007bff' COMMENT 'Hex color for charts and UI',
  PRIMARY KEY (`id`),
  KEY `idx_forecast` (`forecast_id`),
  KEY `idx_is_active` (`is_active`),
  KEY `idx_scenarios_display_order` (`forecast_id`,`display_order`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `forecaster_scenarios`
--

LOCK TABLES `forecaster_scenarios` WRITE;
/*!40000 ALTER TABLE `forecaster_scenarios` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `forecaster_scenarios` VALUES
(1,4,'Base Case','',1,1,'2025-11-11 13:54:30','2025-11-13 20:33:17',1,'#007bff'),
(2,1,'Base Case 2025','',1,1,'2025-11-11 14:34:06','2025-11-13 20:33:17',1,'#007bff'),
(3,2,'Conservative','',1,1,'2025-11-11 14:37:17','2025-11-13 20:33:17',1,'#007bff'),
(4,5,'Base Model','This is a base model',1,1,'2025-11-11 16:06:37','2025-11-13 20:33:17',1,'#007bff'),
(5,5,'COnservative','',1,1,'2025-11-11 16:13:01','2025-11-13 20:33:17',2,'#007bff'),
(6,7,'Base','',1,1,'2025-11-14 06:41:35','2025-11-14 06:41:35',0,'#007bff'),
(7,7,'Moderate','',1,1,'2025-11-14 06:42:02','2025-11-14 06:42:02',0,'#007bff'),
(8,7,'Aggressive','',1,1,'2025-11-14 06:42:13','2025-11-14 06:42:13',0,'#007bff');
/*!40000 ALTER TABLE `forecaster_scenarios` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `form_1099_categories`
--

DROP TABLE IF EXISTS `form_1099_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `form_1099_categories` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `form_type` enum('MISC','NEC','K','INT') NOT NULL,
  `box_number` int(11) NOT NULL,
  `box_name` varchar(200) NOT NULL,
  `description` text DEFAULT NULL,
  `threshold_amount` decimal(15,2) DEFAULT 0.00 COMMENT 'Minimum amount to report',
  `is_active` tinyint(1) DEFAULT 1,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_box` (`form_type`,`box_number`),
  KEY `idx_form_type` (`form_type`),
  KEY `idx_active` (`is_active`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `form_1099_categories`
--

LOCK TABLES `form_1099_categories` WRITE;
/*!40000 ALTER TABLE `form_1099_categories` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `form_1099_categories` VALUES
(1,'NEC',1,'Nonemployee compensation','Payments to independent contractors for services',600.00,1,'2025-11-15 18:20:32','2025-11-15 18:20:32'),
(2,'MISC',1,'Rents','Rent payments',600.00,1,'2025-11-15 18:20:32','2025-11-15 18:20:32'),
(3,'MISC',2,'Royalties','Royalty payments',10.00,1,'2025-11-15 18:20:32','2025-11-15 18:20:32'),
(4,'MISC',3,'Other income','Other income payments',600.00,1,'2025-11-15 18:20:32','2025-11-15 18:20:32'),
(5,'MISC',4,'Federal income tax withheld','Backup withholding',0.00,1,'2025-11-15 18:20:32','2025-11-15 18:20:32'),
(6,'MISC',5,'Fishing boat proceeds','Fishing boat proceeds',600.00,1,'2025-11-15 18:20:32','2025-11-15 18:20:32'),
(7,'MISC',6,'Medical and health care payments','Payments to physicians and healthcare providers',600.00,1,'2025-11-15 18:20:32','2025-11-15 18:20:32'),
(8,'MISC',8,'Substitute payments in lieu of dividends','Substitute payment amounts',10.00,1,'2025-11-15 18:20:32','2025-11-15 18:20:32'),
(9,'MISC',10,'Crop insurance proceeds','Crop insurance proceeds',600.00,1,'2025-11-15 18:20:32','2025-11-15 18:20:32'),
(10,'MISC',12,'Section 409A deferrals','Deferrals under nonqualified deferred comp plan',0.00,1,'2025-11-15 18:20:32','2025-11-15 18:20:32'),
(11,'MISC',14,'Gross proceeds paid to an attorney','Attorney payments',600.00,1,'2025-11-15 18:20:32','2025-11-15 18:20:32'),
(12,'INT',1,'Interest income','Interest income from banks, investments, etc.',10.00,1,'2025-11-15 18:20:32','2025-11-15 18:20:32'),
(13,'INT',2,'Early withdrawal penalty','Early withdrawal penalties',0.00,1,'2025-11-15 18:20:32','2025-11-15 18:20:32'),
(14,'INT',3,'Interest on U.S. Savings Bonds','Interest on U.S. Savings Bonds and Treasury obligations',10.00,1,'2025-11-15 18:20:32','2025-11-15 18:20:32'),
(15,'INT',4,'Federal income tax withheld','Backup withholding',0.00,1,'2025-11-15 18:20:32','2025-11-15 18:20:32'),
(16,'K',1,'Gross amount of payment card transactions','Payment card transactions',20000.00,1,'2025-11-15 18:20:32','2025-11-15 18:20:32');
/*!40000 ALTER TABLE `form_1099_categories` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `form_1099_filings`
--

DROP TABLE IF EXISTS `form_1099_filings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `form_1099_filings` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `supplier_id` int(10) unsigned NOT NULL,
  `tax_year` int(11) NOT NULL,
  `form_type` enum('MISC','NEC','K','INT','DIV','R') NOT NULL,
  `box_amounts` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'JSON object with box_number: amount pairs' CHECK (json_valid(`box_amounts`)),
  `total_amount` decimal(15,2) NOT NULL,
  `filing_method` enum('paper','electronic','efile') DEFAULT 'electronic',
  `filed_date` date DEFAULT NULL,
  `confirmation_number` varchar(100) DEFAULT NULL,
  `status` enum('draft','prepared','filed','corrected') DEFAULT 'draft',
  `is_correction` tinyint(1) DEFAULT 0,
  `corrected_filing_id` int(10) unsigned DEFAULT NULL COMMENT 'If correction, link to original',
  `pdf_file_path` varchar(500) DEFAULT NULL,
  `prepared_by` int(10) unsigned DEFAULT NULL,
  `prepared_date` date DEFAULT NULL,
  `filed_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_filing` (`supplier_id`,`tax_year`,`form_type`,`is_correction`),
  KEY `idx_supplier` (`supplier_id`),
  KEY `idx_tax_year` (`tax_year`),
  KEY `idx_status` (`status`),
  KEY `corrected_filing_id` (`corrected_filing_id`),
  KEY `prepared_by` (`prepared_by`),
  KEY `filed_by` (`filed_by`),
  CONSTRAINT `form_1099_filings_ibfk_1` FOREIGN KEY (`supplier_id`) REFERENCES `suppliers` (`id`) ON DELETE CASCADE,
  CONSTRAINT `form_1099_filings_ibfk_2` FOREIGN KEY (`corrected_filing_id`) REFERENCES `form_1099_filings` (`id`) ON DELETE SET NULL,
  CONSTRAINT `form_1099_filings_ibfk_3` FOREIGN KEY (`prepared_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `form_1099_filings_ibfk_4` FOREIGN KEY (`filed_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `form_1099_filings`
--

LOCK TABLES `form_1099_filings` WRITE;
/*!40000 ALTER TABLE `form_1099_filings` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `form_1099_filings` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `form_1099_payments`
--

DROP TABLE IF EXISTS `form_1099_payments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `form_1099_payments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `supplier_id` int(10) unsigned NOT NULL,
  `payment_id` int(10) unsigned DEFAULT NULL COMMENT 'Link to vendor_payments table',
  `payment_date` date NOT NULL,
  `payment_amount` decimal(15,2) NOT NULL,
  `payment_description` text DEFAULT NULL,
  `form_type` enum('MISC','NEC','K','INT','DIV','R') NOT NULL,
  `box_number` int(11) NOT NULL,
  `category_id` int(10) unsigned DEFAULT NULL,
  `is_reportable` tinyint(1) DEFAULT 1,
  `exclusion_reason` text DEFAULT NULL COMMENT 'Reason if payment excluded from 1099',
  `tax_year` int(11) NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `created_by` int(10) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_supplier` (`supplier_id`),
  KEY `idx_payment` (`payment_id`),
  KEY `idx_tax_year` (`tax_year`),
  KEY `idx_reportable` (`is_reportable`),
  KEY `idx_form_type` (`form_type`),
  KEY `category_id` (`category_id`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `form_1099_payments_ibfk_1` FOREIGN KEY (`supplier_id`) REFERENCES `suppliers` (`id`) ON DELETE CASCADE,
  CONSTRAINT `form_1099_payments_ibfk_2` FOREIGN KEY (`payment_id`) REFERENCES `vendor_payments` (`id`) ON DELETE SET NULL,
  CONSTRAINT `form_1099_payments_ibfk_3` FOREIGN KEY (`category_id`) REFERENCES `form_1099_categories` (`id`) ON DELETE SET NULL,
  CONSTRAINT `form_1099_payments_ibfk_4` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `form_1099_payments`
--

LOCK TABLES `form_1099_payments` WRITE;
/*!40000 ALTER TABLE `form_1099_payments` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `form_1099_payments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `form_configurations`
--

DROP TABLE IF EXISTS `form_configurations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `form_configurations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `form_key` varchar(100) NOT NULL COMMENT 'Unique identifier like customer_create, product_edit',
  `entity_name` varchar(100) NOT NULL COMMENT 'Entity name like customer, product',
  `form_type` enum('create','edit','view','filter') DEFAULT 'create',
  `title` varchar(255) NOT NULL COMMENT 'Form title',
  `description` text DEFAULT NULL,
  `submit_url` varchar(255) DEFAULT NULL COMMENT 'Form action URL',
  `success_redirect` varchar(255) DEFAULT NULL COMMENT 'Redirect after success',
  `layout` enum('vertical','horizontal','grid','inline') DEFAULT 'vertical',
  `grid_columns` int(11) DEFAULT 1 COMMENT 'Number of columns for grid layout',
  `is_active` tinyint(1) DEFAULT 1,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `form_key` (`form_key`),
  KEY `idx_form_key` (`form_key`),
  KEY `idx_entity` (`entity_name`,`form_type`),
  KEY `idx_active` (`is_active`)
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `form_configurations`
--

LOCK TABLES `form_configurations` WRITE;
/*!40000 ALTER TABLE `form_configurations` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `form_configurations` VALUES
(11,'product_create','product','create','Add New Product',NULL,'/products/store','/products','grid',2,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(12,'product_edit','product','edit','Edit Product',NULL,'/products/{id}/update','/products/{id}','grid',2,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(13,'supplier_create','supplier','create','Add New Supplier',NULL,'/suppliers/store','/suppliers','grid',2,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(14,'employee_create','employee','create','Add New Employee',NULL,'/employees/store','/employees','grid',2,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(15,'sales_order_create','sales_order','create','Create Sales Order',NULL,'/sales/orders/store','/sales/orders','grid',2,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(16,'purchase_order_create','purchase_order','create','Create Purchase Order',NULL,'/purchases/orders/store','/purchases/orders','grid',2,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(17,'work_order_create','work_order','create','Create Work Order',NULL,'/manufacturing/workorders/store','/manufacturing/workorders','grid',2,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(18,'invoice_create','invoice','create','Create Invoice',NULL,'/invoices/store','/invoices','grid',2,1,'2025-11-06 03:12:23','2025-11-06 03:12:23');
/*!40000 ALTER TABLE `form_configurations` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `form_fields`
--

DROP TABLE IF EXISTS `form_fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `form_fields` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `form_config_id` int(10) unsigned NOT NULL,
  `field_name` varchar(100) NOT NULL COMMENT 'Database column name',
  `field_label` varchar(255) NOT NULL,
  `field_type` enum('text','email','tel','number','textarea','password','select','radio','checkbox','date','datetime','time','file','image','hidden','color','url','search','range','wysiwyg','autocomplete','tags','repeater') NOT NULL DEFAULT 'text',
  `input_type` varchar(50) DEFAULT NULL COMMENT 'HTML input type override',
  `placeholder` varchar(255) DEFAULT NULL,
  `help_text` text DEFAULT NULL,
  `default_value` text DEFAULT NULL,
  `is_required` tinyint(1) DEFAULT 0,
  `validation_rules` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Array of validation rules: min, max, pattern, etc.' CHECK (json_valid(`validation_rules`)),
  `error_message` varchar(255) DEFAULT NULL,
  `options_source` enum('static','database','query') DEFAULT NULL,
  `options_static` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Static options as JSON array' CHECK (json_valid(`options_static`)),
  `options_query` text DEFAULT NULL COMMENT 'SQL query for database options',
  `options_table` varchar(100) DEFAULT NULL COMMENT 'Table name for simple lookups',
  `options_value_column` varchar(100) DEFAULT NULL COMMENT 'Column for option value',
  `options_label_column` varchar(100) DEFAULT NULL COMMENT 'Column for option label',
  `options_filter` text DEFAULT NULL COMMENT 'WHERE clause for options query',
  `display_order` int(11) DEFAULT 0,
  `grid_width` int(11) DEFAULT NULL COMMENT 'Column span in grid layout (1-12)',
  `css_class` varchar(255) DEFAULT NULL,
  `wrapper_class` varchar(255) DEFAULT NULL,
  `attributes` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Additional HTML attributes' CHECK (json_valid(`attributes`)),
  `conditional_field` varchar(100) DEFAULT NULL COMMENT 'Field name this depends on',
  `conditional_value` text DEFAULT NULL COMMENT 'Value to match for display',
  `conditional_operator` enum('equals','not_equals','contains','greater_than','less_than','in') DEFAULT 'equals',
  `permission_required` varchar(100) DEFAULT NULL,
  `readonly_roles` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Roles that can only view this field' CHECK (json_valid(`readonly_roles`)),
  `hidden_roles` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Roles that cannot see this field' CHECK (json_valid(`hidden_roles`)),
  `is_active` tinyint(1) DEFAULT 1,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_form_config` (`form_config_id`),
  KEY `idx_display_order` (`display_order`),
  KEY `idx_field_name` (`field_name`),
  KEY `idx_active` (`is_active`),
  CONSTRAINT `form_fields_ibfk_1` FOREIGN KEY (`form_config_id`) REFERENCES `form_configurations` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=145 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `form_fields`
--

LOCK TABLES `form_fields` WRITE;
/*!40000 ALTER TABLE `form_fields` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `form_fields` VALUES
(66,11,'sku','SKU','text',NULL,'PROD-001',NULL,NULL,1,'{\"max\": 100, \"min\": 2}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,1,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(67,11,'name','Product Name','text',NULL,'Enter product name',NULL,NULL,1,'{\"max\": 255, \"min\": 2}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,2,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(68,11,'category_id','Category','select',NULL,NULL,NULL,NULL,0,NULL,NULL,'database',NULL,NULL,'product_categories','id','name',NULL,3,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(69,11,'product_type','Product Type','select',NULL,NULL,NULL,NULL,1,NULL,NULL,'static','{\"goods\": \"Goods\", \"digital\": \"Digital\", \"service\": \"Service\"}',NULL,NULL,NULL,NULL,NULL,4,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(70,11,'unit_of_measure','Unit of Measure','text',NULL,'ea, lb, kg, etc.',NULL,NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,5,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(71,11,'barcode','Barcode','text',NULL,NULL,NULL,NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,6,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(72,11,'cost_price','Cost Price','number',NULL,'0.00',NULL,NULL,0,'{\"min_value\": 0}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,7,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(73,11,'selling_price','Selling Price','number',NULL,'0.00',NULL,NULL,0,'{\"min_value\": 0}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,8,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(74,11,'tax_rate','Tax Rate (%)','number',NULL,'0',NULL,NULL,0,'{\"max_value\": 100, \"min_value\": 0}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,9,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(75,11,'reorder_level','Reorder Level','number',NULL,'0',NULL,NULL,0,'{\"min_value\": 0}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,10,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(76,11,'status','Status','select',NULL,NULL,NULL,NULL,1,NULL,NULL,'static','{\"active\": \"Active\", \"inactive\": \"Inactive\", \"discontinued\": \"Discontinued\"}',NULL,NULL,NULL,NULL,NULL,11,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(77,11,'description','Description','textarea',NULL,'Product description',NULL,NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,12,12,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(78,11,'image','Product Image','image',NULL,NULL,NULL,NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,13,12,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(79,12,'sku','SKU','text',NULL,'PROD-001',NULL,NULL,1,'{\"max\": 100, \"min\": 2}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,1,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(80,12,'name','Product Name','text',NULL,'Enter product name',NULL,NULL,1,'{\"max\": 255, \"min\": 2}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,2,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(81,12,'category_id','Category','select',NULL,NULL,NULL,NULL,0,NULL,NULL,'database',NULL,NULL,'product_categories','id','name',NULL,3,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(82,12,'product_type','Product Type','select',NULL,NULL,NULL,NULL,1,NULL,NULL,'static','{\"goods\": \"Goods\", \"digital\": \"Digital\", \"service\": \"Service\"}',NULL,NULL,NULL,NULL,NULL,4,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(83,12,'unit_of_measure','Unit of Measure','text',NULL,'ea, lb, kg, etc.',NULL,NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,5,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(84,12,'barcode','Barcode','text',NULL,NULL,NULL,NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,6,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(85,12,'cost_price','Cost Price','number',NULL,'0.00',NULL,NULL,0,'{\"min_value\": 0}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,7,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(86,12,'selling_price','Selling Price','number',NULL,'0.00',NULL,NULL,0,'{\"min_value\": 0}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,8,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(87,12,'tax_rate','Tax Rate (%)','number',NULL,'0',NULL,NULL,0,'{\"max_value\": 100, \"min_value\": 0}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,9,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(88,12,'reorder_level','Reorder Level','number',NULL,'0',NULL,NULL,0,'{\"min_value\": 0}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,10,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(89,12,'status','Status','select',NULL,NULL,NULL,NULL,1,NULL,NULL,'static','{\"active\": \"Active\", \"inactive\": \"Inactive\", \"discontinued\": \"Discontinued\"}',NULL,NULL,NULL,NULL,NULL,11,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(90,12,'description','Description','textarea',NULL,'Product description',NULL,NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,12,12,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(91,12,'image','Product Image','image',NULL,NULL,NULL,NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,13,12,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(92,13,'company_name','Company Name','text',NULL,'Enter company name',NULL,NULL,1,'{\"max\": 255, \"min\": 2}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,1,12,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(93,13,'contact_person','Contact Person','text',NULL,'John Doe',NULL,NULL,0,'{\"max\": 200}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,2,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(94,13,'email','Email','email',NULL,'supplier@example.com',NULL,NULL,1,'{\"email\": true}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,3,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(95,13,'phone','Phone','tel',NULL,'(555) 123-4567',NULL,NULL,0,'{\"pattern\": \"[0-9()-]+\"}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,4,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(96,13,'website','Website','url',NULL,'https://',NULL,NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,5,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(97,13,'tax_id','Tax ID','text',NULL,NULL,NULL,NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,6,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(98,13,'payment_terms','Payment Terms','text',NULL,'Net 30',NULL,NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,7,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(99,13,'status','Status','select',NULL,NULL,NULL,NULL,1,NULL,NULL,'static','{\"active\": \"Active\", \"inactive\": \"Inactive\"}',NULL,NULL,NULL,NULL,NULL,8,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(100,13,'address','Address','textarea',NULL,'Street address',NULL,NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,9,12,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(101,13,'city','City','text',NULL,NULL,NULL,NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,10,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(102,13,'state','State','text',NULL,'CA',NULL,NULL,0,'{\"max\": 2}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,11,3,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(103,13,'zip','ZIP Code','text',NULL,'12345',NULL,NULL,0,'{\"pattern\": \"[0-9]{5}\"}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,12,3,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(104,13,'country','Country','text',NULL,'USA',NULL,NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,13,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(105,13,'notes','Notes','textarea',NULL,NULL,NULL,NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,14,12,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(106,14,'employee_id','Employee ID','text',NULL,'Leave blank for auto-generation','Auto-generated if left blank',NULL,0,'{\"max\": 50, \"min\": 2}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,1,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,0,'2025-11-06 03:12:23','2025-11-06 03:23:31'),
(107,14,'first_name','First Name','text',NULL,NULL,NULL,NULL,1,'{\"max\": 100, \"min\": 2}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,2,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(108,14,'last_name','Last Name','text',NULL,NULL,NULL,NULL,1,'{\"max\": 100, \"min\": 2}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,3,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(109,14,'email','Email','email',NULL,'john.doe@m.one','Format: username@m.one',NULL,1,'{\"email\": true, \"pattern\": \"^[a-zA-Z0-9._%+-]+@m\\\\.one$\"}','Email must use corporate domain: @m.one','static',NULL,NULL,NULL,NULL,NULL,NULL,4,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:19:49'),
(110,14,'phone','Phone','tel',NULL,NULL,NULL,NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,5,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(111,14,'department_id','Department','select',NULL,NULL,NULL,NULL,0,NULL,NULL,'database',NULL,NULL,'departments','id','name',NULL,6,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(112,14,'position_id','Position','select',NULL,'Software Engineer',NULL,NULL,0,NULL,NULL,'query',NULL,'SELECT id as value, CONCAT(title, \" (\", COALESCE(department, \"No Dept\"), \")\") as label FROM positions WHERE is_active = 1 ORDER BY department, title',NULL,NULL,NULL,NULL,7,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-08 13:56:47'),
(113,14,'hire_date','Hire Date','date',NULL,NULL,NULL,NULL,1,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,8,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(114,14,'salary','Salary','number',NULL,'0.00',NULL,NULL,0,'{\"min_value\": 0}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,9,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(115,14,'salary_type','Salary Type','select',NULL,NULL,NULL,NULL,0,NULL,NULL,'static','{\"hourly\": \"Hourly\", \"yearly\": \"Yearly\", \"monthly\": \"Monthly\"}',NULL,NULL,NULL,NULL,NULL,10,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(116,14,'status','Status','select',NULL,NULL,NULL,NULL,1,NULL,NULL,'static','{\"active\": \"Active\", \"on_leave\": \"On Leave\", \"terminated\": \"Terminated\"}',NULL,NULL,NULL,NULL,NULL,11,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(117,15,'order_number','Order Number','text',NULL,'SO-001','Auto-generated if left blank',NULL,1,'{\"max\": 50, \"min\": 2}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,1,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(118,15,'customer_id','Customer','select',NULL,NULL,NULL,NULL,1,NULL,NULL,'query',NULL,'SELECT id as value, CASE WHEN customer_type = \"company\" AND company_name IS NOT NULL THEN CONCAT(company_name, \" - \", email) WHEN customer_type = \"individual\" THEN CONCAT(first_name, \" \", last_name, \" - \", email) ELSE CONCAT(COALESCE(company_name, CONCAT(first_name, \" \", last_name)), \" - \", email) END as label FROM customers WHERE status = \"active\" UNION ALL SELECT id as value, CASE WHEN client_type = \"company\" AND company_name IS NOT NULL THEN CONCAT(company_name, \" - \", email) WHEN client_type = \"individual\" THEN CONCAT(first_name, \" \", last_name, \" - \", email) ELSE CONCAT(COALESCE(company_name, CONCAT(first_name, \" \", last_name)), \" - \", email) END as label FROM clients WHERE status = \"active\" ORDER BY label',NULL,'id','CONCAT(first_name, \" \", last_name, IF(company_name IS NOT NULL, CONCAT(\" (\", company_name, \")\"), \"\")',NULL,2,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-13 16:55:44'),
(119,15,'order_date','Order Date','date',NULL,NULL,NULL,NULL,1,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,3,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(120,15,'delivery_date','Expected Delivery','date',NULL,NULL,NULL,NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,4,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(121,15,'status','Status','select',NULL,NULL,NULL,'draft',1,NULL,NULL,'static','{\"draft\": \"Draft\", \"shipped\": \"Shipped\", \"cancelled\": \"Cancelled\", \"confirmed\": \"Confirmed\", \"delivered\": \"Delivered\", \"processing\": \"Processing\"}',NULL,NULL,NULL,NULL,NULL,5,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(122,15,'notes','Notes','textarea',NULL,NULL,NULL,NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,6,12,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(123,16,'po_number','PO Number','text',NULL,'PO-001','Auto-generated if left blank',NULL,1,'{\"max\": 50, \"min\": 2}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,1,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(124,16,'supplier_id','Supplier','select',NULL,NULL,NULL,NULL,1,NULL,NULL,'database',NULL,NULL,'suppliers','id','company_name',NULL,2,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(125,16,'order_date','Order Date','date',NULL,NULL,NULL,NULL,1,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,3,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(126,16,'expected_delivery','Expected Delivery','date',NULL,NULL,NULL,NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,4,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(127,16,'status','Status','select',NULL,NULL,NULL,'draft',1,NULL,NULL,'static','{\"sent\": \"Sent\", \"draft\": \"Draft\", \"received\": \"Received\", \"cancelled\": \"Cancelled\", \"confirmed\": \"Confirmed\"}',NULL,NULL,NULL,NULL,NULL,5,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(128,16,'notes','Notes','textarea',NULL,NULL,NULL,NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,6,12,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(129,17,'wo_number','WO Number','text',NULL,'WO-001','Auto-generated if left blank',NULL,1,'{\"max\": 50, \"min\": 2}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,1,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(130,17,'product_id','Product to Manufacture','select',NULL,NULL,NULL,NULL,1,NULL,NULL,'database',NULL,NULL,'products','id','CONCAT(sku, \" - \", name)','product_type = \"goods\"',2,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(131,17,'bom_id','Bill of Materials','select',NULL,NULL,'Select BOM version',NULL,0,NULL,NULL,'database',NULL,NULL,'bill_of_materials','id','CONCAT(name, \" (v\", version, \")\")','status = \"active\"',3,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(132,17,'quantity','Quantity','number',NULL,'1',NULL,NULL,1,'{\"min_value\": 1}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,4,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(133,17,'start_date','Start Date','date',NULL,NULL,NULL,NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,5,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(134,17,'end_date','Expected End Date','date',NULL,NULL,NULL,NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,6,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(135,17,'status','Status','select',NULL,NULL,NULL,'planned',1,NULL,NULL,'static','{\"planned\": \"Planned\", \"cancelled\": \"Cancelled\", \"completed\": \"Completed\", \"in_progress\": \"In Progress\"}',NULL,NULL,NULL,NULL,NULL,7,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(136,17,'notes','Notes','textarea',NULL,NULL,NULL,NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,8,12,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(137,18,'invoice_number','Invoice Number','text',NULL,'INV-001','Auto-generated if left blank',NULL,1,'{\"max\": 50, \"min\": 2}',NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,1,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(138,18,'customer_id','Customer','select',NULL,NULL,NULL,NULL,1,NULL,NULL,'database',NULL,NULL,'customers','id','CONCAT(first_name, \" \", last_name, IF(company_name IS NOT NULL, CONCAT(\" (\", company_name, \")\"), \"\")',NULL,2,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(139,18,'order_id','Sales Order','select',NULL,NULL,'Optional',NULL,0,NULL,NULL,'database',NULL,NULL,'sales_orders','id','order_number','status IN (\"confirmed\", \"delivered\")',3,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(140,18,'invoice_date','Invoice Date','date',NULL,NULL,NULL,NULL,1,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,4,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(141,18,'due_date','Due Date','date',NULL,NULL,NULL,NULL,1,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,5,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(142,18,'status','Status','select',NULL,NULL,NULL,'draft',1,NULL,NULL,'static','{\"paid\": \"Paid\", \"sent\": \"Sent\", \"draft\": \"Draft\", \"overdue\": \"Overdue\", \"partial\": \"Partial\", \"cancelled\": \"Cancelled\"}',NULL,NULL,NULL,NULL,NULL,6,6,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(143,18,'notes','Notes','textarea',NULL,NULL,'Internal notes',NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,7,12,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23'),
(144,18,'terms','Terms & Conditions','textarea',NULL,NULL,'Displayed on invoice',NULL,0,NULL,NULL,'static',NULL,NULL,NULL,NULL,NULL,NULL,8,12,NULL,NULL,NULL,NULL,NULL,'equals',NULL,NULL,NULL,1,'2025-11-06 03:12:23','2025-11-06 03:12:23');
/*!40000 ALTER TABLE `form_fields` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `general_contacts`
--

DROP TABLE IF EXISTS `general_contacts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `general_contacts` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `first_name` varchar(100) NOT NULL,
  `last_name` varchar(100) NOT NULL,
  `email` varchar(255) DEFAULT NULL,
  `secondary_email` varchar(255) DEFAULT NULL,
  `phone` varchar(20) DEFAULT NULL,
  `mobile` varchar(20) DEFAULT NULL,
  `position` varchar(100) DEFAULT NULL,
  `company` varchar(255) DEFAULT NULL COMMENT 'Company name if they work somewhere not in our system',
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_email` (`email`),
  KEY `idx_created_by` (`created_by`),
  CONSTRAINT `general_contacts_ibfk_1` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `general_contacts`
--

LOCK TABLES `general_contacts` WRITE;
/*!40000 ALTER TABLE `general_contacts` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `general_contacts` VALUES
(1,'Test','Guy','test@guy.com',NULL,'1231231231',NULL,'tester','','',1,'2025-11-24 17:41:03','2025-11-24 17:41:03');
/*!40000 ALTER TABLE `general_contacts` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `goods_receipt_items`
--

DROP TABLE IF EXISTS `goods_receipt_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `goods_receipt_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `grn_id` int(10) unsigned NOT NULL,
  `po_item_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned NOT NULL,
  `quantity_ordered` int(11) NOT NULL,
  `quantity_received` int(11) NOT NULL,
  `quantity_accepted` int(11) NOT NULL DEFAULT 0,
  `quantity_rejected` int(11) NOT NULL DEFAULT 0,
  `notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `grn_id` (`grn_id`),
  KEY `po_item_id` (`po_item_id`),
  KEY `product_id` (`product_id`),
  CONSTRAINT `goods_receipt_items_ibfk_1` FOREIGN KEY (`grn_id`) REFERENCES `goods_receipts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `goods_receipt_items_ibfk_2` FOREIGN KEY (`po_item_id`) REFERENCES `purchase_order_items` (`id`),
  CONSTRAINT `goods_receipt_items_ibfk_3` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `goods_receipt_items`
--

LOCK TABLES `goods_receipt_items` WRITE;
/*!40000 ALTER TABLE `goods_receipt_items` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `goods_receipt_items` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `goods_receipts`
--

DROP TABLE IF EXISTS `goods_receipts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `goods_receipts` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `grn_number` varchar(50) NOT NULL,
  `po_id` int(10) unsigned NOT NULL,
  `supplier_id` int(10) unsigned NOT NULL,
  `receipt_date` date NOT NULL,
  `location_id` int(10) unsigned DEFAULT NULL,
  `status` enum('draft','received','inspected','accepted','rejected') DEFAULT 'draft',
  `notes` text DEFAULT NULL,
  `received_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `grn_number` (`grn_number`),
  KEY `po_id` (`po_id`),
  KEY `supplier_id` (`supplier_id`),
  KEY `location_id` (`location_id`),
  KEY `received_by` (`received_by`),
  CONSTRAINT `goods_receipts_ibfk_1` FOREIGN KEY (`po_id`) REFERENCES `purchase_orders` (`id`),
  CONSTRAINT `goods_receipts_ibfk_2` FOREIGN KEY (`supplier_id`) REFERENCES `suppliers` (`id`),
  CONSTRAINT `goods_receipts_ibfk_3` FOREIGN KEY (`location_id`) REFERENCES `locations` (`id`) ON DELETE SET NULL,
  CONSTRAINT `goods_receipts_ibfk_4` FOREIGN KEY (`received_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `goods_receipts`
--

LOCK TABLES `goods_receipts` WRITE;
/*!40000 ALTER TABLE `goods_receipts` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `goods_receipts` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `help_desk_attachments`
--

DROP TABLE IF EXISTS `help_desk_attachments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `help_desk_attachments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `ticket_id` int(10) unsigned NOT NULL,
  `file_name` varchar(255) NOT NULL,
  `file_path` varchar(500) NOT NULL,
  `file_size` int(11) DEFAULT NULL,
  `uploaded_by` int(10) unsigned NOT NULL,
  `uploaded_at` timestamp NULL DEFAULT current_timestamp(),
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `uploaded_by` (`uploaded_by`),
  KEY `idx_ticket` (`ticket_id`),
  CONSTRAINT `help_desk_attachments_ibfk_1` FOREIGN KEY (`ticket_id`) REFERENCES `help_desk_tickets` (`id`) ON DELETE CASCADE,
  CONSTRAINT `help_desk_attachments_ibfk_2` FOREIGN KEY (`uploaded_by`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `help_desk_attachments`
--

LOCK TABLES `help_desk_attachments` WRITE;
/*!40000 ALTER TABLE `help_desk_attachments` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `help_desk_attachments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `help_desk_categories`
--

DROP TABLE IF EXISTS `help_desk_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `help_desk_categories` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL,
  `description` text DEFAULT NULL,
  `color` varchar(20) DEFAULT '#007bff',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `help_desk_categories`
--

LOCK TABLES `help_desk_categories` WRITE;
/*!40000 ALTER TABLE `help_desk_categories` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `help_desk_categories` VALUES
(1,'Technical Support','Technical issues and bugs','#dc3545','2025-11-04 12:18:35','2025-11-11 00:36:45'),
(2,'Feature Request','New feature requests','#28a745','2025-11-04 12:18:35','2025-11-11 00:36:45'),
(3,'Question','General questions','#17a2b8','2025-11-04 12:18:35','2025-11-11 00:36:45'),
(4,'Bug Report','Software bugs and errors','#ffc107','2025-11-04 12:18:35','2025-11-11 00:36:45'),
(5,'Other','Other inquiries','#6c757d','2025-11-04 12:18:35','2025-11-11 00:36:45');
/*!40000 ALTER TABLE `help_desk_categories` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `help_desk_comments`
--

DROP TABLE IF EXISTS `help_desk_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `help_desk_comments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `ticket_id` int(10) unsigned NOT NULL,
  `comment` text NOT NULL,
  `is_internal` tinyint(1) DEFAULT 0,
  `created_by` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `created_by` (`created_by`),
  KEY `idx_ticket` (`ticket_id`),
  CONSTRAINT `help_desk_comments_ibfk_1` FOREIGN KEY (`ticket_id`) REFERENCES `help_desk_tickets` (`id`) ON DELETE CASCADE,
  CONSTRAINT `help_desk_comments_ibfk_2` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `help_desk_comments`
--

LOCK TABLES `help_desk_comments` WRITE;
/*!40000 ALTER TABLE `help_desk_comments` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `help_desk_comments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `help_desk_tickets`
--

DROP TABLE IF EXISTS `help_desk_tickets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `help_desk_tickets` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `ticket_number` varchar(50) NOT NULL,
  `subject` varchar(255) NOT NULL,
  `description` text NOT NULL,
  `category_id` int(10) unsigned DEFAULT NULL,
  `priority` enum('low','normal','high','urgent') DEFAULT 'normal',
  `status` enum('open','in_progress','waiting_response','resolved','closed') DEFAULT 'open',
  `assigned_to` int(10) unsigned DEFAULT NULL,
  `created_by` int(10) unsigned NOT NULL,
  `resolved_at` datetime DEFAULT NULL,
  `closed_at` datetime DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `ticket_number` (`ticket_number`),
  KEY `idx_category` (`category_id`),
  KEY `idx_assigned` (`assigned_to`),
  KEY `idx_status` (`status`),
  KEY `idx_priority` (`priority`),
  KEY `idx_created_by` (`created_by`),
  CONSTRAINT `help_desk_tickets_ibfk_1` FOREIGN KEY (`category_id`) REFERENCES `help_desk_categories` (`id`) ON DELETE SET NULL,
  CONSTRAINT `help_desk_tickets_ibfk_2` FOREIGN KEY (`assigned_to`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `help_desk_tickets_ibfk_3` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `help_desk_tickets`
--

LOCK TABLES `help_desk_tickets` WRITE;
/*!40000 ALTER TABLE `help_desk_tickets` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `help_desk_tickets` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `inspection_checkpoints`
--

DROP TABLE IF EXISTS `inspection_checkpoints`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `inspection_checkpoints` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `inspection_id` int(10) unsigned NOT NULL,
  `checkpoint_name` varchar(255) NOT NULL,
  `specification` text DEFAULT NULL,
  `measurement_type` enum('pass_fail','numeric','visual','dimensional') DEFAULT 'pass_fail',
  `target_value` decimal(10,3) DEFAULT NULL,
  `tolerance_min` decimal(10,3) DEFAULT NULL,
  `tolerance_max` decimal(10,3) DEFAULT NULL,
  `sequence_order` int(11) DEFAULT 0,
  `created_at` datetime DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_inspection` (`inspection_id`),
  CONSTRAINT `inspection_checkpoints_ibfk_1` FOREIGN KEY (`inspection_id`) REFERENCES `quality_inspections` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inspection_checkpoints`
--

LOCK TABLES `inspection_checkpoints` WRITE;
/*!40000 ALTER TABLE `inspection_checkpoints` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `inspection_checkpoints` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `inspection_results`
--

DROP TABLE IF EXISTS `inspection_results`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `inspection_results` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `inspection_id` int(10) unsigned NOT NULL,
  `checkpoint_id` int(10) unsigned NOT NULL,
  `result` enum('pass','fail','na') NOT NULL,
  `measured_value` decimal(10,3) DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `recorded_by` int(10) unsigned DEFAULT NULL,
  `recorded_at` datetime DEFAULT current_timestamp(),
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_inspection` (`inspection_id`),
  KEY `idx_checkpoint` (`checkpoint_id`),
  KEY `recorded_by` (`recorded_by`),
  CONSTRAINT `inspection_results_ibfk_1` FOREIGN KEY (`inspection_id`) REFERENCES `quality_inspections` (`id`) ON DELETE CASCADE,
  CONSTRAINT `inspection_results_ibfk_2` FOREIGN KEY (`checkpoint_id`) REFERENCES `inspection_checkpoints` (`id`) ON DELETE CASCADE,
  CONSTRAINT `inspection_results_ibfk_3` FOREIGN KEY (`recorded_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inspection_results`
--

LOCK TABLES `inspection_results` WRITE;
/*!40000 ALTER TABLE `inspection_results` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `inspection_results` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `inspection_templates`
--

DROP TABLE IF EXISTS `inspection_templates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `inspection_templates` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `inspection_type` enum('receiving','in_process','final','audit') DEFAULT 'final',
  `is_active` tinyint(1) DEFAULT 1,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` datetime DEFAULT current_timestamp(),
  `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_active` (`is_active`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `inspection_templates_ibfk_1` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inspection_templates`
--

LOCK TABLES `inspection_templates` WRITE;
/*!40000 ALTER TABLE `inspection_templates` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `inspection_templates` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `internal_notes`
--

DROP TABLE IF EXISTS `internal_notes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `internal_notes` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `related_type` varchar(50) NOT NULL,
  `related_id` int(10) unsigned NOT NULL,
  `note_text` text NOT NULL,
  `created_by` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `is_pinned` tinyint(1) DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `idx_created_by` (`created_by`),
  KEY `idx_created_at` (`created_at`),
  KEY `idx_pinned` (`is_pinned`),
  CONSTRAINT `fk_internal_notes_user` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `internal_notes`
--

LOCK TABLES `internal_notes` WRITE;
/*!40000 ALTER TABLE `internal_notes` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `internal_notes` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `interview_schedules`
--

DROP TABLE IF EXISTS `interview_schedules`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `interview_schedules` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `application_id` int(10) unsigned NOT NULL,
  `interview_type` enum('phone-screen','video','in-person','technical','behavioral','panel','final') DEFAULT 'phone-screen',
  `scheduled_date` datetime NOT NULL,
  `duration_minutes` int(11) DEFAULT 60,
  `location` varchar(255) DEFAULT NULL COMMENT 'Office location, Zoom link, etc',
  `interviewer_ids` text DEFAULT NULL COMMENT 'JSON array of user IDs',
  `interviewer_names` text DEFAULT NULL COMMENT 'Names of interviewers',
  `status` enum('scheduled','completed','cancelled','no-show','rescheduled') DEFAULT 'scheduled',
  `notes` text DEFAULT NULL,
  `feedback` text DEFAULT NULL,
  `rating` decimal(3,2) DEFAULT NULL COMMENT 'Rating out of 5.00',
  `recommendation` enum('strong-hire','hire','maybe','no-hire','strong-no-hire') DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_application` (`application_id`),
  KEY `idx_scheduled_date` (`scheduled_date`),
  KEY `idx_status` (`status`),
  CONSTRAINT `interview_schedules_ibfk_1` FOREIGN KEY (`application_id`) REFERENCES `job_applications` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `interview_schedules`
--

LOCK TABLES `interview_schedules` WRITE;
/*!40000 ALTER TABLE `interview_schedules` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `interview_schedules` VALUES
(1,1,'video','2025-11-07 12:30:00',60,'',NULL,'John Smith, Johan Smith, Julie Smith','scheduled','',NULL,NULL,NULL,'2025-11-02 12:29:20','2025-11-02 12:29:20');
/*!40000 ALTER TABLE `interview_schedules` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `inventory`
--

DROP TABLE IF EXISTS `inventory`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `inventory` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `product_id` int(10) unsigned NOT NULL,
  `location_id` int(10) unsigned NOT NULL,
  `quantity` int(11) NOT NULL DEFAULT 0,
  `reserved_quantity` int(11) NOT NULL DEFAULT 0,
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `product_location` (`product_id`,`location_id`),
  KEY `location_id` (`location_id`),
  CONSTRAINT `inventory_ibfk_1` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE,
  CONSTRAINT `inventory_ibfk_2` FOREIGN KEY (`location_id`) REFERENCES `locations` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inventory`
--

LOCK TABLES `inventory` WRITE;
/*!40000 ALTER TABLE `inventory` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `inventory` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `inventory_transactions`
--

DROP TABLE IF EXISTS `inventory_transactions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `inventory_transactions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `product_id` int(10) unsigned NOT NULL,
  `location_id` int(10) unsigned NOT NULL,
  `transaction_type` enum('in','out','adjustment','transfer') NOT NULL,
  `quantity` int(11) NOT NULL,
  `reference_type` varchar(50) DEFAULT NULL,
  `reference_id` int(10) unsigned DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `user_id` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `product_id` (`product_id`),
  KEY `user_id` (`user_id`),
  KEY `location_id` (`location_id`),
  CONSTRAINT `inventory_transactions_ibfk_1` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE,
  CONSTRAINT `inventory_transactions_ibfk_2` FOREIGN KEY (`location_id`) REFERENCES `locations` (`id`) ON DELETE CASCADE,
  CONSTRAINT `inventory_transactions_ibfk_3` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inventory_transactions`
--

LOCK TABLES `inventory_transactions` WRITE;
/*!40000 ALTER TABLE `inventory_transactions` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `inventory_transactions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `invoice_items`
--

DROP TABLE IF EXISTS `invoice_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `invoice_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `invoice_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned DEFAULT NULL,
  `description` text NOT NULL,
  `quantity` int(11) NOT NULL,
  `unit_price` decimal(15,2) NOT NULL,
  `tax_rate` decimal(5,2) DEFAULT 0.00,
  `line_total` decimal(15,2) NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `invoice_id` (`invoice_id`),
  KEY `product_id` (`product_id`),
  CONSTRAINT `invoice_items_ibfk_1` FOREIGN KEY (`invoice_id`) REFERENCES `invoices` (`id`) ON DELETE CASCADE,
  CONSTRAINT `invoice_items_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=26 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `invoice_items`
--

LOCK TABLES `invoice_items` WRITE;
/*!40000 ALTER TABLE `invoice_items` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `invoice_items` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `invoices`
--

DROP TABLE IF EXISTS `invoices`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `invoices` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `invoice_number` varchar(50) NOT NULL,
  `customer_id` int(10) unsigned NOT NULL,
  `order_id` int(10) unsigned DEFAULT NULL,
  `invoice_date` date NOT NULL,
  `due_date` date NOT NULL,
  `status` enum('draft','sent','paid','partial','overdue','cancelled') DEFAULT 'draft',
  `subtotal` decimal(15,2) DEFAULT 0.00,
  `tax_amount` decimal(15,2) DEFAULT 0.00,
  `tax_rate` decimal(5,2) DEFAULT 0.00,
  `discount_amount` decimal(15,2) DEFAULT 0.00,
  `total_amount` decimal(15,2) DEFAULT 0.00,
  `paid_amount` decimal(15,2) DEFAULT 0.00,
  `balance` decimal(15,2) DEFAULT 0.00,
  `notes` text DEFAULT NULL,
  `terms` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  `last_notified_at` datetime DEFAULT NULL COMMENT 'Last payment reminder sent',
  `notification_level` varchar(20) DEFAULT NULL COMMENT 'Current notification level: 3day, 1day, due, overdue_7, overdue_30',
  PRIMARY KEY (`id`),
  UNIQUE KEY `invoice_number` (`invoice_number`),
  KEY `customer_id` (`customer_id`),
  KEY `order_id` (`order_id`),
  KEY `created_by` (`created_by`),
  KEY `idx_invoices_due_notification` (`due_date`,`status`,`last_notified_at`),
  KEY `idx_deleted_at` (`deleted_at`),
  KEY `idx_search_status` (`status`,`invoice_date`),
  FULLTEXT KEY `ft_invoice_search` (`invoice_number`,`notes`),
  CONSTRAINT `invoices_ibfk_1` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`),
  CONSTRAINT `invoices_ibfk_2` FOREIGN KEY (`order_id`) REFERENCES `sales_orders` (`id`) ON DELETE SET NULL,
  CONSTRAINT `invoices_ibfk_3` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `invoices`
--

LOCK TABLES `invoices` WRITE;
/*!40000 ALTER TABLE `invoices` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `invoices` VALUES
(23,'INV-20251124-1515',112,NULL,'2025-11-24','2026-01-23','draft',0.00,0.00,0.00,0.00,0.00,0.00,0.00,'','',1,'2025-11-24 19:36:41','2025-11-24 19:37:05','2025-11-24 19:37:05',NULL,NULL);
/*!40000 ALTER TABLE `invoices` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `job_applications`
--

DROP TABLE IF EXISTS `job_applications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `job_applications` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `job_position_id` int(10) unsigned NOT NULL,
  `applicant_name` varchar(255) NOT NULL,
  `email` varchar(255) NOT NULL,
  `phone` varchar(50) DEFAULT NULL,
  `resume_path` varchar(500) DEFAULT NULL,
  `cover_letter_path` varchar(500) DEFAULT NULL,
  `linkedin_url` varchar(500) DEFAULT NULL,
  `portfolio_url` varchar(500) DEFAULT NULL,
  `years_experience` int(11) DEFAULT NULL,
  `current_company` varchar(255) DEFAULT NULL,
  `current_title` varchar(255) DEFAULT NULL,
  `expected_salary` decimal(12,2) DEFAULT NULL,
  `available_from` date DEFAULT NULL,
  `source` enum('website','linkedin','indeed','referral','agency','career-fair','other') DEFAULT 'website',
  `status` enum('new','screening','interviewing','assessment','offer','hired','rejected','withdrawn') DEFAULT 'new',
  `notes` text DEFAULT NULL,
  `applied_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_job_position` (`job_position_id`),
  KEY `idx_status` (`status`),
  KEY `idx_email` (`email`),
  KEY `idx_applied_at` (`applied_at`),
  CONSTRAINT `job_applications_ibfk_1` FOREIGN KEY (`job_position_id`) REFERENCES `job_positions` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `job_applications`
--

LOCK TABLES `job_applications` WRITE;
/*!40000 ALTER TABLE `job_applications` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `job_applications` VALUES
(1,1,'Test Er','test@tester.com','',NULL,NULL,'','',NULL,NULL,NULL,NULL,NULL,'linkedin','new','','2025-11-02 12:27:21','2025-11-02 12:27:21','2025-11-11 00:36:44');
/*!40000 ALTER TABLE `job_applications` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `job_positions`
--

DROP TABLE IF EXISTS `job_positions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `job_positions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `department` varchar(100) DEFAULT NULL,
  `location_id` int(10) unsigned DEFAULT NULL,
  `employment_type` enum('full-time','part-time','contract','temporary','intern') DEFAULT 'full-time',
  `level` enum('entry','junior','mid','senior','lead','manager','director','executive') DEFAULT 'mid',
  `salary_min` decimal(12,2) DEFAULT NULL,
  `salary_max` decimal(12,2) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `requirements` text DEFAULT NULL,
  `responsibilities` text DEFAULT NULL,
  `benefits` text DEFAULT NULL,
  `status` enum('draft','open','closed','filled','cancelled') DEFAULT 'draft',
  `openings` int(11) DEFAULT 1,
  `posted_date` date DEFAULT NULL,
  `closing_date` date DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `location_id` (`location_id`),
  KEY `idx_status` (`status`),
  KEY `idx_posted_date` (`posted_date`),
  KEY `idx_job_positions_deleted_at` (`deleted_at`),
  CONSTRAINT `job_positions_ibfk_1` FOREIGN KEY (`location_id`) REFERENCES `locations` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `job_positions`
--

LOCK TABLES `job_positions` WRITE;
/*!40000 ALTER TABLE `job_positions` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `job_positions` VALUES
(1,'Senior Software Engineer','IT',2,'full-time','lead',200000.00,250000.00,'Code','Know how to code','Code more','All','open',1,'2025-10-28',NULL,1,'2025-10-28 10:46:20','2025-10-28 10:46:20',NULL);
/*!40000 ALTER TABLE `job_positions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `journal_entries`
--

DROP TABLE IF EXISTS `journal_entries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `journal_entries` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entry_number` varchar(50) NOT NULL,
  `entry_date` date NOT NULL,
  `description` text DEFAULT NULL,
  `name` varchar(200) DEFAULT NULL,
  `split_account` varchar(200) DEFAULT NULL,
  `department` varchar(100) DEFAULT NULL,
  `location` varchar(100) DEFAULT NULL,
  `status` enum('draft','posted','reversed') DEFAULT 'draft',
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  `reference_type` varchar(50) DEFAULT NULL,
  `reference_id` int(11) DEFAULT NULL,
  `project_id` int(10) unsigned DEFAULT NULL COMMENT 'Link JE to specific project',
  PRIMARY KEY (`id`),
  UNIQUE KEY `entry_number` (`entry_number`),
  KEY `created_by` (`created_by`),
  KEY `idx_reference` (`reference_type`,`reference_id`),
  KEY `idx_journal_project` (`project_id`),
  KEY `idx_deleted_at` (`deleted_at`),
  KEY `idx_entry_date` (`entry_date`),
  KEY `idx_deleted_entry_date` (`deleted_at`,`entry_date`),
  CONSTRAINT `journal_entries_ibfk_1` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=3241 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `journal_entries`
--

LOCK TABLES `journal_entries` WRITE;
/*!40000 ALTER TABLE `journal_entries` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `journal_entries` VALUES
(645,'BC-00645','2025-01-01','ORIG CO NAME:SBA EIDL LOAN ORIG ID:XXXXXX0118 DESC DATE:241231 CO ENTRY DESCR:PAYMENT SEC:CCD TRACE#:XXXXXXXX2211203 EED:250102 IND ID:0000 IND NAME:NATHAN STAR ON XXXXXX7203 ACH TRANSACTION TRN: XXXXXX1203 TC','EIDL Loan','EIDL Loan','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(646,'BC-00646','2025-01-02','SERVICE CHARGES FOR THE MONTH OF JUNE','Fees Contact - USD','Bank Charges & Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(647,'BC-00647','2025-01-03','Zelle payment to Dora House Clea ner JPM929456383','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(648,'BC-00648','2025-01-04','AUTOPAY PAYMENT - THANK YOU','','AMEX #2005','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(649,'BC-00649','2025-01-06','Tax Payment for Period: 12/28/2024-12/31/2024','IRS','Federal Taxes (941/944)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(650,'BC-00650','2025-01-06','ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','American Express','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(651,'BC-00651','2025-01-06','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250104 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX2909739 EED:250106 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0104PPZ1KM TRN: XXXXXX9739 TC','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(652,'BC-00652','2025-01-07','ORIG CO NAME:PROG SELECT INS ORIG ID:XXXXXX8120 DESC DATE:250107 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX8974735 EED:250107 IND ID: IND NAME:Nathan Staro n TRN: XXXXXX4735 TC','Progressive Corporation','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(653,'BC-00653','2025-01-08','','Shenzhen SunFiD New Energy Co., Ltd.','Accounts Payable (A/P)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(654,'BC-00654','2025-01-08','ORIG CO NAME:ALLY ORIG ID:XXXXXX2002 DESC DATE:250108 CO ENTRY DESCR:ALLY PAYMTSEC:CCD TRACE#:XXXXXXXX7292718 EED:250108 IND ID:XXXXXXXX1804 IND NAME:LITHIUM BA TTERY CO TRN: XXXXXX2718 TC','ALLY','N/P Jeep Cherokee 2023','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(655,'BC-00655','2025-01-08','PROGRESSIVE *INSURANC XXX-XXX-4737 OH 01/08','Progressive Corporation','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(656,'BC-00656','2025-01-08','ORIG CO NAME:SolarStik 9905 ORIG ID:XXXXXX4537 DESC DATE: CO ENTRY DESCR:Payments SEC:CCD TRACE#:XXXXXXXX7342490 EED:250108 IND ID: IND NAME:Lithium Battery Co Int REF*1414(SHIPPING)\\ TRN: XXXXXX2490 TC','o','Sales','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(657,'BC-00657','2025-01-08','FEDWIRE CREDIT VIA: BANK OF AMERICA, N.A./XXXXX9593 B/O: 1/JD CAPITAL ADVISORS LLC 3/US/SAINT PETERSBURG X3705 REF: CHASE NYC/CTR/BNF=LITHIUM BATTERY COMPANY IN TL, LLC TAMPA FL XXXX4-800 6 US/AC-XXXXXXXX3316 RFB=XXXXX8276 OBI=LBC EQUITY INVESTMENT IMAD: 0108B6B7HU2RXX5650 TRN: XXXXXX1008 FF','','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(658,'BC-00658','2025-01-08','ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250106 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX0638159 EED:250108 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX8159 TC','','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(659,'BC-00659','2025-01-09','FiverrInc New York NY 01/10','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(660,'BC-00660','2025-01-09','PROPERTYREC.COM XXX-XXX-1102 NM 01/10','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(661,'BC-00661','2025-01-10','Zelle payment to Dora House Clea ner JPM929456383','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(662,'BC-00662','2025-01-10','Zelle payment to Nate Powell JPM99aui9bi6','','1099 Subcontractor Labor','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(663,'BC-00663','2025-01-10','Zelle payment to Nick Powell JPM99aui9620','','1099 Subcontractor Labor','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(664,'BC-00664','2025-01-10','ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: LBC1414 IMAD: 0110MMQFMP2NXX8286 TRN: XXXXXX5010 ES 0 1/10','','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(665,'BC-00665','2025-01-11','PIN CHASERS VETERAN- RE clover.com FL 01/11','','Other Business Expenses','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(666,'BC-00666','2025-01-13','Online Transfer from CHK ...7932 transaction#: XXXXXXX5378','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(667,'BC-00667','2025-01-13','','GSL Energy','Accounts Payable (A/P)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(668,'BC-00668','2025-01-13','FiverrInc XXX-XXX8280 NY 01/13','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(669,'BC-00669','2025-01-13','ONLINE PAYMENT - THANK YOU','','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(670,'BC-00670','2025-01-13','SHOPIFY* XXXXX4094 HTTPSSHOPIFY. IL 01/13','','Merchant Account Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(671,'BC-00671','2025-01-13','Online Payment XXXXXXX4585 To HMG 4615 01/13','','Rent & Lease Expense','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(672,'BC-00672','2025-01-14','System-recorded deposit for QuickBooks Payments','Dave Schmaltz','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(673,'BC-00673','2025-01-14','System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','QuickBooks Payments','Bank Charges & Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(674,'BC-00674','2025-01-15','Pay Period: 01/01/2025-01/15/2025','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(675,'BC-00675','2025-01-15','Pay Period: 01/01/2025-01/15/2025','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(676,'BC-00676','2025-01-15','Tax Payment','QuickBooks Payroll','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(677,'BC-00677','2025-01-15','ORIG CO NAME:PAYCARGO ORIG ID:XXXXXX5101 DESC DATE: CO ENTRY DESCR:ACHPAYMENTSEC:CCD TRACE#:XXXXXXXX4180456 EED:250115 IND ID:BATCH XXX1074 IND NAME:LITHIUM BAT TERY COMPAN NACHA 100A TRN: XXXXXX0456 TC','PayCargo, LLC','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(678,'BC-00678','2025-01-15','ORIG CO NAME:Rocket Money ORIG ID:1800948598 DESC DATE:       CO ENTRY DESCR:Premium   SEC:CCD    TRACE#:091000018457040 EED:220915   IND ID:ST-U5U8S2J1C9U2              IND NAME:ROCKET MONEY INC TRN: 2588457040TC','Rocket Money','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(679,'BC-00679','2025-01-15','ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','American Express','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(680,'BC-00680','2025-01-15','WOO-XXXXXX9521 WOOCOMMERCE.C CA 01/15','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(681,'BC-00681','2025-01-16','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:Dividend SEC:CCD TRACE#:XXXXXXXX4802658 EED:250116 IND ID: IND NAME:Lithium Battery Co Tran saction Expense Reimbursement TRN: XXXXXX2658 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(682,'BC-00682','2025-01-16','ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','American Express','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(683,'BC-00683','2025-01-16','WOO-XXXXXX9521 SAN FRANCISCO CA 01/16','','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(684,'BC-00684','2025-01-16','FiverrInc XXX-XXX8280 NY 01/16','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(685,'BC-00685','2025-01-16','ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: LBC1418 IMAD: 0116MMQFMP2KXX0990 TRN: XXXXXX5016 ES 0 1/16','','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(686,'BC-00686','2025-01-17','Zelle payment to Dora House Clea ner JPM929456383','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(687,'BC-00687','2025-01-17','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:Dividend SEC:CCD TRACE#:XXXXXXXX9468674 EED:250117 IND ID: IND NAME:Lithium Battery Co Tran saction Expense Reimbursement TRN: XXXXXX8674 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(688,'BC-00688','2025-01-17','ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','American Express','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(689,'BC-00689','2025-01-17','MOBILE PAYMENT - THANK YOU','','AMEX #2005','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(690,'BC-00690','2025-01-21','FiverrInc XXX-XXX8280 NY 01/21','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(691,'BC-00691','2025-01-21','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250118 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX1856716 EED:250121 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0118PPZL8B TRN: XXXXXX6716 TC','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(692,'BC-00692','2025-01-22','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250122 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX8499699 EED:250122 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0122PPZ6ZX TRN: XXXXXX9699 TC','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(693,'BC-00693','2025-01-22','REMOTE ONLINE DEPOSIT # 1','','Sales','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(694,'BC-00694','2025-01-23','PROGRESSIVE INS XXX-XXX-4737 OH 01/23','Progressive Corporation','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(695,'BC-00695','2025-01-23','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:Dividend SEC:CCD TRACE#:XXXXXXXX0317625 EED:250123 IND ID: IND NAME:Lithium Battery Co Supp lemental OWC TRN: XXXXXX7625 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(696,'BC-00696','2025-01-23','ORIG CO NAME:PROG AMERICAN ORIG ID:XXXXXX8120 DESC DATE:250123 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX3867486 EED:250123 IND ID: IND NAME:Lithium Batter y Co INT TRN: XXXXXX7486 TC','Progressive Corporation','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(697,'BC-00697','2025-01-23','ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250122 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX1204033 EED:250123 IND ID:PXXXX4506 IND NAME:STAR ON, NATHAN TRN: XXXXXX4033 TC','','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(698,'BC-00698','2025-01-23','Online ACH Payment XXXXXXX3042 To TBFTZ (_#########4153)\nTampa Bay Port Authority - FTZ','TBAFTZ','Business Licenses and Permits','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(699,'BC-00699','2025-01-24','Zelle payment to Dora House Clea ner JPM929456383','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(700,'BC-00700','2025-01-24','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:Dividend SEC:CCD TRACE#:XXXXXXXX5844380 EED:250124 IND ID: IND NAME:Lithium Battery Co LBC Payroll TRN: XXXXXX4380 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(701,'BC-00701','2025-01-24','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:Dividend SEC:CCD TRACE#:XXXXXXXX9370005 EED:250124 IND ID: IND NAME:Lithium Battery Co FTZ No. 79 Application TRN: XXXXXX0005 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(702,'BC-00702','2025-01-24','Zelle payment to Nick Powell JPM99avvedsf','','1099 Subcontractor Labor','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(703,'BC-00703','2025-01-24','ONLINE INTERNATIONAL WIRE TRANSFER A/C: JPMORGAN CHASE BANK N A HONG KONG HONG KONG XX9077 HK REF: LBC PO1429 AND LBC PO1425 INVOICE PAYMENT TRN: XXXXXX5024 ES 0 1/24','','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(704,'BC-00704','2025-01-25','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:Dividend SEC:CCD TRACE#:XXXXXXXX5941745 EED:250127 IND ID: IND NAME:Lithium Battery Co Insu rance Policy Downpayment TRN: XXXXXX1745 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(705,'BC-00705','2025-01-25','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:Dividend SEC:CCD TRACE#:XXXXXXXX5941750 EED:250127 IND ID: IND NAME:Lithium Battery Co Tran saction-Related Legal & OWC TRN: XXXXXX1750 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(706,'BC-00706','2025-01-25','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:Dividend SEC:CCD TRACE#:XXXXXXXX5941748 EED:250127 IND ID: IND NAME:Lithium Battery Co Leas ehold Improvements (Facility Fl ooring) TRN: XXXXXX1748 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(707,'BC-00707','2025-01-27','ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX8692756 EED:250127 IND ID:ST-W8D0B6O0E6V3 IND NAME:N ATHAN STARON TRN: XXXXXX2756 TC','','Worker\'s Compensation Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(708,'BC-00708','2025-01-28','Online Transfer to CHK ...7932 transaction#: XXXXXXX9694 01/28','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(709,'BC-00709','2025-01-28','ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','American Express','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(710,'BC-00710','2025-01-28','ORIG CO NAME:FIRST INSURANCE ORIG ID:XXXXXX7365 DESC DATE: CO ENTRY DESCR:INSURANCE SEC:CCD TRACE#:XXXXXXXX0745263 EED:250128 IND ID:900 -XXXXX7965 IND NAME:Lith ium Battery Compan PBS ACH DEBIT TRN: XXXXXX5263 TC','','General Liability & Business Interruption Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(711,'BC-00711','2025-01-28','ONLINE PAYMENT - THANK YOU','','AMEX #2005','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(712,'BC-00712','2025-01-29','ORIG CO NAME:MIDLAND NATIONAL ORIG ID:XXXXXX4570 DESC DATE:250127 CO ENTRY DESCR:INSURANCE SEC:PPD TRACE#:XXXXXXXX9297909 EED:250129 IND ID: IND NAME:LITHIUM BA TTERY COMP TRN: XXXXXX7909 TC','Midland National','Officer\'s Life Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(713,'BC-00713','2025-01-30','Tax Payment for Period: 01/01/2024-12/31/2024','IRS','Federal Unemployment (940)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(714,'BC-00714','2025-01-31','Pay Period: 01/16/2025-01/31/2025','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(715,'BC-00715','2025-01-31','Pay Period: 01/16/2025-01/31/2025','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(716,'BC-00716','2025-01-31','Tax Payment','QuickBooks Payroll','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(717,'BC-00717','2025-01-31','Zelle payment to Dora House Clea ner JPM929456383','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(718,'BC-00718','2025-02-03','SERVICE CHARGES FOR THE MONTH OF JANUARY','','Bank Charges & Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(719,'BC-00719','2025-02-03','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250203 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX9663387 EED:250203 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0203PPZ82Y TRN: XXXXXX3387 TC','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(720,'BC-00720','2025-02-03','Online RealTime payroll payment XXXXXXX1329 Payment Id REFERENCE#: XXXXXX1329RX to 4900','o','Employee Payroll','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(721,'BC-00721','2025-02-03','Online RealTime payroll payment XXXXXXX1403 Payment Id REFERENCE#: XXXXXX1403RX to 4900','o','Employee Payroll','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(722,'BC-00722','2025-02-04','System-recorded deposit for QuickBooks Payments','Marcus Portillo','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(723,'BC-00723','2025-02-04','System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','QuickBooks Payments','Bank Charges & Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(724,'BC-00724','2025-02-04','ONLINE PAYMENT - THANK YOU','','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(725,'BC-00725','2025-02-04','ONLINE DOMESTIC WIRE TRANSFER VIA: REGIONS BK/XXXXX5690 A/C: CARGO BROKERS INTL ALANTA GA X0320 US REF: BXXXX2349/A XXXX5781/BNF/LITBATTPA/TIME/08:02 IMAD: 0204 MMQFMP2KXX5383 TRN: XXXXXX5035 ES 02/04','','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(726,'BC-00726','2025-02-04','ONLINE DOMESTIC WIRE TRANSFER VIA: REGIONS BK/XXXXX5690 A/C: CARGO BROKERS INTL ALANTA GA X0320 US REF: BXXXX2349 XXXX5780/BNF/LITBATTPA/TIME/08:02 IMAD: 0204MM QFMP2NXX5595 TRN: XXXXXX5035 ES 02/04','','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(727,'BC-00727','2025-02-04','Online Transfer to CHK ...2560 transaction#: XXXXXXX4735 02/04','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(728,'BC-00728','2025-02-05','Online Transfer to CHK ...2560 transaction#: XXXXXXX1152 02/05','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(729,'BC-00729','2025-02-06','ONLINE PAYMENT - THANK YOU','','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(730,'BC-00730','2025-02-07','System-recorded deposit for QuickBooks Payments','Fiona Taylor','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(731,'BC-00731','2025-02-07','System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','QuickBooks Payments','Bank Charges & Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(732,'BC-00732','2025-02-07','Zelle payment to Dora House Clea ner JPM929456383','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(733,'BC-00733','2025-02-07','ONLINE PAYMENT - THANK YOU','','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(734,'BC-00734','2025-02-07','Online Transfer to CHK ...2560 transaction#: XXXXXXX8062 02/07','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(735,'BC-00735','2025-02-08','ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250206 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX0848924 EED:250210 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX8924 TC','','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(736,'BC-00736','2025-02-09','PROPERTYREC.COM XXX-XXX-1102 NM 02/10','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(737,'BC-00737','2025-02-10','ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX5600 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX4395459 EED:250210 IND ID:ST-J3E7T7V2W0F2 IND NAME:N ATHAN STARON TRN: XXXXXX5459 TC','','Worker\'s Compensation Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(738,'BC-00738','2025-02-10','ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: LBC1419 IMAD: 0210MMQFMP2LXX8055 TRN: XXXXXX5041 ES 0 2/10','','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(739,'BC-00739','2025-02-11','Zelle payment to Michael P JPM99axve8gl','','Parking & Tolls','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(740,'BC-00740','2025-02-11','Zelle payment to Anthony A JPM99axuvfzk','','Parking & Tolls','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(741,'BC-00741','2025-02-11','ONLINE INTERNATIONAL WIRE TRANSFER A/C: JPMORGAN CHASE BANK N A HONG KONG HONG KONG XX9077 HK REF: LBC1434 INVOICE PAYMENT TRN: XXXXXX5042 ES 02/11','','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(742,'BC-00742','2025-02-12','SHOPIFY* XXXXX5376 SHOPIFY.COM IL 02/12','','Merchant Account Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(743,'BC-00743','2025-02-13','ONLINE PAYMENT - THANK YOU','','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(744,'BC-00744','2025-02-13','ORIG CO NAME:PROG SELECT INS ORIG ID:XXXXXX8120 DESC DATE:250213 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX9167604 EED:250213 IND ID: IND NAME:Nathan Staro n TRN: XXXXXX7604 TC','o','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(745,'BC-00745','2025-02-13','ORIG CO NAME:PROG SELECT INS ORIG ID:XXXXXX8120 DESC DATE:250213 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX9167603 EED:250213 IND ID: IND NAME:Nathan Staro n TRN: XXXXXX7603 TC','o','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(746,'BC-00746','2025-02-13','ONLINE DOMESTIC WIRE TRANSFER VIA: PNCBANK PITT/XXXXX0096 A/C: RONALD STARON INDIANA PA X5701 US REF: LBC LOAN REPAYMENT (N.S.)/BNF/LITHIUM BATTERY CO IMAD: 021 3MMQFMP2KXX6076 TRN: XXXXXX5044 ES 02/13','Ron Staron - Vendor','Staron Inventory Loan','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(747,'BC-00747','2025-02-13','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:Dividend SEC:CCD TRACE#:XXXXXXXX6914437 EED:250213 IND ID: IND NAME:Lithium Battery Co LBC Shareholder Transfer (NS) TRN: XXXXXX4437 TC','o','Owner\'s Investment','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(748,'BC-00748','2025-02-13','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC SEC:CCD TRACE#:XXXXXXXX0988032 EED:250213 IND ID: IND NAME:Lithium Battery Co LBC OWC & NS Temporary Advance TRN: XXXXXX8032 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(749,'BC-00749','2025-02-14','Pay Period: 02/01/2025-02/15/2025','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(750,'BC-00750','2025-02-14','Pay Period: 02/01/2025-02/15/2025','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(751,'BC-00751','2025-02-14','Tax Payment','QuickBooks Payroll','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(752,'BC-00752','2025-02-14','Zelle payment to Dora House Clea ner JPM929456383','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(753,'BC-00753','2025-02-14','FIORI\'S PIZZA XXX-XXX7788 PA 02/14','','Business meals','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(754,'BC-00754','2025-02-14','FIORI\'S PIZZA XXX-XXX7788 PA 02/14','','Business meals','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(755,'BC-00755','2025-02-15','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC SEC:CCD TRACE#:XXXXXXXX5387968 EED:250218 IND ID: IND NAME:Lithium Battery Co 5201 Faci lity Insurance Payment (2/ 15/25) TRN: XXXXXX7968 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(756,'BC-00756','2025-02-16','Online RealTime payroll payment XXXXXXX6762 Payment Id REFERENCE#: XXXXXX6762RX to 1148','o','Employee Payroll','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(757,'BC-00757','2025-02-18','ONLINE PAYMENT - THANK YOU','','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(758,'BC-00758','2025-02-18','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250218 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX0388234 EED:250218 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0218PPZ332 TRN: XXXXXX8234 TC','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(759,'BC-00759','2025-02-19','ORIG CO NAME:Rocket Money ORIG ID:XXXXXX5600 DESC DATE: CO ENTRY DESCR:Premium SEC:CCD TRACE#:XXXXXXXX1818945 EED:250219 IND ID:ST-F1E2A7S1G4L3 IND NAME:ROCKET MONEY INC TRN: XXXXXX8945 TC','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(760,'BC-00760','2025-02-21','Zelle payment to Dora House Clea ner JPM929456383','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(761,'BC-00761','2025-02-21','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250221 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX3971463 EED:250221 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0221PPZ2AZ TRN: XXXXXX1463 TC','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(762,'BC-00762','2025-02-21','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC SEC:CCD TRACE#:XXXXXXXX2171047 EED:250221 IND ID: IND NAME:Lithium Battery Co Jan 2025 Payroll TRN: XXXXXX1047 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(763,'BC-00763','2025-02-22','ORIG CO NAME:SBA EIDL LOAN ORIG ID:XXXXXX0118 DESC DATE:250221 CO ENTRY DESCR:PAYMENT SEC:CCD TRACE#:XXXXXXXX8546940 EED:250224 IND ID:0000 IND NAME:NATHAN STAR ON XXXXXX7203 ACH TRANSACTION TRN: XXXXXX6940 TC','EIDL Loan','EIDL Loan','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(764,'BC-00764','2025-02-22','Zelle payment to Joey M JPM99az1nm4m','','Parking & Tolls','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(765,'BC-00765','2025-02-22','ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250221 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX6850342 EED:250224 IND ID:PXXXX8790 IND NAME:STAR ON, NATHAN TRN: XXXXXX0342 TC','','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(766,'BC-00766','2025-02-22','NON-CHASE ATM WITHDRAW XX3005 02/XXX1225 RAC','','Office Expenses','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(767,'BC-00767','2025-02-23','PROGRESSIVE INS XXX-XXX-4737 OH 02/23','Progressive Corporation','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(768,'BC-00768','2025-02-24','ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX9801081 EED:250224 IND ID:ST-E2O0Y0X4O6B5 IND NAME:N ATHAN STARON TRN: XXXXXX1081 TC','','Worker\'s Compensation Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(769,'BC-00769','2025-02-24','ORIG CO NAME:PROG AMERICAN ORIG ID:XXXXXX8120 DESC DATE:250224 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX2688720 EED:250224 IND ID: IND NAME:Lithium Batter y Co INT TRN: XXXXXX8720 TC','','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(770,'BC-00770','2025-02-26','ORIG CO NAME:MENESKO, UAB ORIG ID:770510487 C DESC DATE: CO ENTRY DESCR:IAT PAYPALSEC:WEB TRACE#:XXXXXXXX3977000 EED:250226 IND ID:XXXXXXXX96150 IND NAME:LITHIUM BATTERY COMPAN IATCVXX0226PPZQB2 TRN: XXXXXX7000 TC','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(771,'BC-00771','2025-02-26','ORIG CO NAME:FIRST INSURANCE ORIG ID:XXXXXX7365 DESC DATE: CO ENTRY DESCR:INSURANCE SEC:CCD TRACE#:XXXXXXXX2310094 EED:250226 IND ID:900 -XXXXX2748 IND NAME:Lith ium Battery Compan PBS ACH DEBIT TRN: XXXXXX0094 TC','','General Liability & Business Interruption Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(772,'BC-00772','2025-02-26','Online Transfer to CHK ...2560 transaction#: XXXXXXX3099 02/26','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(773,'BC-00773','2025-02-27','ORIG CO NAME:FIRST INSURANCE ORIG ID:XXXXXX7365 DESC DATE: CO ENTRY DESCR:INSURANCE SEC:CCD TRACE#:XXXXXXXX9107830 EED:250227 IND ID:900 -XXXXX7965 IND NAME:Lith ium Battery Compan PBS ACH DEBIT TRN: XXXXXX7830 TC','','General Liability & Business Interruption Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(774,'BC-00774','2025-02-27','ONLINE DOMESTIC WIRE TRANSFER VIA: HUDSON VALLEY CU/XXXXX9363 A/C: KEVIN EELLS POUGHKEEPSIE NY X2602 US REF: EXPENSE REIMBURSEMENT (1.15.25-2.26.25)/BNF/EXPENSE REIMBURSEMENT (1.1 5.25-2.26.25) IMAD: 0227MMQFMP2LXX9785 TRN: XXXXXX5058 ES 02/27','','Office Expenses','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(775,'BC-00775','2025-02-28','Pay Period: 02/16/2025-02/28/2025','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(776,'BC-00776','2025-02-28','Pay Period: 02/16/2025-02/28/2025','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(777,'BC-00777','2025-02-28','Tax Payment','QuickBooks Payroll','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(778,'BC-00778','2025-02-28','Zelle payment to Dora House Clea ner JPM929456383','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(779,'BC-00779','2025-03-03','SERVICE CHARGES FOR THE MONTH OF FEBRUARY','','Bank Charges & Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(780,'BC-00780','2025-03-03','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC SEC:CCD TRACE#:XXXXXXXX3767808 EED:250303 IND ID: IND NAME:Lithium Battery Co LBC Share holder Transfer (NS) TRN: XXXXXX7808 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(781,'BC-00781','2025-03-04','System-recorded deposit for QuickBooks Payments','','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(782,'BC-00782','2025-03-04','System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','QuickBooks Payments','Bank Charges & Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(783,'BC-00783','2025-03-04','ONLINE DOMESTIC WIRE TRANSFER VIA: PNCBANK PITT/XXXXX0096 A/C: RONALD STARON INDIANA PA X5701 US REF: LBC LOAN REPAYMENT/BNF/LITHIUM BATTERY CO IMAD: 0304MMQFMP 2NXX2800 TRN: XXXXXX5063 ES 03/04','Ron Staron - Vendor','Staron Inventory Loan','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(784,'BC-00784','2025-03-05','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250305 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX3119939 EED:250305 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0305PPZ3YS TRN: XXXXXX9939 TC','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(785,'BC-00785','2025-03-06','ONLINE DOMESTIC WIRE TRANSFER VIA: TREAS NYC/XXXXX0004 A/C: SMALL BUSINESS ADMINISTRATION DENVER CO X0202 US REF: LITHIUM BATTERY COMPANY (NATHAN A STARON) EIDL LOAN: XXXXXX7203/BNF/LI THIUM BATTERY COMPANY (NATHAN A STA RON) EIDL LOAN: XXXXXX7203 IMAD: 0306MMQFMP2MXX4558 TRN: XXXXXX5065 ES 03/06','EIDL Loan','EIDL Loan','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(786,'BC-00786','2025-03-06','MCDONALD\'S-STORE 367 HONG KONG 03/07 HK Dollar 43.00 X 0.XXX6047 (EXCHG RTE)','','Meals','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(787,'BC-00787','2025-03-06','FOREIGN EXCHANGE RATE ADJUSTMENT FEE 03/07MCDONALD\'','','Bank Charges & Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(788,'BC-00788','2025-03-06','Loan Fees','EIDL Loan','EIDL Loan','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(789,'BC-00789','2025-03-06','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC SEC:CCD TRACE#:XXXXXXXX5080527 EED:250306 IND ID: IND NAME:Lithium Battery Co Sharehold er Transfer (NS) TRN: XXXXXX0527 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(790,'BC-00790','2025-03-07','System-recorded deposit for QuickBooks Payments','Marcus Portillo','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(791,'BC-00791','2025-03-07','System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','QuickBooks Payments','Bank Charges & Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(792,'BC-00792','2025-03-07','Zelle payment to Dora House Clea ner JPM929456383','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(793,'BC-00793','2025-03-07','Online Transfer to CHK ...1215 transaction#: XXXXXXX9780 03/07','CHK ...1215','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(794,'BC-00794','2025-03-08','ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250306 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX4195671 EED:250310 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX5671 TC','','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(795,'BC-00795','2025-03-09','PROPERTYREC.COM XXX-XXX-1102 NM 03/10','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(796,'BC-00796','2025-03-10','ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX7461470 EED:250310 IND ID:ST-U1E6E1E5X8B7 IND NAME:N ATHAN STARON TRN: XXXXXX1470 TC','','Worker\'s Compensation Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(797,'BC-00797','2025-03-10','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC SEC:CCD TRACE#:XXXXXXXX7495169 EED:250310 IND ID: IND NAME:Lithium Battery Co OWC TRN: XXXXXX5169TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(798,'BC-00798','2025-03-11','Online Transfer from CHK ...2560 transaction#: XXXXXXX2334','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(799,'BC-00799','2025-03-11','Online Transfer from CHK ...2560 transaction#: XXXXXXX6248','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(800,'BC-00800','2025-03-12','Online Transfer to CHK ...2560 transaction#: XXXXXXX6587 03/12','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(801,'BC-00801','2025-03-13','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC SEC:CCD TRACE#:XXXXXXXX4239121 EED:250313 IND ID: IND NAME:Lithium Battery Co Consultin g Retainer (3.1.25-3.15.25 ) TRN: XXXXXX9121 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(802,'BC-00802','2025-03-14','Pay Period: 03/01/2025-03/15/2025','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(803,'BC-00803','2025-03-14','Pay Period: 03/01/2025-03/15/2025','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(804,'BC-00804','2025-03-14','Tax Payment','QuickBooks Payroll','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(805,'BC-00805','2025-03-14','Zelle payment to Dora House Clea ner JPM929456383','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(806,'BC-00806','2025-03-14','SHOPIFY* XXXXX6542 SHOPIFY.COM IL 03/14','','Merchant Account Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(807,'BC-00807','2025-03-14','','Michael Posner','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(808,'BC-00808','2025-03-17','ONLINE PAYMENT - THANK YOU','','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(809,'BC-00809','2025-03-17','ORIG CO NAME:Rocket Money ORIG ID:XXXXXX5600 DESC DATE: CO ENTRY DESCR:Premium SEC:CCD TRACE#:XXXXXXXX6388709 EED:250317 IND ID:ST-P5P6D6K7Y0O7 IND NAME:ROCKET MONEY INC TRN: XXXXXX8709 TC','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(810,'BC-00810','2025-03-17','Online Transfer from CHK ...2560 transaction#: XXXXXXX4707','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(811,'BC-00811','2025-03-18','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250318 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX9655748 EED:250318 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0318PPZPYG TRN: XXXXXX5748 TC','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(812,'BC-00812','2025-03-19','ORIG CO NAME:EFFECT WEB MEDIA ORIG ID:XXXXXX6202 DESC DATE:250319 CO ENTRY DESCR:SALE SEC:CCD TRACE#:XXXXXXXX6607583 EED:250319 IND ID: IND NAME:LITHIUM BATTERY COMPAN TRN: XXXXXX7583 TC','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(813,'BC-00813','2025-03-20','Online Payment XXXXXXX8494 To HMG 4615 03/20','','Rent & Lease Expense','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(814,'BC-00814','2025-03-21','Zelle payment to Dora House Clea ner JPM929456383','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(815,'BC-00815','2025-03-21','ORIG CO NAME:TRUIST LN 506 ORIG ID:9 WEBXX5506 DESC DATE:250320 CO ENTRY DESCR:OLB PYMT SEC:WEB TRACE#:XXXXXXXX8464628 EED:250321 IND ID:XXXXXXXX9421001 IND NAME :NATHAN STARON TRN: XXXXXX4628 TC','','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(816,'BC-00816','2025-03-22','ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250321 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX8020777 EED:250324 IND ID:PXXXX2527 IND NAME:STAR ON, NATHAN TRN: XXXXXX0777 TC','','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(817,'BC-00817','2025-03-23','PROGRESSIVE INS XXX-XXX-4737 OH 03/23','Progressive Corporation','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(818,'BC-00818','2025-03-24','ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX2649555 EED:250324 IND ID:ST-I9N4B9F4Y0P7 IND NAME:N ATHAN STARON TRN: XXXXXX9555 TC','','Worker\'s Compensation Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(819,'BC-00819','2025-03-24','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250323 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX3067999 EED:250324 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0323PPZOZV TRN: XXXXXX7999 TC','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(820,'BC-00820','2025-03-24','ORIG CO NAME:PROG AMERICAN ORIG ID:XXXXXX8120 DESC DATE:250324 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX9924186 EED:250324 IND ID: IND NAME:Lithium Batter y Co INT TRN: XXXXXX4186 TC','o','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(821,'BC-00821','2025-03-24','ORIG CO NAME:PROG AMERICAN ORIG ID:XXXXXX8120 DESC DATE:250324 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX9924183 EED:250324 IND ID: IND NAME:Lithium Batter y Co INT TRN: XXXXXX4183 TC','o','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(822,'BC-00822','2025-03-24','ORIG CO NAME:PROG AMERICAN ORIG ID:XXXXXX8120 DESC DATE:250324 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX9924182 EED:250324 IND ID: IND NAME:Lithium Batter y Co INT TRN: XXXXXX4182 TC','o','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(823,'BC-00823','2025-03-24','ORIG CO NAME:PROG AMERICAN ORIG ID:XXXXXX8120 DESC DATE:250324 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX9924185 EED:250324 IND ID: IND NAME:Lithium Batter y Co INT TRN: XXXXXX4185 TC','o','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(824,'BC-00824','2025-03-24','ORIG CO NAME:PROG AMERICAN ORIG ID:XXXXXX8120 DESC DATE:250324 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX9924184 EED:250324 IND ID: IND NAME:Lithium Batter y Co INT TRN: XXXXXX4184 TC','o','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(825,'BC-00825','2025-03-24','ORIG CO NAME:PROG AMERICAN ORIG ID:XXXXXX8120 DESC DATE:250324 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX9924181 EED:250324 IND ID: IND NAME:Lithium Batter y Co INT TRN: XXXXXX4181 TC','o','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(826,'BC-00826','2025-03-24','ORIG CO NAME:eBay Com7LPMP2B9 ORIG ID:XXXXXX6000 DESC DATE:250324 CO ENTRY DESCR:PAYMENTS SEC:CCD TRACE#:XXXXXXXX3559451 EED:250324 IND ID:0 FYXGKQQBWXSP68 IND N AME:Nathan Staron NTE*ZZZ*PXXXXXX0026\\ TRN: XXXXXX9451 TC','o','Sales','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(827,'BC-00827','2025-03-24','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC SEC:CCD TRACE#:XXXXXXXX1842096 EED:250324 IND ID: IND NAME:Lithium Battery Co Consultin g Retainer (3.16.25-3.31.2 5) TRN: XXXXXX2096 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(828,'BC-00828','2025-03-26','REMOTE ONLINE DEPOSIT # 1','','Sales','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(829,'BC-00829','2025-03-27','ORIG CO NAME:FIRST INSURANCE ORIG ID:XXXXXX7365 DESC DATE: CO ENTRY DESCR:INSURANCE SEC:CCD TRACE#:XXXXXXXX3564382 EED:250327 IND ID:900 -XXXXX7965 IND NAME:Lith ium Battery Compan PBS ACH DEBIT TRN: XXXXXX4382 TC','','General Liability & Business Interruption Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(830,'BC-00830','2025-03-28','Zelle payment to Dora House Clea ner JPM929456383','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(831,'BC-00831','2025-03-31','Pay Period: 03/16/2025-03/31/2025','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(832,'BC-00832','2025-03-31','Pay Period: 03/16/2025-03/31/2025','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(833,'BC-00833','2025-03-31','Tax Payment','QuickBooks Payroll','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(834,'BC-00834','2025-03-31','LBC#MAIN Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(835,'BC-00835','2025-04-01','SERVICE CHARGES FOR THE MONTH OF MARCH','','Bank Charges & Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(836,'BC-00836','2025-04-02','ONLINE PAYMENT - THANK YOU','','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(837,'BC-00837','2025-04-02','ONLINE PAYMENT - THANK YOU','','AMEX #2005','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(838,'BC-00838','2025-04-04','Zelle payment to Dora House Clea ner JPM929456383','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(839,'BC-00839','2025-04-04','ONLINE PAYMENT - THANK YOU','','AMEX #2005','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(840,'BC-00840','2025-04-04','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250404 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX3454971 EED:250404 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0404PPZ236 TRN: XXXXXX4971 TC','PayPal','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(841,'BC-00841','2025-04-07','ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX2335947 EED:250407 IND ID:ST-Y1C4A1G7Q5P3 IND NAME:N ATHAN STARON TRN: XXXXXX5947 TC','','Worker\'s Compensation Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(842,'BC-00842','2025-04-08','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX6514408 EED:250408 IND ID: IND NAME:LBC Main (#2560) LBC Sh areholder Transfer (NS) TRN: XXXXXX4408 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(843,'BC-00843','2025-04-08','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX1969490 EED:250408 IND ID: IND NAME:LBC Main (#2560) Consul ting Retainer (4.1.25-4.15.25 ) TRN: XXXXXX9490 TC','o','Sales','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(844,'BC-00844','2025-04-08','ONLINE DOMESTIC WIRE TRANSFER VIA: PNCBANK PITT/XXXXX0096 A/C: RONALD STARON INDIANA PA X5701 US REF: LBC LOAN REPAYMENT/BNF/LITHIUM BATTERY CO IMAD: 0408MMQFMP 2KXX1400 TRN: XXXXXX5098 ES 04/08','Ron Staron - Vendor','Staron Inventory Loan','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(845,'BC-00845','2025-04-08','ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250406 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX1677193 EED:250408 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX7193 TC','','Office Expenses','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(846,'BC-00846','2025-04-09','ONLINE PAYMENT - THANK YOU','','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(847,'BC-00847','2025-04-09','Online Transfer to CHK ...2560 transaction#: XXXXXXX0314 04/09','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(848,'BC-00848','2025-04-09','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX3023021 EED:250409 IND ID: IND NAME:LBC Main (#2560) OWC - SOFWEEK Table TRN: XXXXXX3021 TC','o','Sales','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(849,'BC-00849','2025-04-09','PROPERTYREC.COM XXX-XXX-1102 NM 04/10','Property Rec','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(850,'BC-00850','2025-04-10','ONLINE PAYMENT - THANK YOU','','AMEX #2005','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(851,'BC-00851','2025-04-10','Online Transfer from CHK ...2560 transaction#: XXXXXXX4037','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(852,'BC-00852','2025-04-10','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX1191411 EED:250410 IND ID: IND NAME:LBC Main (#2560) Consul ting Retainer (Adv: 4.16.25-4 .30.25) TRN: XXXXXX1411 TC','o','Sales','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(853,'BC-00853','2025-04-11','Zelle payment to Dora House Clea ner JPM929456383','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(854,'BC-00854','2025-04-11','ONLINE PAYMENT - THANK YOU','','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(855,'BC-00855','2025-04-11','MOBILE PAYMENT - THANK YOU','American Express','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(856,'BC-00856','2025-04-11','MOBILE PAYMENT - THANK YOU','','AMEX #2005','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(857,'BC-00857','2025-04-13','SHOPIFY* XXXXX1133 SHOPIFY.COM IL 04/13','Shopify','Merchant Account Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(858,'BC-00858','2025-04-14','ONLINE PAYMENT - THANK YOU','','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(859,'BC-00859','2025-04-14','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX3610479 EED:250414 IND ID: IND NAME:LBC Main (#2560) OWC TR N: XXXXXX0479TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(860,'BC-00860','2025-04-14','ORIG CO NAME:eBay ComPBF5USK0 ORIG ID:XXXXXX6000 DESC DATE:250414 CO ENTRY DESCR:PAYMENTS SEC:CCD TRACE#:XXXXXXXX8295722 EED:250414 IND ID:USEAYR1TL2H6V6K IND N AME:Nathan Staron NTE*ZZZ*PXXXXXX3226\\ TRN: XXXXXX5722 TC','o','Sales','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(861,'BC-00861','2025-04-15','Pay Period: 04/01/2025-04/15/2025','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(862,'BC-00862','2025-04-15','Pay Period: 04/01/2025-04/15/2025','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(863,'BC-00863','2025-04-15','Tax Payment','QuickBooks Payroll','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(864,'BC-00864','2025-04-15','System-recorded deposit for QuickBooks Payments','CDTi Advanced Materials, Inc..','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(865,'BC-00865','2025-04-15','System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','QuickBooks Payments','QuickBooks Payments Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(866,'BC-00866','2025-04-15','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX7022758 EED:250415 IND ID: IND NAME:LBC Main (#2560) OWC TR N: XXXXXX2758TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(867,'BC-00867','2025-04-15','ORIG CO NAME:Rocket Money ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:Premium SEC:CCD TRACE#:XXXXXXXX0024381 EED:250415 IND ID:ST-J7F2J6T8B4B1 IND NAME:ROCKET MONEY INC TRN: XXXXXX4381 TC','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(868,'BC-00868','2025-04-18','Zelle payment to Dora House Clea ner JPM929456383','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(869,'BC-00869','2025-04-18','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250418 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX7852517 EED:250418 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0418PPZWVK TRN: XXXXXX2517 TC','PayPal','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(870,'BC-00870','2025-04-18','ORIG CO NAME:eBay ComIUJJ8WQR ORIG ID:XXXXXX6000 DESC DATE:250418 CO ENTRY DESCR:PAYMENTS SEC:CCD TRACE#:XXXXXXXX5809876 EED:250418 IND ID:7 TH6DK4QIN8PK61 IND N AME:Nathan Staron NTE*ZZZ*PXXXXXX9762\\ TRN: XXXXXX9876 TC','o','Sales','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(871,'BC-00871','2025-04-21','ONLINE PAYMENT - THANK YOU','','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(872,'BC-00872','2025-04-21','Online Transfer to CHK ...2560 transaction#: XXXXXXX2964 04/21','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(873,'BC-00873','2025-04-21','Online Transfer to CHK ...2560 transaction#: XXXXXXX5521 04/21','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(874,'BC-00874','2025-04-21','ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX4346905 EED:250421 IND ID:ST-H5Q4N5J1N7T2 IND NAME:N ATHAN STARON TRN: XXXXXX6905 TC','','Worker\'s Compensation Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(875,'BC-00875','2025-04-21','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX1247002 EED:250421 IND ID: IND NAME:LBC Main (#2560) GSL In voice TRN: XXXXXX7002 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(876,'BC-00876','2025-04-21','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX1247005 EED:250421 IND ID: IND NAME:LBC Main (#2560) OWC TR N: XXXXXX7005TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(877,'BC-00877','2025-04-22','ONLINE PAYMENT - THANK YOU','','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(878,'BC-00878','2025-04-22','Online Transfer from CHK ...2560 transaction#: XXXXXXX3274','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(879,'BC-00879','2025-04-22','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX3388472 EED:250422 IND ID: IND NAME:LBC Main (#2560) OWC Mi n Cash TRN: XXXXXX8472 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(880,'BC-00880','2025-04-22','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250422 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX1393233 EED:250422 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0422PPZG5T TRN: XXXXXX3233 TC','PayPal','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(881,'BC-00881','2025-04-23','PROGRESSIVE INS XXX-XXX-4737 OH 04/23','Progressive Corporation','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(882,'BC-00882','2025-04-23','ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250422 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX4164084 EED:250423 IND ID:PXXXX2890 IND NAME:STAR ON, NATHAN TRN: XXXXXX4084 TC','','Note Payable - 2023 Cadillac','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(883,'BC-00883','2025-04-24','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX9526699 EED:250424 IND ID: IND NAME:LBC Main (#2560) Effect Web Media Payment TRN: XXXXXX6699 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(884,'BC-00884','2025-04-25','Zelle payment to Dora House Clea ner JPM929456383','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(885,'BC-00885','2025-04-25','Online Payment XXXXXXX9472 To HMG 4615 04/25','','Rent & Lease Expense','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(886,'BC-00886','2025-04-25','Online Transfer from CHK ...1215 transaction#: XXXXXXX8239','o','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(887,'BC-00887','2025-04-26','CIRCLE K 209 X7691 HONG KONG 04/26 HK Dollar 54.50 X 0.XXX9908 (EXCHG RTE)','','Automobile Expense','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(888,'BC-00888','2025-04-26','FOREIGN EXCHANGE RATE ADJUSTMENT FEE 04/26CIRCLE K','','Automobile Expense','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(889,'BC-00889','2025-04-27','FOREIGN EXCHANGE RATE ADJUSTMENT FEE 04/28MCDONALD\'','','Bank Charges & Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(890,'BC-00890','2025-04-27','MCDONALD\'S-STORE 365 HONG KONG 04/28 HK Dollar 130.00 X 0.XXX9231 (EXCHG RTE)','','Meals','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(891,'BC-00891','2025-04-29','ORIG CO NAME:MIDLAND NATIONAL ORIG ID:XXXXXX4570 DESC DATE:250425 CO ENTRY DESCR:INSURANCE SEC:PPD TRACE#:XXXXXXXX3761971 EED:250429 IND ID: IND NAME:LITHIUM BA TTERY COMP TRN: XXXXXX1971 TC','Midland National','Officer\'s Life Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(892,'BC-00892','2025-04-30','Pay Period: 04/16/2025-04/30/2025','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(893,'BC-00893','2025-04-30','Pay Period: 04/16/2025-04/30/2025','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(894,'BC-00894','2025-04-30','Tax Payment','QuickBooks Payroll','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(895,'BC-00895','2025-05-01','SERVICE CHARGES FOR THE MONTH OF APRIL','','Bank Charges & Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(896,'BC-00896','2025-05-01','APPLE CASH BALANCE AD XXX-XXX-8552 CA 05/02','','Bank Charges & Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(897,'BC-00897','2025-05-01','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX0267745 EED:250501 IND ID: IND NAME:LBC Main (#2560) Kevin Eells Payroll Reimbursement ( 4.16.25 - 5.1.25) TRN: XXXXXX7745 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(898,'BC-00898','2025-05-02','System-recorded deposit for QuickBooks Payments','Tommy Ausherman','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(899,'BC-00899','2025-05-02','System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','QuickBooks Payments','QuickBooks Payments Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(900,'BC-00900','2025-05-02','Zelle payment to Dora House Clea ner JPM929456383','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(901,'BC-00901','2025-05-02','','LG Electronics USA','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(902,'BC-00902','2025-05-03','NON-CHASE ATM WITHDRAW XX6671 05/XX1010 N MA','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(903,'BC-00903','2025-05-05','ONLINE PAYMENT - THANK YOU','','AMEX #2005','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(904,'BC-00904','2025-05-05','Online Transfer from CHK ...2560 transaction#: XXXXXXX4699','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(905,'BC-00905','2025-05-05','ONLINE DOMESTIC WIRE TRANSFER VIA: CLIMATE FIRST BANK/XXXXX7011 A/C: CLIMATE FIRST BANK ST. PETERSBURG FL X3710 US IMAD: 0505MMQFMP2NXX5379 TRN: XXXXXX5125 ES 05 /05','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(906,'BC-00906','2025-05-05','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250504 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX7648307 EED:250505 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0504PPZRSC TRN: XXXXXX8307 TC','PayPal','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(907,'BC-00907','2025-05-05','ORIG CO NAME:EFFECT WEB MEDIA ORIG ID:XXXXXX6202 DESC DATE:250505 CO ENTRY DESCR:SALE SEC:CCD TRACE#:XXXXXXXX7720989 EED:250505 IND ID: IND NAME:LITHIUM BATTERY COMPAN TRN: XXXXXX0989 TC','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(908,'BC-00908','2025-05-07','System-recorded deposit for QuickBooks Payments','Tommy Ausherman','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(909,'BC-00909','2025-05-07','System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','QuickBooks Payments','QuickBooks Payments Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(910,'BC-00910','2025-05-08','ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250506 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX8969158 EED:250508 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX9158 TC','','Office Expenses','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(911,'BC-00911','2025-05-09','Zelle payment to Dora House Clea ner JPM929456383','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(912,'BC-00912','2025-05-12','ONLINE PAYMENT - THANK YOU','','AMEX #2005','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(913,'BC-00913','2025-05-12','ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX0649540 EED:250512 IND ID:ST-N8M4E1C3C5G8 IND NAME:N ATHAN STARON TRN: XXXXXX9540 TC','','Worker\'s Compensation Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(914,'BC-00914','2025-05-12','Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(915,'BC-00915','2025-05-13','ONLINE PAYMENT - THANK YOU','','AMEX #2005','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(916,'BC-00916','2025-05-13','Online Payment XXXXXXX6827 To HMG 4615 05/13','','Rent & Lease Expense','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(917,'BC-00917','2025-05-13','SHOPIFY* XXXXX5839 SHOPIFY.COM IL 05/13','Shopify','Merchant Account Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(918,'BC-00918','2025-05-15','Pay Period: 05/01/2025-05/15/2025','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(919,'BC-00919','2025-05-15','Pay Period: 05/01/2025-05/15/2025','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(920,'BC-00920','2025-05-15','Tax Payment','QuickBooks Payroll','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(921,'BC-00921','2025-05-15','ORIG CO NAME:Rocket Money ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:Premium SEC:CCD TRACE#:XXXXXXXX6420546 EED:250515 IND ID:ST-Z5G0E0R7C9A0 IND NAME:ROCKET MONEY INC TRN: XXXXXX0546 TC','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(922,'BC-00922','2025-05-16','Zelle payment to Dora House Clea ner JPM929456383','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(923,'BC-00923','2025-05-16','ONLINE PAYMENT - THANK YOU','','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(924,'BC-00924','2025-05-16','ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250516 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX1796687 EED:250516 IND ID:W9994 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6687 TC','American Express','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(925,'BC-00925','2025-05-19','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250518 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX5610763 EED:250519 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0518PPZJSB TRN: XXXXXX0763 TC','PayPal','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(926,'BC-00926','2025-05-21','Fiverr XXX-XXX9699 NY 05/21','Fiverr','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(927,'BC-00927','2025-05-22','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250522 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX5752693 EED:250522 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0522PPZI6P TRN: XXXXXX2693 TC','PayPal','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(928,'BC-00928','2025-05-22','ONLINE DOMESTIC WIRE TRANSFER VIA: COMMN AMER CU/XXXXX1508 A/C: S2 CAPITAL GROUP LLC LENEXA KS X6285 US REF: REFUND FOR LBC ORDER IMAD: 0522MMQFMP2KXX7696 TRN: XXXXXX5142ES 05/22','Shenzhen SunFiD New Energy Co., Ltd.','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(929,'BC-00929','2025-05-22','ONLINE DOMESTIC WIRE TRANSFER VIA: HUDSON VALLEY CU/XXXXX9363 A/C: KEVIN EELLS POUGHKEEPSIE NY X2602 US REF: EXPENSE AND TRAVEL REIMBURSEMENT (3.1.25 - 5.9.25) IMAD: 0522MMQFMP2MXX1144 TRN: XXXXXX5142 ES 05/22','Shenzhen SunFiD New Energy Co., Ltd.','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(930,'BC-00930','2025-05-22','ONLINE INTERNATIONAL WIRE TRANSFER A/C: CHINA MERCHANTS BANK CO.,LTD SHENZHEN CHINA XX804-0 CN REF: INVOICE NUMBER: CPXXXX2900C TELXXXXXXXXX6435/INVOICE PAYMENT TRN: XXXXXX5142 ES 05/22','','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(931,'BC-00931','2025-05-23','Zelle payment to Dora House Clea ner JPM929456383','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(932,'BC-00932','2025-05-23','PROGRESSIVE *INSURANC XXX-XXX-4737 OH 05/23','Progressive Corporation','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(933,'BC-00933','2025-05-23','ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250522 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX8623913 EED:250523 IND ID:PXXXX9839 IND NAME:STAR ON, NATHAN TRN: XXXXXX3913 TC','','Note Payable - 2023 Cadillac','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(934,'BC-00934','2025-05-24','ORIG CO NAME:EFFECT WEB MEDIA ORIG ID:XXXXXX6202 DESC DATE:250524 CO ENTRY DESCR:SALE SEC:CCD TRACE#:XXXXXXXX5783223 EED:250527 IND ID: IND NAME:LITHIUM BATTERY COMPAN TRN: XXXXXX3223 TC','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(935,'BC-00935','2025-05-25','Zelle payment to Leon XXXXXXX2853','','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(936,'BC-00936','2025-05-27','ORIG CO NAME:PROG SELECT INS ORIG ID:XXXXXX8112 DESC DATE:250527 CO ENTRY DESCR:INS PREM SEC:WEB TRACE#:XXXXXXXX1257837 EED:250527 IND ID:POL XXXXX6654 IND NAME :Lithium Battery Co BRANCH02DEBIT ACH TRN: XXXXXX7837 TC','Progressive Corporation','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(937,'BC-00937','2025-05-27','ONLINE PAYMENT - THANK YOU','','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(938,'BC-00938','2025-05-27','ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX0045642 EED:250527 IND ID:ST-K6U0M0T2Q8P8 IND NAME:N ATHAN STARON TRN: XXXXXX5642 TC','','Worker\'s Compensation Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(939,'BC-00939','2025-05-27','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX1777215 EED:250527 IND ID: IND NAME:LBC Main (#2560) Operat ing Working Capital TRN: XXXXXX7215 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(940,'BC-00940','2025-05-29','ONLINE PAYMENT - THANK YOU','','AMEX #2005','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(941,'BC-00941','2025-05-30','Pay Period: 05/16/2025-05/31/2025','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(942,'BC-00942','2025-05-30','Pay Period: 05/16/2025-05/31/2025','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(943,'BC-00943','2025-05-30','Tax Payment','QuickBooks Payroll','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(944,'BC-00944','2025-05-30','Zelle payment to Dora House Clea ner JPM929456383','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(945,'BC-00945','2025-06-02','','Menno T Bauman','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(946,'BC-00946','2025-06-02','SERVICE CHARGES FOR THE MONTH OF MAY','','Bank Charges & Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(947,'BC-00947','2025-06-03','System-recorded deposit for QuickBooks Payments','Emerson Ornstein','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(948,'BC-00948','2025-06-03','System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','QuickBooks Payments','QuickBooks Payments Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(949,'BC-00949','2025-06-03','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250603 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX0107117 EED:250603 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0603PPZJVR TRN: XXXXXX7117 TC','PayPal','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(950,'BC-00950','2025-06-04','ONLINE PAYMENT - THANK YOU','','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(951,'BC-00951','2025-06-04','ONLINE PAYMENT - THANK YOU','','AMEX #2005','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(952,'BC-00952','2025-06-04','MOBILE PAYMENT - THANK YOU','','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(953,'BC-00953','2025-06-04','ORIG CO NAME:EFFECT WEB MEDIA ORIG ID:XXXXXX6202 DESC DATE:250604 CO ENTRY DESCR:SALE SEC:CCD TRACE#:XXXXXXXX7861406 EED:250604 IND ID: IND NAME:LITHIUM BATTERY COMPAN TRN: XXXXXX1406 TC','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(954,'BC-00954','2025-06-04','','Michael Posner','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(955,'BC-00955','2025-06-06','Zelle payment to Dora House Clea ner JPM929456383','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(956,'BC-00956','2025-06-06','ONLINE PAYMENT - THANK YOU','','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(957,'BC-00957','2025-06-06','ONLINE INTERNATIONAL WIRE TRANSFER A/C: CHINA MERCHANTS BANK CO.,LTD SHENZHEN CHINA XX804-0 CN REF: CPXXXX0600B TELXXXXXXXXX6435/INVOICE PAYMENT TRN: XXXXXX5157 ES 06/06','','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(958,'BC-00958','2025-06-06','Online Transfer from CHK ...1215 transaction#: XXXXXXX4918','o','Owner\'s Investment','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(959,'BC-00959','2025-06-09','ORIG CO NAME:PROG SELECT INS ORIG ID:XXXXXX8120 DESC DATE:250609 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX7726823 EED:250609 IND ID: IND NAME:Nathan Staro n TRN: XXXXXX6823 TC','Progressive Corporation','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(960,'BC-00960','2025-06-09','Online Transfer from CHK ...2560 transaction#: XXXXXXX2875','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(961,'BC-00961','2025-06-09','ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX5971472 EED:250609 IND ID:ST-P1O8D5D1H0P7 IND NAME:N ATHAN STARON TRN: XXXXXX1472 TC','','Worker\'s Compensation Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(962,'BC-00962','2025-06-10','ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250606 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX0997665 EED:250610 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX7665 TC','','Office Expenses','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(963,'BC-00963','2025-06-11','ONLINE PAYMENT - THANK YOU','','AMEX #2005','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(964,'BC-00964','2025-06-11','GREENBERG DENTAL & ORTH TAMPA FL 06/11','','Employee Health Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(965,'BC-00965','2025-06-12','Online Transfer from CHK ...2560 transaction#: XXXXXXX0070','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(966,'BC-00966','2025-06-12','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX6760292 EED:250612 IND ID: IND NAME:LBC Main (#2560) Workin g Capital TRN: XXXXXX0292 TC','o','Sales','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(967,'BC-00967','2025-06-12','SHOPIFY* XXXXX8973 SHOPIFY.COM IL 06/12','Shopify','Merchant Account Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(968,'BC-00968','2025-06-13','Pay Period: 06/01/2025-06/15/2025','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(969,'BC-00969','2025-06-13','Pay Period: 06/01/2025-06/15/2025','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(970,'BC-00970','2025-06-13','Tax Payment','QuickBooks Payroll','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(971,'BC-00971','2025-06-13','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX5801655 EED:250613 IND ID: IND NAME:LBC Main (#2560) Workin g Capital TRN: XXXXXX1655 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(972,'BC-00972','2025-06-13','Zelle payment to Dora House Cleaner JPM99bbydttz','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(973,'BC-00973','2025-06-13','ORIG CO NAME:TRUIST LN 506 ORIG ID:9 WEBXX5506 DESC DATE:250612 CO ENTRY DESCR:OLB PYMT SEC:WEB TRACE#:XXXXXXXX4324099 EED:250613 IND ID:XXXXXXXX9421001 IND NAME :NATHAN STARON TRN: XXXXXX4099 TC','','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(974,'BC-00974','2025-06-16','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX8202242 EED:250616 IND ID: IND NAME:LBC Main (#2560) Nathan CC TRN: XXXXXX2242 TC','o','Sales','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(975,'BC-00975','2025-06-16','ORIG CO NAME:Rocket Money ORIG ID:XXXXXX5600 DESC DATE: CO ENTRY DESCR:Premium SEC:CCD TRACE#:XXXXXXXX7669932 EED:250616 IND ID:ST-H6S9L9Z2J6E5 IND NAME:ROCKET MONEY INC TRN: XXXXXX9932 TC','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(976,'BC-00976','2025-06-17','Online Payment XXXXXXX8335 To HMG 4615 06/17','','Rent & Lease Expense','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(977,'BC-00977','2025-06-18','System-recorded deposit for QuickBooks Payments','','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(978,'BC-00978','2025-06-18','System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','QuickBooks Payments','QuickBooks Payments Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(979,'BC-00979','2025-06-18','Online Transfer from CHK ...2560 transaction#: XXXXXXX3028','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(980,'BC-00980','2025-06-18','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250618 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX3196884 EED:250618 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0618PPZKV8 TRN: XXXXXX6884 TC','PayPal','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(981,'BC-00981','2025-06-20','ORIG CO NAME:PROG SELECT INS ORIG ID:XXXXXX8112 DESC DATE:250620 CO ENTRY DESCR:INS PREM SEC:WEB TRACE#:XXXXXXXX2194433 EED:250620 IND ID:POL XXXXX6654 IND NAME :LITHIUM BATTERY COMPAN BRANCH02DEBIT ACH TRN: XXXXXX4433 TC','Progressive Corporation','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(982,'BC-00982','2025-06-20','Zelle payment to Dora House Cleaner JPM99bcspipo','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(983,'BC-00983','2025-06-21','ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250620 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX8750948 EED:250623 IND ID:PXXXX1798 IND NAME:STAR ON, NATHAN TRN: XXXXXX0948 TC','','Note Payable - 2023 Cadillac','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(984,'BC-00984','2025-06-23','ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX9441884 EED:250623 IND ID:ST-B0H6A3U2W9I1 IND NAME:N ATHAN STARON TRN: XXXXXX1884 TC','','Worker\'s Compensation Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(985,'BC-00985','2025-06-23','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250621 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX9526254 EED:250623 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0621PPZ4UK TRN: XXXXXX6254 TC','PayPal','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(986,'BC-00986','2025-06-24','Online Transfer from CHK ...2560 transaction#: XXXXXXX8924','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(987,'BC-00987','2025-06-26','Online Transfer from CHK ...2560 transaction#: XXXXXXX5737','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(988,'BC-00988','2025-06-27','System-recorded deposit for QuickBooks Payments','Emerson Ornstein','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(989,'BC-00989','2025-06-27','System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','QuickBooks Payments','QuickBooks Payments Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(990,'BC-00990','2025-06-27','Zelle payment to Dora House Cleaner JPM99bdks99s','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(991,'BC-00991','2025-06-30','Pay Period: 06/16/2025-06/30/2025','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(992,'BC-00992','2025-06-30','Pay Period: 06/16/2025-06/30/2025','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(993,'BC-00993','2025-06-30','Tax Payment','QuickBooks Payroll','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(994,'BC-00994','2025-07-01','SERVICE CHARGES FOR THE MONTH OF JUNE','','Bank Charges & Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(995,'BC-00995','2025-07-03','Online Transfer to CHK ...7932 transaction#: XXXXXXX9752 07/03','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(996,'BC-00996','2025-07-03','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250703 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX0603197 EED:250703 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0703PPZK1L TRN: XXXXXX3197 TC','PayPal','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(997,'BC-00997','2025-07-04','Zelle payment to Dora House Cleaner JPM99bejegb2','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(998,'BC-00998','2025-07-07','ORIG CO NAME:PROG SELECT INS ORIG ID:XXXXXX8120 DESC DATE:250707 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX8115569 EED:250707 IND ID: IND NAME:Nathan Staro n TRN: XXXXXX5569 TC','Progressive Corporation','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(999,'BC-00999','2025-07-07','ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX5333340 EED:250707 IND ID:ST-J1N0V1E5D4K6 IND NAME:N ATHAN STARON TRN: XXXXXX3340 TC','','Worker\'s Compensation Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1000,'BC-01000','2025-07-07','ORIG CO NAME:EFFECT WEB MEDIA ORIG ID:XXXXXX6202 DESC DATE:250705 CO ENTRY DESCR:SALE SEC:CCD TRACE#:XXXXXXXX6376969 EED:250707 IND ID: IND NAME:LITHIUM BATTERY COMPAN TRN: XXXXXX6969 TC','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1001,'BC-01001','2025-07-08','ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250706 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX7162086 EED:250708 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX2086 TC','','Office Expenses','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1002,'BC-01002','2025-07-08','US DEPT OF EDU - DMCS XXX-XXX-5327 DC 07/08','','Business Licenses and Permits','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1003,'BC-01003','2025-07-09','ORIG CO NAME:PROG SELECT INS ORIG ID:XXXXXX8112 DESC DATE:250709 CO ENTRY DESCR:INS PREM SEC:WEB TRACE#:XXXXXXXX1000153 EED:250709 IND ID:POL XXXXX6654 IND NAME :LITHIUM BATTERY COMPAN BRANCH02DEBIT ACH TRN: XXXXXX0153 TC','Progressive Corporation','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1004,'BC-01004','2025-07-11','Zelle payment to Dora House Cleaner JPM99bfajjf7','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1005,'BC-01005','2025-07-12','SHOPIFY* XXXXX4597 SHOPIFY.COM IL 07/12','Shopify','Merchant Account Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1006,'BC-01006','2025-07-14','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX7426117 EED:250714 IND ID: IND NAME:LBC Main (#2560) Workin g Capital TRN: XXXXXX6117 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1007,'BC-01007','2025-07-15','Pay Period: 07/01/2025-07/15/2025','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1008,'BC-01008','2025-07-15','Pay Period: 07/01/2025-07/15/2025','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1009,'BC-01009','2025-07-15','Tax Payment','QuickBooks Payroll','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1010,'BC-01010','2025-07-15','ORIG CO NAME:Rocket Money ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:Premium SEC:CCD TRACE#:XXXXXXXX5008603 EED:250715 IND ID:ST-V0G3N5O6D0B9 IND NAME:ROCKET MONEY INC TRN: XXXXXX8603 TC','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1011,'BC-01011','2025-07-17','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX0498916 EED:250717 IND ID: IND NAME:LBC Main (#2560) Credit Card X4007 TRN: XXXXXX8916 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1012,'BC-01012','2025-07-17','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX0498913 EED:250717 IND ID: IND NAME:LBC Main (#2560) Workin g Capital for Min Cash TRN: XXXXXX8913 TC','o','Sales','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1013,'BC-01013','2025-07-18','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250718 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX3919777 EED:250718 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0718PPZFR9 TRN: XXXXXX9777 TC','PayPal','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1014,'BC-01014','2025-07-18','Zelle payment to Dora House Cleaner JPM99bg3yh79','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1015,'BC-01015','2025-07-18','ORIG CO NAME:TRUIST LN 506 ORIG ID:9 WEBXX5506 DESC DATE:250717 CO ENTRY DESCR:OLB PYMT SEC:WEB TRACE#:XXXXXXXX5723231 EED:250718 IND ID:XXXXXXXX9421001 IND NAME :NATHAN STARON TRN: XXXXXX3231 TC','','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1016,'BC-01016','2025-07-18','ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250718 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX5506447 EED:250718 IND ID:W8910 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6447 TC','American Express','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1017,'BC-01017','2025-07-21','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250721 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX3463170 EED:250721 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0721PPZU2V TRN: XXXXXX3170 TC','PayPal','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1018,'BC-01018','2025-07-21','ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX2643690 EED:250721 IND ID:ST-T7I3H0X3A6Y2 IND NAME:N ATHAN STARON TRN: XXXXXX3690 TC','','Worker\'s Compensation Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1019,'BC-01019','2025-07-21','DUCKWEED WD INC TAMPA FL 07/21','Duckweed','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1020,'BC-01020','2025-07-22','System-recorded deposit for QuickBooks Payments','Tommy Ausherman','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1021,'BC-01021','2025-07-22','System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','QuickBooks Payments','QuickBooks Payments Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1022,'BC-01022','2025-07-23','ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250722 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX2005503 EED:250723 IND ID:PXXXX4907 IND NAME:STAR ON, NATHAN TRN: XXXXXX5503 TC','','Note Payable - 2023 Cadillac','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1023,'BC-01023','2025-07-23','Online Transfer to CHK ...7932 transaction#: XXXXXXX2635 07/23','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1024,'BC-01024','2025-07-23','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX0016918 EED:250723 IND ID: IND NAME:LBC Main (#2560) AMEX 2 3003 TRN: XXXXXX6918 TC','o','Sales','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1025,'BC-01025','2025-07-23','ONLINE PAYMENT - THANK YOU','','AMEX #2005','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1026,'BC-01026','2025-07-25','Zelle payment to Camila JPM99bgzoxs1\n\nCleaning','','Office Expenses','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1027,'BC-01027','2025-07-26','ORIG CO NAME:INTUIT PYMT SOLN ORIG ID:XXXXXX6202 DESC DATE:250726 CO ENTRY DESCR:INTUITPMTSSEC:CCD TRACE#:XXXXXXXX4640197 EED:250728 IND ID:XXXXXXXX8541058 IND NAME:LITHIUM BATTERY CO INT TRN: XXXXXX0197 TC','QuickBooks Payments','QuickBooks Payments Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1028,'BC-01028','2025-07-26','ORIG CO NAME:INTUIT PYMT SOLN ORIG ID:XXXXXX6202 DESC DATE:250726 CO ENTRY DESCR:INTUITPMTSSEC:CCD TRACE#:XXXXXXXX4642927 EED:250728 IND ID:XXXXXXXX8541058 IND NAME:LITHIUM BATTERY CO INT TRN: XXXXXX2927 TC','QuickBooks Payments','Office Expenses','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1029,'BC-01029','2025-07-28','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX3273412 EED:250728 IND ID: IND NAME:LBC Main (#2560) OWC - min cash TRN: XXXXXX3412 TC','o','Sales','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1030,'BC-01030','2025-07-29','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX0225396 EED:250729 IND ID: IND NAME:LBC Main (#2560) CC Pay ment (AMEX X3003) TRN: XXXXXX5396 TC','o','Sales','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1031,'BC-01031','2025-07-29','ORIG CO NAME:MIDLAND NATIONAL ORIG ID:XXXXXX4570 DESC DATE:250725 CO ENTRY DESCR:INSURANCE SEC:PPD TRACE#:XXXXXXXX1550329 EED:250729 IND ID: IND NAME:LITHIUM BA TTERY COMP TRN: XXXXXX0329 TC','Midland National','Officer\'s Life Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1032,'BC-01032','2025-07-29','ONLINE PAYMENT - THANK YOU','','AMEX #2005','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1033,'BC-01033','2025-07-30','System-recorded deposit for QuickBooks Payments','Michael Faughnan','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1034,'BC-01034','2025-07-30','System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','QuickBooks Payments','QuickBooks Payments Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1035,'BC-01035','2025-07-31','Pay Period: 07/16/2025-07/31/2025','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1036,'BC-01036','2025-07-31','Pay Period: 07/16/2025-07/31/2025','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1037,'BC-01037','2025-07-31','Tax Payment','QuickBooks Payroll','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1038,'BC-01038','2025-07-31','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX0982013 EED:250731 IND ID: IND NAME:LBC Main (#2560) Payrol l For Tanner Hance TRN: XXXXXX2013 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1039,'BC-01039','2025-08-01','SERVICE CHARGES FOR THE MONTH OF JULY','Fees Contact - USD','Bank Charges & Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1040,'BC-01040','2025-08-01','ONLINE PAYMENT - THANK YOU','','AMEX #2005','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1041,'BC-01041','2025-08-01','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX4002945 EED:250801 IND ID: IND NAME:LBC Main (#2560) AMEX C C (X3003) TRN: XXXXXX2945 TC','o','Sales','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1042,'BC-01042','2025-08-04','Pay Period: 08/01/2025-08/31/2025','TANNER HANCE','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1043,'BC-01043','2025-08-04','Tax Payment','QuickBooks Payroll','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1044,'BC-01044','2025-08-04','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX6834172 EED:250804 IND ID: IND NAME:LBC Main (#2560) Custom er PO Deposit TRN: XXXXXX4172 TC','o','Sales','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1045,'BC-01045','2025-08-04','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX6834178 EED:250804 IND ID: IND NAME:LBC Main (#2560) Min Ca sh & Working Capital TRN: XXXXXX4178 TC','o','Sales','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1046,'BC-01046','2025-08-04','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250802 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX9188581 EED:250804 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0802PPZB6G TRN: XXXXXX8581 TC','PayPal','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1047,'BC-01047','2025-08-04','ORIG CO NAME:EFFECT WEB MEDIA ORIG ID:XXXXXX6202 DESC DATE:250804 CO ENTRY DESCR:SALE SEC:CCD TRACE#:XXXXXXXX8782758 EED:250804 IND ID: IND NAME:LITHIUM BATTERY COMPAN TRN: XXXXXX2758 TC','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1048,'BC-01048','2025-08-06','Online Transfer to CHK ...7932 transaction#: XXXXXXX1962 08/06','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1049,'BC-01049','2025-08-07','Zelle payment to Dora House Cleaner JPM99bik38ux','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1050,'BC-01050','2025-08-07','ORIG CO NAME:PROG SELECT INS ORIG ID:XXXXXX8120 DESC DATE:250807 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX7623523 EED:250807 IND ID: IND NAME:Nathan Staro n TRN: XXXXXX3523 TC','Progressive Corporation','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1051,'BC-01051','2025-08-08','ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250806 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX6803632 EED:250808 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX3632 TC','','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1052,'BC-01052','2025-08-11','ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX3033951 EED:250811 IND ID:ST-P3F2F1V3U1W5 IND NAME:N ATHAN STARON TRN: XXXXXX3951 TC','','Worker\'s Compensation Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1053,'BC-01053','2025-08-11','SHOPIFY* XXXXX9587 SHOPIFY.COM IL 08/11','Shopify','Merchant Account Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1054,'BC-01054','2025-08-15','Pay Period: 08/01/2025-08/15/2025','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1055,'BC-01055','2025-08-15','Pay Period: 08/01/2025-08/15/2025','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1056,'BC-01056','2025-08-15','Tax Payment','QuickBooks Payroll','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1057,'BC-01057','2025-08-15','REMOTE ONLINE DEPOSIT # 2','','Sales','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1058,'BC-01058','2025-08-15','REMOTE ONLINE DEPOSIT # 2','','Sales','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1059,'BC-01059','2025-08-15','ORIG CO NAME:Rocket Money ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:Premium SEC:CCD TRACE#:XXXXXXXX7239467 EED:250815 IND ID:ST-O8T8A2D6Q8W9 IND NAME:ROCKET MONEY INC TRN: XXXXXX9467 TC','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1060,'BC-01060','2025-08-18','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250818 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX0467523 EED:250818 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0818PPZ8RL TRN: XXXXXX7523 TC','PayPal','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1061,'BC-01061','2025-08-18','ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250818 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7112016 EED:250818 IND ID:M3298 IND NAME:NATHAN STARON ER AM TRN: XXXXXX2016 TC','American Express','AMEX #2005','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1062,'BC-01062','2025-08-19','APPLE CASH SENT MONE 1INFINITELOOP CA 08/20','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1063,'BC-01063','2025-08-19','ORIG CO NAME:TRUIST LN 506 ORIG ID:9 WEBXX5506 DESC DATE:250818 CO ENTRY DESCR:OLB PYMT SEC:WEB TRACE#:XXXXXXXX8723395 EED:250819 IND ID:XXXXXXXX9421001 IND NAME :NATHAN STARON TRN: XXXXXX3395 TC','','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1064,'BC-01064','2025-08-20','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250820 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX7148327 EED:250820 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0820PPZUT8 TRN: XXXXXX8327 TC','PayPal','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1065,'BC-01065','2025-08-21','Online Transfer from CHK ...7932 transaction#: XXXXXXX9003','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1066,'BC-01066','2025-08-22','Online Transfer from CHK ...7932 transaction#: XXXXXXX2235','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1067,'BC-01067','2025-08-22','Zelle payment to Dora House Cleaner JPM99bkdg4za','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1068,'BC-01068','2025-08-22','ORIG CO NAME:PAYCARGO ORIG ID:XXXXXX5101 DESC DATE: CO ENTRY DESCR:ACHPAYMENTSEC:CCD TRACE#:XXXXXXXX8534285 EED:250822 IND ID:BATCH XXX3473 IND NAME:LITHIUM BAT TERY COMPAN NACHA 100A TRN: XXXXXX4285 TC','PayCargo, LLC','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1069,'BC-01069','2025-08-23','ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250822 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX8921695 EED:250825 IND ID:PXXXX7889 IND NAME:STAR ON, NATHAN TRN: XXXXXX1695 TC','','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1070,'BC-01070','2025-08-25','ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX1783929 EED:250825 IND ID:ST-C3I2V1N3B2V3 IND NAME:N ATHAN STARON TRN: XXXXXX3929 TC','','Worker\'s Compensation Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1071,'BC-01071','2025-08-25','THEA Collect XXXXXX5205 TAMPA FL 08/25','Thea Collect','Travel','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1072,'BC-01072','2025-08-28','MOBILE PAYMENT - THANK YOU','','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1073,'BC-01073','2025-08-29','Pay Period: 08/16/2025-08/31/2025','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1074,'BC-01074','2025-08-29','Pay Period: 08/16/2025-08/31/2025','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1075,'BC-01075','2025-08-29','Tax Payment','QuickBooks Payroll','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1076,'BC-01076','2025-08-29','ORIG CO NAME:PROG SELECT INS ORIG ID:XXXXXX8112 DESC DATE:250829 CO ENTRY DESCR:INS PREM SEC:WEB TRACE#:XXXXXXXX6774546 EED:250829 IND ID:POL XXXXX6654 IND NAME :LITHIUM BATTERY COMPAN BRANCH02DEBIT ACH TRN: XXXXXX4546 TC','Progressive Corporation','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1077,'BC-01077','2025-08-29','Online Transfer from CHK ...7932 transaction#: XXXXXXX0681','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1078,'BC-01078','2025-08-29','ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250829 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX6353453 EED:250829 IND ID:M9752 IND NAME:NATHAN STARON ER AM TRN: XXXXXX3453 TC','American Express','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1079,'BC-01079','2025-08-29','ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250829 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX6353429 EED:250829 IND ID:M8876 IND NAME:NATHAN STARON ER AM TRN: XXXXXX3429 TC','American Express','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1080,'BC-01080','2025-08-29','MOBILE PAYMENT - THANK YOU','','AMEX #2005','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1081,'BC-01081','2025-08-31','Online Transfer from CHK ...7932 transaction#: XXXXXXX5201','','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1082,'BC-01082','2025-09-01','MOBILE PAYMENT - THANK YOU','','AMEX #2005','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1083,'BC-01083','2025-09-02','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX6588415 EED:250902 IND ID: IND NAME:LBC Main (#2560) Hance Payroll TRN: XXXXXX8415 TC','o','Sales','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1084,'BC-01084','2025-09-02','SERVICE CHARGES FOR THE MONTH OF AUGUST','Fees Contact - USD','Bank Charges & Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1085,'BC-01085','2025-09-02','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250901 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX7320895 EED:250902 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0901PPZVWG TRN: XXXXXX0895 TC','PayPal','Legal & Professional Services','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1086,'BC-01086','2025-09-04','ORIG CO NAME:EFFECT WEB MEDIA ORIG ID:XXXXXX6202 DESC DATE:250904 CO ENTRY DESCR:SALE SEC:CCD TRACE#:XXXXXXXX4961499 EED:250904 IND ID: IND NAME:LITHIUM BATTERY COMPAN TRN: XXXXXX1499 TC','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1087,'BC-01087','2025-09-05','Zelle payment to Leslie Staron JPM99bm5pkkx','','Business meals','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1088,'BC-01088','2025-09-07','Customer credit - shipping','Burmuda Electric Light Company','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1089,'BC-01089','2025-09-07','Customer credit - shipping','Grander Marine Service Department','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1090,'BC-01090','2025-09-07','CRAB SHACK SAINT PETERSB FL 09/07','','Business meals','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1091,'BC-01091','2025-09-07','MOBILE PAYMENT - THANK YOU','','AMEX #2005','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1092,'BC-01092','2025-09-08','Pay Period: 09/01/2025-09/30/2025 Check created out of sequence in a prior quarter','TANNER HANCE','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1093,'BC-01093','2025-09-08','Tax Payment','QuickBooks Payroll','Federal Taxes (941/944)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1094,'BC-01094','2025-09-08','ORIG CO NAME:PROG SELECT INS ORIG ID:XXXXXX8120 DESC DATE:250908 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX5411599 EED:250908 IND ID: IND NAME:Nathan Staro n TRN: XXXXXX1599 TC','Progressive Corporation','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1095,'BC-01095','2025-09-08','ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX5159135 EED:250908 IND ID:ST-X8U3R7N7W5L2 IND NAME:N ATHAN STARON TRN: XXXXXX9135 TC','','Worker\'s Compensation Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1096,'BC-01096','2025-09-08','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX2799298 EED:250908 IND ID: IND NAME:LBC Main (#2560) Bayfro nt Capital (Transaction Fees) TRN: XXXXXX9298 TC','o','Shareholder - JB','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1097,'BC-01097','2025-09-09','Zelle payment to Dora House Cleaner JPM99bmmfrl1','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1098,'BC-01098','2025-09-09','ORIG CO NAME:JD CAPITAL ADVIS ORIG ID:SXXXXX7665 DESC DATE:250909 CO ENTRY DESCR:SENDER SEC:CTX TRACE#:XXXXXXXX6471376 EED:250909 IND ID:813722100 IND NAME:0000 LITHIUM BATTERY TRN: XXXXXX1376 TC','JD Capital Advisors','Shareholder - JB','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1099,'BC-01099','2025-09-09','ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250906 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX9686584 EED:250909 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX6584 TC','','2323 Golf Cart','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1100,'BC-01100','2025-09-10','SHOPIFY* XXXXX8635 SHOPIFY.COM IL 09/10','Shopify','Merchant Account Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1101,'BC-01101','2025-09-10','ORIG CO NAME:JD CAPITAL ADVIS ORIG ID:SXXXXX7665 DESC DATE:250910 CO ENTRY DESCR:SENDER SEC:CTX TRACE#:XXXXXXXX1567022 EED:250910 IND ID:813990834 IND NAME:0000 LITHIUM BATTERY TRN: XXXXXX7022 TC','JD Capital Advisors','Shareholder - JB','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1102,'BC-01102','2025-09-10','Online Payment XXXXXXX2890 To HMG 4615 09/10','','Rent & Lease Expense','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1103,'BC-01103','2025-09-11','ONLINE INTERNATIONAL WIRE TRANSFER A/C: BANK OF CHINA HONG KONG LTD WEST KOWLOON HONG KONG HK REF: LBC BMS XXXX0910 INVOICE PAYMENT TRN: XXXXXX5254 ES 09/11','Shenzhen SunFiD New Energy Co., Ltd.','COGS - Custom Batteries','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1104,'BC-01104','2025-09-15','Pay Period: 09/01/2025-09/15/2025','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1105,'BC-01105','2025-09-15','Tax Payment','QuickBooks Payroll','Federal Taxes (941/944)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1106,'BC-01106','2025-09-15','ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX5600 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX1704189 EED:250915 IND ID:ST-E9V3N5M2D3U8 IND NAME:N ATHAN STARON TRN: XXXXXX4189 TC','','Worker\'s Compensation Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1107,'BC-01107','2025-09-15','PROGRESSIVE *INSURANC XXX-XXX-4737 OH 09/15','Progressive Corporation','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1108,'BC-01108','2025-09-15','ORIG CO NAME:Rocket Money ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:Premium SEC:CCD TRACE#:XXXXXXXX5441658 EED:250915 IND ID:ST-N2V5J6V0U4E7 IND NAME:ROCKET MONEY INC TRN: XXXXXX1658 TC','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1109,'BC-01109','2025-09-16','ORIG CO NAME:PROG SELECT INS ORIG ID:XXXXXX8112 DESC DATE:250916 CO ENTRY DESCR:INS PREM SEC:WEB TRACE#:XXXXXXXX2573929 EED:250916 IND ID:POL XXXXX6654 IND NAME :LITHIUM BATTERY COMPAN BRANCH09DEBIT ACH TRN: XXXXXX3929 TC','Progressive Corporation','Auto Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1110,'BC-01110','2025-09-18','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250918 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX7879422 EED:250918 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0918PPZHER TRN: XXXXXX9422 TC','PayPal','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1111,'BC-01111','2025-09-18','ORIG CO NAME:TRUIST LN 506 ORIG ID:9 WEBXX5506 DESC DATE:250917 CO ENTRY DESCR:OLB PYMT SEC:WEB TRACE#:XXXXXXXX8170379 EED:250918 IND ID:XXXXXXXX9421001 IND NAME :NATHAN STARON TRN: XXXXXX0379 TC','','2322 Escalade 2025','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1112,'BC-01112','2025-09-19','ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250919 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX1391874 EED:250919 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0919PPZTLV TRN: XXXXXX1874 TC','PayPal','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1113,'BC-01113','2025-09-19','ONLINE PAYMENT - THANK YOU','','AMEX #2005','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1114,'BC-01114','2025-09-22','ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX5600 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX1031174 EED:250922 IND ID:ST-J6N8S9P0N5R0 IND NAME:N ATHAN STARON TRN: XXXXXX1174 TC','','Worker\'s Compensation Insurance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1115,'BC-01115','2025-09-22','CUSTOMER SERVICE PAYMENT - THANK YOU','','American Express #4007','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1116,'BC-01116','2025-09-22','REMOTE ONLINE DEPOSIT # 2','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1117,'BC-01117','2025-09-22','REMOTE ONLINE DEPOSIT # 2','','Shareholder - NS','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1118,'BC-01118','2025-09-23','ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250922 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX1906027 EED:250923 IND ID:PXXXX6046 IND NAME:STAR ON, NATHAN TRN: XXXXXX6027 TC','','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1119,'BC-01119','2025-09-24','Zelle payment to Dora House Cleaner JPM99bofhwnh','Dora House','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1120,'BC-01120','2025-09-29','REMOTE ONLINE DEPOSIT # 2','','Business Licenses and Permits','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1121,'BC-01121','2025-09-30','System-recorded deposit for QuickBooks Payments','Obsidian Integration','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1122,'BC-01122','2025-09-30','System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','QuickBooks Payments','QuickBooks Payments Fees','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1123,'BC-01123','2025-10-01','Pay Period: 10/01/2025-10/31/2025','TANNER HANCE','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1124,'BC-01124','2025-10-01','Tax withdrawal','QuickBooks Payroll','QuickBooks Tax Holding Account','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1125,'BC-01125','2025-10-15','Pay Period: 10/01/2025-10/15/2025','Nathan Staron','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1126,'BC-01126','2025-10-15','Pay Period: 10/01/2025-10/15/2025','Kevin Eells','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1127,'BC-01127','2025-10-15','Tax withdrawal','QuickBooks Payroll','QuickBooks Tax Holding Account','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1128,'BC-01128','2025-10-31','Pay Period: 10/16/2025-10/31/2025','Nathan Staron','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1129,'BC-01129','2025-10-31','Pay Period: 10/16/2025-10/31/2025','Kevin Eells','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1130,'BC-01130','2025-10-31','Tax withdrawal','QuickBooks Payroll','QuickBooks Tax Holding Account','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1131,'BC-01131','2025-11-04','Tax overpayment credit refund','QuickBooks Payroll','QuickBooks Tax Holding Account','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1132,'BC-01132','2025-01-13','Online Transfer from CHK ...7932 transaction#: XXXXXXX5378','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1133,'BC-01133','2025-01-24','','GSL Energy','Accounts Payable (A/P)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1134,'BC-01134','2025-01-28','Online Transfer to CHK ...7932 transaction#: XXXXXXX9694 01/28','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1135,'BC-01135','2025-02-04','Online Transfer to CHK ...2560 transaction#: XXXXXXX4735 02/04','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1136,'BC-01136','2025-02-05','Online Transfer to CHK ...2560 transaction#: XXXXXXX1152 02/05','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1137,'BC-01137','2025-02-07','Online Transfer to CHK ...2560 transaction#: XXXXXXX8062 02/07','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1138,'BC-01138','2025-02-26','','Bill Hendricks','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1139,'BC-01139','2025-02-26','Online Transfer to CHK ...2560 transaction#: XXXXXXX3099 02/26','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1140,'BC-01140','2025-03-05','','Shenzhen Cleva Power Co.,Ltd','Accounts Payable (A/P)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1141,'BC-01141','2025-03-05','','Shenzhen SunFiD New Energy Co., Ltd.','Accounts Payable (A/P)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1142,'BC-01142','2025-03-05','','Shenzhen SunFiD New Energy Co., Ltd.','Accounts Payable (A/P)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1143,'BC-01143','2025-03-05','','GSL Energy','Accounts Payable (A/P)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1144,'BC-01144','2025-03-05','','GSL Energy','Accounts Payable (A/P)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1145,'BC-01145','2025-03-11','','Rob Simmons','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1146,'BC-01146','2025-03-11','ONLINE INTERNATIONAL WIRE TRANSFER A/C: CHINA MERCHANTS BANK CO.,LTD SHENZHEN CHINA XX804-0 CN REF: CPXXXX0600B TELXXXXXXXXX6435/INVOICE PAYMENT/BNF/CPXXXX0600B TRN: XXXXXX5070 ES 03/11','','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1147,'BC-01147','2025-03-11','ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: LBC1419/BNF/LBC1419 IMAD: 0311MMQFMP2KXX1806 TRN: 32 XXXX5070ES 03/11','','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1148,'BC-01148','2025-03-11','Online Transfer from CHK ...2560 transaction#: XXXXXXX2334','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1149,'BC-01149','2025-03-11','Online Transfer from CHK ...2560 transaction#: XXXXXXX6248','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1150,'BC-01150','2025-03-12','Online Transfer to CHK ...2560 transaction#: XXXXXXX6587 03/12','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1151,'BC-01151','2025-03-17','','Shenzhen Cleva Power Co.,Ltd','Accounts Payable (A/P)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1152,'BC-01152','2025-03-17','Online Transfer from CHK ...2560 transaction#: XXXXXXX4707','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1153,'BC-01153','2025-03-31','LBC#7932 Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1154,'BC-01154','2025-04-02','ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: LBC1415/BNF/LBC1415 IMAD: 0402MMQFMP2NXX0120 TRN: 33 XXXX5092ES 04/02','Shenzhen SunFiD New Energy Co., Ltd.','COGS - Custom Batteries','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1155,'BC-01155','2025-04-07','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#7932 SEC:CCD TRACE#:XXXXXXXX6424362 EED:250407 IND ID: IND NAME:LBC Int #7932 CPXXX2090 1A TRN: XXXXXX4362 TC','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1156,'BC-01156','2025-04-08','ONLINE INTERNATIONAL WIRE TRANSFER A/C: CHINA MERCHANTS BANK CO.,LTD SHENZHEN CHINA XX804-0 CN REF: LBC INVOICE: CPXXXX0901A TELXXXXXXXXX6435/INVOICE PAYMENT/BN F/LBC INVO ICE: CPXXXX0901A TRN: XXXXXX5098 ES 04/08','','COGS - Custom Batteries','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1157,'BC-01157','2025-04-09','Online Transfer to CHK ...2560 transaction#: XXXXXXX0314 04/09','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1158,'BC-01158','2025-04-09','CHIPS CREDIT VIA: HSBC BANK USA, N.A./0108 B/O: BERMUDA ELECTRIC LIGHT COMPANY LIMICHURCH STREET HAMILTON,BERMUDA/BM REF: NBNF=LITHIUM BATTERY COMPANY INTL, LLC TAMPA FL XXXXX-8006 US/AC-X0000 XXX5806 ORG=/BM HBBM XXX-XXXXX2-002 CHURCH STREET HAMILTON,BERMUDA/BM OGB=HSBC BANK BERMUDA LIMITED HAMIL TON BERMUDA B SSN: XXXX1521 TRN: XXXXXX9099 FC','','Sales','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1159,'BC-01159','2025-04-10','Online Transfer from CHK ...2560 transaction#: XXXXXXX4037','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1160,'BC-01160','2025-04-10','ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: SFD:LBC1417/BNF/SFD:LBC1417 IMAD: 0410MMQFMP2NXX9006 TRN: XXXXXX5100 ES 04/10','Shenzhen SunFiD New Energy Co., Ltd.','COGS - Custom Batteries','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1161,'BC-01161','2025-04-15','BOOK TRANSFER CREDIT B/O: N-VISION OPTICS LLC NEEDHAM MA XXXXX-3133 US TRN: XXXXXX5105 ES','','Sales','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1162,'BC-01162','2025-04-15','','Jeff Naish','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1163,'BC-01163','2025-04-16','','Fiona Taylor','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1164,'BC-01164','2025-04-16','ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: LBC ORDER 1353A/BNF/LBC ORDER 1353A IMAD: 0416MMQFMP 2MXX3371 TRN: XXXXXX5106 ES 04/16','Shenzhen SunFiD New Energy Co., Ltd.','COGS - Custom Batteries','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1165,'BC-01165','2025-04-16','ONLINE DOMESTIC WIRE TRANSFER VIA: BK AMER NYC/XXXXX9593 A/C: JD CAPITAL ADVISORS LLC DUNEDIN FL X4698 US REF: SOF WEEK BOOTH REIMBURSEMENT (CLARION EVENTS)/BNF /SOF WEEK BOOTH REIMB URSEMENT (CLARION EVENTS) IMAD: 0416MMQFMP2MXX4719 TRN: XXXXXX5106 ES 04/16','Shenzhen SunFiD New Energy Co., Ltd.','Travel','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1166,'BC-01166','2025-04-17','ONLINE INTERNATIONAL WIRE TRANSFER A/C: JPMORGAN CHASE BANK N A HONG KONG HONG KONG XX9077 HK REF: GSL-SHXXXX0417US01 INVOICE PAYMENT/BNF/GSL-SHXXXX0417US01 TRN : XXXXXX5107ES 04/17','GSL Energy','COGS - Custom Batteries','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1167,'BC-01167','2025-04-21','Online Transfer to CHK ...2560 transaction#: XXXXXXX2964 04/21','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1168,'BC-01168','2025-04-21','Online Transfer to CHK ...2560 transaction#: XXXXXXX5521 04/21','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1169,'BC-01169','2025-04-22','Online Transfer from CHK ...2560 transaction#: XXXXXXX3274','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1170,'BC-01170','2025-04-22','ONLINE INTERNATIONAL WIRE TRANSFER A/C: JPMORGAN CHASE BANK N A HONG KONG HONG KONG XX9077 HK REF: LBC INVOICE FOR GSL-SHXXXX0204US01 AND GSL-SHXXXX1026US01 INV OICE PAYM ENT/BNF/LBC INVOICE FOR GSL-SHX0250 204US01 AND GSL-SHXXXX1026US01 TRN: XXXXXX5112 ES 04/22','GSL Energy','COGS - Custom Batteries','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1171,'BC-01171','2025-05-05','ONLINE INTERNATIONAL WIRE TRANSFER A/C: CHINA MERCHANTS BANK CO.,LTD SHENZHEN CHINA XX804-0 CN REF: CPXXXX2900C (43.5V35AH) TELXXXXXXXXX6435/INVOICE PAYMENT TRN : XXXXXX5125ES 05/05','','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1172,'BC-01172','2025-05-05','Online Transfer from CHK ...2560 transaction#: XXXXXXX4699','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1173,'BC-01173','2025-06-09','Online Transfer from CHK ...2560 transaction#: XXXXXXX2875','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1174,'BC-01174','2025-06-09','ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: SFD LBC1424 IMAD: 0609MMQFMP2MXX3248 TRN: XXXXXX5160 ES 06/09','Shenzhen SunFiD New Energy Co., Ltd.','COGS - Custom Batteries','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1175,'BC-01175','2025-06-12','Online Transfer from CHK ...2560 transaction#: XXXXXXX0070','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1176,'BC-01176','2025-06-12','ONLINE INTERNATIONAL WIRE TRANSFER A/C: BANK OF NINGBO CO LTD NINGBO CITY CHINA XX510-0 CN BEN:/XXXXXXXXXXXXX1931 SHENZHEN GSL ENERGY REF: GSL-SHXXXX0417US01 IN VOICE PAYMENT TRN: XXXXXX5163 ES 06/12','GSL Energy','COGS - Custom Batteries','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1177,'BC-01177','2025-06-18','Online Transfer from CHK ...2560 transaction#: XXXXXXX3028','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1178,'BC-01178','2025-06-18','ONLINE INTERNATIONAL WIRE TRANSFER A/C: CHINA MERCHANTS BANK CO.,LTD SHENZHEN CHINA XX804-0 CN REF: CPXX0616A - INITIAL DEPOSIT TELXXXXXXXXX6435/INVOICE PAYMENT TRN: XXXXXX5169 ES 06/18','Shenzhen Cleva Power Co.,Ltd','Accounts Payable (A/P)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1179,'BC-01179','2025-06-24','Online Transfer from CHK ...2560 transaction#: XXXXXXX8924','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1180,'BC-01180','2025-06-24','ONLINE INTERNATIONAL WIRE TRANSFER A/C: JPMORGAN CHASE BANK N A HONG KONG HONG KONG XX9077 HK REF: GSL-SHXXXX0616US01 INVOICE PAYMENT TRN: XXXXXX5175 ES 06/24','GSL Energy','Accounts Payable (A/P)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1181,'BC-01181','2025-06-26','Online Transfer from CHK ...2560 transaction#: XXXXXXX5737','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1182,'BC-01182','2025-06-26','ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: SFD-LBC1425R1 IMAD: 0626MMQFMP2KXX2685 TRN: 36133751 77ES 06/26','Shenzhen SunFiD New Energy Co., Ltd.','Accounts Payable (A/P)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1183,'BC-01183','2025-07-03','Online Transfer to CHK ...7932 transaction#: XXXXXXX9752 07/03','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1184,'BC-01184','2025-07-03','ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: SFD-LBC1424 IMAD: 0703MMQFMP2MXX5454 TRN: XXXXXX5184 ES 07/03','Shenzhen SunFiD New Energy Co., Ltd.','COGS - Custom Batteries','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1185,'BC-01185','2025-07-23','Online Transfer to CHK ...7932 transaction#: XXXXXXX2635 07/23','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1186,'BC-01186','2025-07-23','ONLINE INTERNATIONAL WIRE TRANSFER A/C: CHINA MERCHANTS BANK CO.,LTD SHENZHEN CHINA XX804-0 CN REF: LBC INVOICE: CPXXXX2900C TELXXXXXXXXX6435/INVOICE PAYMENT TR N: XXXXXX5204ES 07/23','','COGS - Custom Batteries','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1187,'BC-01187','2025-08-06','Online Transfer to CHK ...7932 transaction#: XXXXXXX1962 08/06','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1188,'BC-01188','2025-08-07','FEDWIRE CREDIT VIA: FEDERAL HOME LOAN BK OF PITTSBURGH/XXXXX1435 B/O: INFIRST BANK INDIANA, PA X5701 REF: CHASE NYC/CTR/BNF=LITHIUM BATTERY COMPANY INTL, LLC TA MPA FL XXXX4-800 6 US/AC-XXXXXXXX5806 RFB=NOTPROVIDE D OBI=/PURP/START UP FUNDS FOR SON\' S COMP ANY/URI/BUSINESS START UP CO ST IMAD: 0807MMQFMPDRXX0053 TRN: XXXXXX1219 FF','Ron Staron - Vendor','Staron Inventory Loan','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1189,'BC-01189','2025-08-07','ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: LBC INVOICE 1426 IMAD: 0807MMQFMP2MXX4643 TRN: 30367 X5219ES 08/07','Shenzhen SunFiD New Energy Co., Ltd.','Accounts Payable (A/P)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1190,'BC-01190','2025-08-12','ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: INVOICELBC1427 IMAD: 0812MMQFMP2KXX7336 TRN: 3307085 224ES 08/12','Shenzhen SunFiD New Energy Co., Ltd.','Accounts Payable (A/P)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1191,'BC-01191','2025-08-21','Online Transfer from CHK ...7932 transaction#: XXXXXXX9003','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1192,'BC-01192','2025-08-22','Online Transfer from CHK ...7932 transaction#: XXXXXXX2235','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1193,'BC-01193','2025-08-22','ONLINE DOMESTIC WIRE TRANSFER VIA: BK AMER NYC/XXXXX9593 A/C: LR PROPERTY MANAGEMENT LLC TAMPA FL X3606 US REF: LBC SECURITY DEPOSIT IMAD: 0822MMQFMP2KXX3207 TR N: XXXXXX5234ES 08/22','Shenzhen SunFiD New Energy Co., Ltd.','COGS - Custom Batteries','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1194,'BC-01194','2025-08-22','FEDWIRE CREDIT VIA: CAPITAL ONE, NA/XXXXX3502 B/O: UP NORTH CONSULTING LIMITED LIABILITAMPA,FL,X3616,US REF: CHASE NYC/CTR/BNF=LITHIUM BATTERY COMPANY INTL, LLC TAMPA FL XXXX4-800 6 US/AC-XXXXXXXX5806 RFB=SBBMM09TD3 AWDCPN OBI=/URI/COACHMAN LEASE IMAD: 0822MMQFMPGHXX0496 TRN: XXXXXX1234 FF','Unc Consulting','Rent & Lease Expense','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1195,'BC-01195','2025-08-22','','LR Property Management','Accounts Payable (A/P)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1196,'BC-01196','2025-08-29','Online Transfer from CHK ...7932 transaction#: XXXXXXX0681','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1197,'BC-01197','2025-08-31','Online Transfer from CHK ...7932 transaction#: XXXXXXX5201','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1198,'BC-01198','2025-09-01','GSL Customer','','Reconciliation Discrepancies','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1199,'BC-01199','2025-09-05','','Shenzhen SunFiD New Energy Co., Ltd.','Accounts Payable (A/P)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1200,'BC-01200','2025-09-05','','Shenzhen SunFiD New Energy Co., Ltd.','Accounts Payable (A/P)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1201,'BC-01201','2025-09-05','','Shenzhen SunFiD New Energy Co., Ltd.','Accounts Payable (A/P)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1202,'BC-01202','2025-10-24','','Shenzhen Cleva Power Co.,Ltd','Accounts Payable (A/P)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1203,'BC-01203','2025-01-09','','Dave Schmaltz','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1204,'BC-01204','2025-01-14','','Dave Schmaltz','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1205,'BC-01205','2025-02-04','','Marcus Portillo','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1206,'BC-01206','2025-02-04','','Marcus Portillo','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1207,'BC-01207','2025-02-05','','Fiona Taylor','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1208,'BC-01208','2025-02-06','','Fiona Taylor','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1209,'BC-01209','2025-02-10','','Michael Posner','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1210,'BC-01210','2025-02-14','','Bill Hendricks','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1211,'BC-01211','2025-02-26','','Bill Hendricks','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1212,'BC-01212','2025-03-04','','Doug Shelby','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1213,'BC-01213','2025-03-04','','Bob Beyer','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1214,'BC-01214','2025-03-07','','Marcus Portillo','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1215,'BC-01215','2025-03-11','','Rob Simmons','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1216,'BC-01216','2025-03-11','','Rob Simmons','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1217,'BC-01217','2025-03-14','','Michael Posner','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1218,'BC-01218','2025-04-14','','CDTi Advanced Materials, Inc..','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1219,'BC-01219','2025-04-15','','CDTi Advanced Materials, Inc..','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1220,'BC-01220','2025-04-15','','Jeff Naish','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1221,'BC-01221','2025-04-16','','Fiona Taylor','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1222,'BC-01222','2025-04-22','','LG Electronics USA','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1223,'BC-01223','2025-04-28','','Tommy Ausherman','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1224,'BC-01224','2025-05-02','','Tommy Ausherman','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1225,'BC-01225','2025-05-02','','LG Electronics USA','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1226,'BC-01226','2025-05-07','','Tommy Ausherman','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1227,'BC-01227','2025-06-02','','Menno T Bauman','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1228,'BC-01228','2025-06-03','','Emerson Ornstein','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1229,'BC-01229','2025-06-03','','Emerson Ornstein','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1230,'BC-01230','2025-06-04','','Michael Posner','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1231,'BC-01231','2025-06-09','','Bob Beyer','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1232,'BC-01232','2025-06-13','','US Air Force Research Laboratory','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1233,'BC-01233','2025-06-17','','US Air Force Research Laboratory','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1234,'BC-01234','2025-06-18','','Bob Beyer','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1235,'BC-01235','2025-06-27','','Emerson Ornstein','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1236,'BC-01236','2025-07-22','','Michael Faughnan','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1237,'BC-01237','2025-07-22','','Tommy Ausherman','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1238,'BC-01238','2025-07-22','','Tommy Ausherman','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1239,'BC-01239','2025-07-25','','LG Electronics USA','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1240,'BC-01240','2025-07-25','','Federal Bureau of Investigation - FBI','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1241,'BC-01241','2025-07-30','','Michael Faughnan','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1242,'BC-01242','2025-09-07','','Burmuda Electric Light Company','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1243,'BC-01243','2025-09-07','','Grander Marine Service Department','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1244,'BC-01244','2025-09-30','','Obsidian Integration','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1245,'BC-01245','2025-09-30','','Obsidian Integration','Undeposited Funds','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1246,'BC-01246','2025-11-06','','Kevin Kieffer','','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1247,'BC-01247','2025-11-07','24V 75Ah Lithium Ion Battery - LFP - Opening inventory and value','','Opening Balance Equity','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1248,'BC-01248','2025-09-15','September 2025 Rent','LR Property Management','Accounts Payable (A/P)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1249,'BC-01249','2025-01-14','Paid via QuickBooks Payments: Payment ID 610162','Dave Schmaltz','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1250,'BC-01250','2025-01-14','Paid via QuickBooks Payments: Payment ID 610162','Dave Schmaltz','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1251,'BC-01251','2025-02-04','Paid via QuickBooks Payments: Payment ID 498-517','Marcus Portillo','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1252,'BC-01252','2025-02-04','Paid via QuickBooks Payments: Payment ID 498-517','Marcus Portillo','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1253,'BC-01253','2025-02-06','Paid via QuickBooks Payments: Payment ID R58143','Fiona Taylor','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1254,'BC-01254','2025-02-07','Paid via QuickBooks Payments: Payment ID R58143','Fiona Taylor','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1255,'BC-01255','2025-03-04','Paid via QuickBooks Payments: Payment ID 200418','Doug Shelby','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1256,'BC-01256','2025-03-04','Paid via QuickBooks Payments: Payment ID 115047','Bob Beyer','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1257,'BC-01257','2025-03-04','Paid via QuickBooks Payments: Payment ID 200418','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1258,'BC-01258','2025-03-04','Paid via QuickBooks Payments: Payment ID 115047','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1259,'BC-01259','2025-03-07','Paid via QuickBooks Payments: Payment ID 650216','Marcus Portillo','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1260,'BC-01260','2025-03-07','Paid via QuickBooks Payments: Payment ID 650216','Marcus Portillo','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1261,'BC-01261','2025-04-15','Paid via QuickBooks Payments: Payment ID 221229','CDTi Advanced Materials, Inc..','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1262,'BC-01262','2025-04-15','Paid via QuickBooks Payments: Payment ID 221229','CDTi Advanced Materials, Inc..','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1263,'BC-01263','2025-05-02','Paid via QuickBooks Payments: Payment ID 291-997','Tommy Ausherman','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1264,'BC-01264','2025-05-02','Paid via QuickBooks Payments: Payment ID 291-997','Tommy Ausherman','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1265,'BC-01265','2025-05-07','Paid via QuickBooks Payments: Payment ID 703-357','Tommy Ausherman','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1266,'BC-01266','2025-05-07','Paid via QuickBooks Payments: Payment ID 703-357','Tommy Ausherman','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1267,'BC-01267','2025-06-03','Paid via QuickBooks Payments: Payment ID 02754D','Emerson Ornstein','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1268,'BC-01268','2025-06-03','Paid via QuickBooks Payments: Payment ID 02754D','Emerson Ornstein','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1269,'BC-01269','2025-06-17','Paid via QuickBooks Payments: Payment ID 034416','US Air Force Research Laboratory','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1270,'BC-01270','2025-06-18','Paid via QuickBooks Payments: Payment ID 260460','Bob Beyer','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1271,'BC-01271','2025-06-18','Paid via QuickBooks Payments: Payment ID 034416','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1272,'BC-01272','2025-06-18','Paid via QuickBooks Payments: Payment ID 260460','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1273,'BC-01273','2025-06-27','Paid via QuickBooks Payments: Payment ID 04071D','Emerson Ornstein','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1274,'BC-01274','2025-06-27','Paid via QuickBooks Payments: Payment ID 04071D','Emerson Ornstein','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1275,'BC-01275','2025-07-22','Paid via QuickBooks Payments: Payment ID 823-147','Tommy Ausherman','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1276,'BC-01276','2025-07-22','Paid via QuickBooks Payments: Payment ID 824-387','Tommy Ausherman','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1277,'BC-01277','2025-07-22','Paid via QuickBooks Payments: Payment ID 823-147','Tommy Ausherman','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1278,'BC-01278','2025-07-22','Paid via QuickBooks Payments: Payment ID 824-387','Tommy Ausherman','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1279,'BC-01279','2025-07-30','Paid via QuickBooks Payments: Payment ID 288032','Michael Faughnan','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1280,'BC-01280','2025-07-30','Paid via QuickBooks Payments: Payment ID 288032','Michael Faughnan','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1281,'BC-01281','2025-09-30','Paid via QuickBooks Payments: Payment ID 229-367','Obsidian Integration','Accounts Receivable','','','posted',1,'2025-11-12 00:09:23','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1282,'BC-01282','2025-09-30','Paid via QuickBooks Payments: Payment ID 229-367','Obsidian Integration','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1283,'BC-01283','2025-03-25','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1284,'BC-01284','2025-03-25','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1285,'BC-01285','2025-03-25','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1286,'BC-01286','2025-01-15','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1287,'BC-01287','2025-01-15','WIRE TO FOGEL LAW GROUP TRUST ACCOUNT - For Plant Machinery & Equipement','Bluesea','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1288,'BC-01288','2025-09-22','Holding account setup','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1289,'BC-01289','2025-10-01','Tax withdrawal','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1290,'BC-01290','2025-10-10','Tax Payment for Period: 10/01/2025-10/03/2025','IRS','Federal Taxes (941/944)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1291,'BC-01291','2025-10-15','Tax withdrawal','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1292,'BC-01292','2025-10-22','Tax Payment for Period: 10/15/2025-10/17/2025','IRS','Federal Taxes (941/944)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1293,'BC-01293','2025-10-31','Tax Payment for Period: 07/01/2025-09/30/2025','FL U.C. Fund','FL Unemployment Tax','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1294,'BC-01294','2025-10-31','Tax withdrawal','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1295,'BC-01295','2025-11-04','Tax overpayment credit refund','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1296,'BC-01296','2025-11-05','Tax Payment for Period: 10/29/2025-10/31/2025','IRS','Federal Taxes (941/944)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1297,'BC-01297','2025-01-08','','Shenzhen SunFiD New Energy Co., Ltd.','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1298,'BC-01298','2025-01-13','','GSL Energy','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1299,'BC-01299','2025-01-16','','Shenzhen SunFiD New Energy Co., Ltd.','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1300,'BC-01300','2025-01-24','','GSL Energy','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1301,'BC-01301','2025-02-05','','Shenzhen SunFiD New Energy Co., Ltd.','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1302,'BC-01302','2025-02-11','','GSL Energy','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1303,'BC-01303','2025-03-05','','Shenzhen Cleva Power Co.,Ltd','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1304,'BC-01304','2025-03-05','','Shenzhen SunFiD New Energy Co., Ltd.','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1305,'BC-01305','2025-03-05','','Shenzhen SunFiD New Energy Co., Ltd.','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1306,'BC-01306','2025-03-05','','GSL Energy','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1307,'BC-01307','2025-03-05','','GSL Energy','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1308,'BC-01308','2025-03-10','','Shenzhen Cleva Power Co.,Ltd','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1309,'BC-01309','2025-03-11','','Shenzhen Cleva Power Co.,Ltd','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1310,'BC-01310','2025-03-17','','Shenzhen Cleva Power Co.,Ltd','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1311,'BC-01311','2025-06-01','','R.R. SIMMONS','Litigation Expense Accrual','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1312,'BC-01312','2025-06-02','','R.R. SIMMONS','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1313,'BC-01313','2025-06-18','','Shenzhen Cleva Power Co.,Ltd','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1314,'BC-01314','2025-06-18','','Shenzhen Cleva Power Co.,Ltd','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1315,'BC-01315','2025-06-24','','GSL Energy','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1316,'BC-01316','2025-06-24','','GSL Energy','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1317,'BC-01317','2025-06-26','','Shenzhen SunFiD New Energy Co., Ltd.','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1318,'BC-01318','2025-06-26','','Shenzhen SunFiD New Energy Co., Ltd.','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1319,'BC-01319','2025-07-07','','R.R. SIMMONS','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1320,'BC-01320','2025-07-31','','R.R. SIMMONS','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1321,'BC-01321','2025-08-07','','Shenzhen SunFiD New Energy Co., Ltd.','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1322,'BC-01322','2025-08-07','','Shenzhen SunFiD New Energy Co., Ltd.','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1323,'BC-01323','2025-08-12','','Shenzhen SunFiD New Energy Co., Ltd.','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1324,'BC-01324','2025-08-12','','Shenzhen SunFiD New Energy Co., Ltd.','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1325,'BC-01325','2025-08-22','','LR Property Management','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1326,'BC-01326','2025-09-05','','Shenzhen SunFiD New Energy Co., Ltd.','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1327,'BC-01327','2025-09-05','','Shenzhen SunFiD New Energy Co., Ltd.','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1328,'BC-01328','2025-09-05','','Shenzhen SunFiD New Energy Co., Ltd.','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1329,'BC-01329','2025-09-08','','GSL Energy','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1330,'BC-01330','2025-09-15','September 2025 Rent','LR Property Management','Security Deposit','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1331,'BC-01331','2025-09-15','','Bayfront Capital Holdings LLC','Litigation Expense Accrual','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1332,'BC-01332','2025-09-30','','Shenzhen SunFiD New Energy Co., Ltd.','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1333,'BC-01333','2025-10-24','','Shenzhen Cleva Power Co.,Ltd','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1334,'BC-01334','2025-11-01','','StrataGem Risk, LLC','Litigation Expense Accrual','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1335,'BC-01335','2025-01-01','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1336,'BC-01336','2025-01-01','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1337,'BC-01337','2025-01-01','FLBLUE* ACA         JACKSONVILLE        FL','','Employee Health Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1338,'BC-01338','2025-01-01','FLBLUE* ACA         JACKSONVILLE        FL','','Employee Health Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1339,'BC-01339','2025-01-01','FATHOM.VIDEO        SAN FRANCISCO       CA','','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1340,'BC-01340','2025-01-01','LINKEDIN SN *3505782LNKD.IN/BILL        CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1341,'BC-01341','2025-01-01','GOOGLE*GSUITE LITHIUCC GOOGLE.COM','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1342,'BC-01342','2025-01-01','AplPay PUBLIX #1722 TAMPA               FL','','Business meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1343,'BC-01343','2025-01-02','AplPay UBER ONE     help.uber.com       CA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1344,'BC-01344','2025-01-02','NIC*-FL SUNBIZ.ORG  TALLAHASSEE         FL','','Legal & Professional Services','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1345,'BC-01345','2025-01-02','WAWA FUEL/CONVENIENCPINELLAS PARK       FL','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1346,'BC-01346','2025-01-02','BT*DIALPAD MEETINGS SAN RAMON           CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1347,'BC-01347','2025-01-02','IN *BLUE WATER MARINGULFPORT            FL','','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1348,'BC-01348','2025-01-03','FRESH KITCHEN KENNEDTAMPA               FL','','Business meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1349,'BC-01349','2025-01-03','HOOTERS #34 0001    TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1350,'BC-01350','2025-01-03','DNH*GODADDY#35037227Tempe               AZ','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1351,'BC-01351','2025-01-04','BRIGHT EYES FAMILY V813-7920637         FL','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1352,'BC-01352','2025-01-05','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1353,'BC-01353','2025-01-05','MICROSOFT-G072409147MSBILL.INFO','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1354,'BC-01354','2025-01-05','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1355,'BC-01355','2025-01-05','CIRQUE ENTERTAINMENTBRADENTON           FL','','Other Business Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1356,'BC-01356','2025-01-06','ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','American Express','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1357,'BC-01357','2025-01-06','BLINK               AMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1358,'BC-01358','2025-01-06','VZWRLSS BILL PAY VE 800-922-0204        FL','Verizon','Telephone Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1359,'BC-01359','2025-01-06','KWIK STOP WESTSHORE TAMPA               FL','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1360,'BC-01360','2025-01-06','HELP.USEMOTION.COM  SAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1361,'BC-01361','2025-01-06','NEUROSPA            TAMPA               FL','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1362,'BC-01362','2025-01-06','AplPay HIMS & HERS HSAN FRANCISCO       CA','','Other Business Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1363,'BC-01363','2025-01-06','AplPay SPORT CLIPS -TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1364,'BC-01364','2025-01-06','SQSP* INV164321443  NEW YORK            NY','','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1365,'BC-01365','2025-01-06','YOAST B.V.*${MERCHANWIJCHEN             NL','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1366,'BC-01366','2025-01-08','ZOOM.COM 888-799-966SAN JOSE            CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1367,'BC-01367','2025-01-08','DNH*GODADDY#35123870Tempe               AZ','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1368,'BC-01368','2025-01-08','JETPACK ER6PM31WMA  SAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1369,'BC-01369','2025-01-08','WWW.WOODIESWASH.COM TAMPA               FL','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1370,'BC-01370','2025-01-09','APPLECARE MNTHLY PLARICHFIELD           MN','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1371,'BC-01371','2025-01-09','DNH*GODADDY#35136131Tempe               AZ','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1372,'BC-01372','2025-01-09','DNH*GODADDY#35135959Tempe               AZ','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1373,'BC-01373','2025-01-09','JETPACK HK7DL7CU48  SAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1374,'BC-01374','2025-01-09','SAM\'S CLUB 6403 6403BRANDON             FL','','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1375,'BC-01375','2025-01-10','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1376,'BC-01376','2025-01-10','PADDLE.NET* PREPRODUNEW YORK            NY','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1377,'BC-01377','2025-01-10','HOOTERS #34 0001    TAMPA               FL','','Business meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1378,'BC-01378','2025-01-10','JETPACK D9GRT8WNUQ  SAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1379,'BC-01379','2025-01-10','THE HOME DEPOT      TAMPA               FL','','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1380,'BC-01380','2025-01-10','YOAST B.V.          WIJCHEN             NL','YOAST','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1381,'BC-01381','2025-01-10','SEMRUSH INC         BOSTON              MA','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1382,'BC-01382','2025-01-11','AplPay UBER EATS    help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1383,'BC-01383','2025-01-11','PY *STORQUEST - TAMPTAMPA               FL','','Storage Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1384,'BC-01384','2025-01-11','AplPay Uber Trip    help.uber.com       CA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1385,'BC-01385','2025-01-11','ROCKETLAW 877-757-15SAN FRANCISCO       CA','','Legal & Professional Services','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1386,'BC-01386','2025-01-11','CANVA* I04393-492629CAMDEN              DE','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1387,'BC-01387','2025-01-11','DEAD BOB\'S TOO 40390TAMPA               FL','','Business meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1388,'BC-01388','2025-01-11','PIN CHASERS VETERANSTAMPA               FL','Pin Chasers','Other Business Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1389,'BC-01389','2025-01-11','PIN CHASERS VETERANSTAMPA               FL','Pin Chasers','Other Business Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1390,'BC-01390','2025-01-13','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1391,'BC-01391','2025-01-13','LINKEDIN PRE*3707270LNKD.IN/BILL        CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1392,'BC-01392','2025-01-13','DNH*GODADDY#35223307Tempe               AZ','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1393,'BC-01393','2025-01-13','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1394,'BC-01394','2025-01-13','AHREFS.COM          SINGAPORE           SG','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1395,'BC-01395','2025-01-13','AHREFS.COM          SINGAPORE           SG','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1396,'BC-01396','2025-01-13','BESTBUYCOMXXXXXX9403RICHFIELD           MN','','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1397,'BC-01397','2025-01-13','LIVEPLAN            EUGENE              OR','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1398,'BC-01398','2025-01-14','AHREFS.COM          SINGAPORE           SG','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1399,'BC-01399','2025-01-14','GANDY CITGO 00034666TAMPA               FL','Citgo','Fuel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1400,'BC-01400','2025-01-14','AplPay HIMS & HERS HSAN FRANCISCO       CA','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1401,'BC-01401','2025-01-14','PAYPAL *NEXTCART    *****6390           VN','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1402,'BC-01402','2025-01-14','IMPORTGENIUS.COM    (855)573-9976       AZ','','Other Business Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1403,'BC-01403','2025-01-15','ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','American Express','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1404,'BC-01404','2025-01-16','ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','American Express','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1405,'BC-01405','2025-01-16','DNH*GODADDY#35276886Tempe               AZ','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1406,'BC-01406','2025-01-17','ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','American Express','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1407,'BC-01407','2025-01-17','HOOTERS #34 0001    TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1408,'BC-01408','2025-01-17','BLS*WWW ARTLIST IO  DOVER               DE','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1409,'BC-01409','2025-01-17','INAI PTE. LTD.      SINGAPORE           SG','','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1410,'BC-01410','2025-01-17','AITUBOART           HUNGHOM             HK','Aituboart','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1411,'BC-01411','2025-01-18','B2B NINJABIGCOMM APHOUSTON TX NATHAN A STARON-13009-NT_ND9V76CY +15128564652 B2B NINJA-BIGCOMM APP HOUSTON TX','BIGCOMMERCE','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1412,'BC-01412','2025-01-18','AMZ*WOOT LLC E5R32P0PAY.AMAZON.CO       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1413,'BC-01413','2025-01-18','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1414,'BC-01414','2025-01-18','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1415,'BC-01415','2025-01-18','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1416,'BC-01416','2025-01-18','B2B NINJA-BIGCOMM APHOUSTON             TX','','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1417,'BC-01417','2025-01-18','B2B NINJA-BIGCOMM APHOUSTON             TX','','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1418,'BC-01418','2025-01-18','B2B NINJA-BIGCOMM APP                   TX','','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1419,'BC-01419','2025-01-18','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1420,'BC-01420','2025-01-19','AplPay UBER EATS    HTTPS://HELP.UBER.COCA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1421,'BC-01421','2025-01-19','AplPay UBER THEORIGIHTTPS://HELP.UBER.COCA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1422,'BC-01422','2025-01-19','FIGMA MONTHLY RENEWASAN FRANCISCO       CA','Figma','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1423,'BC-01423','2025-01-19','SP CPAP.COM         STAFFORD            TX','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1424,'BC-01424','2025-01-20','AMAZON.COM          AMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1425,'BC-01425','2025-01-20','AplPay UBER EATS    help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1426,'BC-01426','2025-01-20','AMAZON.COM          AMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1427,'BC-01427','2025-01-20','YITHEMES.COM        SANTA CRUZ DE TENERI','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1428,'BC-01428','2025-01-21','SAM\'S CLUB 6403 6403BRANDON             FL','Sam\'s Club','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1429,'BC-01429','2025-01-21','SAM\'S CLUB 6403 6403BRANDON             FL','Sam\'s Club','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1430,'BC-01430','2025-01-21','WWW.WOODIESWASH.COM TAMPA               FL','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1431,'BC-01431','2025-01-21','WALGREENS           TAMPA               FL','Walgreens','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1432,'BC-01432','2025-01-22','DNH*GODADDY#35403911Tempe               AZ','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1433,'BC-01433','2025-01-22','EIN PRESSWIRE NEWS 0WASHINGTON          DC','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1434,'BC-01434','2025-01-22','AplPay FRESH KITCHENTAMPA               FL','Fresh Kitchen','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1435,'BC-01435','2025-01-22','SP CPAP.COM         STAFFORD            TX','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1436,'BC-01436','2025-01-23','TECO/PEOPLES GAS    813-223-0800        FL','TECOPEOPLES GAS','Gas/Electricity','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1437,'BC-01437','2025-01-23','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1438,'BC-01438','2025-01-23','KUBRA/TECO CONV FEE 800-766-6616        NJ','TECOPEOPLES GAS','Gas/Electricity','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1439,'BC-01439','2025-01-23','HOOTERS #34 0001    TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1440,'BC-01440','2025-01-24','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1441,'BC-01441','2025-01-24','FIGMENT.SO          NEW YORK            NY','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1442,'BC-01442','2025-01-25','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1443,'BC-01443','2025-01-25','MICROSOFT           MSBILL.INFO','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1444,'BC-01444','2025-01-25','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1445,'BC-01445','2025-01-26','AplPay PUBLIX #1808 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1446,'BC-01446','2025-01-26','AplPay KWIK STOP WESTAMPA               FL','Kwik Stop','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1447,'BC-01447','2025-01-27','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1448,'BC-01448','2025-01-27','BT*RADIORF*180DAYSUBSAN ANTONIO         TX','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1449,'BC-01449','2025-01-27','GOOGLE *YOUTUBE TV   G.CO/HELPPAY#      CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1450,'BC-01450','2025-01-27','HDN*PARRISH LAW, PA SATELLITE BEA       FL','','Litigation Expense Accrual','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1451,'BC-01451','2025-01-28','ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','American Express','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1452,'BC-01452','2025-01-28','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1453,'BC-01453','2025-01-28','AMAZON.COM          AMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1454,'BC-01454','2025-01-28','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1455,'BC-01455','2025-01-28','AplPay UBER ONE     help.uber.com       CA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1456,'BC-01456','2025-01-28','INSURANCE PAYMENT FEDURHAM              NC','','Worker\'s Compensation Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1457,'BC-01457','2025-01-28','AplPay JONI\'S PET SATampa               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1458,'BC-01458','2025-01-28','PIPEDRIVE INC       NEW YORK            NY','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1459,'BC-01459','2025-01-28','STRATAGEM RISK LLC 9ST PETERSBURG       FL','','Litigation Expense Accrual','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1460,'BC-01460','2025-01-29','APPLECARE MNTHLY PLARICHFIELD           MN','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1461,'BC-01461','2025-01-29','AplPay PUBLIX #1808 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1462,'BC-01462','2025-01-29','Extra Space 3639    TAMPA               FL','','Storage Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1463,'BC-01463','2025-01-29','GOOGLE*TV GOOGLE PAY G.CO HELPPAY#','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1464,'BC-01464','2025-01-29','NEUROSPA            TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1465,'BC-01465','2025-01-29','JACKSON DENTAL, P.A.TAMPA               FL','','Employee Health Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1466,'BC-01466','2025-01-30','AplPay UBER EATS    help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1467,'BC-01467','2025-01-30','KORE WIRELESS       ATLANTA             GA','','Utilities','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1468,'BC-01468','2025-01-30','HOSTINGER* HOSTINGERWILMINGTON          DE','Hostinger','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1469,'BC-01469','2025-01-31','HOOTERS #34 0001    TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1470,'BC-01470','2025-01-31','FLBLUE* ACA         JACKSONVILLE        FL','','Employee Health Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1471,'BC-01471','2025-01-31','DABA NAILS & SPA 941TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1472,'BC-01472','2025-01-31','BIGCOMMERCE         AUSTIN              TX','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1473,'BC-01473','2025-01-31','FLBLUE* ACA         JACKSONVILLE        FL','','Employee Health Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1474,'BC-01474','2025-02-01','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1475,'BC-01475','2025-02-01','SAM\'S CLUB 6403 6403BRANDON             FL','Sam\'s Club','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1476,'BC-01476','2025-02-01','DNH*GODADDY#35591481Tempe               AZ','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1477,'BC-01477','2025-02-01','FATHOM.VIDEO        SAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1478,'BC-01478','2025-02-01','GOOGLE              MOUNTAIN VIEW       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1479,'BC-01479','2025-02-01','LINKEDIN SN *3982298LNKD.IN/BILL        CA','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1480,'BC-01480','2025-02-01','DEW CADILLAC F&I 000PINELLAS PARK       FL','Dew Cadillac','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1481,'BC-01481','2025-02-02','AplPay UBER ONE     help.uber.com       CA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1482,'BC-01482','2025-02-02','WALGREENS           TAMPA               FL','Walgreens','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1483,'BC-01483','2025-02-02','BT*DIALPAD MEETINGS SAN RAMON           CA','Dialpad Meetings','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1484,'BC-01484','2025-02-02','AplPay GROUPON, INC.CHICAGO','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1485,'BC-01485','2025-02-02','AplPay TAMPA BAY DOWTAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1486,'BC-01486','2025-02-02','AplPay GANDY BLVD SMTAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1487,'BC-01487','2025-02-02','AplPay TAMPA BAY DOWTAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1488,'BC-01488','2025-02-02','OLD NAVY ON-LINE 084GROVEPORT           OH','Old Navy','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1489,'BC-01489','2025-02-03','AplPay PUBLIX #1808 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1490,'BC-01490','2025-02-03','AplPay SPORT CLIPS -TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1491,'BC-01491','2025-02-03','OLD NAVY ON-LINE 084GROVEPORT           OH','Old Navy','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1492,'BC-01492','2025-02-03','AplPay CREAM DE LA CTampa               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1493,'BC-01493','2025-02-04','DNH*GODADDY#XXXXXXX0480-505-8855        AZ','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1494,'BC-01494','2025-02-04','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1495,'BC-01495','2025-02-04','WISESTAMP.COM       WILMINGTON          DE','','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1496,'BC-01496','2025-02-04','WISESTAMP.COM       WILMINGTON          DE','','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1497,'BC-01497','2025-02-04','CUSTOMESIGNATURE.COMSAN DIEGO           CA','','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1498,'BC-01498','2025-02-04','EDUWHERE-KEIKA VENTUDURHAM              NC','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1499,'BC-01499','2025-02-05','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1500,'BC-01500','2025-02-05','GANDY CITGO 00034666TAMPA               FL','Citgo','Fuel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1501,'BC-01501','2025-02-05','MICROSOFT           MSBILL.INFO','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1502,'BC-01502','2025-02-06','BLINK               AMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1503,'BC-01503','2025-02-06','VZWRLSS BILL PAY VE 800-922-0204        FL','Verizon','Telephone Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1504,'BC-01504','2025-02-06','AplPay PUBLIX #1808 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1505,'BC-01505','2025-02-06','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1506,'BC-01506','2025-02-06','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1507,'BC-01507','2025-02-06','HELP.USEMOTION.COM  SAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1508,'BC-01508','2025-02-06','AplPay WAWA 5301 000TAMPA               FL','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1509,'BC-01509','2025-02-06','SQSP* INV168566245  NEW YORK            NY','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1510,'BC-01510','2025-02-07','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1511,'BC-01511','2025-02-07','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1512,'BC-01512','2025-02-07','HOOTERS #34 0001    TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1513,'BC-01513','2025-02-07','WALGREENS           TAMPA               FL','Walgreens','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1514,'BC-01514','2025-02-08','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1515,'BC-01515','2025-02-08','WWW.WOODIESWASH.COM TAMPA               FL','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1516,'BC-01516','2025-02-08','AplPay DINOSAUR WORLPLANT CITY          FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1517,'BC-01517','2025-02-08','SPIRIT AIRLINES     SOUTH FLORIDA       FL','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1518,'BC-01518','2025-02-08','DINOSAUR WORLD 00-08PLANT CITY          FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1519,'BC-01519','2025-02-08','AplPay DINOSAUR WORLPLANT CITY          FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1520,'BC-01520','2025-02-08','AplPay SP SAND SURF TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1521,'BC-01521','2025-02-08','AplPay TACO MADRE LLPLANT CITY          FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1522,'BC-01522','2025-02-09','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1523,'BC-01523','2025-02-09','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1524,'BC-01524','2025-02-09','APPLECARE MNTHLY PLARICHFIELD           MN','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1525,'BC-01525','2025-02-09','AplPay UBER EATS    help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1526,'BC-01526','2025-02-09','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1527,'BC-01527','2025-02-09','GENERAL MOTORS      DETROIT             MI','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1528,'BC-01528','2025-02-09','GENERAL MOTORS      DETROIT             MI','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1529,'BC-01529','2025-02-09','JETPACK HRB9EB9UHJ  SAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1530,'BC-01530','2025-02-09','AplPay DAIRY JOY    Tampa               FL','Dairy Joy','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1531,'BC-01531','2025-02-10','BT*SEMRUSH          BOSTON              MA','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1532,'BC-01532','2025-02-10','PADDLE.NET* PREPRODUNEW YORK            NY','Paddle.net','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1533,'BC-01533','2025-02-10','AIRBNB * HMR8NZ43XB SAN FRANCISCO       CA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1534,'BC-01534','2025-02-10','AIRBNB * HMR8NZ43XB SAN FRANCISCO       CA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1535,'BC-01535','2025-02-10','ZOOM.COM 888-799-966SAN JOSE            CA','Zoom','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1536,'BC-01536','2025-02-10','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1537,'BC-01537','2025-02-11','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1538,'BC-01538','2025-02-11','CANVA* I04424-697630CAMDEN              DE','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1539,'BC-01539','2025-02-11','ROCKETLAW 877-757-15SAN FRANCISCO       CA','','Legal & Professional Services','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1540,'BC-01540','2025-02-11','AplPay HARD ROCK BANTAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1541,'BC-01541','2025-02-11','AplPay SPROUTS FARMETampa               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1542,'BC-01542','2025-02-11','AplPay HARD ROCK BANTAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1543,'BC-01543','2025-02-11','PY *STORQUEST - TAMPTAMPA               FL','','Storage Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1544,'BC-01544','2025-02-13','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1545,'BC-01545','2025-02-13','LIVEPLAN            EUGENE              OR','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1546,'BC-01546','2025-02-13','LINKEDIN PRE*4240022LNKD.IN/BILL        CA','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1547,'BC-01547','2025-02-13','AVIS.COM PREPAY     VIRGINIA BEACH      VA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1548,'BC-01548','2025-02-13','NEUROSPA            TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1549,'BC-01549','2025-02-13','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1550,'BC-01550','2025-02-14','IMPORTGENIUS.COM    (855)573-9976       AZ','','Other Business Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1551,'BC-01551','2025-02-14','AplPay SHEETZ 0582  MONROEVILLE         PA','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1552,'BC-01552','2025-02-14','TEXAS ROADHOUSE #284INDIANA             PA','Texas Roadhouse','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1553,'BC-01553','2025-02-14','AplPay TPA 6126 ChicTampa               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1554,'BC-01554','2025-02-15','AplPay UBER EATS    help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1555,'BC-01555','2025-02-15','GOOGLE *YOUTUBE VIDE G.CO/HELPPAY#      CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1556,'BC-01556','2025-02-15','HILTON GARDEN INN ININDIANA             PA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1557,'BC-01557','2025-02-15','AplPay WHITE TOWNSHIINDIANA             PA','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1558,'BC-01558','2025-02-15','AplPay WHITE TOWNSHIINDIANA             PA','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1559,'BC-01559','2025-02-16','AplPay SHEETZ       INDIANA             PA','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1560,'BC-01560','2025-02-16','AplPay DUNKIN #34938INDIANA             PA','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1561,'BC-01561','2025-02-16','AplPay MARTIN\'S FOODINDIANA             PA','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1562,'BC-01562','2025-02-17','HILTON GARDEN INN 0 INDIANA             PA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1563,'BC-01563','2025-02-17','AplPay CHICK FIL A 6PITTSBURGH          PA','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1564,'BC-01564','2025-02-17','FABLETICS.COM       855-202-3570        CA','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1565,'BC-01565','2025-02-17','AplPay CHICK FIL A 6PITTSBURGH          PA','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1566,'BC-01566','2025-02-17','AVIS RENT A CAR     PITTSBURGH          PA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1567,'BC-01567','2025-02-17','GET GO              PITTSBURGH          PA','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1568,'BC-01568','2025-02-17','INAI PTE. LTD.      SINGAPORE           SG','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1569,'BC-01569','2025-02-17','PITAP - FB - HR PittPITTSBURGH          PA','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1570,'BC-01570','2025-02-17','AITUBOART           HUNGHOM             HK','Aituboart','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1571,'BC-01571','2025-02-18','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1572,'BC-01572','2025-02-18','AMERICAN AIRLINES   800-433-7300        TX','American Airlines','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1573,'BC-01573','2025-02-18','AMERICAN AIRLINES   800-433-7300        TX','American Airlines','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1574,'BC-01574','2025-02-18','AMERICAN AIRLINES   800-433-7300        TX','American Airlines','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1575,'BC-01575','2025-02-18','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1576,'BC-01576','2025-02-18','DELTA AIR LINES     ATLANTA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1577,'BC-01577','2025-02-18','DELTA AIR LINES     ATLANTA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1578,'BC-01578','2025-02-18','AplPay CHICK FIL A 6PITTSBURGH          PA','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1579,'BC-01579','2025-02-18','DELTA AIR LINES     ATLANTA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1580,'BC-01580','2025-02-18','TST* PITTSBURGH - BUPITTSBURGH          PA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1581,'BC-01581','2025-02-18','HOTELCOMXXXXXXXX1597HOTELS.COM          WA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1582,'BC-01582','2025-02-18','AplPay CAPITOL FILE LAS VEGAS           NV','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1583,'BC-01583','2025-02-18','TST* PITTSBURGH - BUPITTSBURGH          PA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1584,'BC-01584','2025-02-19','AplPay PUBLIX #1808 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1585,'BC-01585','2025-02-19','FIGMA MONTHLY RENEWASAN FRANCISCO       CA','Figma','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1586,'BC-01586','2025-02-19','DELTA AIR LINES     ATLANTA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1587,'BC-01587','2025-02-19','DELTA AIR LINES     ATLANTA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1588,'BC-01588','2025-02-19','DELTA AIR LINES     ATLANTA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1589,'BC-01589','2025-02-19','PY *PF CHANG\'S 00000ARLINGTON           VA','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1590,'BC-01590','2025-02-19','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1591,'BC-01591','2025-02-20','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1592,'BC-01592','2025-02-20','DNH*GODADDY#XXXXXXX4480-505-8855        AZ','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1593,'BC-01593','2025-02-20','ROCK IT FITNESS 9362TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1594,'BC-01594','2025-02-20','THE STUDY SALON     TAMPA               FL','The Study Salon','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1595,'BC-01595','2025-02-21','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1596,'BC-01596','2025-02-21','WWW.WOODIESWASH.COM TAMPA               FL','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1597,'BC-01597','2025-02-21','YOAST B.V.          WIJCHEN             NL','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1598,'BC-01598','2025-02-22','AIRBNB * HMBPS53AYD SAN FRANCISCO       CA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1599,'BC-01599','2025-02-22','SHUTTERSTOCK        NEW YORK','Shutterstock','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1600,'BC-01600','2025-02-22','SHUTTERSTOCK        NEW YORK','Shutterstock','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1601,'BC-01601','2025-02-22','AplPay SP SAND SURF TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1602,'BC-01602','2025-02-22','AplPay SP SAND SURF TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1603,'BC-01603','2025-02-22','AplPay GROUPON, INC.CHICAGO','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1604,'BC-01604','2025-02-22','SP SAND SURF CO     TAMPA               FL','Sand Surf Co','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1605,'BC-01605','2025-02-22','SP SAND SURF CO     TAMPA               FL','Sand Surf Co','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1606,'BC-01606','2025-02-22','CHUCK LAGER AMERICA\'TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1607,'BC-01607','2025-02-23','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1608,'BC-01608','2025-02-24','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1609,'BC-01609','2025-02-24','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1610,'BC-01610','2025-02-24','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1611,'BC-01611','2025-02-24','FIGMENT.SO          NEW YORK            NY','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1612,'BC-01612','2025-02-24','AplPay SPORT CLIPS -TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1613,'BC-01613','2025-02-24','AplPay LECADA LLC 00TAMPA               FL','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1614,'BC-01614','2025-02-24','AplPay GROUPON, INC.CHICAGO','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1615,'BC-01615','2025-02-24','WALMART.COM 80092562BENTONVILLE         AR','Walmart','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1616,'BC-01616','2025-02-24','AplPay PALMA CEIA HETAMPA               FL','','Other Business Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1617,'BC-01617','2025-02-24','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1618,'BC-01618','2025-02-24','AplPay IC* ABC FINE SAN FRANCISCO       CA','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1619,'BC-01619','2025-02-25','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1620,'BC-01620','2025-02-25','AplPay UBER EATS    help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1621,'BC-01621','2025-02-25','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1622,'BC-01622','2025-02-25','AplPay UBER EATS    help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1623,'BC-01623','2025-02-25','AplPay PUBLIX #1688 INDIALANTIC         FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1624,'BC-01624','2025-02-25','MICROSOFT*ULTIMATE 1MSBILL.INFO         WA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1625,'BC-01625','2025-02-26','AplPay UBER EATS    help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1626,'BC-01626','2025-02-26','NEUROSPA            TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1627,'BC-01627','2025-02-26','PPY=TAMPA NEUROPSYCHTAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1628,'BC-01628','2025-02-27','AplPay UBER EATS    help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1629,'BC-01629','2025-02-27','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1630,'BC-01630','2025-02-27','AplPay UBER ONE     help.uber.com       CA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1631,'BC-01631','2025-02-27','AplPay PUBLIX #1688 INDIALANTIC         FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1632,'BC-01632','2025-02-27','GOOGLE *YOUTUBE TV   G.CO/HELPPAY#      CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1633,'BC-01633','2025-02-27','COLD STONE CREAMERY INDIALANTIC         FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1634,'BC-01634','2025-02-27','AplPay RON JON SURF COCOA BEACH         FL','Ron Jon Surf Shop','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1635,'BC-01635','2025-02-27','AplPay RON JON SURF COCOA BEACH         FL','Ron Jon Surf Shop','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1636,'BC-01636','2025-02-27','AplPay RON JON SURF COCOA BEACH         FL','Ron Jon Surf Shop','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1637,'BC-01637','2025-02-28','APPLECARE MNTHLY PLARICHFIELD           MN','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1638,'BC-01638','2025-02-28','WALGREENS           TAMPA               FL','Walgreens','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1639,'BC-01639','2025-02-28','HOSTINGER* HOSTINGERWILMINGTON          DE','Hostinger','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1640,'BC-01640','2025-02-28','FLBLUE* ACA         JACKSONVILLE        FL','','Employee Health Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1641,'BC-01641','2025-02-28','FLBLUE* ACA         JACKSONVILLE        FL','','Employee Health Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1642,'BC-01642','2025-02-28','PIPEDRIVE INC       NEW YORK            NY','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1643,'BC-01643','2025-03-01','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1644,'BC-01644','2025-03-01','AplPay UBER EATS    help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1645,'BC-01645','2025-03-01','AplPay UBER EATS    help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1646,'BC-01646','2025-03-01','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1647,'BC-01647','2025-03-01','FATHOM.VIDEO        SAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1648,'BC-01648','2025-03-01','Extra Space 3639    TAMPA               FL','','Storage Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1649,'BC-01649','2025-03-01','GOOGLE *GSUITE_LITHICC@GOOGLE.COM       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1650,'BC-01650','2025-03-01','BIGCOMMERCE         AUSTIN              TX','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1651,'BC-01651','2025-03-01','LINKEDIN SN *2701599LNKD.IN/BILL        CA','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1652,'BC-01652','2025-03-01','USPS.COM CLICKNSHIP 800-344-7779        DC','USPS','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1653,'BC-01653','2025-03-01','KORE WIRELESS       ATLANTA             GA','Kore Wireless','Utilities','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1654,'BC-01654','2025-03-02','AplPay UBER ONE     help.uber.com       CA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1655,'BC-01655','2025-03-02','BT*DIALPAD MEETINGS SAN RAMON           CA','Dialpad Meetings','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1656,'BC-01656','2025-03-02','ENVATO              CHICAGO             IL','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1657,'BC-01657','2025-03-02','MISTER SPARKY 436845BRADENTON           FL','','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1658,'BC-01658','2025-03-03','AplPay PUBLIX #1808 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1659,'BC-01659','2025-03-03','OLD NAVY ON-LINE 084GROVEPORT           OH','Old Navy','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1660,'BC-01660','2025-03-03','OLD NAVY ON-LINE 084GROVEPORT           OH','Old Navy','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1661,'BC-01661','2025-03-05','MICROSOFT           MSBILL.INFO','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1662,'BC-01662','2025-03-05','TARGET.COM          800-591-3869        MN','','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1663,'BC-01663','2025-03-06','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1664,'BC-01664','2025-03-06','BLINK               AMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1665,'BC-01665','2025-03-06','HELP.USEMOTION.COM  SAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1666,'BC-01666','2025-03-06','FABLETICS.COM       855-202-3570        CA','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1667,'BC-01667','2025-03-06','SQSP* INV172626226  NEW YORK            NY','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1668,'BC-01668','2025-03-07','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1669,'BC-01669','2025-03-07','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1670,'BC-01670','2025-03-07','AplPay JFK Ml CASA TAshburn             VA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1671,'BC-01671','2025-03-08','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1672,'BC-01672','2025-03-08','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1673,'BC-01673','2025-03-08','WWW.WOODIESWASH.COM TAMPA               FL','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1674,'BC-01674','2025-03-08','AplPay GANDY BLVD SMTAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1675,'BC-01675','2025-03-09','APPLECARE MNTHLY PLARICHFIELD           MN','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1676,'BC-01676','2025-03-09','AplPay UBER EATS    help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1677,'BC-01677','2025-03-09','JETPACK RYQ29RWQEY  SAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1678,'BC-01678','2025-03-09','FLORIDA STRAWBERRY FPLANT CITY          FL','Florida Strawberry','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1679,'BC-01679','2025-03-09','AplPay GRIFF\'S CATERPlant City          FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1680,'BC-01680','2025-03-10','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1681,'BC-01681','2025-03-10','SEMRUSH INC         BOSTON              MA','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1682,'BC-01682','2025-03-10','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1683,'BC-01683','2025-03-10','ZOOM.COM 888-799-966SAN JOSE            CA','Zoom','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1684,'BC-01684','2025-03-10','PADDLE.NET* PREPRODUNEW YORK            NY','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1685,'BC-01685','2025-03-10','AplPay AMC 9640 ONLILEAWOOD             KS','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1686,'BC-01686','2025-03-10','AplPay AMC 9640 ONLILEAWOOD             KS','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1687,'BC-01687','2025-03-11','CANVA* I04452-658981CAMDEN              DE','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1688,'BC-01688','2025-03-11','ROCKETLAW 877-757-15SAN FRANCISCO       CA','','Legal & Professional Services','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1689,'BC-01689','2025-03-11','PY *STORQUEST - TAMPTAMPA               FL','','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1690,'BC-01690','2025-03-13','LINKEDIN PRE*4819531LNKD.IN/BILL        CA','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1691,'BC-01691','2025-03-13','THE WOMANS GROUP OF TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1692,'BC-01692','2025-03-13','LA TERESITA RESTAURATAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1693,'BC-01693','2025-03-14','AplPay UBER EATS    help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1694,'BC-01694','2025-03-14','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1695,'BC-01695','2025-03-14','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1696,'BC-01696','2025-03-14','AplPay PUBLIX #1808 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1697,'BC-01697','2025-03-14','AplPay IC* PUBLIX L SAN FRANCISCO       CA','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1698,'BC-01698','2025-03-14','AplPay PUBLIX #1808 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1699,'BC-01699','2025-03-14','LIVEPLAN            EUGENE              OR','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1700,'BC-01700','2025-03-14','IMPORTGENIUS.COM    (855)573-9976       AZ','','Other Business Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1701,'BC-01701','2025-03-14','JONI\'S PET SALON, INTampa               FL','Joni\'s Pet Salon','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1702,'BC-01702','2025-03-15','AplPay PARKMOBILE PaATLANTA             GA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1703,'BC-01703','2025-03-16','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1704,'BC-01704','2025-03-16','AplPay SPORT CLIPS -TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1705,'BC-01705','2025-03-17','SAM\'S CLUB 6403 6403BRANDON             FL','Sam\'s Club','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1706,'BC-01706','2025-03-17','SAM\'S CLUB 6403 6403BRANDON             FL','Sam\'s Club','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1707,'BC-01707','2025-03-17','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1708,'BC-01708','2025-03-17','AITUBOART           HUNGHOM             HK','Aituboart','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1709,'BC-01709','2025-03-17','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1710,'BC-01710','2025-03-17','AplPay THE HOME DEPOTAMPA               FL','','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1711,'BC-01711','2025-03-17','INAI PTE. LTD.      SINGAPORE           SG','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1712,'BC-01712','2025-03-18','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1713,'BC-01713','2025-03-18','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1714,'BC-01714','2025-03-18','AMAZON.COM          AMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1715,'BC-01715','2025-03-18','AplPay SPROUTS FARMETampa               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1716,'BC-01716','2025-03-18','AplPay TRADER JOE S TAMPA               FL','Trader Joe\'s','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1717,'BC-01717','2025-03-19','FIGMA               SAN FRANCISCO       CA','Figma','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1718,'BC-01718','2025-03-19','NEUROSPA            TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1719,'BC-01719','2025-03-19','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1720,'BC-01720','2025-03-20','DNH*GODADDY#XXXXXXX9480-505-8855        AZ','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1721,'BC-01721','2025-03-20','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1722,'BC-01722','2025-03-20','SERENITY HEALS THERAFORT MYERS          FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1723,'BC-01723','2025-03-21','WWW.WOODIESWASH.COM TAMPA               FL','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1724,'BC-01724','2025-03-21','BESTBUYCOMXXXXXX5523RICHFIELD           MN','','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1725,'BC-01725','2025-03-21','MICROSOFT           MSBILL.INFO','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1726,'BC-01726','2025-03-21','HOOTERS #34 0001    TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1727,'BC-01727','2025-03-21','AplPay D34 DISNEY ONPALMETTO            FL','Disney','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1728,'BC-01728','2025-03-21','AplPay AMALIE ARENA TAMPA               FL','Amalie Arena','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1729,'BC-01729','2025-03-21','AplPay D34 DISNEY ONPALMETTO            FL','Disney','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1730,'BC-01730','2025-03-21','AplPay AMALIE ARENA TAMPA               FL','Amalie Arena','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1731,'BC-01731','2025-03-21','AplPay AMALIE ARENA TAMPA               FL','Amalie Arena','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1732,'BC-01732','2025-03-21','AplPay AMALIE ARENA TAMPA               FL','Amalie Arena','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1733,'BC-01733','2025-03-22','RESTAURANT DEPOT 413TAMPA               FL','Restaurant Depot','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1734,'BC-01734','2025-03-22','AplPay IC* TOTAL WI SAN FRANCISCO       CA','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1735,'BC-01735','2025-03-23','AplPay UBER EATS    HTTPS://HELP.UBER.COCA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1736,'BC-01736','2025-03-23','MICROSOFT           MSBILL.INFO','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1737,'BC-01737','2025-03-24','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1738,'BC-01738','2025-03-24','FIGMENT.SO          NEW YORK            NY','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1739,'BC-01739','2025-03-24','AplPay DUCKWEED LIQUTAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1740,'BC-01740','2025-03-25','AplPay AMTRAK MOBILEWASHINGTON          DC','Amtrak','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1741,'BC-01741','2025-03-25','AplPay PUBLIX #1808 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1742,'BC-01742','2025-03-25','MICROSOFT           MSBILL.INFO','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1743,'BC-01743','2025-03-26','AplPay AMTRAK MOBILEWASHINGTON          DC','Amtrak','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1744,'BC-01744','2025-03-26','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1745,'BC-01745','2025-03-27','GOOGLE *YOUTUBE TV   G.CO/HELPPAY#      CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1746,'BC-01746','2025-03-27','DABA NAILS & SPA 941TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1747,'BC-01747','2025-03-28','KORE WIRELESS       ATLANTA             GA','Kore Wireless','Utilities','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1748,'BC-01748','2025-03-28','SUSHI SONO 00-080326COLUMBIA            MD','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1749,'BC-01749','2025-03-28','AplPay COLUMBIA CAFETAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1750,'BC-01750','2025-03-28','PIPEDRIVE INC       NEW YORK            NY','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1751,'BC-01751','2025-03-29','Extra Space 3639    TAMPA               FL','','Storage Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1752,'BC-01752','2025-03-29','AplPay GIANT FOOD   LORTON              VA','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1753,'BC-01753','2025-03-30','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1754,'BC-01754','2025-03-30','HOSTINGER* HOSTINGERWILMINGTON          DE','Hostinger','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1755,'BC-01755','2025-03-31','AplPay UBER EATS    HTTPS://HELP.UBER.COCA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1756,'BC-01756','2025-03-31','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1757,'BC-01757','2025-03-31','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1758,'BC-01758','2025-03-31','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1759,'BC-01759','2025-03-31','BIGCOMMERCE         AUSTIN              TX','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1760,'BC-01760','2025-03-31','FLBLUE* ACA         JACKSONVILLE        FL','','Employee Health Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1761,'BC-01761','2025-03-31','FLBLUE* ACA         JACKSONVILLE        FL','','Employee Health Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1762,'BC-01762','2025-03-31','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1763,'BC-01763','2025-04-01','GOOGLE              MOUNTAIN VIEW       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1764,'BC-01764','2025-04-01','LINKEDIN SN P5207806MOUNTAIN VIEW','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1765,'BC-01765','2025-04-01','AplPay TARGET       TAMPA               FL','TARGET','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1766,'BC-01766','2025-04-01','AplPay EIOTCLUB     ADMIRALTY           HK','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1767,'BC-01767','2025-04-02','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1768,'BC-01768','2025-04-02','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1769,'BC-01769','2025-04-02','AplPay UBER ONE     help.uber.com       CA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1770,'BC-01770','2025-04-02','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1771,'BC-01771','2025-04-02','BT*DIALPAD MEETINGS SAN RAMON           CA','Dialpad Meetings','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1772,'BC-01772','2025-04-02','PPY=TAMPA NEUROPSYCHTAMPA               FL','','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1773,'BC-01773','2025-04-02','RING STANDARD PLAN  SANTA MONICA        CA','RINGCENTRAL','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1774,'BC-01774','2025-04-03','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1775,'BC-01775','2025-04-03','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1776,'BC-01776','2025-04-03','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1777,'BC-01777','2025-04-03','NEUROSPA            TAMPA               FL','Neurospa','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1778,'BC-01778','2025-04-04','AplPay EIOTCLUB     ADMIRALTY           HK','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1779,'BC-01779','2025-04-05','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1780,'BC-01780','2025-04-05','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1781,'BC-01781','2025-04-05','AplPay UBER EATS    help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1782,'BC-01782','2025-04-05','AplPay IC* PUBLIX L LAKELAND            FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1783,'BC-01783','2025-04-05','MICROSOFT           MSBILL.INFO','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1784,'BC-01784','2025-04-06','BLINK               AMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1785,'BC-01785','2025-04-06','HELP.USEMOTION.COM  SAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1786,'BC-01786','2025-04-06','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1787,'BC-01787','2025-04-06','AplPay MANHATTAN NAITAMPA               FL','','Business meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1788,'BC-01788','2025-04-06','SQSP* INV176792092  NEW YORK            NY','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1789,'BC-01789','2025-04-07','AMAZON.COM          AMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1790,'BC-01790','2025-04-07','VZWRLSS BILL PAY VE 800-922-0204        FL','Verizon','Telephone Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1791,'BC-01791','2025-04-07','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1792,'BC-01792','2025-04-07','PMT*VEHICLETAGREN HITAMPA               FL','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1793,'BC-01793','2025-04-07','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1794,'BC-01794','2025-04-08','WWW.WOODIESWASH.COM TAMPA               FL','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1795,'BC-01795','2025-04-08','ZOOM.COM 888-799-966SAN JOSE            CA','Zoom','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1796,'BC-01796','2025-04-08','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1797,'BC-01797','2025-04-09','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1798,'BC-01798','2025-04-09','JETPACK 5HYSMGTE7K  SAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1799,'BC-01799','2025-04-09','FABLETICS.COM       855-202-3570        CA','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1800,'BC-01800','2025-04-10','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1801,'BC-01801','2025-04-10','AplPay UBER EATS    help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1802,'BC-01802','2025-04-10','SEMRUSH INC         BOSTON              MA','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1803,'BC-01803','2025-04-10','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1804,'BC-01804','2025-04-10','AplPay SPORT CLIPS -TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1805,'BC-01805','2025-04-10','AplPay DUCKWEED LIQUTAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1806,'BC-01806','2025-04-10','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1807,'BC-01807','2025-04-10','PADDLE.NET* PREPRODUNEW YORK            NY','Paddle.net','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1808,'BC-01808','2025-04-10','AplPay CIRCLE K 0881TAMPA               FL','Circle K','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1809,'BC-01809','2025-04-11','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1810,'BC-01810','2025-04-11','AMAZON.COM          AMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1811,'BC-01811','2025-04-11','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1812,'BC-01812','2025-04-11','AMAZON.COM          AMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1813,'BC-01813','2025-04-11','CANVA* I04483-837153CAMDEN              DE','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1814,'BC-01814','2025-04-11','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1815,'BC-01815','2025-04-11','HOOTERS #34 0001    TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1816,'BC-01816','2025-04-11','ROCKETLAW 877-757-15SAN FRANCISCO       CA','','Legal & Professional Services','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1817,'BC-01817','2025-04-11','MOBILE PAYMENT - THANK YOU','American Express','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1818,'BC-01818','2025-04-11','PY *STORQUEST - TAMPTAMPA               FL','Storquest','Storage Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1819,'BC-01819','2025-04-11','AMERICAN EXPRESS TRASEATTLE             WA','American Express','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1820,'BC-01820','2025-04-11','AMERICAN EXPRESS TRASEATTLE             WA','American Express','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1821,'BC-01821','2025-04-12','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1822,'BC-01822','2025-04-12','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1823,'BC-01823','2025-04-12','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1824,'BC-01824','2025-04-12','AplPay PUBLIX #1808 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1825,'BC-01825','2025-04-12','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1826,'BC-01826','2025-04-12','WALGREENS           TAMPA               FL','Walgreens','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1827,'BC-01827','2025-04-12','DELTA AIR LINES     ATLANTA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1828,'BC-01828','2025-04-12','DELTA AIR LINES     ATLANTA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1829,'BC-01829','2025-04-13','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1830,'BC-01830','2025-04-13','LINKEDIN PRE P545260MOUNTAIN VIEW','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1831,'BC-01831','2025-04-13','AplPay CARTER S #131TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1832,'BC-01832','2025-04-13','AplPay CREAM DE LA CTampa               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1833,'BC-01833','2025-04-14','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1834,'BC-01834','2025-04-14','AplPay UBER EATS    help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1835,'BC-01835','2025-04-14','AplPay Uber Trip    help.uber.com       CA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1836,'BC-01836','2025-04-14','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1837,'BC-01837','2025-04-14','IMPORTGENIUS.COM    (855)573-9976       AZ','','Other Business Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1838,'BC-01838','2025-04-14','WALGREENS           TAMPA               FL','Walgreens','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1839,'BC-01839','2025-04-14','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1840,'BC-01840','2025-04-14','AplPay THE HOME DEPOTAMPA               FL','THE HOME DEPOT','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1841,'BC-01841','2025-04-15','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1842,'BC-01842','2025-04-15','AplPay Uber Trip    help.uber.com       CA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1843,'BC-01843','2025-04-15','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1844,'BC-01844','2025-04-16','AplPay TARGET       TAMPA               FL','TARGET','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1845,'BC-01845','2025-04-16','LEAF HOME WATER SOLUHUDSON              OH','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1846,'BC-01846','2025-04-16','MOD DISPLAYS        HARRISONBURG        VA','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1847,'BC-01847','2025-04-17','AITUBOART           HUNGHOM             HK','Aituboart','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1848,'BC-01848','2025-04-17','INAI PTE. LTD.      SINGAPORE           SG','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1849,'BC-01849','2025-04-18','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1850,'BC-01850','2025-04-18','AplPay PUBLIX       FORT MYERS          FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1851,'BC-01851','2025-04-19','FIGMA               SAN FRANCISCO       CA','Figma','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1852,'BC-01852','2025-04-20','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1853,'BC-01853','2025-04-20','OLD NAVY ON-LINE 084GROVEPORT           OH','Old Navy','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1854,'BC-01854','2025-04-20','RACETRAC2571  025718FORT MYERS          FL','RACETRAC','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1855,'BC-01855','2025-04-21','WWW.WOODIESWASH.COM TAMPA               FL','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1856,'BC-01856','2025-04-21','AplPay PUBLIX       FORT MYERS          FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1857,'BC-01857','2025-04-21','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1858,'BC-01858','2025-04-21','PEACOCK             NEW YORK CITY       NY','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1859,'BC-01859','2025-04-21','Platinum Digital Entertainment Credit','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1860,'BC-01860','2025-04-21','AplPay FORDS GARAGE ESTERO              FL','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1861,'BC-01861','2025-04-22','DNH*GODADDY#XXXXXXX3480-505-8855        AZ','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1862,'BC-01862','2025-04-22','AplPay PUBLIX       FORT MYERS          FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1863,'BC-01863','2025-04-22','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1864,'BC-01864','2025-04-22','ELEMENTOR           WILMINGTON          DE','elementor','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1865,'BC-01865','2025-04-22','ELEMENTOR           WILMINGTON          DE','elementor','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1866,'BC-01866','2025-04-22','AplPay A NAILS      FORT MYERS          FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1867,'BC-01867','2025-04-23','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1868,'BC-01868','2025-04-24','AplPay PUBLIX #1808 TAMPA               FL','PUBLIX','Business meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1869,'BC-01869','2025-04-24','FIGMENT.SO          NEW YORK            NY','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1870,'BC-01870','2025-04-24','TARGET.COM          800-591-3869        MN','TARGET','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1871,'BC-01871','2025-04-24','TARGET.COM          800-591-3869        MN','TARGET','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1872,'BC-01872','2025-04-24','AplPay PRICELN*CROWNNORWALK             CT','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1873,'BC-01873','2025-04-25','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1874,'BC-01874','2025-04-25','MICROSOFT           MSBILL.INFO','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1875,'BC-01875','2025-04-25','AplPay SUBWAY TST EATSIM SHA TSUI EAST  HK','Subway','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1876,'BC-01876','2025-04-26','AplPay Apple Store 9HongKong            HK','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1877,'BC-01877','2025-04-26','AplPay UBER TRIP    HTTPS://HELP.UBER.COHK','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1878,'BC-01878','2025-04-26','AplPay UBER TRIP    HTTPS://HELP.UBER.COHK','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1879,'BC-01879','2025-04-26','AplPay UBER TRIP    HTTPS://HELP.UBER.COHK','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1880,'BC-01880','2025-04-26','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1881,'BC-01881','2025-04-26','AIRBNB * HMR8NZ43XB SAN FRANCISCO       CA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1882,'BC-01882','2025-04-26','AplPay SUBWAY TST EATSIM SHA TSUI EAST  HK','Subway','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1883,'BC-01883','2025-04-26','PAYPAL *KAMYUU1105  XXXXXX7733          HK','Kamyuu','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1884,'BC-01884','2025-04-27','GOOGLE *YOUTUBE TV   G.CO/HELPPAY#      CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1885,'BC-01885','2025-04-27','AplPay SUBWAY TST EATSIM SHA TSUI EAST  HK','Subway','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1886,'BC-01886','2025-04-28','PIPEDRIVE INC       NEW YORK            NY','PipeDrive','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1887,'BC-01887','2025-04-29','Extra Space 3639    TAMPA               FL','','Storage Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1888,'BC-01888','2025-04-29','AplPay WHOLEFDS WTP#TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1889,'BC-01889','2025-04-30','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1890,'BC-01890','2025-04-30','HOSTINGER* HOSTINGERWILMINGTON          DE','Hostinger','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1891,'BC-01891','2025-04-30','FLBLUE* ACA         JACKSONVILLE        FL','florida Blue','Employee Health Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1892,'BC-01892','2025-04-30','FLBLUE* ACA         JACKSONVILLE        FL','florida Blue','Employee Health Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1893,'BC-01893','2025-05-01','FATHOM.VIDEO        SAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1894,'BC-01894','2025-05-01','GOOGLE*GSUITE LITHIUCC GOOGLE.COM','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1895,'BC-01895','2025-05-01','GOOGLE              MOUNTAIN VIEW       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1896,'BC-01896','2025-05-01','OLD NAVY ON-LINE 084GROVEPORT           OH','o','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1897,'BC-01897','2025-05-01','OLD NAVY ON-LINE 084GROVEPORT           OH','o','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1898,'BC-01898','2025-05-01','LINKEDIN SN P5754303MOUNTAIN VIEW','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1899,'BC-01899','2025-05-01','AplPay BT*GAMETIME  SAN FRANCISCO       CA','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1900,'BC-01900','2025-05-01','KORE WIRELESS       ATLANTA             GA','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1901,'BC-01901','2025-05-02','AplPay UBER ONE     help.uber.com       CA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1902,'BC-01902','2025-05-02','AplPay UBER TRIP    HTTPS://HELP.UBER.COHK','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1903,'BC-01903','2025-05-02','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1904,'BC-01904','2025-05-02','BT*DIALPAD MEETINGS SAN RAMON           CA','Dialpad Meetings','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1905,'BC-01905','2025-05-02','AplPay UNIFORM NAMETTAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1906,'BC-01906','2025-05-03','AplPay SPORT CLIPS -TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1907,'BC-01907','2025-05-03','AplPay AIRBNB PAYMENSAN FRANCISCO       CA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1908,'BC-01908','2025-05-03','AplPay BACK TO THE FNew York            NY','','Bank Charges & Fees','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1909,'BC-01909','2025-05-03','TST* BAR CARTS-STRAZTAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1910,'BC-01910','2025-05-04','7-ELEVEN 37149 00073TAMPA               FL','7 ELEVEN','Fuel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1911,'BC-01911','2025-05-04','SAM\'S CLUB 4861 4861ST. PETERSBURG      FL','Sam\'s Club','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1912,'BC-01912','2025-05-04','SAM\'S CLUB 4861 4861ST. PETERSBURG      FL','Sam\'s Club','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1913,'BC-01913','2025-05-04','AplPay EMPAMAMAS    Tampa               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1914,'BC-01914','2025-05-05','VZWRLSS BILL PAY VE 800-922-0204        FL','Verizon','Telephone Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1915,'BC-01915','2025-05-05','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1916,'BC-01916','2025-05-05','AplPay PUBLIX #1808 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1917,'BC-01917','2025-05-05','MICROSOFT           MSBILL.INFO','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1918,'BC-01918','2025-05-05','AplPay TARGET       TAMPA               FL','TARGET','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1919,'BC-01919','2025-05-05','PMC - PAID PARKING  NASHVILLE           TN','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1920,'BC-01920','2025-05-05','CKO*WONDERSHARE 2079HK                  HK','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1921,'BC-01921','2025-05-05','AplPay VALET TIPS   NASHVILLE           TN','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1922,'BC-01922','2025-05-06','BLINK               AMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1923,'BC-01923','2025-05-06','AplPay 7-ELEVEN 3714TAMPA               FL','7 ELEVEN','Fuel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1924,'BC-01924','2025-05-06','AplPay PUBLIX #1808 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1925,'BC-01925','2025-05-06','HELP.USEMOTION.COM  SAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1926,'BC-01926','2025-05-06','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1927,'BC-01927','2025-05-06','AplPay TARGET       TAMPA               FL','TARGET','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1928,'BC-01928','2025-05-06','AplPay MCDONALD\'S M2TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1929,'BC-01929','2025-05-06','CVENT LEADCAPTURE   MC LEAN             VA','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1930,'BC-01930','2025-05-06','SQSP* INV180951011  NEW YORK            NY','SQUARESPACE','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1931,'BC-01931','2025-05-07','PMC - PAID PARKING  NASHVILLE           TN','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1932,'BC-01932','2025-05-07','THE STUDY SALON     TAMPA               FL','The Study Salon','Other Business Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1933,'BC-01933','2025-05-07','AplPay VALET TIPS   NASHVILLE           TN','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1934,'BC-01934','2025-05-08','WWW.WOODIESWASH.COM TAMPA               FL','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1935,'BC-01935','2025-05-08','ZOOM.COM 888-799-966SAN JOSE            CA','Zoom','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1936,'BC-01936','2025-05-08','FABLETICS.COM       855-202-3570        CA','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1937,'BC-01937','2025-05-08','PMC - PAID PARKING  NASHVILLE           TN','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1938,'BC-01938','2025-05-08','VALET TIPS          NASHVILLE           TN','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1939,'BC-01939','2025-05-09','JETPACK XSV3MCJPAA  SAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1940,'BC-01940','2025-05-09','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1941,'BC-01941','2025-05-10','BT*SEMRUSH          BOSTON              MA','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1942,'BC-01942','2025-05-10','AIRBNB * HMQBMSA5AN SAN FRANCISCO       CA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1943,'BC-01943','2025-05-10','AplPay DUCKWEED LIQUTAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1944,'BC-01944','2025-05-10','PADDLE.NET* PREPRODUNEW YORK            NY','Paddle.net','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1945,'BC-01945','2025-05-11','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1946,'BC-01946','2025-05-11','CANVA* I04513-712612CAMDEN              DE','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1947,'BC-01947','2025-05-11','AplPay PUBLIX #1688 INDIALANTIC         FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1948,'BC-01948','2025-05-11','ROCKETLAW 877-757-15SAN FRANCISCO       CA','','Legal & Professional Services','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1949,'BC-01949','2025-05-11','AplPay OCEANSIDE PIZINDIALANTIC         FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1950,'BC-01950','2025-05-11','PY *STORQUEST - TAMPTAMPA               FL','Storquest','Storage Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1951,'BC-01951','2025-05-11','FABLETICS.COM       855-202-3570        CA','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1952,'BC-01952','2025-05-11','FABLETICS.COM       855-202-3570        CA','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1953,'BC-01953','2025-05-11','FABLETICS.COM       855-202-3570        CA','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1954,'BC-01954','2025-05-11','AplPay CROWNE PLAZA MELBOURNE           FL','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1955,'BC-01955','2025-05-12','VZWRLSS BILL PAY VE 800-922-0204        FL','Verizon','Telephone Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1956,'BC-01956','2025-05-12','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1957,'BC-01957','2025-05-12','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1958,'BC-01958','2025-05-12','BESTBUYCOMXXXXXX3611RICHFIELD           MN','','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1959,'BC-01959','2025-05-13','AplPay PUBLIX #1688 INDIALANTIC         FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1960,'BC-01960','2025-05-13','LINKEDIN PRE P598700MOUNTAIN VIEW','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1961,'BC-01961','2025-05-14','IMPORTGENIUS.COM    (855)573-9976       AZ','','Other Business Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1962,'BC-01962','2025-05-14','AIRBNB * HMQBMSA5AN SAN FRANCISCO       CA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1963,'BC-01963','2025-05-15','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1964,'BC-01964','2025-05-15','RON JON SURF SHOP   COCOA BEACH         FL','Ron Jon Surf Shop','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1965,'BC-01965','2025-05-15','RON JON SURF SHOP   COCOA BEACH         FL','Ron Jon Surf Shop','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1966,'BC-01966','2025-05-15','RON JON SURF SHOP   COCOA BEACH         FL','Ron Jon Surf Shop','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1967,'BC-01967','2025-05-16','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1968,'BC-01968','2025-05-16','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1969,'BC-01969','2025-05-16','ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250516 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX1796687 EED:250516 IND ID:W9994 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6687 TC','American Express','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1970,'BC-01970','2025-05-17','KUBRA/TECO CONV FEE 800-766-6616        NJ','TECOPEOPLES GAS','Gas/Electricity','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1971,'BC-01971','2025-05-17','TECO/PEOPLES GAS    813-223-0800        FL','TECOPEOPLES GAS','Gas/Electricity','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1972,'BC-01972','2025-05-17','AplPay 7-ELEVEN 1011INDIALANTIC         FL','7 ELEVEN','Fuel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1973,'BC-01973','2025-05-17','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1974,'BC-01974','2025-05-17','AplPay IC* INSTACARTLAKELAND            FL','Instacart','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1975,'BC-01975','2025-05-17','AplPay PUBLIX #1688 INDIALANTIC         FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1976,'BC-01976','2025-05-17','AITUBO.AI           HUNGHOM             HK','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1977,'BC-01977','2025-05-17','INAI PTE. LTD.      SINGAPORE           SG','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1978,'BC-01978','2025-05-18','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1979,'BC-01979','2025-05-19','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1980,'BC-01980','2025-05-19','FIGMA               SAN FRANCISCO       CA','Figma','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1981,'BC-01981','2025-05-19','AplPay MOOS SOFT SERINDIALANTIC         FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1982,'BC-01982','2025-05-19','AplPay MOOS SOFT SERINDIALANTIC         FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1983,'BC-01983','2025-05-19','AplPay IC* ABC FINE ORLANDO             FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1984,'BC-01984','2025-05-19','AplPay IC* ABC FINE ORLANDO             FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1985,'BC-01985','2025-05-20','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1986,'BC-01986','2025-05-20','AMAZON.COM          AMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1987,'BC-01987','2025-05-20','AplPay OCEANSIDE PIZINDIALANTIC         FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1988,'BC-01988','2025-05-21','WWW.WOODIESWASH.COM TAMPA               FL','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1989,'BC-01989','2025-05-21','OLD NAVY ON-LINE 084GROVEPORT           OH','Old Navy','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1990,'BC-01990','2025-05-21','OLD NAVY ON-LINE 084GROVEPORT           OH','Old Navy','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1991,'BC-01991','2025-05-21','OLD NAVY ON-LINE 084GROVEPORT           OH','Old Navy','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1992,'BC-01992','2025-05-21','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1993,'BC-01993','2025-05-21','AplPay MCDONALDS OF ORLANDO             FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1994,'BC-01994','2025-05-21','AplPay MCDONALD\'S   MELBOURNE           FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1995,'BC-01995','2025-05-21','PEACOCK             NEW YORK CITY       NY','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1996,'BC-01996','2025-05-21','Platinum Digital Entertainment Credit','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1997,'BC-01997','2025-05-21','AplPay SP REEF.COM  NEWTON              MA','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1998,'BC-01998','2025-05-22','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(1999,'BC-01999','2025-05-22','AplPay CREAM DE LA CTampa               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2000,'BC-02000','2025-05-22','MACYS   .COM 0000001MASON               OH','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2001,'BC-02001','2025-05-22','PAY* ANGI-MAY23     INDIANAPOLIS        IN','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2002,'BC-02002','2025-05-22','PAY* ANGI-MAY23                         IN','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2003,'BC-02003','2025-05-23','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2004,'BC-02004','2025-05-23','AplPay SPORT CLIPS -TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2005,'BC-02005','2025-05-23','NEUROSPA            TAMPA               FL','Neurospa','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2006,'BC-02006','2025-05-23','SMC # 67065         ST. PETERSBURG      FL','','Bank Charges & Fees','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2007,'BC-02007','2025-05-24','APPLECARE PLAN026104RICHFIELD           MN','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2008,'BC-02008','2025-05-24','7-ELEVEN 37149 00073TAMPA               FL','7 ELEVEN','Fuel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2009,'BC-02009','2025-05-24','FIGMENT.SO          NEW YORK            NY','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2010,'BC-02010','2025-05-24','PAYPAL *KAMYUU1105  XXXXXX7733          HK','Kamyuu','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2011,'BC-02011','2025-05-25','MICROSOFT           MSBILL.INFO','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2012,'BC-02012','2025-05-25','AplPay DUCKWEED LIQUTAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2013,'BC-02013','2025-05-25','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2014,'BC-02014','2025-05-25','BT*MYRIAD WOMEN\'S HESOUTH SAN FRANCISCO CA','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2015,'BC-02015','2025-05-26','AplPay PUBLIX #1808 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2016,'BC-02016','2025-05-26','AplPay MCDONALD\'S   GRAPEVINE           TX','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2017,'BC-02017','2025-05-27','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2018,'BC-02018','2025-05-27','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2019,'BC-02019','2025-05-27','GOOGLE *YOUTUBE TV   G.CO/HELPPAY#      CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2020,'BC-02020','2025-05-27','HOMEDEPOT.COM       800-430-3376        GA','THE HOME DEPOT','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2021,'BC-02021','2025-05-27','AplPay JONI\'S PET SATAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2022,'BC-02022','2025-05-28','APPLECARE PLAN026104RICHFIELD           MN','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2023,'BC-02023','2025-05-28','PPY=TAMPA NEUROPSYCHTAMPA               FL','','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2024,'BC-02024','2025-05-28','HOMEDEPOT.COM       800-430-3376        GA','THE HOME DEPOT','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2025,'BC-02025','2025-05-28','PIPEDRIVE INC       NEW YORK            NY','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2026,'BC-02026','2025-05-29','APPLECARE PLAN026104RICHFIELD           MN','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2027,'BC-02027','2025-05-29','Extra Space 3639    TAMPA               FL','','Storage Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2028,'BC-02028','2025-05-29','AplPay FK WESTSHORE TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2029,'BC-02029','2025-05-30','AMAZON.COM          AMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2030,'BC-02030','2025-05-30','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2031,'BC-02031','2025-05-30','HOSTINGER* HOSTINGERWILMINGTON          DE','Hostinger','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2032,'BC-02032','2025-05-30','KORE WIRELESS       ATLANTA             GA','Kore Wireless','Utilities','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2033,'BC-02033','2025-05-31','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2034,'BC-02034','2025-05-31','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2035,'BC-02035','2025-05-31','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2036,'BC-02036','2025-05-31','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2037,'BC-02037','2025-05-31','AplPay THE HOME DEPOTAMPA               FL','THE HOME DEPOT','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2038,'BC-02038','2025-05-31','FLBLUE* ACA         JACKSONVILLE        FL','florida Blue','Employee Health Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2039,'BC-02039','2025-05-31','FLBLUE* ACA         JACKSONVILLE        FL','florida Blue','Employee Health Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2040,'BC-02040','2025-06-01','FATHOM.VIDEO        SAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2041,'BC-02041','2025-06-01','GOOGLE *CLOUD MV2CNP G.CO/HELPPAY#      CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2042,'BC-02042','2025-06-01','GOOGLE*GSUITE_LITHIUMOUNTAIN VIEW       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2043,'BC-02043','2025-06-01','LINKEDIN SN P6329569MOUNTAIN VIEW','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2044,'BC-02044','2025-06-01','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2045,'BC-02045','2025-06-01','TELADOC 0259        LEWISVILLE          TX','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2046,'BC-02046','2025-06-02','AplPay UBER ONE     help.uber.com       CA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2047,'BC-02047','2025-06-02','BT*DIALPAD MEETINGS SAN RAMON           CA','Dialpad Meetings','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2048,'BC-02048','2025-06-02','WAL-MART SUPERCENTERTAMPA               FL','Walmart','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2049,'BC-02049','2025-06-03','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2050,'BC-02050','2025-06-03','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2051,'BC-02051','2025-06-03','AplPay GREAT EXPLORAST PETERSBURG       FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2052,'BC-02052','2025-06-04','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2053,'BC-02053','2025-06-04','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2054,'BC-02054','2025-06-04','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2055,'BC-02055','2025-06-04','AplPay ASHLEY HOMESTTAMPA               FL','Ashley HomeStore','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2056,'BC-02056','2025-06-04','AplPay ASHLEY HOMESTTAMPA               FL','Ashley HomeStore','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2057,'BC-02057','2025-06-04','MOBILE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2058,'BC-02058','2025-06-04','BONFIRE PREMIUM VENDOAKVILLE','','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2059,'BC-02059','2025-06-04','AplPay SPROUTS FARMETampa               FL','SPROUTS FARMERS MARKET','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2060,'BC-02060','2025-06-05','7-ELEVEN 38123 00073ST PETERSBURG       FL','7 ELEVEN','Fuel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2061,'BC-02061','2025-06-05','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2062,'BC-02062','2025-06-05','MICROSOFT           MSBILL.INFO','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2063,'BC-02063','2025-06-05','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2064,'BC-02064','2025-06-06','BLINK               AMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2065,'BC-02065','2025-06-06','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2066,'BC-02066','2025-06-06','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2067,'BC-02067','2025-06-06','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2068,'BC-02068','2025-06-06','SQSP* INV185094968  NEW YORK            NY','SQUARESPACE','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2069,'BC-02069','2025-06-07','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2070,'BC-02070','2025-06-07','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2071,'BC-02071','2025-06-07','BONFIRE PREMIUM VENDOAKVILLE','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2072,'BC-02072','2025-06-08','AplPay IC* INSTACARTLAKELAND            FL','Instacart','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2073,'BC-02073','2025-06-08','WWW.WOODIESWASH.COM TAMPA               FL','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2074,'BC-02074','2025-06-08','HOOTERS #34 0001    TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2075,'BC-02075','2025-06-08','HOOTERS OF SOUTH TAMTAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2076,'BC-02076','2025-06-09','APPLECARE MNTHLY PLARICHFIELD           MN','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2077,'BC-02077','2025-06-09','SAM\'S CLUB 6403 6403BRANDON             FL','Sam\'s Club','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2078,'BC-02078','2025-06-09','SAM\'S CLUB 6403 6403BRANDON             FL','Sam\'s Club','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2079,'BC-02079','2025-06-09','GOOGLE*YOUTUBE VIDEO G.CO HELPPAY#','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2080,'BC-02080','2025-06-09','JETPACK WERLSWSBW4  SAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2081,'BC-02081','2025-06-09','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2082,'BC-02082','2025-06-09','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2083,'BC-02083','2025-06-09','SPIRIT AIRLINES     SOUTH FLORIDA       FL','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2084,'BC-02084','2025-06-09','MACYS MARKETPLACE 00MASON               OH','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2085,'BC-02085','2025-06-10','BT*SEMRUSH          BOSTON              MA','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2086,'BC-02086','2025-06-10','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2087,'BC-02087','2025-06-10','PADDLE.NET* PREPRODUNEW YORK            NY','Paddle.net','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2088,'BC-02088','2025-06-10','RELUME.IO           DURAL               AU','Relume.IO','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2089,'BC-02089','2025-06-11','AplPay PUBLIX #1722 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2090,'BC-02090','2025-06-11','NEUROSPA            TAMPA               FL','Neurospa','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2091,'BC-02091','2025-06-11','PY *STORQUEST - TAMPTAMPA               FL','Storquest','Storage Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2092,'BC-02092','2025-06-11','CHUCK LAGER AMERICA\'TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2093,'BC-02093','2025-06-12','AplPay PUBLIX #1808 TAMPA               FL','','Business meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2094,'BC-02094','2025-06-12','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2095,'BC-02095','2025-06-12','SERENITY HEALS THERAFORT MYERS          FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2096,'BC-02096','2025-06-13','MICROSOFT           MSBILL.INFO','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2097,'BC-02097','2025-06-13','LINKEDIN PRE P655876MOUNTAIN VIEW','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2098,'BC-02098','2025-06-13','AplPay DUCKWEED LIQUTAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2099,'BC-02099','2025-06-14','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2100,'BC-02100','2025-06-14','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2101,'BC-02101','2025-06-14','APPLE.COM/BILL      INTERNET CHARGE     CA','','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2102,'BC-02102','2025-06-14','AplPay CREAM DE LA CTampa               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2103,'BC-02103','2025-06-16','AplPay PUBLIX #1722 TAMPA               FL','','Business meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2104,'BC-02104','2025-06-16','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2105,'BC-02105','2025-06-16','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2106,'BC-02106','2025-06-18','AplPay THE HOME DEPOTAMPA               FL','THE HOME DEPOT','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2107,'BC-02107','2025-06-18','AplPay SPORT CLIPS -TAMPA               FL','SPORT CLIPS','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2108,'BC-02108','2025-06-18','APPLE.COM/BILL      INTERNET CHARGE     CA','','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2109,'BC-02109','2025-06-19','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2110,'BC-02110','2025-06-19','FIGMA               SAN FRANCISCO       CA','Figma','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2111,'BC-02111','2025-06-19','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2112,'BC-02112','2025-06-19','AplPay PUBLIX #1722 TAMPA               FL','PUBLIX','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2113,'BC-02113','2025-06-20','AplPay DUCKWEED LIQUTAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2114,'BC-02114','2025-06-20','AplPay TOUCHTUNES MUSCHAUMBURG          IL','Touch Tunes','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2115,'BC-02115','2025-06-21','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2116,'BC-02116','2025-06-21','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2117,'BC-02117','2025-06-21','AplPay PIN CHASERS VTAMPA               FL','Pin Chasers','Other Business Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2118,'BC-02118','2025-06-21','AplPay PIN CHASERS VTAMPA               FL','Pin Chasers','Other Business Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2119,'BC-02119','2025-06-21','AplPay PIN CHASERS VTAMPA               FL','Pin Chasers','Other Business Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2120,'BC-02120','2025-06-21','PIN CHASERS VETERANSTAMPA               FL','Pin Chasers','Other Business Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2121,'BC-02121','2025-06-21','PIN CHASERS VETERANSTAMPA               FL','Pin Chasers','Other Business Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2122,'BC-02122','2025-06-21','PEACOCK             NEW YORK CITY       NY','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2123,'BC-02123','2025-06-21','Platinum Digital Entertainment Credit','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2124,'BC-02124','2025-06-21','WWW.WOODIESWASH.COM TAMPA               FL','WOODIES WASH SHACK','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2125,'BC-02125','2025-06-22','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2126,'BC-02126','2025-06-22','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2127,'BC-02127','2025-06-22','AplPay DUCKWEED LIQUTAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2128,'BC-02128','2025-06-23','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2129,'BC-02129','2025-06-23','AplPay CHILL GRILL HTampa               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2130,'BC-02130','2025-06-24','DAVE & BUSTERS #120 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2131,'BC-02131','2025-06-24','DAVE & BUSTERS #120 TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2132,'BC-02132','2025-06-25','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2133,'BC-02133','2025-06-25','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2134,'BC-02134','2025-06-25','MICROSOFT           MSBILL.INFO','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2135,'BC-02135','2025-06-25','AplPay PUBLIX #1722 TAMPA               FL','PUBLIX','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2136,'BC-02136','2025-06-26','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2137,'BC-02137','2025-06-26','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2138,'BC-02138','2025-06-27','GOOGLE *YOUTUBE TV   G.CO/HELPPAY#      CA','Youtube TV','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2139,'BC-02139','2025-06-27','MCDONALD\'S          ROMULUS             MI','MCDONALDS','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2140,'BC-02140','2025-06-28','HAMLIN PUB 650000006SHELBY TOWNSH       MI','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2141,'BC-02141','2025-06-29','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2142,'BC-02142','2025-06-29','Extra Space 3639    TAMPA               FL','','Storage Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2143,'BC-02143','2025-06-29','KORE WIRELESS       ATLANTA             GA','Kore Wireless','Utilities','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2144,'BC-02144','2025-06-29','APPLECARE MNTHLY PLARICHFIELD           MN','Apple Care','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2145,'BC-02145','2025-06-30','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2146,'BC-02146','2025-06-30','AplPay DUCKWEED LIQUTAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2147,'BC-02147','2025-06-30','FLBLUE* ACA         JACKSONVILLE        FL','florida Blue','Employee Health Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2148,'BC-02148','2025-06-30','FLBLUE* ACA         JACKSONVILLE        FL','florida Blue','Employee Health Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2149,'BC-02149','2025-06-30','AplPay IC* ABC FINE ORLANDO             FL','ABC Fine Wine & Spirits','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2150,'BC-02150','2025-07-01','APPLE.COM/BILL      INTERNET CHARGE     CA','','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2151,'BC-02151','2025-07-01','TST* BUDDY\'S PIZZA -DEARBORN            MI','','Business meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2152,'BC-02152','2025-07-01','LINKEDIN SN P6835902MOUNTAIN VIEW','LINKEDIN','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2153,'BC-02153','2025-07-01','PROPAY RESIDENTIAL RTampa               FL\n\nHOA Special Assessment','','Rent & Lease Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2154,'BC-02154','2025-07-01','JEWELERS-MUTUAL-PMNT800-558-6411        WI','','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2155,'BC-02155','2025-07-01','GOOGLE*CLOUD QCMVKK  G.CO HELPPAY#','GOOGLESVCSAPPS','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2156,'BC-02156','2025-07-01','AplPay PUBLIX #1722 TAMPA               FL','PUBLIX','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2157,'BC-02157','2025-07-02','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2158,'BC-02158','2025-07-02','AplPay UBER ONE     help.uber.com       CA','UBER','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2159,'BC-02159','2025-07-02','BT*DIALPAD MEETINGS SAN RAMON           CA','Dialpad Meetings','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2160,'BC-02160','2025-07-02','SPIRIT AIRLINES ONBOIRVING              TX','SPIRIT AIRLINES SPIRIT','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2161,'BC-02161','2025-07-02','MACYS MARKETPLACE 00MASON               OH','','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2162,'BC-02162','2025-07-03','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2163,'BC-02163','2025-07-03','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2164,'BC-02164','2025-07-03','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2165,'BC-02165','2025-07-03','HOOTERS #34 0001    TAMPA               FL','HOOTERS','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2166,'BC-02166','2025-07-03','MCDONALD\'S M2086 000TAMPA               FL','MCDONALDS','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2167,'BC-02167','2025-07-04','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2168,'BC-02168','2025-07-04','AplPay PUBLIX #1722 TAMPA               FL','PUBLIX','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2169,'BC-02169','2025-07-05','APPLE.COM/BILL      INTERNET CHARGE     CA','','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2170,'BC-02170','2025-07-05','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2171,'BC-02171','2025-07-06','BLINK               AMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2172,'BC-02172','2025-07-06','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2173,'BC-02173','2025-07-06','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2174,'BC-02174','2025-07-06','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2175,'BC-02175','2025-07-06','SQSP* INV189046655  NEW YORK            NY','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2176,'BC-02176','2025-07-07','VZWRLSS BILL PAY VE 800-922-0204        FL','Verizon','Utilities','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2177,'BC-02177','2025-07-07','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2178,'BC-02178','2025-07-08','AplPay PUBLIX #1722 TAMPA               FL','PUBLIX','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2179,'BC-02179','2025-07-08','WWW.WOODIESWASH.COM TAMPA               FL','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2180,'BC-02180','2025-07-08','BT*DD *QWENCHJUICE  SAN FRANCISCO       CA','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2181,'BC-02181','2025-07-08','AplPay DRNK & QWENCHTAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2182,'BC-02182','2025-07-09','APPLECARE MNTHLY PLARICHFIELD           MN','Apple Care','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2183,'BC-02183','2025-07-09','JETPACK QNACXGGHAX  SAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2184,'BC-02184','2025-07-09','AplPay PUBLIX #1722 TAMPA               FL','PUBLIX','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2185,'BC-02185','2025-07-09','AplPay CARTER S #131TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2186,'BC-02186','2025-07-10','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2187,'BC-02187','2025-07-10','PADDLE.NET* PREPRODUNEW YORK            NY','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2188,'BC-02188','2025-07-10','PADDLE.NET* PREPRODUNEW YORK            NY','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2189,'BC-02189','2025-07-10','AplPay CREAM DE LA CTampa               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2190,'BC-02190','2025-07-10','AplPay SPROUTS FARMETampa               FL','SPROUTS FARMERS MARKET','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2191,'BC-02191','2025-07-10','AplPay IC* ABC FINE ORLANDO             FL','','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2192,'BC-02192','2025-07-11','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2193,'BC-02193','2025-07-11','PY *STORQUEST - TAMPTAMPA               FL','Storquest','Storage Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2194,'BC-02194','2025-07-12','AplPay PUBLIX #1722 TAMPA               FL','PUBLIX','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2195,'BC-02195','2025-07-12','AplPay IC* INSTACARTLAKELAND            FL','Instacart','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2196,'BC-02196','2025-07-12','AplPay MANHATTAN NAITAMPA               FL','','Business meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2197,'BC-02197','2025-07-13','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2198,'BC-02198','2025-07-13','LINKEDIN PRE P702474MOUNTAIN VIEW','LINKEDIN','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2199,'BC-02199','2025-07-13','MICROSOFT           MSBILL.INFO','MICROSOFT OFFICE','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2200,'BC-02200','2025-07-13','SPORT CLIPS - FL111 TAMPA               FL','SPORT CLIPS','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2201,'BC-02201','2025-07-13','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2202,'BC-02202','2025-07-14','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2203,'BC-02203','2025-07-14','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2204,'BC-02204','2025-07-14','AplPay TARGET       TAMPA               FL','TARGET','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2205,'BC-02205','2025-07-14','TELADOC 0259        LEWISVILLE          TX','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2206,'BC-02206','2025-07-15','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2207,'BC-02207','2025-07-15','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2208,'BC-02208','2025-07-15','AplPay PUBLIX #1722 TAMPA               FL','PUBLIX','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2209,'BC-02209','2025-07-15','713 TAMPA DALE MABRYTAMPA               FL','','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2210,'BC-02210','2025-07-16','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2211,'BC-02211','2025-07-16','AplPay MCDONALD\'S M2TAMPA               FL','MCDONALDS','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2212,'BC-02212','2025-07-17','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2213,'BC-02213','2025-07-18','APPLE.COM/BILL      INTERNET CHARGE     CA','','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2214,'BC-02214','2025-07-18','APPLE.COM/BILL      INTERNET CHARGE     CA','','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2215,'BC-02215','2025-07-18','ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250718 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX5506447 EED:250718 IND ID:W8910 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6447 TC','American Express','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2216,'BC-02216','2025-07-18','AplPay PUBLIX #1808 TAMPA               FL','PUBLIX','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2217,'BC-02217','2025-07-19','LATE FEE','','Bank Charges & Fees','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2218,'BC-02218','2025-07-19','FIGMA               SAN FRANCISCO       CA','Figma','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2219,'BC-02219','2025-07-19','WALGREENS           TAMPA               FL','Walgreens','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2220,'BC-02220','2025-07-19','TELADOC 0259        LEWISVILLE          TX','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2221,'BC-02221','2025-07-19','AplPay ZENOTIUSA_POSTAMPA               FL','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2222,'BC-02222','2025-07-20','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2223,'BC-02223','2025-07-21','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2224,'BC-02224','2025-07-21','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2225,'BC-02225','2025-07-21','PEACOCK             NEW YORK CITY       NY','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2226,'BC-02226','2025-07-21','AplPay LITTLE CAESARTAMPA               FL','Little Caesars','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2227,'BC-02227','2025-07-21','WWW.WOODIESWASH.COM TAMPA               FL','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2228,'BC-02228','2025-07-21','VRBO                512-759-0902        TX','VRBO','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2229,'BC-02229','2025-07-21','Platinum Digital Entertainment Credit','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2230,'BC-02230','2025-07-21','CSA-GGA-DAM/TRIPINSUSAN DIEGO           CA','C S','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2231,'BC-02231','2025-07-22','AplPay PUBLIX #1722 TAMPA               FL','PUBLIX','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2232,'BC-02232','2025-07-22','IC* INSTACART*SUBSCRSAN FRANCISCO       CA','Instacart','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2233,'BC-02233','2025-07-22','GiftHealth*LillyDire833-6144438         OH','','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2234,'BC-02234','2025-07-23','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2235,'BC-02235','2025-07-23','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2236,'BC-02236','2025-07-24','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2237,'BC-02237','2025-07-24','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2238,'BC-02238','2025-07-25','MICROSOFT           MSBILL.INFO','MICROSOFT OFFICE','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2239,'BC-02239','2025-07-25','AplPay PUBLIX #1722 TAMPA               FL','PUBLIX','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2240,'BC-02240','2025-07-25','WALGREENS           TAMPA               FL','Walgreens','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2241,'BC-02241','2025-07-26','AplPay DUCKWEED WD ITAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2242,'BC-02242','2025-07-26','SAM\'S CLUB 6403 6403BRANDON             FL','Sam\'s Club','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2243,'BC-02243','2025-07-26','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2244,'BC-02244','2025-07-26','SAM\'S CLUB 6403 6403BRANDON             FL','Sam\'s Club','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2245,'BC-02245','2025-07-27','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2246,'BC-02246','2025-07-27','GOOGLE *YOUTUBE TV   G.CO/HELPPAY#      CA','Youtube TV','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2247,'BC-02247','2025-07-27','AplPay IC* INSTACARTLAKELAND            FL','Instacart','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2248,'BC-02248','2025-07-27','AplPay BOSSY LEMON  Tampa               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2249,'BC-02249','2025-07-28','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2250,'BC-02250','2025-07-29','APPLECARE MNTHLY PLARICHFIELD           MN','Apple Care','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2251,'BC-02251','2025-07-29','FREIGHTQUOTE.COM INCKANSAS CITY         MO','FREIGHTQUOTE','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2252,'BC-02252','2025-07-29','Extra Space 3639    TAMPA               FL','','Storage Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2253,'BC-02253','2025-07-29','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2254,'BC-02254','2025-07-30','AplPay PUBLIX #1722 TAMPA               FL','PUBLIX','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2255,'BC-02255','2025-07-30','KORE WIRELESS       ATLANTA             GA','Kore Wireless','Utilities','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2256,'BC-02256','2025-07-31','WALGREENS           TAMPA               FL','Walgreens','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2257,'BC-02257','2025-07-31','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2258,'BC-02258','2025-07-31','FLBLUE* ACA         JACKSONVILLE        FL','florida Blue','Employee Health Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2259,'BC-02259','2025-07-31','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2260,'BC-02260','2025-07-31','AplPay MANHATTAN NAITAMPA               FL','','Business meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2261,'BC-02261','2025-07-31','FLBLUE* ACA         JACKSONVILLE        FL','florida Blue','Owner\'s drawings','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2262,'BC-02262','2025-08-01','GOOGLE *CLOUD PH6XZP G.CO/HELPPAY#      CA','GOOGLESVCSAPPS','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2263,'BC-02263','2025-08-01','AplPay PUBLIX #1722 TAMPA               FL','PUBLIX','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2264,'BC-02264','2025-08-01','AplPay IC* INSTACARTLAKELAND            FL','Instacart','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2265,'BC-02265','2025-08-01','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2266,'BC-02266','2025-08-01','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2267,'BC-02267','2025-08-02','AplPay UBER ONE     help.uber.com       CA','UBER','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2268,'BC-02268','2025-08-02','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2269,'BC-02269','2025-08-02','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2270,'BC-02270','2025-08-02','BT*DIALPAD MEETINGS SAN RAMON           CA','Dialpad Meetings','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2271,'BC-02271','2025-08-04','AplPay PUBLIX #1808 TAMPA               FL','PUBLIX','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2272,'BC-02272','2025-08-04','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2273,'BC-02273','2025-08-04','BT*DIALPAD MEETINGS SAN RAMON           CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2274,'BC-02274','2025-08-04','AplPay LECADA LLC 00TAMPA               FL','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2275,'BC-02275','2025-08-04','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2276,'BC-02276','2025-08-04','AplPay TARGET       TAMPA               FL','TARGET','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2277,'BC-02277','2025-08-04','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2278,'BC-02278','2025-08-04','AplPay STARBUCKS STOTAMPA               FL','STARBUCKS','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2279,'BC-02279','2025-08-04','AplPay SPROUTS FARMETampa               FL','SPROUTS FARMERS MARKET','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2280,'BC-02280','2025-08-05','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2281,'BC-02281','2025-08-05','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2282,'BC-02282','2025-08-05','PADDLE.NET* MACPAW.CNEW YORK            NY','Paddle.net','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2283,'BC-02283','2025-08-05','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2284,'BC-02284','2025-08-06','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2285,'BC-02285','2025-08-06','BLINK               AMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2286,'BC-02286','2025-08-06','SQSP* WEBSIT#1931741NEW YORK            NY','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2287,'BC-02287','2025-08-07','AplPay PUBLIX #1808 TAMPA               FL','PUBLIX','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2288,'BC-02288','2025-08-07','AplPay SPORT CLIPS -TAMPA               FL','SPORT CLIPS','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2289,'BC-02289','2025-08-07','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2290,'BC-02290','2025-08-07','AplPay TARGET       TAMPA               FL','TARGET','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2291,'BC-02291','2025-08-08','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2292,'BC-02292','2025-08-08','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2293,'BC-02293','2025-08-08','SERENITY HEALS THERAFORT MYERS          FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2294,'BC-02294','2025-08-08','WWW.WOODIESWASH.COM TAMPA               FL','WOODIES WASH SHACK','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2295,'BC-02295','2025-08-09','APPLECARE MNTHLY PLARICHFIELD           MN','Apple Care','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2296,'BC-02296','2025-08-09','AplPay SP SAND SURF TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2297,'BC-02297','2025-08-09','AplPay ZITNIK TRAINSPINELLAS PARK       FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2298,'BC-02298','2025-08-10','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2299,'BC-02299','2025-08-10','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2300,'BC-02300','2025-08-10','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2301,'BC-02301','2025-08-11','AplPay PUBLIX #1722 TAMPA               FL','PUBLIX','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2302,'BC-02302','2025-08-11','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2303,'BC-02303','2025-08-11','AplPay TARGET       TAMPA               FL','TARGET','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2304,'BC-02304','2025-08-11','PY *STORQUEST - TAMPTAMPA               FL','Storquest','Storage Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2305,'BC-02305','2025-08-12','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2306,'BC-02306','2025-08-12','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2307,'BC-02307','2025-08-13','LINKEDIN PRE P756314MOUNTAIN VIEW','LINKEDIN','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2308,'BC-02308','2025-08-13','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2309,'BC-02309','2025-08-13','MICROSOFT           MSBILL.INFO','MICROSOFT OFFICE','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2310,'BC-02310','2025-08-13','GiftHealth*LillyDire833-6144438         OH','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2311,'BC-02311','2025-08-15','AplPay PUBLIX #1722 TAMPA               FL','PUBLIX','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2312,'BC-02312','2025-08-15','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2313,'BC-02313','2025-08-15','HOOTERS #34 0001    TAMPA               FL','HOOTERS','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2314,'BC-02314','2025-08-16','AplPay PUBLIX #1688 INDIALANTIC         FL','PUBLIX','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2315,'BC-02315','2025-08-16','AplPay ABC FINE WINEINDIALANTIC         FL','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2316,'BC-02316','2025-08-16','AplPay ABC FINE WINEINDIALANTIC         FL','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2317,'BC-02317','2025-08-16','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2318,'BC-02318','2025-08-16','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2319,'BC-02319','2025-08-17','AplPay RON JON SURF COCOA BEACH         FL','Ron Jon Surf Shop','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2320,'BC-02320','2025-08-17','AplPay 5600 NORTH HAMELBOURNE           FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2321,'BC-02321','2025-08-18','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2322,'BC-02322','2025-08-19','AplPay IC* ABC FINE ORLANDO             FL','ABC Fine Wine & Spirits','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2323,'BC-02323','2025-08-20','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2324,'BC-02324','2025-08-21','AplPay OCEANSIDE PIZINDIALANTIC         FL','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2325,'BC-02325','2025-08-21','PEACOCK             NEW YORK CITY       NY','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2326,'BC-02326','2025-08-21','Platinum Digital Entertainment Credit','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2327,'BC-02327','2025-08-21','WWW.WOODIESWASH.COM TAMPA               FL','WOODIES WASH SHACK','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2328,'BC-02328','2025-08-21','AplPay IC* ABC FINE ORLANDO             FL','ABC Fine Wine & Spirits','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2329,'BC-02329','2025-08-22','RON JON SURF SHOP   COCOA BEACH         FL','Ron Jon Surf Shop','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2330,'BC-02330','2025-08-23','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2331,'BC-02331','2025-08-23','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2332,'BC-02332','2025-08-23','SHOGUN              COVINA              CA','Shogun','Business meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2333,'BC-02333','2025-08-24','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2334,'BC-02334','2025-08-24','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2335,'BC-02335','2025-08-24','SP SAND SURF CO     TAMPA               FL','Sand Surf Co','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2336,'BC-02336','2025-08-24','AplPay SP SAND SURF TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2337,'BC-02337','2025-08-24','AplPay CREAM DE LA CTampa               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2338,'BC-02338','2025-08-24','SHOGUN              COVINA              CA','Shogun','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2339,'BC-02339','2025-08-25','AplPay TARGET       TAMPA               FL','TARGET','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2340,'BC-02340','2025-08-25','MICROSOFT           MSBILL.INFO','MICROSOFT OFFICE','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2341,'BC-02341','2025-08-25','THE WOMANS GROUP OF TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2342,'BC-02342','2025-08-25','THE WOMANS GROUP OF TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2343,'BC-02343','2025-08-26','AplPay PUBLIX #1722 TAMPA               FL','PUBLIX','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2344,'BC-02344','2025-08-26','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2345,'BC-02345','2025-08-26','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2346,'BC-02346','2025-08-26','AplPay CREAM DE LA CTampa               FL','','Business meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2347,'BC-02347','2025-08-27','SP SAND SURF CO     TAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2348,'BC-02348','2025-08-28','WAL-MART SUPERCENTERTAMPA               FL','Walmart','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2349,'BC-02349','2025-08-28','HOOTERS #34 0001    TAMPA               FL','HOOTERS','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2350,'BC-02350','2025-08-28','AplPay TOUCHTUNES MUSCHAUMBURG          IL','Touch Tunes','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2351,'BC-02351','2025-08-28','PY *PDQ - SOUTH TAMPTAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2352,'BC-02352','2025-08-28','MOBILE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2353,'BC-02353','2025-08-29','AplPay DUCKWEED WD ITAMPA               FL','Duckweed','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2354,'BC-02354','2025-08-29','APPLECARE MNTHLY PLARICHFIELD           MN','Apple Care','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2355,'BC-02355','2025-08-29','KORE WIRELESS       ATLANTA             GA','Kore Wireless','Utilities','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2356,'BC-02356','2025-08-29','Extra Space 3639    TAMPA               FL','','Storage Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2357,'BC-02357','2025-08-29','WALMART.COM         WALMART.COM         AR','Walmart','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2358,'BC-02358','2025-08-29','ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250829 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX6353453 EED:250829 IND ID:M9752 IND NAME:NATHAN STARON ER AM TRN: XXXXXX3453 TC','American Express','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2359,'BC-02359','2025-08-29','ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250829 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX6353429 EED:250829 IND ID:M8876 IND NAME:NATHAN STARON ER AM TRN: XXXXXX3429 TC','American Express','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2360,'BC-02360','2025-08-30','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2361,'BC-02361','2025-08-31','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2362,'BC-02362','2025-09-01','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2363,'BC-02363','2025-09-01','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2364,'BC-02364','2025-09-01','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2365,'BC-02365','2025-09-01','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2366,'BC-02366','2025-09-01','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2367,'BC-02367','2025-09-01','','StrataGem Risk, LLC','Litigation Expense Accrual','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2368,'BC-02368','2025-09-02','AplPay UBER ONE     help.uber.com       CA','UBER','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2369,'BC-02369','2025-09-02','AplPay DUCKWEED GROCTAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2370,'BC-02370','2025-09-02','ATHLETA ONLINE      GROVE CITY          OH','','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2371,'BC-02371','2025-09-02','AplPay JONI\'S PET SATAMPA               FL','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2372,'BC-02372','2025-09-03','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2373,'BC-02373','2025-09-03','AplPay DUCKWEED GROCTAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2374,'BC-02374','2025-09-03','AplPay TARGET       TAMPA               FL','TARGET','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2375,'BC-02375','2025-09-03','AplPay TARGET       TAMPA               FL','TARGET','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2376,'BC-02376','2025-09-03','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2377,'BC-02377','2025-09-03','FREIGHTQUOTE.COM INCKANSAS CITY         MO','FREIGHTQUOTE','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2378,'BC-02378','2025-09-04','SAM\'S CLUB 6403 6403BRANDON             FL','Sam\'s Club','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2379,'BC-02379','2025-09-05','AplPay DUCKWEED GROCTAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2380,'BC-02380','2025-09-05','AplPay PUBLIX #1722 TAMPA               FL','PUBLIX','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2381,'BC-02381','2025-09-05','AplPay DUCKWEED GROCTAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2382,'BC-02382','2025-09-06','AplPay DUCKWEED GROCTAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2383,'BC-02383','2025-09-06','SQSP* WEBSIT#1993604NEW YORK            NY','','Website Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2384,'BC-02384','2025-09-06','AplPay GOFUNDME     SAN DIEGO           CA','','Donations','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2385,'BC-02385','2025-09-06','AplPay IC* ABC FINE ORLANDO             FL','ABC Fine Wine & Spirits','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2386,'BC-02386','2025-09-06','BLINK               AMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2387,'BC-02387','2025-09-08','AplPay PUBLIX #1722 TAMPA               FL','PUBLIX','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2388,'BC-02388','2025-09-08','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2389,'BC-02389','2025-09-08','WAL-MART SUPERCENTERTAMPA               FL','','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2390,'BC-02390','2025-09-08','GiftHealth*LillyDire833-6144438         OH','','Officer\'s Life Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2391,'BC-02391','2025-09-08','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2392,'BC-02392','2025-09-08','WWW.WOODIESWASH.COM TAMPA               FL','WOODIES WASH SHACK','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2393,'BC-02393','2025-09-09','AplPay DUCKWEED GROCTAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2394,'BC-02394','2025-09-09','AplPay CREAM DE LA CTampa               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2395,'BC-02395','2025-09-09','APPLECARE MNTHLY PLARICHFIELD           MN','Apple Care','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2396,'BC-02396','2025-09-10','AplPay DUCKWEED GROCTAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2397,'BC-02397','2025-09-10','AplPay DUCKWEED GROCTAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2398,'BC-02398','2025-09-10','AplPay PUBLIX #1722 TAMPA               FL','PUBLIX','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2399,'BC-02399','2025-09-11','VZWRLSS BILL PAY VE 800-922-0204        FL','Verizon','Utilities','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2400,'BC-02400','2025-09-11','PY *STORQUEST - TAMPTAMPA               FL','Storquest','Storage Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2401,'BC-02401','2025-09-12','WALGREENS           TAMPA               FL','Walgreens','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2402,'BC-02402','2025-09-12','AplPay SPORT CLIPS -TAMPA               FL','SPORT CLIPS','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2403,'BC-02403','2025-09-13','LINKEDIN PRE P811231MOUNTAIN VIEW','LINKEDIN','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2404,'BC-02404','2025-09-13','MICROSOFT           MSBILL.INFO','MICROSOFT OFFICE','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2405,'BC-02405','2025-09-14','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2406,'BC-02406','2025-09-15','AplPay SPROUTS FARMETampa               FL','SPROUTS FARMERS MARKET','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2407,'BC-02407','2025-09-15','AplPay TST* MICKEY STAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2408,'BC-02408','2025-09-18','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2409,'BC-02409','2025-09-18','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2410,'BC-02410','2025-09-18','APPLE.COM/BILL      INTERNET CHARGE     CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2411,'BC-02411','2025-09-19','LATE FEE','','Bank Charges & Fees','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2412,'BC-02412','2025-09-19','AplPay PUBLIX #1722 TAMPA               FL','PUBLIX','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2413,'BC-02413','2025-09-21','WWW.WOODIESWASH.COM TAMPA               FL','WOODIES WASH SHACK','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2414,'BC-02414','2025-09-21','Platinum Digital Entertainment Credit','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2415,'BC-02415','2025-09-21','PEACOCK             NEW YORK CITY       NY','','Shareholder Distributions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2416,'BC-02416','2025-09-22','CUSTOMER SERVICE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2417,'BC-02417','2025-09-22','AplPay CHIPOTLE     TAMPA               FL','CHIPOTLE','Business meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2418,'BC-02418','2025-09-22','AplPay PANERA BREAD TAMPA               FL','Panera Bread','Business meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2419,'BC-02419','2025-09-23','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2420,'BC-02420','2025-09-24','AplPay UBER EATS    HTTPS://HELP.UBER.COCA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2421,'BC-02421','2025-01-04','AUTOPAY PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2422,'BC-02422','2025-01-08','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2423,'BC-02423','2025-01-10','Interest Charge on Pay Over Time Purchases','','Interest Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2424,'BC-02424','2025-01-17','MOBILE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2425,'BC-02425','2025-01-18','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2426,'BC-02426','2025-01-28','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2427,'BC-02427','2025-02-18','PITAP - LDG - HR PitPITTSBURGH          PA','','Business meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2428,'BC-02428','2025-02-18','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2429,'BC-02429','2025-02-21','HOOTERS #34 0001    TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2430,'BC-02430','2025-02-22','CIRCLE K 08811/CIRCLTAMPA               FL','','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2431,'BC-02431','2025-02-22','TAMPA BAY DOWNS - FOTAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2432,'BC-02432','2025-02-23','AMERICAN EXPRESS TRASEATTLE             WA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2433,'BC-02433','2025-02-23','AMERICAN EXPRESS TRASEATTLE             WA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2434,'BC-02434','2025-02-23','TRAVELOUTLET CASH 93ALHAMBRA            CA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2435,'BC-02435','2025-02-23','TST* TAMPA BAY BREWITAMPA               FL','','Business meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2436,'BC-02436','2025-02-28','SHELL SERVICE STATIOVERO BEACH          FL','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2437,'BC-02437','2025-03-01','VZWIRELESS MY VZ VE 800-922-0204        FL','','Utilities','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2438,'BC-02438','2025-03-01','THE HOME DEPOT      TAMPA               FL','','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2439,'BC-02439','2025-03-05','AMEXTRAVEL.COM      800-297-2977        WA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2440,'BC-02440','2025-03-06','REGAL AIRPORT HOTEL CHEK LAP KOK        HK','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2441,'BC-02441','2025-03-06','REGAL AIRPORT HOTEL CHEK LAP KOK        HK','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2442,'BC-02442','2025-03-06','REGAL AIRPORT HOTEL CHEK LAP KOK        HK','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2443,'BC-02443','2025-03-07','HOOTERS #34 0001    TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2444,'BC-02444','2025-03-08','CIRCLE K 08811/CIRCLTAMPA               FL','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2445,'BC-02445','2025-03-08','7-ELEVEN 37149 00073TAMPA               FL','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2446,'BC-02446','2025-03-11','XAI LLC             PALO ALTO           CA','','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2447,'BC-02447','2025-03-12','Wireless Credit','','Telephone Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2448,'BC-02448','2025-03-13','TECO/PEOPLES GAS    813-223-0800        FL','','Utilities','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2449,'BC-02449','2025-03-13','KUBRA/TECO CONV FEE 800-766-6616        NJ','','Utilities','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2450,'BC-02450','2025-03-14','HOOTERS #34 0001    TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2451,'BC-02451','2025-03-14','HOOTERS #34 0001    TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2452,'BC-02452','2025-03-21','TST* GREENLANE - GANTAMPA               FL','','Business meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2453,'BC-02453','2025-03-21','S REG GAR EVENT 0327TAMPA               FL','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2454,'BC-02454','2025-03-22','CIRCLE K 08811/CIRCLTAMPA               FL','','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2455,'BC-02455','2025-03-23','TST* AZTECA DORO BRABRANDON             FL','','Business meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2456,'BC-02456','2025-03-25','AMERICAN EXPRESS TRASEATTLE             WA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2457,'BC-02457','2025-03-25','FRONTIER AIRLINES AIDENVER              CO','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2458,'BC-02458','2025-03-25','CATHAY PACIFIC AIRWAHONG KONG           HK','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2459,'BC-02459','2025-03-27','HOOTERS #34 0001    TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2460,'BC-02460','2025-03-28','Bar Design A/S E TPATAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2461,'BC-02461','2025-03-28','Bar Design A/S E TPATAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2462,'BC-02462','2025-03-29','FRONTIER AIRLINES ONIRVING              TX','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2463,'BC-02463','2025-03-30','MCDONALD\'S          SANFORD             FL','','Business meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2464,'BC-02464','2025-04-02','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2465,'BC-02465','2025-04-02','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2466,'BC-02466','2025-04-04','CATHAY PACIFIC AIRWAHONG KONG           HK','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2467,'BC-02467','2025-04-04','CATHAY PACIFIC AIRWAVANCOUVER           CA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2468,'BC-02468','2025-04-04','CATHAY PACIFIC AIRWAHONG KONG           HK','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2469,'BC-02469','2025-04-04','CATHAY PACIFIC AIRWAVANCOUVER           CA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2470,'BC-02470','2025-04-04','HOOTERS #34 0001    TAMPA               FL','HOOTERS','Business meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2471,'BC-02471','2025-04-04','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2472,'BC-02472','2025-04-07','CATHAY PACIFIC AIRWAHONG KONG           HK','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2473,'BC-02473','2025-04-10','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2474,'BC-02474','2025-04-11','XAI LLC             PALO ALTO           CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2475,'BC-02475','2025-04-11','MOBILE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2476,'BC-02476','2025-04-15','SPIRIT AIRLINES     SOUTH FLORIDA       FL','SPIRIT AIRLINES SPIRIT','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2477,'BC-02477','2025-04-15','RETURN PAYMENT FEE','','Interest Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2478,'BC-02478','2025-04-18','HOOTERS #34 0001    TAMPA               FL','HOOTERS','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2479,'BC-02479','2025-04-18','GANDY CITGO 00034666TAMPA               FL','Citgo','Fuel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2480,'BC-02480','2025-04-20','HOOTERS #34 0001    TAMPA               FL','HOOTERS','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2481,'BC-02481','2025-04-20','RACETRAC2571  025718FORT MYERS          FL','RACETRAC','Fuel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2482,'BC-02482','2025-04-21','SHERATON GATEWAY RSTMISSISSAUGA','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2483,'BC-02483','2025-04-21','COLUMBIA CAFE       TAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2484,'BC-02484','2025-04-21','Bar Design A/S E TPATAMPA               FL','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2485,'BC-02485','2025-04-22','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2486,'BC-02486','2025-04-24','SHENZHENSHIZHUJIANGHSHENZHEN','','COGS - Custom Batteries','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2487,'BC-02487','2025-04-26','OCEAN PARK CORPORATIHONG KONG           HK','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2488,'BC-02488','2025-04-26','VIEW ENTERPRISE LIMIHONG KONG           HK','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2489,'BC-02489','2025-04-26','MAXIM\'S PALACE - CITCENTRAL             HK','','Business meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2490,'BC-02490','2025-04-27','VISTAPRINT          WALTHAM             MA','VISTAPRINT','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2491,'BC-02491','2025-04-27','VISTAPRINT          WALTHAM             MA','VISTAPRINT','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2492,'BC-02492','2025-04-27','VIEW ENTERPRISE LIMIHONG KONG           HK','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2493,'BC-02493','2025-04-28','HOTEL ICON - FRONT OTSIM SHA TSUI EAST  HK','hotels','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2494,'BC-02494','2025-04-30','AMEXTRAVEL.COM      800-297-2977        WA','Amex Travel','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2495,'BC-02495','2025-04-30','MOD DISPLAYS        HARRISONBURG        VA','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2496,'BC-02496','2025-05-01','RAMADA PLAZA BY WYNDBEIJING','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2497,'BC-02497','2025-05-02','RAMADA PLAZA BY WYNDBEIJING','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2498,'BC-02498','2025-05-02','RAMADA PLAZA BY WYNDBEIJING','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2499,'BC-02499','2025-05-02','BOC HK GCAG*MTR-AIRPHong Kong           HK','','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2500,'BC-02500','2025-05-03','UBER EATS           help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2501,'BC-02501','2025-05-03','NOBEL BURGER        MISSISSAUGA','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2502,'BC-02502','2025-05-05','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2503,'BC-02503','2025-05-06','VISTAPRINT          WALTHAM             MA','VISTAPRINT','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2504,'BC-02504','2025-05-06','WAL-MART SUPERCENTERTAMPA               FL','Walmart','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2505,'BC-02505','2025-05-06','FT BROOK GAR DAILY 0TAMPA               FL','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2506,'BC-02506','2025-05-07','CLARION EVENTS INC  TULSA               OK','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2507,'BC-02507','2025-05-09','HOOTERS #34 0001    TAMPA               FL','HOOTERS','Business meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2508,'BC-02508','2025-05-09','Uber Trip           help.uber.com       CA','UBER','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2509,'BC-02509','2025-05-09','THE HOME DEPOT      TAMPA               FL','THE HOME DEPOT','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2510,'BC-02510','2025-05-11','ABC FINE WINE/SPIRITINDIALANTIC         FL','ABC Fine Wine & Spirits','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2511,'BC-02511','2025-05-11','XAI LLC             PALO ALTO           CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2512,'BC-02512','2025-05-11','WAWA FUEL/CONVENIENCDAVENPORT           FL','WAWA','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2513,'BC-02513','2025-05-12','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2514,'BC-02514','2025-05-13','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2515,'BC-02515','2025-05-14','UBER EATS           help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2516,'BC-02516','2025-05-16','UBER EATS           HTTPS://HELP.UBER.COCA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2517,'BC-02517','2025-05-16','UBER EATS           HTTPS://HELP.UBER.COCA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2518,'BC-02518','2025-05-18','TRIP.COM            CITY OF WILMINGTON','','Utilities','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2519,'BC-02519','2025-05-18','AMERICAN EXPRESS TRASEATTLE             WA','American Express','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2520,'BC-02520','2025-05-21','UBER EATS           help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2521,'BC-02521','2025-05-21','EXXONMOBIL 9755     ORLANDO             FL','Exxon','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2522,'BC-02522','2025-05-22','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2523,'BC-02523','2025-05-23','UBER EATS           help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2524,'BC-02524','2025-05-24','UBER EATS           help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2525,'BC-02525','2025-05-24','UBER EATS           help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2526,'BC-02526','2025-05-24','7-ELEVEN 37149 00073TAMPA               FL','7 ELEVEN','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2527,'BC-02527','2025-05-24','7-ELEVEN 37149 00073TAMPA               FL','7 ELEVEN','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2528,'BC-02528','2025-05-27','TIE DAO BU ZI JING QBEIJING','','COGS - Shipping','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2529,'BC-02529','2025-05-28','TRIP.COM            CITY OF WILMINGTON','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2530,'BC-02530','2025-05-28','TRIP.COM            CITY OF WILMINGTON','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2531,'BC-02531','2025-05-29','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2532,'BC-02532','2025-05-30','AMERICANAIRLINES PACIRVINE              CA','American Airlines','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2533,'BC-02533','2025-05-30','SHAKESHACK          shanghaishi','','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2534,'BC-02534','2025-06-01','UBER EATS           help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2535,'BC-02535','2025-06-02','THEA Collect 8772585TAMPA               FL','Thea Collect','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2536,'BC-02536','2025-06-03','SUNPASS*ACC5797382  888-865-5352        FL','SUNPASS','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2537,'BC-02537','2025-06-04','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2538,'BC-02538','2025-06-06','HOOTERS #34 0001    TAMPA               FL','HOOTERS','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2539,'BC-02539','2025-06-06','UBER EATS           help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2540,'BC-02540','2025-06-06','THE HOME DEPOT      TAMPA               FL','THE HOME DEPOT','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2541,'BC-02541','2025-06-06','HELP.USEMOTION.COM  SAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2542,'BC-02542','2025-06-07','DNH*GODADDY#37753959Tempe               AZ','GODADDY','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2543,'BC-02543','2025-06-07','Oceanpayment*wondersHK                  HK','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2544,'BC-02544','2025-06-09','ZOOM.COM 888-799-966SAN JOSE            CA','Zoom','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2545,'BC-02545','2025-06-11','XAI LLC             PALO ALTO           CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2546,'BC-02546','2025-06-11','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2547,'BC-02547','2025-06-11','CANVA* I04544-839394CAMDEN              DE','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2548,'BC-02548','2025-06-13','HOOTERS #34 0001    TAMPA               FL','HOOTERS','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2549,'BC-02549','2025-06-13','HOOTERS #34 0001    TAMPA               FL','HOOTERS','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2550,'BC-02550','2025-06-17','UBER EATS           help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2551,'BC-02551','2025-06-17','UBER EATS           help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2552,'BC-02552','2025-06-17','APPLE ONLINE STORE  CUPERTINO           CA','Apple.com','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2553,'BC-02553','2025-06-17','THE HOME DEPOT      TAMPA               FL','THE HOME DEPOT','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2554,'BC-02554','2025-06-18','WAWA 5301 0000      TAMPA               FL','WAWA','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2555,'BC-02555','2025-06-19','EMAIL HELP@CLOUDHQ.NSAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2556,'BC-02556','2025-06-19','SHANNA & BRYAN GLAZETAMPA               FL\n\nTampa Bay Manufacturing Association - Networking','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2557,'BC-02557','2025-06-20','HOOTERS #34 0001    TAMPA               FL','HOOTERS','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2558,'BC-02558','2025-06-22','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2559,'BC-02559','2025-06-24','BT*DIALPAD          SAN RAMON           CA','Dialpad Meetings','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2560,'BC-02560','2025-06-26','SUNPASS*ACC5797382  888-865-5352        FL','SUNPASS','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2561,'BC-02561','2025-06-27','HOOTERS #34 0001    TAMPA               FL','HOOTERS','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2562,'BC-02562','2025-06-28','PIPEDRIVE INC       NEW YORK            NY','PipeDrive','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2563,'BC-02563','2025-07-01','UBER EATS           help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2564,'BC-02564','2025-07-01','GOOGLE *GSUITE_LITHICC@GOOGLE.COM       CA','GOOGLESVCSAPPS','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2565,'BC-02565','2025-07-01','FATHOM.VIDEO        SAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2566,'BC-02566','2025-07-03','7-ELEVEN 37149 00073TAMPA               FL','7 ELEVEN','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2567,'BC-02567','2025-07-04','UBER EATS           help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2568,'BC-02568','2025-07-05','TECO/PEOPLES GAS    813-223-0800        FL','Kubra','Utilities','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2569,'BC-02569','2025-07-05','KUBRA/TECO CONV FEE 800-766-6616        NJ','Kubra','Utilities','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2570,'BC-02570','2025-07-06','HELP.USEMOTION.COM  SAN FRANCISCO       CA','Usemotion.com','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2571,'BC-02571','2025-07-08','ZOOM.COM 888-799-966SAN JOSE            CA','Zoom','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2572,'BC-02572','2025-07-09','UBER EATS           help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2573,'BC-02573','2025-07-09','THE HOME DEPOT 6327 TAMPA               FL','THE HOME DEPOT','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2574,'BC-02574','2025-07-10','Interest Charge on Pay Over Time Purchases','Interest Charge','Interest Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2575,'BC-02575','2025-07-11','HOOTERS #34 0001    TAMPA               FL','HOOTERS','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2576,'BC-02576','2025-07-11','CANVA* I04574-775316CAMDEN              DE','CANVA','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2577,'BC-02577','2025-07-11','XAI LLC             PALO ALTO           CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2578,'BC-02578','2025-07-14','UBER THEORIGINALW   HTTPS://HELP.UBER.COCA','UBER','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2579,'BC-02579','2025-07-14','7-ELEVEN 37149 00073TAMPA               FL','7 ELEVEN','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2580,'BC-02580','2025-07-14','THE HOME DEPOT 6327 TAMPA               FL','THE HOME DEPOT','Supplies Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2581,'BC-02581','2025-07-15','PAYPAL *FIXNFLYDRON XXXXXX7733          FL','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2582,'BC-02582','2025-07-16','FEDEX38859838 FedEx MEMPHIS             TN','FedEx','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2583,'BC-02583','2025-07-16','INSURANCE PAYMENT FEDURHAM              NC','','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2584,'BC-02584','2025-07-16','STRATAGEM RISK LLC 9ST PETERSBURG       FL','','Litigation Expense Accrual','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2585,'BC-02585','2025-07-16','UPS*                800-811-1648        GA','UPS STORE','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2586,'BC-02586','2025-07-17','HOOTERS #34 0001    TAMPA               FL','HOOTERS','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2587,'BC-02587','2025-07-17','DNH*GODADDY#38206879Tempe               AZ','GODADDY','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2588,'BC-02588','2025-07-18','UBER EATS           help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2589,'BC-02589','2025-07-19','EMAIL HELP@CLOUDHQ.NSAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2590,'BC-02590','2025-07-21','SMC # 67065         ST. PETERSBURG      FL','','Bank Charges & Fees','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2591,'BC-02591','2025-07-22','WWW.PERPLEXITY.AI   SAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2592,'BC-02592','2025-07-22','INSURANCE PAYMENT SECOLUMBUS            GA','','General Liability & Business Interruption Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2593,'BC-02593','2025-07-22','FIRST INSURANCE FUNDNORTHBROOK          IL','','General Liability & Business Interruption Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2594,'BC-02594','2025-07-22','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2595,'BC-02595','2025-07-23','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2596,'BC-02596','2025-07-23','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2597,'BC-02597','2025-07-25','AMZ*WOOT LLC E5R32P0PAY.AMAZON.CO       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2598,'BC-02598','2025-07-25','MANUS AI            SINGAPORE           SG','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2599,'BC-02599','2025-07-25','HOOTERS #34 0001    TAMPA               FL','HOOTERS','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2600,'BC-02600','2025-07-26','7-ELEVEN 37149 00073TAMPA               FL','7 ELEVEN','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2601,'BC-02601','2025-07-27','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2602,'BC-02602','2025-07-27','UBER EATS           help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2603,'BC-02603','2025-07-29','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2604,'BC-02604','2025-07-29','IN *TRANSCONTINENTALTAMPA               FL','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2605,'BC-02605','2025-07-30','IN *TRANSCONTINENTALTAMPA               FL','','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2606,'BC-02606','2025-07-30','UPS 29RL04QPAK4     ATLANTA             GA','UPS STORE','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2607,'BC-02607','2025-07-31','PIPEDRIVE INC       NEW YORK            NY','PipeDrive','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2608,'BC-02608','2025-08-01','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2609,'BC-02609','2025-08-01','UBER THEORIGINALW   HTTPS://HELP.UBER.COCA','UBER','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2610,'BC-02610','2025-08-01','LINKEDIN SN P7360398MOUNTAIN VIEW','LINKEDIN','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2611,'BC-02611','2025-08-01','FATHOM.VIDEO        SAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2612,'BC-02612','2025-08-01','GOOGLE *GSUITE_LITHICC@GOOGLE.COM       CA','GOOGLESVCSAPPS','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2613,'BC-02613','2025-08-02','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2614,'BC-02614','2025-08-02','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2615,'BC-02615','2025-08-02','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2616,'BC-02616','2025-08-03','7-ELEVEN 37149 00073TAMPA               FL','7 ELEVEN','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2617,'BC-02617','2025-08-04','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2618,'BC-02618','2025-08-05','BATTS ENTERPRISES LLJOHNS ISLAND        SC','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2619,'BC-02619','2025-08-05','EXOSTAR LLC         HERNDON             VA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2620,'BC-02620','2025-08-06','HELP.USEMOTION.COM  SAN FRANCISCO       CA','Usemotion.com','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2621,'BC-02621','2025-08-07','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2622,'BC-02622','2025-08-08','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2623,'BC-02623','2025-08-08','ZOOM.COM 888-799-966SAN JOSE            CA','Zoom','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2624,'BC-02624','2025-08-09','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2625,'BC-02625','2025-08-09','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2626,'BC-02626','2025-08-09','7-ELEVEN 38123 00073ST PETERSBURG       FL','7 ELEVEN','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2627,'BC-02627','2025-08-10','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2628,'BC-02628','2025-08-10','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2629,'BC-02629','2025-08-10','Interest Charge on Pay Over Time Purchases','Interest Charge','Interest Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2630,'BC-02630','2025-08-11','AMZ*WOOT LLC E5R32P0PAY.AMAZON.CO       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2631,'BC-02631','2025-08-11','BT*DIALPAD          SAN RAMON           CA','Dialpad Meetings','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2632,'BC-02632','2025-08-11','XAI LLC             PALO ALTO           CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2633,'BC-02633','2025-08-11','CANVA* I04605-557277CAMDEN              DE','CANVA','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2634,'BC-02634','2025-08-12','INSURANCE PAYMENT SECOLUMBUS            GA','','General Liability & Business Interruption Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2635,'BC-02635','2025-08-12','FIRST INSURANCE FUNDNORTHBROOK          IL','','General Liability & Business Interruption Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2636,'BC-02636','2025-08-12','FREIGHTQUOTE BY CH RKANSAS CITY         MO','FREIGHTQUOTE','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2637,'BC-02637','2025-08-16','KUBRA/TECO CONV FEE 800-766-6616        NJ','Kubra','Utilities','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2638,'BC-02638','2025-08-16','TECO/PEOPLES GAS    813-223-0800        FL','Kubra','Utilities','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2639,'BC-02639','2025-08-17','UBER EATS           help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2640,'BC-02640','2025-08-17','UBER EATS           help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2641,'BC-02641','2025-08-18','ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250818 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7112016 EED:250818 IND ID:M3298 IND NAME:NATHAN STARON ER AM TRN: XXXXXX2016 TC','American Express','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2642,'BC-02642','2025-08-19','UBER EATS           help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2643,'BC-02643','2025-08-19','FREIGHTQUOTE BY CH RKANSAS CITY         MO','FREIGHTQUOTE','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2644,'BC-02644','2025-08-19','EMAIL HELP@CLOUDHQ.NSAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2645,'BC-02645','2025-08-20','AMZ*WOOT LLC E5R32P0PAY.AMAZON.CO       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2646,'BC-02646','2025-08-20','AMAZON.COM          AMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2647,'BC-02647','2025-08-20','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2648,'BC-02648','2025-08-23','WAWA FUEL/CONVENIENCMELBOURNE           FL','WAWA','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2649,'BC-02649','2025-08-24','DNH*GODADDY#38655881Tempe               AZ','GODADDY','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2650,'BC-02650','2025-08-25','MANUS AI            SINGAPORE           SG','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2651,'BC-02651','2025-08-28','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2652,'BC-02652','2025-08-28','UBER EATS           help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2653,'BC-02653','2025-08-28','UBER EATS           help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2654,'BC-02654','2025-08-29','UBER 7ELEVEN4747    HTTPS://HELP.UBER.COCA','7 ELEVEN','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2655,'BC-02655','2025-08-29','MOBILE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2656,'BC-02656','2025-08-30','GOOGLE *YOUTUBE TV   G.CO/HELPPAY#      CA','Youtube TV','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2657,'BC-02657','2025-08-30','PIPEDRIVE INC       NEW YORK            NY','PipeDrive','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2658,'BC-02658','2025-08-31','UPS 29JM1O79C9H     ATLANTA             GA','UPS STORE','Freight and Shipping Costs','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2659,'BC-02659','2025-08-31','FLBLUE* ACA         JACKSONVILLE        FL','florida Blue','Employee Health Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2660,'BC-02660','2025-09-01','FLBLUE* ACA         JACKSONVILLE        FL','florida Blue','Employee Health Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2661,'BC-02661','2025-09-01','MOBILE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2662,'BC-02662','2025-09-01','LINKEDIN SN P7877367MOUNTAIN VIEW','LINKEDIN','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2663,'BC-02663','2025-09-01','FATHOM.VIDEO        SAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2664,'BC-02664','2025-09-01','GOOGLE *GSUITE_LITHICC@GOOGLE.COM       CA','GOOGLESVCSAPPS','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2665,'BC-02665','2025-09-02','CIRCLE K 08811/CIRCLTAMPA               FL','Circle K','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2666,'BC-02666','2025-09-03','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2667,'BC-02667','2025-09-04','UBER THEORIGINALW   HTTPS://HELP.UBER.COCA','UBER','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2668,'BC-02668','2025-09-04','DNH*GODADDY#38792940Tempe               AZ','GODADDY','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2669,'BC-02669','2025-09-06','HELP.USEMOTION.COM  SAN FRANCISCO       CA','Usemotion.com','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2670,'BC-02670','2025-09-07','MOBILE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2671,'BC-02671','2025-09-08','ZOOM.COM 888-799-966SAN JOSE            CA','Zoom','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2672,'BC-02672','2025-09-08','xAI','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2673,'BC-02673','2025-09-09','Interest Charge on Pay Over Time Purchases','Interest Charge','Interest Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2674,'BC-02674','2025-09-11','CANVA* I04636-580863CAMDEN              DE','CANVA','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2675,'BC-02675','2025-09-11','XAI LLC             PALO ALTO           CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2676,'BC-02676','2025-09-12','GANDY CITGO 00034666TAMPA               FL','Citgo','Fuel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2677,'BC-02677','2025-09-12','HOOTERS #34 0001    TAMPA               FL','HOOTERS','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2678,'BC-02678','2025-09-12','CLOAKED* IND MONTH  LOWELL              MA','','Dues and Subscriptions','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2679,'BC-02679','2025-09-13','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2680,'BC-02680','2025-09-13','THE SHERWIN-WILLIAMSCLEVELAND           OH','Sherwin Wlliams','Repairs and Maintenance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2681,'BC-02681','2025-09-13','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2682,'BC-02682','2025-09-14','7-ELEVEN 37149 00073TAMPA               FL','7 ELEVEN','Automobile Expense','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2683,'BC-02683','2025-09-14','UBER EATS           help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2684,'BC-02684','2025-09-18','DNH*GODADDY#38959148Tempe               AZ','GODADDY','Marketing and Advertising','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2685,'BC-02685','2025-09-19','ONLINE PAYMENT - THANK YOU','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2686,'BC-02686','2025-09-19','WALMART.COM         WALMART.COM         AR','Walmart','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2687,'BC-02687','2025-09-19','AMAZON MARKETPLACE NAMZN.COM/BILL       WA','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2688,'BC-02688','2025-09-19','INSURANCE PAYMENT SECOLUMBUS            GA','','General Liability & Business Interruption Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2689,'BC-02689','2025-09-19','FIRST INSURANCE FUNDNORTHBROOK          IL','','General Liability & Business Interruption Insurance','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2690,'BC-02690','2025-09-19','EMAIL HELP@CLOUDHQ.NSAN FRANCISCO       CA','','Computer and Internet Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2691,'BC-02691','2025-09-20','UBER EATS           help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2692,'BC-02692','2025-09-20','WALMART.COM 80092562BENTONVILLE         AR','Walmart','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2693,'BC-02693','2025-09-20','WALMART.COM         WALMART.COM         AR','Walmart','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2694,'BC-02694','2025-09-21','UBER EATS           help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2695,'BC-02695','2025-09-23','UBER EATS           help.uber.com       CA','Uber Eats','Meals','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2696,'BC-02696','2025-02-03','Created by QB Online to adjust balance for deletion','','Opening Balance Equity','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2697,'BC-02697','2025-01-15','Pay Period: 01/01/2025-01/15/2025','Nathan Staron','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2698,'BC-02698','2025-01-15','Pay Period: 01/01/2025-01/15/2025','Kevin Eells','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2699,'BC-02699','2025-01-15','Direct Deposit','Kevin Eells','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2700,'BC-02700','2025-01-15','Direct Deposit','Nathan Staron','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2701,'BC-02701','2025-01-31','Pay Period: 01/16/2025-01/31/2025','Nathan Staron','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2702,'BC-02702','2025-01-31','Pay Period: 01/16/2025-01/31/2025','Kevin Eells','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2703,'BC-02703','2025-01-31','Direct Deposit','Kevin Eells','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2704,'BC-02704','2025-01-31','Direct Deposit','Nathan Staron','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2705,'BC-02705','2025-02-14','Direct Deposit','Kevin Eells','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2706,'BC-02706','2025-02-14','Direct Deposit','Nathan Staron','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2707,'BC-02707','2025-02-15','Pay Period: 02/01/2025-02/15/2025','Kevin Eells','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2708,'BC-02708','2025-02-15','Pay Period: 02/01/2025-02/15/2025','Nathan Staron','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2709,'BC-02709','2025-02-28','Pay Period: 02/16/2025-02/28/2025','Kevin Eells','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2710,'BC-02710','2025-02-28','Pay Period: 02/16/2025-02/28/2025','Nathan Staron','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2711,'BC-02711','2025-02-28','Direct Deposit','Kevin Eells','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2712,'BC-02712','2025-02-28','Direct Deposit','Nathan Staron','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2713,'BC-02713','2025-03-14','Direct Deposit','Nathan Staron','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2714,'BC-02714','2025-03-14','Direct Deposit','Kevin Eells','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2715,'BC-02715','2025-03-15','Pay Period: 03/01/2025-03/15/2025','Nathan Staron','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2716,'BC-02716','2025-03-15','Pay Period: 03/01/2025-03/15/2025','Kevin Eells','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2717,'BC-02717','2025-03-31','Pay Period: 03/16/2025-03/31/2025','Kevin Eells','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2718,'BC-02718','2025-03-31','Direct Deposit','Kevin Eells','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2719,'BC-02719','2025-03-31','Pay Period: 03/16/2025-03/31/2025','Nathan Staron','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2720,'BC-02720','2025-03-31','Direct Deposit','Nathan Staron','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2721,'BC-02721','2025-04-15','Pay Period: 04/01/2025-04/15/2025','Nathan Staron','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2722,'BC-02722','2025-04-15','Pay Period: 04/01/2025-04/15/2025','Kevin Eells','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2723,'BC-02723','2025-04-15','Direct Deposit','Nathan Staron','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2724,'BC-02724','2025-04-15','Direct Deposit','Kevin Eells','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2725,'BC-02725','2025-04-30','Pay Period: 04/16/2025-04/30/2025','Kevin Eells','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2726,'BC-02726','2025-04-30','Direct Deposit','Kevin Eells','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2727,'BC-02727','2025-04-30','Pay Period: 04/16/2025-04/30/2025','Nathan Staron','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2728,'BC-02728','2025-04-30','Direct Deposit','Nathan Staron','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2729,'BC-02729','2025-05-15','Pay Period: 05/01/2025-05/15/2025','Nathan Staron','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2730,'BC-02730','2025-05-15','Pay Period: 05/01/2025-05/15/2025','Kevin Eells','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2731,'BC-02731','2025-05-15','Direct Deposit','Nathan Staron','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2732,'BC-02732','2025-05-15','Direct Deposit','Kevin Eells','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2733,'BC-02733','2025-05-30','Direct Deposit','Nathan Staron','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2734,'BC-02734','2025-05-30','Direct Deposit','Kevin Eells','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2735,'BC-02735','2025-05-31','Pay Period: 05/16/2025-05/31/2025','Nathan Staron','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2736,'BC-02736','2025-05-31','Pay Period: 05/16/2025-05/31/2025','Kevin Eells','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2737,'BC-02737','2025-06-13','Direct Deposit','Kevin Eells','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2738,'BC-02738','2025-06-13','Direct Deposit','Nathan Staron','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2739,'BC-02739','2025-06-15','Pay Period: 06/01/2025-06/15/2025','Kevin Eells','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2740,'BC-02740','2025-06-15','Pay Period: 06/01/2025-06/15/2025','Nathan Staron','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2741,'BC-02741','2025-06-30','Pay Period: 06/16/2025-06/30/2025','Kevin Eells','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2742,'BC-02742','2025-06-30','Pay Period: 06/16/2025-06/30/2025','Nathan Staron','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2743,'BC-02743','2025-06-30','Direct Deposit','Nathan Staron','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2744,'BC-02744','2025-06-30','Direct Deposit','Kevin Eells','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2745,'BC-02745','2025-07-15','Pay Period: 07/01/2025-07/15/2025','Kevin Eells','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2746,'BC-02746','2025-07-15','Pay Period: 07/01/2025-07/15/2025','Nathan Staron','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2747,'BC-02747','2025-07-15','Direct Deposit','Nathan Staron','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2748,'BC-02748','2025-07-15','Direct Deposit','Kevin Eells','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2749,'BC-02749','2025-07-31','Pay Period: 07/16/2025-07/31/2025','Nathan Staron','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2750,'BC-02750','2025-07-31','Pay Period: 07/16/2025-07/31/2025','Kevin Eells','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2751,'BC-02751','2025-07-31','Direct Deposit','Nathan Staron','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2752,'BC-02752','2025-07-31','Direct Deposit','Kevin Eells','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2753,'BC-02753','2025-08-04','Pay Period: 08/01/2025-08/31/2025','TANNER HANCE','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2754,'BC-02754','2025-08-04','Direct Deposit','TANNER HANCE','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2755,'BC-02755','2025-08-15','Pay Period: 08/01/2025-08/15/2025','Nathan Staron','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2756,'BC-02756','2025-08-15','Pay Period: 08/01/2025-08/15/2025','Kevin Eells','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2757,'BC-02757','2025-08-15','Direct Deposit','Nathan Staron','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2758,'BC-02758','2025-08-15','Direct Deposit','Kevin Eells','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2759,'BC-02759','2025-08-29','Direct Deposit','Kevin Eells','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2760,'BC-02760','2025-08-29','Direct Deposit','Nathan Staron','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2761,'BC-02761','2025-08-31','Pay Period: 08/16/2025-08/31/2025','Kevin Eells','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2762,'BC-02762','2025-08-31','Pay Period: 08/16/2025-08/31/2025','Nathan Staron','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2763,'BC-02763','2025-09-08','Pay Period: 09/01/2025-09/30/2025 Check created out of sequence in a prior quarter','TANNER HANCE','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2764,'BC-02764','2025-09-08','Direct Deposit','TANNER HANCE','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2765,'BC-02765','2025-09-15','Pay Period: 09/01/2025-09/15/2025','Kevin Eells','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2766,'BC-02766','2025-09-15','Direct Deposit','Kevin Eells','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2767,'BC-02767','2025-10-01','Pay Period: 10/01/2025-10/31/2025','TANNER HANCE','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2768,'BC-02768','2025-10-01','Direct Deposit','TANNER HANCE','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2769,'BC-02769','2025-01-01','ORIG CO NAME:SBA EIDL LOAN ORIG ID:XXXXXX0118 DESC DATE:241231 CO ENTRY DESCR:PAYMENT SEC:CCD TRACE#:XXXXXXXX2211203 EED:250102 IND ID:0000 IND NAME:NATHAN STAR ON XXXXXX7203 ACH TRANSACTION TRN: XXXXXX1203 TC','EIDL Loan','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2770,'BC-02770','2025-02-22','ORIG CO NAME:SBA EIDL LOAN ORIG ID:XXXXXX0118 DESC DATE:250221 CO ENTRY DESCR:PAYMENT SEC:CCD TRACE#:XXXXXXXX8546940 EED:250224 IND ID:0000 IND NAME:NATHAN STAR ON XXXXXX7203 ACH TRANSACTION TRN: XXXXXX6940 TC','EIDL Loan','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2771,'BC-02771','2025-03-06','ONLINE DOMESTIC WIRE TRANSFER VIA: TREAS NYC/XXXXX0004 A/C: SMALL BUSINESS ADMINISTRATION DENVER CO X0202 US REF: LITHIUM BATTERY COMPANY (NATHAN A STARON) EIDL LOAN: XXXXXX7203/BNF/LI THIUM BATTERY COMPANY (NATHAN A STA RON) EIDL LOAN: XXXXXX7203 IMAD: 0306MMQFMP2MXX4558 TRN: XXXXXX5065 ES 03/06','EIDL Loan','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2772,'BC-02772','2025-03-06','Loan Fees','EIDL Loan','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2773,'BC-02773','2025-02-13','ONLINE DOMESTIC WIRE TRANSFER VIA: PNCBANK PITT/XXXXX0096 A/C: RONALD STARON INDIANA PA X5701 US REF: LBC LOAN REPAYMENT (N.S.)/BNF/LITHIUM BATTERY CO IMAD: 021 3MMQFMP2KXX6076 TRN: XXXXXX5044 ES 02/13','Ron Staron - Vendor','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2774,'BC-02774','2025-03-04','ONLINE DOMESTIC WIRE TRANSFER VIA: PNCBANK PITT/XXXXX0096 A/C: RONALD STARON INDIANA PA X5701 US REF: LBC LOAN REPAYMENT/BNF/LITHIUM BATTERY CO IMAD: 0304MMQFMP 2NXX2800 TRN: XXXXXX5063 ES 03/04','Ron Staron - Vendor','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2775,'BC-02775','2025-04-08','ONLINE DOMESTIC WIRE TRANSFER VIA: PNCBANK PITT/XXXXX0096 A/C: RONALD STARON INDIANA PA X5701 US REF: LBC LOAN REPAYMENT/BNF/LITHIUM BATTERY CO IMAD: 0408MMQFMP 2KXX1400 TRN: XXXXXX5098 ES 04/08','Ron Staron - Vendor','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2776,'BC-02776','2025-04-08','Loan Fees Adjustment','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2777,'BC-02777','2025-08-07','FEDWIRE CREDIT VIA: FEDERAL HOME LOAN BK OF PITTSBURGH/XXXXX1435 B/O: INFIRST BANK INDIANA, PA X5701 REF: CHASE NYC/CTR/BNF=LITHIUM BATTERY COMPANY INTL, LLC TA MPA FL XXXX4-800 6 US/AC-XXXXXXXX5806 RFB=NOTPROVIDE D OBI=/PURP/START UP FUNDS FOR SON\' S COMP ANY/URI/BUSINESS START UP CO ST IMAD: 0807MMQFMPDRXX0053 TRN: XXXXXX1219 FF','Ron Staron - Vendor','Chase Wiring Account 7932','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2778,'BC-02778','2025-01-08','ORIG CO NAME:ALLY ORIG ID:XXXXXX2002 DESC DATE:250108 CO ENTRY DESCR:ALLY PAYMTSEC:CCD TRACE#:XXXXXXXX7292718 EED:250108 IND ID:XXXXXXXX1804 IND NAME:LITHIUM BA TTERY CO TRN: XXXXXX2718 TC','ALLY','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2779,'BC-02779','2025-03-25','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2780,'BC-02780','2025-03-25','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2781,'BC-02781','2025-03-25','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2782,'BC-02782','2025-09-18','ORIG CO NAME:TRUIST LN 506 ORIG ID:9 WEBXX5506 DESC DATE:250917 CO ENTRY DESCR:OLB PYMT SEC:WEB TRACE#:XXXXXXXX8170379 EED:250918 IND ID:XXXXXXXX9421001 IND NAME :NATHAN STARON TRN: XXXXXX0379 TC','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2783,'BC-02783','2025-03-25','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2784,'BC-02784','2025-09-09','ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250906 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX9686584 EED:250909 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX6584 TC','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2785,'BC-02785','2025-03-25','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2786,'BC-02786','2025-04-23','ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250422 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX4164084 EED:250423 IND ID:PXXXX2890 IND NAME:STAR ON, NATHAN TRN: XXXXXX4084 TC','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2787,'BC-02787','2025-05-23','ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250522 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX8623913 EED:250523 IND ID:PXXXX9839 IND NAME:STAR ON, NATHAN TRN: XXXXXX3913 TC','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2788,'BC-02788','2025-06-21','ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250620 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX8750948 EED:250623 IND ID:PXXXX1798 IND NAME:STAR ON, NATHAN TRN: XXXXXX0948 TC','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2789,'BC-02789','2025-07-23','ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250722 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX2005503 EED:250723 IND ID:PXXXX4907 IND NAME:STAR ON, NATHAN TRN: XXXXXX5503 TC','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2790,'BC-02790','2025-01-15','2 Payments Direct From CFB to Vendor','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2791,'BC-02791','2025-04-16','0687 Lithium Battery Company Draw #7','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2792,'BC-02792','2025-04-21','XXXXXX0687 Lithium Battery Draw #8','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2793,'BC-02793','2025-05-27','Draw #9','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2794,'BC-02794','2025-06-10','Draw #10','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2795,'BC-02795','2025-07-14','Lithium Battery Draw #14','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2796,'BC-02796','2025-01-16','Initial SBA Loan Balance','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2797,'BC-02797','2025-01-16','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2798,'BC-02798','2025-02-25','Draw #1 - Payroll','Climate First Bank','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2799,'BC-02799','2025-03-03','Draw #2 - Insurance Binding pymt - CFB to LBC; 2 payments = $30,000 - NS AMEX, $30,000 JB repayment; $5,000 LBC Chase 2560 = $65,000','Climate First Bank','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2800,'BC-02800','2025-03-04','EIDL #3 - Transfer Payment','Climate First Bank','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2801,'BC-02801','2025-03-26','Inventory Repayment #4 - RS','Climate First Bank','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2802,'BC-02802','2025-01-01','Opening Balance from Bank','','Opening Balance Equity','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2803,'BC-02803','2025-01-06','BLINK AMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2804,'BC-02804','2025-01-13','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2805,'BC-02805','2025-01-18','AMZ*WOOT LLC E5R32P0PAY.AMAZON.CO WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2806,'BC-02806','2025-01-20','AMAZON.COM AMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2807,'BC-02807','2025-01-20','AMAZON.COM AMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2808,'BC-02808','2025-01-28','AMAZON.COM AMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2809,'BC-02809','2025-01-28','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2810,'BC-02810','2025-01-28','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2811,'BC-02811','2025-02-06','BLINK AMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2812,'BC-02812','2025-02-08','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2813,'BC-02813','2025-02-09','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2814,'BC-02814','2025-02-09','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2815,'BC-02815','2025-02-18','AMERICAN AIRLINES XXX-XXX-7300 TX XXXX4007','American Airlines','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2816,'BC-02816','2025-02-18','AMERICAN AIRLINES XXX-XXX-7300 TX XXXX4007','American Airlines','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2817,'BC-02817','2025-02-18','AMERICAN AIRLINES XXX-XXX-7300 TX XXXX4007','American Airlines','Travel','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2818,'BC-02818','2025-02-20','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2819,'BC-02819','2025-02-25','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2820,'BC-02820','2025-02-25','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2821,'BC-02821','2025-02-27','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2822,'BC-02822','2025-03-06','BLINK AMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2823,'BC-02823','2025-03-08','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2824,'BC-02824','2025-03-08','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2825,'BC-02825','2025-03-14','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2826,'BC-02826','2025-03-16','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2827,'BC-02827','2025-03-18','AMAZON.COM AMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2828,'BC-02828','2025-03-24','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2829,'BC-02829','2025-03-31','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2830,'BC-02830','2025-03-31','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2831,'BC-02831','2025-04-02','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2832,'BC-02832','2025-04-02','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2833,'BC-02833','2025-04-06','BLINK AMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2834,'BC-02834','2025-04-07','AMAZON.COM AMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2835,'BC-02835','2025-04-10','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2836,'BC-02836','2025-04-11','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2837,'BC-02837','2025-04-11','AMAZON.COM AMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2838,'BC-02838','2025-04-11','AMAZON.COM AMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2839,'BC-02839','2025-04-11','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2840,'BC-02840','2025-04-12','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2841,'BC-02841','2025-04-12','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2842,'BC-02842','2025-04-12','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2843,'BC-02843','2025-04-15','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2844,'BC-02844','2025-05-06','BLINK AMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2845,'BC-02845','2025-05-12','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2846,'BC-02846','2025-05-15','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2847,'BC-02847','2025-05-16','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2848,'BC-02848','2025-05-19','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2849,'BC-02849','2025-05-20','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2850,'BC-02850','2025-05-20','AMAZON.COM AMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2851,'BC-02851','2025-05-23','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2852,'BC-02852','2025-05-30','AMAZON.COM AMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2853,'BC-02853','2025-05-31','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2854,'BC-02854','2025-06-03','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2855,'BC-02855','2025-06-06','BLINK AMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2856,'BC-02856','2025-06-07','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2857,'BC-02857','2025-06-07','AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','Amazon','Office Expenses','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2858,'BC-02858','2025-09-05','Created by QB Online to adjust balance for deletion','','Opening Balance Equity','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2859,'BC-02859','2025-01-06','Federal Taxes (941/943/944)','IRS','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2860,'BC-02860','2025-01-15','Federal Taxes (941/943/944)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2861,'BC-02861','2025-01-15','Federal Taxes (941/943/944)','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2862,'BC-02862','2025-01-15','Federal Taxes (941/943/944)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2863,'BC-02863','2025-01-31','Federal Taxes (941/943/944)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2864,'BC-02864','2025-01-31','Federal Taxes (941/943/944)','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2865,'BC-02865','2025-01-31','Federal Taxes (941/943/944)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2866,'BC-02866','2025-02-14','Federal Taxes (941/943/944)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2867,'BC-02867','2025-02-15','Federal Taxes (941/943/944)','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2868,'BC-02868','2025-02-15','Federal Taxes (941/943/944)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2869,'BC-02869','2025-02-28','Federal Taxes (941/943/944)','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2870,'BC-02870','2025-02-28','Federal Taxes (941/943/944)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2871,'BC-02871','2025-02-28','Federal Taxes (941/943/944)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2872,'BC-02872','2025-03-14','Federal Taxes (941/943/944)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2873,'BC-02873','2025-03-15','Federal Taxes (941/943/944)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2874,'BC-02874','2025-03-15','Federal Taxes (941/943/944)','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2875,'BC-02875','2025-03-31','Federal Taxes (941/943/944)','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2876,'BC-02876','2025-03-31','Federal Taxes (941/943/944)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2877,'BC-02877','2025-03-31','Federal Taxes (941/943/944)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2878,'BC-02878','2025-04-15','Federal Taxes (941/943/944)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2879,'BC-02879','2025-04-15','Federal Taxes (941/943/944)','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2880,'BC-02880','2025-04-15','Federal Taxes (941/943/944)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2881,'BC-02881','2025-04-30','Federal Taxes (941/943/944)','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2882,'BC-02882','2025-04-30','Federal Taxes (941/943/944)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2883,'BC-02883','2025-04-30','Federal Taxes (941/943/944)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2884,'BC-02884','2025-05-15','Federal Taxes (941/943/944)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2885,'BC-02885','2025-05-15','Federal Taxes (941/943/944)','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2886,'BC-02886','2025-05-15','Federal Taxes (941/943/944)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2887,'BC-02887','2025-05-30','Federal Taxes (941/943/944)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2888,'BC-02888','2025-05-31','Federal Taxes (941/943/944)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2889,'BC-02889','2025-05-31','Federal Taxes (941/943/944)','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2890,'BC-02890','2025-06-13','Federal Taxes (941/943/944)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2891,'BC-02891','2025-06-15','Federal Taxes (941/943/944)','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2892,'BC-02892','2025-06-15','Federal Taxes (941/943/944)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2893,'BC-02893','2025-06-30','Federal Taxes (941/943/944)','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2894,'BC-02894','2025-06-30','Federal Taxes (941/943/944)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2895,'BC-02895','2025-06-30','Federal Taxes (941/943/944)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2896,'BC-02896','2025-07-15','Federal Taxes (941/943/944)','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2897,'BC-02897','2025-07-15','Federal Taxes (941/943/944)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2898,'BC-02898','2025-07-15','Federal Taxes (941/943/944)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2899,'BC-02899','2025-07-31','Federal Taxes (941/943/944)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2900,'BC-02900','2025-07-31','Federal Taxes (941/943/944)','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2901,'BC-02901','2025-07-31','Federal Taxes (941/943/944)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2902,'BC-02902','2025-08-04','Federal Taxes (941/943/944)','TANNER HANCE','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2903,'BC-02903','2025-08-04','Federal Taxes (941/943/944)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2904,'BC-02904','2025-08-15','Federal Taxes (941/943/944)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2905,'BC-02905','2025-08-15','Federal Taxes (941/943/944)','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2906,'BC-02906','2025-08-15','Federal Taxes (941/943/944)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2907,'BC-02907','2025-08-29','Federal Taxes (941/943/944)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2908,'BC-02908','2025-08-31','Federal Taxes (941/943/944)','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2909,'BC-02909','2025-08-31','Federal Taxes (941/943/944)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2910,'BC-02910','2025-09-08','Federal Taxes (941/943/944)','TANNER HANCE','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2911,'BC-02911','2025-09-08','Federal Taxes (941/943/944)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2912,'BC-02912','2025-09-15','Federal Taxes (941/943/944)','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2913,'BC-02913','2025-09-15','Federal Taxes (941/943/944)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2914,'BC-02914','2025-10-01','Federal Taxes (941/943/944)','TANNER HANCE','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2915,'BC-02915','2025-10-10','Federal Taxes (941/943/944)','IRS','QuickBooks Tax Holding Account','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2916,'BC-02916','2025-10-15','Federal Taxes (941/943/944)','Nathan Staron','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2917,'BC-02917','2025-10-15','Federal Taxes (941/943/944)','Kevin Eells','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2918,'BC-02918','2025-10-22','Federal Taxes (941/943/944)','IRS','QuickBooks Tax Holding Account','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2919,'BC-02919','2025-10-31','Federal Taxes (941/943/944)','Nathan Staron','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2920,'BC-02920','2025-10-31','Federal Taxes (941/943/944)','Kevin Eells','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2921,'BC-02921','2025-11-05','Federal Taxes (941/943/944)','IRS','QuickBooks Tax Holding Account','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2922,'BC-02922','2025-01-15','Federal Unemployment (940)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2923,'BC-02923','2025-01-15','Federal Unemployment (940)','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2924,'BC-02924','2025-01-15','Federal Unemployment (940)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2925,'BC-02925','2025-01-30','Federal Unemployment (940)','IRS','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2926,'BC-02926','2025-01-31','Federal Unemployment (940)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2927,'BC-02927','2025-01-31','Federal Unemployment (940)','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2928,'BC-02928','2025-01-31','Federal Unemployment (940)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2929,'BC-02929','2025-02-14','Federal Unemployment (940)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2930,'BC-02930','2025-02-15','Federal Unemployment (940)','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2931,'BC-02931','2025-02-15','Federal Unemployment (940)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2932,'BC-02932','2025-02-28','Federal Unemployment (940)','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2933,'BC-02933','2025-02-28','Federal Unemployment (940)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2934,'BC-02934','2025-02-28','Federal Unemployment (940)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2935,'BC-02935','2025-03-14','Federal Unemployment (940)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2936,'BC-02936','2025-03-15','Federal Unemployment (940)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2937,'BC-02937','2025-03-31','Federal Unemployment (940)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2938,'BC-02938','2025-03-31','Federal Unemployment (940)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2939,'BC-02939','2025-04-15','Federal Unemployment (940)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2940,'BC-02940','2025-04-15','Federal Unemployment (940)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2941,'BC-02941','2025-04-30','Federal Unemployment (940)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2942,'BC-02942','2025-04-30','Federal Unemployment (940)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2943,'BC-02943','2025-05-15','Federal Unemployment (940)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2944,'BC-02944','2025-05-15','Federal Unemployment (940)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2945,'BC-02945','2025-05-30','Federal Unemployment (940)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2946,'BC-02946','2025-05-31','Federal Unemployment (940)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2947,'BC-02947','2025-06-13','Federal Unemployment (940)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2948,'BC-02948','2025-06-15','Federal Unemployment (940)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2949,'BC-02949','2025-06-30','Federal Unemployment (940)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2950,'BC-02950','2025-06-30','Federal Unemployment (940)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2951,'BC-02951','2025-07-15','Federal Unemployment (940)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2952,'BC-02952','2025-07-15','Federal Unemployment (940)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2953,'BC-02953','2025-07-31','Federal Unemployment (940)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2954,'BC-02954','2025-07-31','Federal Unemployment (940)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2955,'BC-02955','2025-08-04','Federal Unemployment (940)','TANNER HANCE','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2956,'BC-02956','2025-08-04','Federal Unemployment (940)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2957,'BC-02957','2025-08-15','Federal Unemployment (940)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2958,'BC-02958','2025-08-15','Federal Unemployment (940)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2959,'BC-02959','2025-08-29','Federal Unemployment (940)','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2960,'BC-02960','2025-08-31','Federal Unemployment (940)','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2961,'BC-02961','2025-09-22','Federal Unemployment (940)','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2962,'BC-02962','2025-10-15','Federal Unemployment (940)','Nathan Staron','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2963,'BC-02963','2025-01-15','FL Unemployment Tax','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2964,'BC-02964','2025-01-15','FL Unemployment Tax','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2965,'BC-02965','2025-01-15','FL Unemployment Tax','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2966,'BC-02966','2025-01-31','FL Unemployment Tax','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2967,'BC-02967','2025-01-31','FL Unemployment Tax','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2968,'BC-02968','2025-01-31','FL Unemployment Tax','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2969,'BC-02969','2025-02-14','FL Unemployment Tax','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2970,'BC-02970','2025-02-15','FL Unemployment Tax','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2971,'BC-02971','2025-02-15','FL Unemployment Tax','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2972,'BC-02972','2025-02-15','FL Unemployment Tax','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2973,'BC-02973','2025-02-28','FL Unemployment Tax','Kevin Eells','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2974,'BC-02974','2025-02-28','FL Unemployment Tax','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2975,'BC-02975','2025-02-28','FL Unemployment Tax','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2976,'BC-02976','2025-03-14','FL Unemployment Tax','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2977,'BC-02977','2025-03-15','FL Unemployment Tax','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2978,'BC-02978','2025-03-31','FL Unemployment Tax','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2979,'BC-02979','2025-03-31','FL Unemployment Tax','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2980,'BC-02980','2025-04-15','FL Unemployment Tax','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2981,'BC-02981','2025-04-15','FL Unemployment Tax','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2982,'BC-02982','2025-04-30','FL Unemployment Tax','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2983,'BC-02983','2025-04-30','FL Unemployment Tax','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2984,'BC-02984','2025-05-15','FL Unemployment Tax','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2985,'BC-02985','2025-05-15','FL Unemployment Tax','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2986,'BC-02986','2025-05-30','FL Unemployment Tax','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2987,'BC-02987','2025-05-31','FL Unemployment Tax','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2988,'BC-02988','2025-06-13','FL Unemployment Tax','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2989,'BC-02989','2025-06-15','FL Unemployment Tax','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2990,'BC-02990','2025-06-30','FL Unemployment Tax','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2991,'BC-02991','2025-06-30','FL Unemployment Tax','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2992,'BC-02992','2025-07-15','FL Unemployment Tax','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2993,'BC-02993','2025-07-15','FL Unemployment Tax','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2994,'BC-02994','2025-07-31','FL Unemployment Tax','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2995,'BC-02995','2025-07-31','FL Unemployment Tax','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2996,'BC-02996','2025-08-04','FL Unemployment Tax','TANNER HANCE','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2997,'BC-02997','2025-08-04','FL Unemployment Tax','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2998,'BC-02998','2025-08-15','FL Unemployment Tax','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(2999,'BC-02999','2025-08-15','FL Unemployment Tax','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3000,'BC-03000','2025-08-29','FL Unemployment Tax','QuickBooks Payroll','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3001,'BC-03001','2025-08-31','FL Unemployment Tax','Nathan Staron','Direct Deposit Payable','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3002,'BC-03002','2025-09-22','FL Unemployment Tax','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3003,'BC-03003','2025-10-15','FL Unemployment Tax','Nathan Staron','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3004,'BC-03004','2025-10-31','FL Unemployment Tax','FL U.C. Fund','QuickBooks Tax Holding Account','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3005,'BC-03005','2025-01-05','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3006,'BC-03006','2025-01-06','AplPay SPORT CLIPS -TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3007,'BC-03007','2025-01-10','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3008,'BC-03008','2025-01-14','AplPay HIMS & HERS HSAN FRANCISCO       CA','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3009,'BC-03009','2025-01-15','Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3010,'BC-03010','2025-01-18','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3011,'BC-03011','2025-01-19','SP CPAP.COM         STAFFORD            TX','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3012,'BC-03012','2025-01-22','SP CPAP.COM         STAFFORD            TX','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3013,'BC-03013','2025-01-23','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3014,'BC-03014','2025-01-24','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3015,'BC-03015','2025-01-24','Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3016,'BC-03016','2025-01-24','Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3017,'BC-03017','2025-01-28','AplPay JONI\'S PET SATampa               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3018,'BC-03018','2025-01-29','NEUROSPA            TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3019,'BC-03019','2025-01-31','DABA NAILS & SPA 941TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3020,'BC-03020','2025-02-02','OLD NAVY ON-LINE 084GROVEPORT           OH','Old Navy','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3021,'BC-03021','2025-02-03','AplPay SPORT CLIPS -TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3022,'BC-03022','2025-02-03','OLD NAVY ON-LINE 084GROVEPORT           OH','Old Navy','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3023,'BC-03023','2025-02-05','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3024,'BC-03024','2025-02-08','AplPay DINOSAUR WORLPLANT CITY          FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3025,'BC-03025','2025-02-08','DINOSAUR WORLD 00-08PLANT CITY          FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3026,'BC-03026','2025-02-08','AplPay DINOSAUR WORLPLANT CITY          FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3027,'BC-03027','2025-02-13','NEUROSPA            TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3028,'BC-03028','2025-02-17','FABLETICS.COM       855-202-3570        CA','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3029,'BC-03029','2025-02-20','ROCK IT FITNESS 9362TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3030,'BC-03030','2025-02-20','THE STUDY SALON     TAMPA               FL','The Study Salon','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3031,'BC-03031','2025-02-21','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3032,'BC-03032','2025-02-21','Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3033,'BC-03033','2025-02-22','AplPay SP SAND SURF TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3034,'BC-03034','2025-02-22','AplPay SP SAND SURF TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3035,'BC-03035','2025-02-22','AplPay GROUPON, INC.CHICAGO','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3036,'BC-03036','2025-02-22','SP SAND SURF CO     TAMPA               FL','Sand Surf Co','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3037,'BC-03037','2025-02-22','SP SAND SURF CO     TAMPA               FL','Sand Surf Co','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3038,'BC-03038','2025-02-24','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3039,'BC-03039','2025-02-24','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3040,'BC-03040','2025-02-24','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3041,'BC-03041','2025-02-24','AplPay SPORT CLIPS -TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3042,'BC-03042','2025-02-24','AplPay GROUPON, INC.CHICAGO','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3043,'BC-03043','2025-02-26','NEUROSPA            TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3044,'BC-03044','2025-02-26','PPY=TAMPA NEUROPSYCHTAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3045,'BC-03045','2025-02-27','AplPay RON JON SURF COCOA BEACH         FL','Ron Jon Surf Shop','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3046,'BC-03046','2025-02-27','AplPay RON JON SURF COCOA BEACH         FL','Ron Jon Surf Shop','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3047,'BC-03047','2025-02-27','AplPay RON JON SURF COCOA BEACH         FL','Ron Jon Surf Shop','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3048,'BC-03048','2025-03-03','OLD NAVY ON-LINE 084GROVEPORT           OH','Old Navy','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3049,'BC-03049','2025-03-03','OLD NAVY ON-LINE 084GROVEPORT           OH','Old Navy','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3050,'BC-03050','2025-03-04','Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3051,'BC-03051','2025-03-06','FABLETICS.COM       855-202-3570        CA','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3052,'BC-03052','2025-03-09','FLORIDA STRAWBERRY FPLANT CITY          FL','Florida Strawberry','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3053,'BC-03053','2025-03-10','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3054,'BC-03054','2025-03-10','AplPay AMC 9640 ONLILEAWOOD             KS','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3055,'BC-03055','2025-03-10','AplPay AMC 9640 ONLILEAWOOD             KS','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3056,'BC-03056','2025-03-13','THE WOMANS GROUP OF TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3057,'BC-03057','2025-03-14','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3058,'BC-03058','2025-03-14','JONI\'S PET SALON, INTampa               FL','Joni\'s Pet Salon','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3059,'BC-03059','2025-03-16','AplPay SPORT CLIPS -TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3060,'BC-03060','2025-03-19','NEUROSPA            TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3061,'BC-03061','2025-03-20','SERENITY HEALS THERAFORT MYERS          FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3062,'BC-03062','2025-03-21','AplPay D34 DISNEY ONPALMETTO            FL','Disney','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3063,'BC-03063','2025-03-21','AplPay AMALIE ARENA TAMPA               FL','Amalie Arena','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3064,'BC-03064','2025-03-21','AplPay D34 DISNEY ONPALMETTO            FL','Disney','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3065,'BC-03065','2025-03-21','AplPay AMALIE ARENA TAMPA               FL','Amalie Arena','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3066,'BC-03066','2025-03-21','AplPay AMALIE ARENA TAMPA               FL','Amalie Arena','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3067,'BC-03067','2025-03-21','AplPay AMALIE ARENA TAMPA               FL','Amalie Arena','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3068,'BC-03068','2025-03-22','RESTAURANT DEPOT 413TAMPA               FL','Restaurant Depot','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3069,'BC-03069','2025-03-27','DABA NAILS & SPA 941TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3070,'BC-03070','2025-03-31','Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3071,'BC-03071','2025-04-05','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3072,'BC-03072','2025-04-09','FABLETICS.COM       855-202-3570        CA','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3073,'BC-03073','2025-04-10','AplPay SPORT CLIPS -TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3074,'BC-03074','2025-04-10','Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3075,'BC-03075','2025-04-13','AplPay CARTER S #131TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3076,'BC-03076','2025-04-13','AplPay CREAM DE LA CTampa               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3077,'BC-03077','2025-04-14','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3078,'BC-03078','2025-04-16','LEAF HOME WATER SOLUHUDSON              OH','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3079,'BC-03079','2025-04-17','AITUBOART           HUNGHOM             HK','Aituboart','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3080,'BC-03080','2025-04-17','INAI PTE. LTD.      SINGAPORE           SG','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3081,'BC-03081','2025-04-20','OLD NAVY ON-LINE 084GROVEPORT           OH','Old Navy','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3082,'BC-03082','2025-04-20','RACETRAC2571  025718FORT MYERS          FL','RACETRAC','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3083,'BC-03083','2025-04-21','PEACOCK             NEW YORK CITY       NY','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3084,'BC-03084','2025-04-21','Platinum Digital Entertainment Credit','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3085,'BC-03085','2025-04-21','Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3086,'BC-03086','2025-04-22','AplPay A NAILS      FORT MYERS          FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3087,'BC-03087','2025-04-24','AplPay PRICELN*CROWNNORWALK             CT','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3088,'BC-03088','2025-04-25','Online Transfer from CHK ...1215 transaction#: XXXXXXX8239','o','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3089,'BC-03089','2025-04-26','PAYPAL *KAMYUU1105  XXXXXX7733          HK','Kamyuu','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3090,'BC-03090','2025-04-30','Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3091,'BC-03091','2025-05-01','OLD NAVY ON-LINE 084GROVEPORT           OH','o','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3092,'BC-03092','2025-05-01','OLD NAVY ON-LINE 084GROVEPORT           OH','o','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3093,'BC-03093','2025-05-01','AplPay BT*GAMETIME  SAN FRANCISCO       CA','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3094,'BC-03094','2025-05-01','KORE WIRELESS       ATLANTA             GA','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3095,'BC-03095','2025-05-02','AplPay UNIFORM NAMETTAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3096,'BC-03096','2025-05-03','AplPay SPORT CLIPS -TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3097,'BC-03097','2025-05-03','TST* BAR CARTS-STRAZTAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3098,'BC-03098','2025-05-03','NON-CHASE ATM WITHDRAW XX6671 05/XX1010 N MA','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3099,'BC-03099','2025-05-04','AplPay EMPAMAMAS    Tampa               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3100,'BC-03100','2025-05-05','AplPay VALET TIPS   NASHVILLE           TN','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3101,'BC-03101','2025-05-06','SQSP* INV180951011  NEW YORK            NY','SQUARESPACE','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3102,'BC-03102','2025-05-07','AplPay VALET TIPS   NASHVILLE           TN','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3103,'BC-03103','2025-05-08','FABLETICS.COM       855-202-3570        CA','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3104,'BC-03104','2025-05-08','VALET TIPS          NASHVILLE           TN','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3105,'BC-03105','2025-05-11','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3106,'BC-03106','2025-05-11','FABLETICS.COM       855-202-3570        CA','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3107,'BC-03107','2025-05-11','FABLETICS.COM       855-202-3570        CA','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3108,'BC-03108','2025-05-11','FABLETICS.COM       855-202-3570        CA','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3109,'BC-03109','2025-05-15','RON JON SURF SHOP   COCOA BEACH         FL','Ron Jon Surf Shop','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3110,'BC-03110','2025-05-15','RON JON SURF SHOP   COCOA BEACH         FL','Ron Jon Surf Shop','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3111,'BC-03111','2025-05-15','RON JON SURF SHOP   COCOA BEACH         FL','Ron Jon Surf Shop','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3112,'BC-03112','2025-05-17','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3113,'BC-03113','2025-05-17','AplPay IC* INSTACARTLAKELAND            FL','Instacart','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3114,'BC-03114','2025-05-17','AITUBO.AI           HUNGHOM             HK','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3115,'BC-03115','2025-05-17','INAI PTE. LTD.      SINGAPORE           SG','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3116,'BC-03116','2025-05-19','AplPay IC* ABC FINE ORLANDO             FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3117,'BC-03117','2025-05-19','AplPay IC* ABC FINE ORLANDO             FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3118,'BC-03118','2025-05-21','OLD NAVY ON-LINE 084GROVEPORT           OH','Old Navy','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3119,'BC-03119','2025-05-21','OLD NAVY ON-LINE 084GROVEPORT           OH','Old Navy','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3120,'BC-03120','2025-05-21','OLD NAVY ON-LINE 084GROVEPORT           OH','Old Navy','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3121,'BC-03121','2025-05-21','PEACOCK             NEW YORK CITY       NY','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3122,'BC-03122','2025-05-21','Platinum Digital Entertainment Credit','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3123,'BC-03123','2025-05-21','AplPay SP REEF.COM  NEWTON              MA','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3124,'BC-03124','2025-05-22','AplPay CREAM DE LA CTampa               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3125,'BC-03125','2025-05-22','MACYS   .COM 0000001MASON               OH','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3126,'BC-03126','2025-05-22','PAY* ANGI-MAY23     INDIANAPOLIS        IN','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3127,'BC-03127','2025-05-22','PAY* ANGI-MAY23                         IN','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3128,'BC-03128','2025-05-23','AplPay SPORT CLIPS -TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3129,'BC-03129','2025-05-24','PAYPAL *KAMYUU1105  XXXXXX7733          HK','Kamyuu','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3130,'BC-03130','2025-05-25','BT*MYRIAD WOMEN\'S HESOUTH SAN FRANCISCO CA','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3131,'BC-03131','2025-05-27','AplPay JONI\'S PET SATAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3132,'BC-03132','2025-05-27','Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3133,'BC-03133','2025-05-29','AplPay FK WESTSHORE TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3134,'BC-03134','2025-05-30','Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3135,'BC-03135','2025-05-31','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3136,'BC-03136','2025-05-31','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3137,'BC-03137','2025-06-01','TELADOC 0259        LEWISVILLE          TX','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3138,'BC-03138','2025-06-03','AplPay GREAT EXPLORAST PETERSBURG       FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3139,'BC-03139','2025-06-04','AplPay SPROUTS FARMETampa               FL','SPROUTS FARMERS MARKET','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3140,'BC-03140','2025-06-06','SQSP* INV185094968  NEW YORK            NY','SQUARESPACE','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3141,'BC-03141','2025-06-07','BONFIRE PREMIUM VENDOAKVILLE','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3142,'BC-03142','2025-06-08','AplPay IC* INSTACARTLAKELAND            FL','Instacart','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3143,'BC-03143','2025-06-09','MACYS MARKETPLACE 00MASON               OH','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3144,'BC-03144','2025-06-09','Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3145,'BC-03145','2025-06-11','CHUCK LAGER AMERICA\'TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3146,'BC-03146','2025-06-12','SERENITY HEALS THERAFORT MYERS          FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3147,'BC-03147','2025-06-14','AplPay CREAM DE LA CTampa               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3148,'BC-03148','2025-06-18','AplPay SPORT CLIPS -TAMPA               FL','SPORT CLIPS','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3149,'BC-03149','2025-06-19','AplPay PUBLIX #1722 TAMPA               FL','PUBLIX','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3150,'BC-03150','2025-06-20','AplPay TOUCHTUNES MUSCHAUMBURG          IL','Touch Tunes','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3151,'BC-03151','2025-06-21','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3152,'BC-03152','2025-06-21','PEACOCK             NEW YORK CITY       NY','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3153,'BC-03153','2025-06-21','Platinum Digital Entertainment Credit','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3154,'BC-03154','2025-06-21','WWW.WOODIESWASH.COM TAMPA               FL','WOODIES WASH SHACK','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3155,'BC-03155','2025-06-26','Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3156,'BC-03156','2025-06-29','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3157,'BC-03157','2025-07-08','Nathans Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3158,'BC-03158','2025-07-09','AplPay CARTER S #131TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3159,'BC-03159','2025-07-13','SPORT CLIPS - FL111 TAMPA               FL','SPORT CLIPS','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3160,'BC-03160','2025-07-14','TELADOC 0259        LEWISVILLE          TX','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3161,'BC-03161','2025-07-14','Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3162,'BC-03162','2025-07-19','TELADOC 0259        LEWISVILLE          TX','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3163,'BC-03163','2025-07-21','DUCKWEED WD INC TAMPA FL 07/21','Duckweed','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3164,'BC-03164','2025-07-21','PEACOCK             NEW YORK CITY       NY','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3165,'BC-03165','2025-07-21','Platinum Digital Entertainment Credit','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3166,'BC-03166','2025-07-31','Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3167,'BC-03167','2025-08-06','SQSP* WEBSIT#1931741NEW YORK            NY','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3168,'BC-03168','2025-08-07','AplPay SPORT CLIPS -TAMPA               FL','SPORT CLIPS','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3169,'BC-03169','2025-08-08','SERENITY HEALS THERAFORT MYERS          FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3170,'BC-03170','2025-08-09','AplPay SP SAND SURF TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3171,'BC-03171','2025-08-09','AplPay ZITNIK TRAINSPINELLAS PARK       FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3172,'BC-03172','2025-08-13','GiftHealth*LillyDire833-6144438         OH','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3173,'BC-03173','2025-08-14','Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3174,'BC-03174','2025-08-17','AplPay RON JON SURF COCOA BEACH         FL','Ron Jon Surf Shop','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3175,'BC-03175','2025-08-17','AplPay 5600 NORTH HAMELBOURNE           FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3176,'BC-03176','2025-08-21','PEACOCK             NEW YORK CITY       NY','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3177,'BC-03177','2025-08-21','Platinum Digital Entertainment Credit','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3178,'BC-03178','2025-08-22','RON JON SURF SHOP   COCOA BEACH         FL','Ron Jon Surf Shop','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3179,'BC-03179','2025-08-24','SP SAND SURF CO     TAMPA               FL','Sand Surf Co','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3180,'BC-03180','2025-08-24','AplPay SP SAND SURF TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3181,'BC-03181','2025-08-25','THE WOMANS GROUP OF TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3182,'BC-03182','2025-08-25','THE WOMANS GROUP OF TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3183,'BC-03183','2025-08-27','SP SAND SURF CO     TAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3184,'BC-03184','2025-08-28','AplPay TOUCHTUNES MUSCHAUMBURG          IL','Touch Tunes','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3185,'BC-03185','2025-08-28','PY *PDQ - SOUTH TAMPTAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3186,'BC-03186','2025-09-02','AplPay JONI\'S PET SATAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3187,'BC-03187','2025-09-03','Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3188,'BC-03188','2025-09-12','WALGREENS           TAMPA               FL','Walgreens','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3189,'BC-03189','2025-09-12','AplPay SPORT CLIPS -TAMPA               FL','SPORT CLIPS','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3190,'BC-03190','2025-09-14','AplPay IC* INSTACARTSAN FRANCISCO       CA','Instacart','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3191,'BC-03191','2025-09-21','Platinum Digital Entertainment Credit','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3192,'BC-03192','2025-09-21','PEACOCK             NEW YORK CITY       NY','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3193,'BC-03193','2025-09-22','REMOTE ONLINE DEPOSIT # 2','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3194,'BC-03194','2025-01-01','','','Amex 4007 (deleted)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3195,'BC-03195','2025-02-03','','','AMEX #4007 (deleted)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3196,'BC-03196','2025-09-05','','','Amex 4007 (deleted)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3197,'BC-03197','2025-11-07','24V 75Ah Lithium Ion Battery - LFP - Opening inventory and value','','Inventory Asset','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3198,'BC-03198','2025-01-08','FEDWIRE CREDIT VIA: BANK OF AMERICA, N.A./XXXXX9593 B/O: 1/JD CAPITAL ADVISORS LLC 3/US/SAINT PETERSBURG X3705 REF: CHASE NYC/CTR/BNF=LITHIUM BATTERY COMPANY IN TL, LLC TAMPA FL XXXX4-800 6 US/AC-XXXXXXXX3316 RFB=XXXXX8276 OBI=LBC EQUITY INVESTMENT IMAD: 0108B6B7HU2RXX5650 TRN: XXXXXX1008 FF','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3199,'BC-03199','2025-01-08','ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250106 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX0638159 EED:250108 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX8159 TC','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3200,'BC-03200','2025-01-23','ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250122 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX1204033 EED:250123 IND ID:PXXXX4506 IND NAME:STAR ON, NATHAN TRN: XXXXXX4033 TC','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3201,'BC-03201','2025-02-08','ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250206 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX0848924 EED:250210 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX8924 TC','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3202,'BC-03202','2025-02-22','ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250221 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX6850342 EED:250224 IND ID:PXXXX8790 IND NAME:STAR ON, NATHAN TRN: XXXXXX0342 TC','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3203,'BC-03203','2025-03-07','Online Transfer to CHK ...1215 transaction#: XXXXXXX9780 03/07','CHK ...1215','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3204,'BC-03204','2025-03-08','ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250306 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX4195671 EED:250310 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX5671 TC','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3205,'BC-03205','2025-03-21','ORIG CO NAME:TRUIST LN 506 ORIG ID:9 WEBXX5506 DESC DATE:250320 CO ENTRY DESCR:OLB PYMT SEC:WEB TRACE#:XXXXXXXX8464628 EED:250321 IND ID:XXXXXXXX9421001 IND NAME :NATHAN STARON TRN: XXXXXX4628 TC','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3206,'BC-03206','2025-03-22','ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250321 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX8020777 EED:250324 IND ID:PXXXX2527 IND NAME:STAR ON, NATHAN TRN: XXXXXX0777 TC','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3207,'BC-03207','2025-03-25','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3208,'BC-03208','2025-04-02','PPY=TAMPA NEUROPSYCHTAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3209,'BC-03209','2025-04-03','NEUROSPA            TAMPA               FL','Neurospa','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3210,'BC-03210','2025-05-23','NEUROSPA            TAMPA               FL','Neurospa','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3211,'BC-03211','2025-05-28','PPY=TAMPA NEUROPSYCHTAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3212,'BC-03212','2025-06-04','AplPay ASHLEY HOMESTTAMPA               FL','Ashley HomeStore','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3213,'BC-03213','2025-06-04','AplPay ASHLEY HOMESTTAMPA               FL','Ashley HomeStore','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3214,'BC-03214','2025-06-11','NEUROSPA            TAMPA               FL','Neurospa','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3215,'BC-03215','2025-06-13','ORIG CO NAME:TRUIST LN 506 ORIG ID:9 WEBXX5506 DESC DATE:250612 CO ENTRY DESCR:OLB PYMT SEC:WEB TRACE#:XXXXXXXX4324099 EED:250613 IND ID:XXXXXXXX9421001 IND NAME :NATHAN STARON TRN: XXXXXX4099 TC','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3216,'BC-03216','2025-06-30','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3217,'BC-03217','2025-07-01','JEWELERS-MUTUAL-PMNT800-558-6411        WI','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3218,'BC-03218','2025-07-02','MACYS MARKETPLACE 00MASON               OH','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3219,'BC-03219','2025-07-10','AplPay IC* ABC FINE ORLANDO             FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3220,'BC-03220','2025-07-15','713 TAMPA DALE MABRYTAMPA               FL','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3221,'BC-03221','2025-07-18','ORIG CO NAME:TRUIST LN 506 ORIG ID:9 WEBXX5506 DESC DATE:250717 CO ENTRY DESCR:OLB PYMT SEC:WEB TRACE#:XXXXXXXX5723231 EED:250718 IND ID:XXXXXXXX9421001 IND NAME :NATHAN STARON TRN: XXXXXX3231 TC','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3222,'BC-03222','2025-07-21','CSA-GGA-DAM/TRIPINSUSAN DIEGO           CA','C S','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3223,'BC-03223','2025-07-22','GiftHealth*LillyDire833-6144438         OH','','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3224,'BC-03224','2025-07-29','Draw #15','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3225,'BC-03225','2025-07-31','FLBLUE* ACA         JACKSONVILLE        FL','florida Blue','American Express #4007','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3226,'BC-03226','2025-08-08','ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250806 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX6803632 EED:250808 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX3632 TC','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3227,'BC-03227','2025-08-16','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3228,'BC-03228','2025-08-16','','','','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3229,'BC-03229','2025-08-19','ORIG CO NAME:TRUIST LN 506 ORIG ID:9 WEBXX5506 DESC DATE:250818 CO ENTRY DESCR:OLB PYMT SEC:WEB TRACE#:XXXXXXXX8723395 EED:250819 IND ID:XXXXXXXX9421001 IND NAME :NATHAN STARON TRN: XXXXXX3395 TC','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3230,'BC-03230','2025-08-23','ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250822 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX8921695 EED:250825 IND ID:PXXXX7889 IND NAME:STAR ON, NATHAN TRN: XXXXXX1695 TC','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3231,'BC-03231','2025-08-29','Draw #17','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3232,'BC-03232','2025-09-23','ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250922 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX1906027 EED:250923 IND ID:PXXXX6046 IND NAME:STAR ON, NATHAN TRN: XXXXXX6027 TC','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3233,'BC-03233','2025-02-13','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:Dividend SEC:CCD TRACE#:XXXXXXXX6914437 EED:250213 IND ID: IND NAME:Lithium Battery Co LBC Shareholder Transfer (NS) TRN: XXXXXX4437 TC','o','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3234,'BC-03234','2025-06-06','Online Transfer from CHK ...1215 transaction#: XXXXXXX4918','o','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3235,'BC-03235','2025-09-22','REMOTE ONLINE DEPOSIT # 2','','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3236,'BC-03236','2025-01-15','LOAN FUNDS','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3237,'BC-03237','2025-09-08','ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX2799298 EED:250908 IND ID: IND NAME:LBC Main (#2560) Bayfro nt Capital (Transaction Fees) TRN: XXXXXX9298 TC','o','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3238,'BC-03238','2025-09-09','ORIG CO NAME:JD CAPITAL ADVIS ORIG ID:SXXXXX7665 DESC DATE:250909 CO ENTRY DESCR:SENDER SEC:CTX TRACE#:XXXXXXXX6471376 EED:250909 IND ID:813722100 IND NAME:0000 LITHIUM BATTERY TRN: XXXXXX1376 TC','JD Capital Advisors','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3239,'BC-03239','2025-09-10','ORIG CO NAME:JD CAPITAL ADVIS ORIG ID:SXXXXX7665 DESC DATE:250910 CO ENTRY DESCR:SENDER SEC:CTX TRACE#:XXXXXXXX1567022 EED:250910 IND ID:813990834 IND NAME:0000 LITHIUM BATTERY TRN: XXXXXX7022 TC','JD Capital Advisors','Chase Bank (2560)','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL),
(3240,'BC-03240','2025-10-15','SENDER JD CAPITAL ADVIS IDS941687665, ID: 820696952','','CFB Business Checking 4440','','','posted',1,'2025-11-12 00:09:24','2025-11-12 12:34:25',NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `journal_entries` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `journal_entries_backup_20250111`
--

DROP TABLE IF EXISTS `journal_entries_backup_20250111`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `journal_entries_backup_20250111` (
  `id` int(10) unsigned NOT NULL DEFAULT 0,
  `entry_number` varchar(50) NOT NULL,
  `entry_date` date NOT NULL,
  `description` text DEFAULT NULL,
  `name` varchar(200) DEFAULT NULL,
  `split_account` varchar(200) DEFAULT NULL,
  `department` varchar(100) DEFAULT NULL,
  `location` varchar(100) DEFAULT NULL,
  `reference` varchar(100) DEFAULT NULL,
  `status` enum('draft','posted','reversed') DEFAULT 'draft',
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `reference_type` varchar(50) DEFAULT NULL,
  `reference_id` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `journal_entries_backup_20250111`
--

LOCK TABLES `journal_entries_backup_20250111` WRITE;
/*!40000 ALTER TABLE `journal_entries_backup_20250111` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `journal_entries_backup_20250111` VALUES
(1,'JE-00001','2025-10-30','test',NULL,NULL,NULL,NULL,'','posted',1,'2025-10-30 17:15:10','2025-10-30 17:15:10',NULL,NULL),
(2,'JE-00002','2025-10-30','inject',NULL,NULL,NULL,NULL,'','posted',1,'2025-10-30 17:16:25','2025-10-30 17:16:25',NULL,NULL),
(3,'','2025-10-31','Invoice #INV-20251031-8225 created',NULL,NULL,NULL,NULL,NULL,'posted',1,'2025-10-31 23:41:02','2025-10-31 23:41:02','invoice',6),
(7,'JE-00003','2025-10-31','Payment received for Invoice #INV-20251031-7461',NULL,NULL,NULL,NULL,NULL,'posted',1,'2025-10-31 23:55:56','2025-10-31 23:55:56','payment',13),
(8,'JE-00004','2025-10-31','Invoice #INV-20251031-3380 created',NULL,NULL,NULL,NULL,NULL,'posted',1,'2025-10-31 23:57:07','2025-10-31 23:57:07','invoice',8),
(9,'JE-00005','2025-10-31','Payment received for Invoice #INV-20251031-3380',NULL,NULL,NULL,NULL,NULL,'posted',1,'2025-10-31 23:57:21','2025-10-31 23:57:21','payment',14),
(10,'JE-2020-OPEN','2020-01-01','Opening Balance Sheet - Company Formation',NULL,NULL,NULL,NULL,NULL,'posted',1,'2025-11-04 20:19:33','2025-11-04 20:19:33','manual',NULL),
(11,'OB-BANK-1-20251105063753','2025-11-05','Opening balance for bank account #1',NULL,NULL,NULL,NULL,'Opening Balance','posted',1,'2025-11-05 11:37:53','2025-11-05 11:37:53',NULL,NULL),
(12,'OB-BANK-2-20251105063857','2025-11-05','Opening balance for bank account #2',NULL,NULL,NULL,NULL,'Opening Balance','posted',1,'2025-11-05 11:38:57','2025-11-05 11:38:57',NULL,NULL),
(13,'OB-BANK-3-20251105064401','2025-11-05','Opening balance for bank account #3',NULL,NULL,NULL,NULL,'Opening Balance','posted',1,'2025-11-05 11:44:01','2025-11-05 11:44:01',NULL,NULL);
/*!40000 ALTER TABLE `journal_entries_backup_20250111` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `journal_entry_lines`
--

DROP TABLE IF EXISTS `journal_entry_lines`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `journal_entry_lines` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entry_id` int(10) unsigned NOT NULL,
  `account_id` int(10) unsigned NOT NULL,
  `debit` decimal(15,2) DEFAULT 0.00,
  `credit` decimal(15,2) DEFAULT 0.00,
  `description` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `entry_id` (`entry_id`),
  KEY `account_id` (`account_id`),
  CONSTRAINT `journal_entry_lines_ibfk_1` FOREIGN KEY (`entry_id`) REFERENCES `journal_entries` (`id`) ON DELETE CASCADE,
  CONSTRAINT `journal_entry_lines_ibfk_2` FOREIGN KEY (`account_id`) REFERENCES `chart_of_accounts` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4005 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `journal_entry_lines`
--

LOCK TABLES `journal_entry_lines` WRITE;
/*!40000 ALTER TABLE `journal_entry_lines` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `journal_entry_lines` VALUES
(809,645,6,0.00,387.00,'ORIG CO NAME:SBA EIDL LOAN ORIG ID:XXXXXX0118 DESC DATE:241231 CO ENTRY DESCR:PAYMENT SEC:CCD TRACE#:XXXXXXXX2211203 EED:250102 IND ID:0000 IND NAME:NATHAN STAR ON XXXXXX7203 ACH TRANSACTION TRN: XXXXXX1203 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(810,645,44,387.00,0.00,'ORIG CO NAME:SBA EIDL LOAN ORIG ID:XXXXXX0118 DESC DATE:241231 CO ENTRY DESCR:PAYMENT SEC:CCD TRACE#:XXXXXXXX2211203 EED:250102 IND ID:0000 IND NAME:NATHAN STAR ON XXXXXX7203 ACH TRANSACTION TRN: XXXXXX1203 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(811,646,6,0.00,97.50,'SERVICE CHARGES FOR THE MONTH OF JUNE','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(812,647,6,0.00,175.00,'Zelle payment to Dora House Clea ner JPM929456383','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(813,648,6,0.00,50.00,'AUTOPAY PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(814,649,6,0.00,572.58,'Tax Payment for Period: 12/28/2024-12/31/2024','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(815,650,6,0.00,5000.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(816,650,27,5000.00,0.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(817,651,6,0.00,27.78,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250104 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX2909739 EED:250106 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0104PPZ1KM TRN: XXXXXX9739 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(818,652,6,0.00,217.66,'ORIG CO NAME:PROG SELECT INS ORIG ID:XXXXXX8120 DESC DATE:250107 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX8974735 EED:250107 IND ID: IND NAME:Nathan Staro n TRN: XXXXXX4735 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(819,653,6,0.00,8503.95,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(820,653,26,8503.95,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(821,654,6,0.00,893.72,'ORIG CO NAME:ALLY ORIG ID:XXXXXX2002 DESC DATE:250108 CO ENTRY DESCR:ALLY PAYMTSEC:CCD TRACE#:XXXXXXXX7292718 EED:250108 IND ID:XXXXXXXX1804 IND NAME:LITHIUM BA TTERY CO TRN: XXXXXX2718 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(822,654,47,893.72,0.00,'ORIG CO NAME:ALLY ORIG ID:XXXXXX2002 DESC DATE:250108 CO ENTRY DESCR:ALLY PAYMTSEC:CCD TRACE#:XXXXXXXX7292718 EED:250108 IND ID:XXXXXXXX1804 IND NAME:LITHIUM BA TTERY CO TRN: XXXXXX2718 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(823,655,6,0.00,180.00,'PROGRESSIVE *INSURANC XXX-XXX-4737 OH 01/08','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(824,656,6,465.88,0.00,'ORIG CO NAME:SolarStik 9905 ORIG ID:XXXXXX4537 DESC DATE: CO ENTRY DESCR:Payments SEC:CCD TRACE#:XXXXXXXX7342490 EED:250108 IND ID: IND NAME:Lithium Battery Co Int REF*1414(SHIPPING)\\ TRN: XXXXXX2490 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(825,657,6,11000.00,0.00,'FEDWIRE CREDIT VIA: BANK OF AMERICA, N.A./XXXXX9593 B/O: 1/JD CAPITAL ADVISORS LLC 3/US/SAINT PETERSBURG X3705 REF: CHASE NYC/CTR/BNF=LITHIUM BATTERY COMPANY IN TL, LLC TAMPA FL XXXX4-800 6 US/AC-XXXXXXXX3316 RFB=XXXXX8276 OBI=LBC EQUITY INVESTMENT IMAD: 0108B6B7HU2RXX5650 TRN: XXXXXX1008 FF','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(826,658,6,0.00,276.65,'ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250106 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX0638159 EED:250108 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX8159 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(827,659,6,0.00,32.38,'FiverrInc New York NY 01/10','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(828,660,6,0.00,20.00,'PROPERTYREC.COM XXX-XXX-1102 NM 01/10','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(829,661,6,0.00,175.00,'Zelle payment to Dora House Clea ner JPM929456383','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(830,662,6,0.00,2040.00,'Zelle payment to Nate Powell JPM99aui9bi6','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(831,663,6,0.00,1580.00,'Zelle payment to Nick Powell JPM99aui9620','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(832,664,6,0.00,381.43,'ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: LBC1414 IMAD: 0110MMQFMP2NXX8286 TRN: XXXXXX5010 ES 0 1/10','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(833,665,6,0.00,10.00,'PIN CHASERS VETERAN- RE clover.com FL 01/11','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(834,666,6,1658.00,0.00,'Online Transfer from CHK ...7932 transaction#: XXXXXXX5378','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(835,667,6,0.00,1500.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(836,667,26,1500.00,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(837,668,6,0.00,70.85,'FiverrInc XXX-XXX8280 NY 01/13','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(838,669,6,0.00,1500.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(839,669,27,1500.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(840,670,6,0.00,1.00,'SHOPIFY* XXXXX4094 HTTPSSHOPIFY. IL 01/13','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(841,671,6,0.00,3319.68,'Online Payment XXXXXXX4585 To HMG 4615 01/13','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(842,672,6,11052.98,0.00,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(843,672,14,0.00,11052.98,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(844,673,6,0.00,330.48,'System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(845,674,6,0.00,1825.92,'Pay Period: 01/01/2025-01/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(846,674,37,1825.92,0.00,'Pay Period: 01/01/2025-01/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(847,675,6,0.00,384.80,'Pay Period: 01/01/2025-01/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(848,675,37,384.80,0.00,'Pay Period: 01/01/2025-01/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(849,676,6,0.00,655.58,'Tax Payment','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(850,677,6,0.00,175.00,'ORIG CO NAME:PAYCARGO ORIG ID:XXXXXX5101 DESC DATE: CO ENTRY DESCR:ACHPAYMENTSEC:CCD TRACE#:XXXXXXXX4180456 EED:250115 IND ID:BATCH XXX1074 IND NAME:LITHIUM BAT TERY COMPAN NACHA 100A TRN: XXXXXX0456 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(851,678,6,0.00,6.00,'ORIG CO NAME:Rocket Money ORIG ID:1800948598 DESC DATE:       CO ENTRY DESCR:Premium   SEC:CCD    TRACE#:091000018457040 EED:220915   IND ID:ST-U5U8S2J1C9U2              IND NAME:ROCKET MONEY INC TRN: 2588457040TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(852,679,6,0.00,2000.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(853,679,27,2000.00,0.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(854,680,6,0.00,69.00,'WOO-XXXXXX9521 WOOCOMMERCE.C CA 01/15','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(855,681,6,20000.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:Dividend SEC:CCD TRACE#:XXXXXXXX4802658 EED:250116 IND ID: IND NAME:Lithium Battery Co Tran saction Expense Reimbursement TRN: XXXXXX2658 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(856,682,6,0.00,25000.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(857,682,27,25000.00,0.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(858,683,6,69.00,0.00,'WOO-XXXXXX9521 SAN FRANCISCO CA 01/16','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(859,684,6,0.00,34.65,'FiverrInc XXX-XXX8280 NY 01/16','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(860,685,6,0.00,1643.49,'ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: LBC1418 IMAD: 0116MMQFMP2KXX0990 TRN: XXXXXX5016 ES 0 1/16','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(861,686,6,0.00,175.00,'Zelle payment to Dora House Clea ner JPM929456383','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(862,687,6,10000.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:Dividend SEC:CCD TRACE#:XXXXXXXX9468674 EED:250117 IND ID: IND NAME:Lithium Battery Co Tran saction Expense Reimbursement TRN: XXXXXX8674 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(863,688,6,0.00,5242.70,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(864,688,27,5242.70,0.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(865,689,6,0.00,4043.00,'MOBILE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(866,690,6,0.00,70.85,'FiverrInc XXX-XXX8280 NY 01/21','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(867,691,6,0.00,4.99,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250118 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX1856716 EED:250121 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0118PPZL8B TRN: XXXXXX6716 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(868,692,6,0.00,7.99,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250122 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX8499699 EED:250122 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0122PPZ6ZX TRN: XXXXXX9699 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(869,693,6,2570.41,0.00,'REMOTE ONLINE DEPOSIT # 1','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(870,694,6,0.00,318.82,'PROGRESSIVE INS XXX-XXX-4737 OH 01/23','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(871,695,6,1500.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:Dividend SEC:CCD TRACE#:XXXXXXXX0317625 EED:250123 IND ID: IND NAME:Lithium Battery Co Supp lemental OWC TRN: XXXXXX7625 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(872,696,6,0.00,355.53,'ORIG CO NAME:PROG AMERICAN ORIG ID:XXXXXX8120 DESC DATE:250123 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX3867486 EED:250123 IND ID: IND NAME:Lithium Batter y Co INT TRN: XXXXXX7486 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(873,697,6,0.00,1139.49,'ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250122 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX1204033 EED:250123 IND ID:PXXXX4506 IND NAME:STAR ON, NATHAN TRN: XXXXXX4033 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(874,698,6,0.00,2000.00,'Online ACH Payment XXXXXXX3042 To TBFTZ (_#########4153)\nTampa Bay Port Authority - FTZ','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(875,699,6,0.00,175.00,'Zelle payment to Dora House Clea ner JPM929456383','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(876,700,6,3517.83,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:Dividend SEC:CCD TRACE#:XXXXXXXX5844380 EED:250124 IND ID: IND NAME:Lithium Battery Co LBC Payroll TRN: XXXXXX4380 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(877,701,6,19457.20,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:Dividend SEC:CCD TRACE#:XXXXXXXX9370005 EED:250124 IND ID: IND NAME:Lithium Battery Co FTZ No. 79 Application TRN: XXXXXX0005 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(878,702,6,0.00,2310.00,'Zelle payment to Nick Powell JPM99avvedsf','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(879,703,6,0.00,16457.20,'ONLINE INTERNATIONAL WIRE TRANSFER A/C: JPMORGAN CHASE BANK N A HONG KONG HONG KONG XX9077 HK REF: LBC PO1429 AND LBC PO1425 INVOICE PAYMENT TRN: XXXXXX5024 ES 0 1/24','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(880,704,6,33000.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:Dividend SEC:CCD TRACE#:XXXXXXXX5941745 EED:250127 IND ID: IND NAME:Lithium Battery Co Insu rance Policy Downpayment TRN: XXXXXX1745 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(881,705,6,3253.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:Dividend SEC:CCD TRACE#:XXXXXXXX5941750 EED:250127 IND ID: IND NAME:Lithium Battery Co Tran saction-Related Legal & OWC TRN: XXXXXX1750 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(882,706,6,13941.25,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:Dividend SEC:CCD TRACE#:XXXXXXXX5941748 EED:250127 IND ID: IND NAME:Lithium Battery Co Leas ehold Improvements (Facility Fl ooring) TRN: XXXXXX1748 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(883,707,6,0.00,251.25,'ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX8692756 EED:250127 IND ID:ST-W8D0B6O0E6V3 IND NAME:N ATHAN STARON TRN: XXXXXX2756 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(884,708,6,0.00,31050.00,'Online Transfer to CHK ...7932 transaction#: XXXXXXX9694 01/28','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(885,709,6,0.00,3776.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(886,709,27,3776.00,0.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(887,710,6,0.00,913.50,'ORIG CO NAME:FIRST INSURANCE ORIG ID:XXXXXX7365 DESC DATE: CO ENTRY DESCR:INSURANCE SEC:CCD TRACE#:XXXXXXXX0745263 EED:250128 IND ID:900 -XXXXX7965 IND NAME:Lith ium Battery Compan PBS ACH DEBIT TRN: XXXXXX5263 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(888,711,6,0.00,1665.27,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(889,712,6,0.00,1456.31,'ORIG CO NAME:MIDLAND NATIONAL ORIG ID:XXXXXX4570 DESC DATE:250127 CO ENTRY DESCR:INSURANCE SEC:PPD TRACE#:XXXXXXXX9297909 EED:250129 IND ID: IND NAME:LITHIUM BA TTERY COMP TRN: XXXXXX7909 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(890,713,6,0.00,126.00,'Tax Payment for Period: 01/01/2024-12/31/2024','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(891,714,6,0.00,1825.92,'Pay Period: 01/16/2025-01/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(892,714,37,1825.92,0.00,'Pay Period: 01/16/2025-01/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(893,715,6,0.00,384.79,'Pay Period: 01/16/2025-01/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(894,715,37,384.79,0.00,'Pay Period: 01/16/2025-01/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(895,716,6,0.00,655.60,'Tax Payment','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(896,717,6,0.00,175.00,'Zelle payment to Dora House Clea ner JPM929456383','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(897,718,6,0.00,100.00,'SERVICE CHARGES FOR THE MONTH OF JANUARY','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(898,719,6,0.00,27.78,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250203 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX9663387 EED:250203 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0203PPZ82Y TRN: XXXXXX3387 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(899,720,6,0.00,199.66,'Online RealTime payroll payment XXXXXXX1329 Payment Id REFERENCE#: XXXXXX1329RX to 4900','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(900,721,6,0.00,1207.83,'Online RealTime payroll payment XXXXXXX1403 Payment Id REFERENCE#: XXXXXX1403RX to 4900','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(901,722,6,6159.90,0.00,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(902,722,14,0.00,6159.90,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(903,723,6,0.00,61.60,'System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(904,724,6,0.00,25000.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(905,724,27,25000.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(906,725,6,0.00,388.50,'ONLINE DOMESTIC WIRE TRANSFER VIA: REGIONS BK/XXXXX5690 A/C: CARGO BROKERS INTL ALANTA GA X0320 US REF: BXXXX2349/A XXXX5781/BNF/LITBATTPA/TIME/08:02 IMAD: 0204 MMQFMP2KXX5383 TRN: XXXXXX5035 ES 02/04','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(907,726,6,0.00,310.66,'ONLINE DOMESTIC WIRE TRANSFER VIA: REGIONS BK/XXXXX5690 A/C: CARGO BROKERS INTL ALANTA GA X0320 US REF: BXXXX2349 XXXX5780/BNF/LITBATTPA/TIME/08:02 IMAD: 0204MM QFMP2NXX5595 TRN: XXXXXX5035 ES 02/04','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(908,727,6,15000.00,0.00,'Online Transfer to CHK ...2560 transaction#: XXXXXXX4735 02/04','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(909,728,6,6050.01,0.00,'Online Transfer to CHK ...2560 transaction#: XXXXXXX1152 02/05','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(910,729,6,0.00,6050.01,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(911,729,27,6050.01,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(912,730,6,6999.99,0.00,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(913,730,14,0.00,6999.99,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(914,731,6,0.00,209.30,'System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(915,732,6,0.00,175.00,'Zelle payment to Dora House Clea ner JPM929456383','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(916,733,6,0.00,10000.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(917,733,27,10000.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(918,734,6,9999.99,0.00,'Online Transfer to CHK ...2560 transaction#: XXXXXXX8062 02/07','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(919,735,6,0.00,276.65,'ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250206 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX0848924 EED:250210 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX8924 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(920,736,6,0.00,20.00,'PROPERTYREC.COM XXX-XXX-1102 NM 02/10','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(921,737,6,0.00,141.48,'ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX5600 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX4395459 EED:250210 IND ID:ST-J3E7T7V2W0F2 IND NAME:N ATHAN STARON TRN: XXXXXX5459 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(922,738,6,0.00,696.90,'ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: LBC1419 IMAD: 0210MMQFMP2LXX8055 TRN: XXXXXX5041 ES 0 2/10','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(923,739,6,0.00,20.00,'Zelle payment to Michael P JPM99axve8gl','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(924,740,6,0.00,60.00,'Zelle payment to Anthony A JPM99axuvfzk','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(925,741,6,0.00,4175.40,'ONLINE INTERNATIONAL WIRE TRANSFER A/C: JPMORGAN CHASE BANK N A HONG KONG HONG KONG XX9077 HK REF: LBC1434 INVOICE PAYMENT TRN: XXXXXX5042 ES 02/11','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(926,742,6,0.00,39.00,'SHOPIFY* XXXXX5376 SHOPIFY.COM IL 02/12','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(927,743,6,0.00,12500.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(928,743,27,12500.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(929,744,6,222.99,0.00,'ORIG CO NAME:PROG SELECT INS ORIG ID:XXXXXX8120 DESC DATE:250213 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX9167604 EED:250213 IND ID: IND NAME:Nathan Staro n TRN: XXXXXX7604 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(930,745,6,134.95,0.00,'ORIG CO NAME:PROG SELECT INS ORIG ID:XXXXXX8120 DESC DATE:250213 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX9167603 EED:250213 IND ID: IND NAME:Nathan Staro n TRN: XXXXXX7603 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(931,746,6,0.00,15000.00,'ONLINE DOMESTIC WIRE TRANSFER VIA: PNCBANK PITT/XXXXX0096 A/C: RONALD STARON INDIANA PA X5701 US REF: LBC LOAN REPAYMENT (N.S.)/BNF/LITHIUM BATTERY CO IMAD: 021 3MMQFMP2KXX6076 TRN: XXXXXX5044 ES 02/13','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(932,746,45,15000.00,0.00,'ONLINE DOMESTIC WIRE TRANSFER VIA: PNCBANK PITT/XXXXX0096 A/C: RONALD STARON INDIANA PA X5701 US REF: LBC LOAN REPAYMENT (N.S.)/BNF/LITHIUM BATTERY CO IMAD: 021 3MMQFMP2KXX6076 TRN: XXXXXX5044 ES 02/13','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(933,747,6,15000.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:Dividend SEC:CCD TRACE#:XXXXXXXX6914437 EED:250213 IND ID: IND NAME:Lithium Battery Co LBC Shareholder Transfer (NS) TRN: XXXXXX4437 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(934,747,61,0.00,15000.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:Dividend SEC:CCD TRACE#:XXXXXXXX6914437 EED:250213 IND ID: IND NAME:Lithium Battery Co LBC Shareholder Transfer (NS) TRN: XXXXXX4437 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(935,748,6,16802.39,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC SEC:CCD TRACE#:XXXXXXXX0988032 EED:250213 IND ID: IND NAME:Lithium Battery Co LBC OWC & NS Temporary Advance TRN: XXXXXX8032 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(936,749,6,0.00,1825.93,'Pay Period: 02/01/2025-02/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(937,749,37,1825.93,0.00,'Pay Period: 02/01/2025-02/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(938,750,6,0.00,384.79,'Pay Period: 02/01/2025-02/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(939,750,37,384.79,0.00,'Pay Period: 02/01/2025-02/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(940,751,6,0.00,655.58,'Tax Payment','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(941,752,6,0.00,175.00,'Zelle payment to Dora House Clea ner JPM929456383','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(942,753,6,0.00,2.79,'FIORI\'S PIZZA XXX-XXX7788 PA 02/14','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(943,754,6,0.00,44.50,'FIORI\'S PIZZA XXX-XXX7788 PA 02/14','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(944,755,6,22400.91,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC SEC:CCD TRACE#:XXXXXXXX5387968 EED:250218 IND ID: IND NAME:Lithium Battery Co 5201 Faci lity Insurance Payment (2/ 15/25) TRN: XXXXXX7968 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(945,756,6,0.00,680.00,'Online RealTime payroll payment XXXXXXX6762 Payment Id REFERENCE#: XXXXXX6762RX to 1148','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(946,757,6,0.00,6200.29,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(947,757,27,6200.29,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(948,758,6,0.00,4.99,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250218 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX0388234 EED:250218 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0218PPZ332 TRN: XXXXXX8234 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(949,759,6,0.00,6.00,'ORIG CO NAME:Rocket Money ORIG ID:XXXXXX5600 DESC DATE: CO ENTRY DESCR:Premium SEC:CCD TRACE#:XXXXXXXX1818945 EED:250219 IND ID:ST-F1E2A7S1G4L3 IND NAME:ROCKET MONEY INC TRN: XXXXXX8945 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(950,760,6,0.00,175.00,'Zelle payment to Dora House Clea ner JPM929456383','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(951,761,6,0.00,7.99,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250221 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX3971463 EED:250221 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0221PPZ2AZ TRN: XXXXXX1463 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(952,762,6,12500.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC SEC:CCD TRACE#:XXXXXXXX2171047 EED:250221 IND ID: IND NAME:Lithium Battery Co Jan 2025 Payroll TRN: XXXXXX1047 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(953,763,6,0.00,387.00,'ORIG CO NAME:SBA EIDL LOAN ORIG ID:XXXXXX0118 DESC DATE:250221 CO ENTRY DESCR:PAYMENT SEC:CCD TRACE#:XXXXXXXX8546940 EED:250224 IND ID:0000 IND NAME:NATHAN STAR ON XXXXXX7203 ACH TRANSACTION TRN: XXXXXX6940 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(954,763,44,387.00,0.00,'ORIG CO NAME:SBA EIDL LOAN ORIG ID:XXXXXX0118 DESC DATE:250221 CO ENTRY DESCR:PAYMENT SEC:CCD TRACE#:XXXXXXXX8546940 EED:250224 IND ID:0000 IND NAME:NATHAN STAR ON XXXXXX7203 ACH TRANSACTION TRN: XXXXXX6940 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(955,764,6,0.00,25.00,'Zelle payment to Joey M JPM99az1nm4m','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(956,765,6,0.00,1139.49,'ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250221 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX6850342 EED:250224 IND ID:PXXXX8790 IND NAME:STAR ON, NATHAN TRN: XXXXXX0342 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(957,766,6,0.00,123.00,'NON-CHASE ATM WITHDRAW XX3005 02/XXX1225 RAC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(958,767,6,0.00,343.08,'PROGRESSIVE INS XXX-XXX-4737 OH 02/23','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(959,768,6,0.00,141.48,'ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX9801081 EED:250224 IND ID:ST-E2O0Y0X4O6B5 IND NAME:N ATHAN STARON TRN: XXXXXX1081 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(960,769,6,0.00,355.53,'ORIG CO NAME:PROG AMERICAN ORIG ID:XXXXXX8120 DESC DATE:250224 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX2688720 EED:250224 IND ID: IND NAME:Lithium Batter y Co INT TRN: XXXXXX8720 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(961,770,6,0.00,1.95,'ORIG CO NAME:MENESKO, UAB ORIG ID:770510487 C DESC DATE: CO ENTRY DESCR:IAT PAYPALSEC:WEB TRACE#:XXXXXXXX3977000 EED:250226 IND ID:XXXXXXXX96150 IND NAME:LITHIUM BATTERY COMPAN IATCVXX0226PPZQB2 TRN: XXXXXX7000 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(962,771,6,0.00,22415.91,'ORIG CO NAME:FIRST INSURANCE ORIG ID:XXXXXX7365 DESC DATE: CO ENTRY DESCR:INSURANCE SEC:CCD TRACE#:XXXXXXXX2310094 EED:250226 IND ID:900 -XXXXX2748 IND NAME:Lith ium Battery Compan PBS ACH DEBIT TRN: XXXXXX0094 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(963,772,6,6609.98,0.00,'Online Transfer to CHK ...2560 transaction#: XXXXXXX3099 02/26','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(964,773,6,0.00,913.50,'ORIG CO NAME:FIRST INSURANCE ORIG ID:XXXXXX7365 DESC DATE: CO ENTRY DESCR:INSURANCE SEC:CCD TRACE#:XXXXXXXX9107830 EED:250227 IND ID:900 -XXXXX7965 IND NAME:Lith ium Battery Compan PBS ACH DEBIT TRN: XXXXXX7830 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(965,774,6,0.00,316.81,'ONLINE DOMESTIC WIRE TRANSFER VIA: HUDSON VALLEY CU/XXXXX9363 A/C: KEVIN EELLS POUGHKEEPSIE NY X2602 US REF: EXPENSE REIMBURSEMENT (1.15.25-2.26.25)/BNF/EXPENSE REIMBURSEMENT (1.1 5.25-2.26.25) IMAD: 0227MMQFMP2LXX9785 TRN: XXXXXX5058 ES 02/27','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(966,775,6,0.00,1825.93,'Pay Period: 02/16/2025-02/28/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(967,775,37,1825.93,0.00,'Pay Period: 02/16/2025-02/28/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(968,776,6,0.00,384.80,'Pay Period: 02/16/2025-02/28/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(969,776,37,384.80,0.00,'Pay Period: 02/16/2025-02/28/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(970,777,6,0.00,600.55,'Tax Payment','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(971,778,6,0.00,175.00,'Zelle payment to Dora House Clea ner JPM929456383','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(972,779,6,0.00,97.50,'SERVICE CHARGES FOR THE MONTH OF FEBRUARY','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(973,780,6,15000.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC SEC:CCD TRACE#:XXXXXXXX3767808 EED:250303 IND ID: IND NAME:Lithium Battery Co LBC Share holder Transfer (NS) TRN: XXXXXX7808 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(974,781,6,3774.00,0.00,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(975,782,6,0.00,112.84,'System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(976,783,6,0.00,15000.00,'ONLINE DOMESTIC WIRE TRANSFER VIA: PNCBANK PITT/XXXXX0096 A/C: RONALD STARON INDIANA PA X5701 US REF: LBC LOAN REPAYMENT/BNF/LITHIUM BATTERY CO IMAD: 0304MMQFMP 2NXX2800 TRN: XXXXXX5063 ES 03/04','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(977,783,45,15000.00,0.00,'ONLINE DOMESTIC WIRE TRANSFER VIA: PNCBANK PITT/XXXXX0096 A/C: RONALD STARON INDIANA PA X5701 US REF: LBC LOAN REPAYMENT/BNF/LITHIUM BATTERY CO IMAD: 0304MMQFMP 2NXX2800 TRN: XXXXXX5063 ES 03/04','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(978,784,6,0.00,27.78,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250305 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX3119939 EED:250305 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0305PPZ3YS TRN: XXXXXX9939 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(979,785,6,0.00,82151.33,'ONLINE DOMESTIC WIRE TRANSFER VIA: TREAS NYC/XXXXX0004 A/C: SMALL BUSINESS ADMINISTRATION DENVER CO X0202 US REF: LITHIUM BATTERY COMPANY (NATHAN A STARON) EIDL LOAN: XXXXXX7203/BNF/LI THIUM BATTERY COMPANY (NATHAN A STA RON) EIDL LOAN: XXXXXX7203 IMAD: 0306MMQFMP2MXX4558 TRN: XXXXXX5065 ES 03/06','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(980,785,44,82151.33,0.00,'ONLINE DOMESTIC WIRE TRANSFER VIA: TREAS NYC/XXXXX0004 A/C: SMALL BUSINESS ADMINISTRATION DENVER CO X0202 US REF: LITHIUM BATTERY COMPANY (NATHAN A STARON) EIDL LOAN: XXXXXX7203/BNF/LI THIUM BATTERY COMPANY (NATHAN A STA RON) EIDL LOAN: XXXXXX7203 IMAD: 0306MMQFMP2MXX4558 TRN: XXXXXX5065 ES 03/06','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(981,786,6,0.00,5.53,'MCDONALD\'S-STORE 367 HONG KONG 03/07 HK Dollar 43.00 X 0.XXX6047 (EXCHG RTE)','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(982,787,6,0.00,0.16,'FOREIGN EXCHANGE RATE ADJUSTMENT FEE 03/07MCDONALD\'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(983,788,6,0.00,260.67,'Loan Fees','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(984,788,44,260.67,0.00,'Loan Fees','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(985,789,6,75000.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC SEC:CCD TRACE#:XXXXXXXX5080527 EED:250306 IND ID: IND NAME:Lithium Battery Co Sharehold er Transfer (NS) TRN: XXXXXX0527 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(986,790,6,1270.59,0.00,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(987,790,14,0.00,1270.59,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(988,791,6,0.00,37.99,'System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(989,792,6,0.00,175.00,'Zelle payment to Dora House Clea ner JPM929456383','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(990,793,6,0.00,2500.00,'Online Transfer to CHK ...1215 transaction#: XXXXXXX9780 03/07','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(991,794,6,0.00,276.65,'ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250306 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX4195671 EED:250310 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX5671 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(992,795,6,0.00,20.00,'PROPERTYREC.COM XXX-XXX-1102 NM 03/10','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(993,796,6,0.00,141.48,'ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX7461470 EED:250310 IND ID:ST-U1E6E1E5X8B7 IND NAME:N ATHAN STARON TRN: XXXXXX1470 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(994,797,6,3500.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC SEC:CCD TRACE#:XXXXXXXX7495169 EED:250310 IND ID: IND NAME:Lithium Battery Co OWC TRN: XXXXXX5169TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(995,798,6,0.00,2896.69,'Online Transfer from CHK ...2560 transaction#: XXXXXXX2334','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(996,799,6,0.00,639.60,'Online Transfer from CHK ...2560 transaction#: XXXXXXX6248','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(997,800,6,1531.98,0.00,'Online Transfer to CHK ...2560 transaction#: XXXXXXX6587 03/12','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(998,801,6,6250.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC SEC:CCD TRACE#:XXXXXXXX4239121 EED:250313 IND ID: IND NAME:Lithium Battery Co Consultin g Retainer (3.1.25-3.15.25 ) TRN: XXXXXX9121 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(999,802,6,0.00,384.79,'Pay Period: 03/01/2025-03/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1000,802,37,384.79,0.00,'Pay Period: 03/01/2025-03/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1001,803,6,0.00,1825.92,'Pay Period: 03/01/2025-03/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1002,803,37,1825.92,0.00,'Pay Period: 03/01/2025-03/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1003,804,6,0.00,584.10,'Tax Payment','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1004,805,6,0.00,175.00,'Zelle payment to Dora House Clea ner JPM929456383','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1005,806,6,0.00,39.00,'SHOPIFY* XXXXX6542 SHOPIFY.COM IL 03/14','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1006,807,6,3266.98,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1007,807,8,0.00,3266.98,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1008,808,6,0.00,2783.35,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1009,808,27,2783.35,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1010,809,6,0.00,6.00,'ORIG CO NAME:Rocket Money ORIG ID:XXXXXX5600 DESC DATE: CO ENTRY DESCR:Premium SEC:CCD TRACE#:XXXXXXXX6388709 EED:250317 IND ID:ST-P5P6D6K7Y0O7 IND NAME:ROCKET MONEY INC TRN: XXXXXX8709 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1011,810,6,0.00,696.00,'Online Transfer from CHK ...2560 transaction#: XXXXXXX4707','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1012,811,6,0.00,4.99,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250318 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX9655748 EED:250318 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0318PPZPYG TRN: XXXXXX5748 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1013,812,6,0.00,2300.00,'ORIG CO NAME:EFFECT WEB MEDIA ORIG ID:XXXXXX6202 DESC DATE:250319 CO ENTRY DESCR:SALE SEC:CCD TRACE#:XXXXXXXX6607583 EED:250319 IND ID: IND NAME:LITHIUM BATTERY COMPAN TRN: XXXXXX7583 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1014,813,6,0.00,3470.80,'Online Payment XXXXXXX8494 To HMG 4615 03/20','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1015,814,6,0.00,175.00,'Zelle payment to Dora House Clea ner JPM929456383','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1016,815,6,0.00,3533.14,'ORIG CO NAME:TRUIST LN 506 ORIG ID:9 WEBXX5506 DESC DATE:250320 CO ENTRY DESCR:OLB PYMT SEC:WEB TRACE#:XXXXXXXX8464628 EED:250321 IND ID:XXXXXXXX9421001 IND NAME :NATHAN STARON TRN: XXXXXX4628 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1017,816,6,0.00,1139.49,'ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250321 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX8020777 EED:250324 IND ID:PXXXX2527 IND NAME:STAR ON, NATHAN TRN: XXXXXX0777 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1018,817,6,0.00,343.08,'PROGRESSIVE INS XXX-XXX-4737 OH 03/23','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1019,818,6,0.00,141.48,'ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX2649555 EED:250324 IND ID:ST-I9N4B9F4Y0P7 IND NAME:N ATHAN STARON TRN: XXXXXX9555 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1020,819,6,0.00,7.99,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250323 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX3067999 EED:250324 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0323PPZOZV TRN: XXXXXX7999 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1021,820,6,355.53,0.00,'ORIG CO NAME:PROG AMERICAN ORIG ID:XXXXXX8120 DESC DATE:250324 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX9924186 EED:250324 IND ID: IND NAME:Lithium Batter y Co INT TRN: XXXXXX4186 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1022,821,6,355.53,0.00,'ORIG CO NAME:PROG AMERICAN ORIG ID:XXXXXX8120 DESC DATE:250324 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX9924183 EED:250324 IND ID: IND NAME:Lithium Batter y Co INT TRN: XXXXXX4183 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1023,822,6,355.53,0.00,'ORIG CO NAME:PROG AMERICAN ORIG ID:XXXXXX8120 DESC DATE:250324 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX9924182 EED:250324 IND ID: IND NAME:Lithium Batter y Co INT TRN: XXXXXX4182 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1024,823,6,355.53,0.00,'ORIG CO NAME:PROG AMERICAN ORIG ID:XXXXXX8120 DESC DATE:250324 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX9924185 EED:250324 IND ID: IND NAME:Lithium Batter y Co INT TRN: XXXXXX4185 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1025,824,6,138.84,0.00,'ORIG CO NAME:PROG AMERICAN ORIG ID:XXXXXX8120 DESC DATE:250324 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX9924184 EED:250324 IND ID: IND NAME:Lithium Batter y Co INT TRN: XXXXXX4184 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1026,825,6,355.53,0.00,'ORIG CO NAME:PROG AMERICAN ORIG ID:XXXXXX8120 DESC DATE:250324 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX9924181 EED:250324 IND ID: IND NAME:Lithium Batter y Co INT TRN: XXXXXX4181 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1027,826,6,17.94,0.00,'ORIG CO NAME:eBay Com7LPMP2B9 ORIG ID:XXXXXX6000 DESC DATE:250324 CO ENTRY DESCR:PAYMENTS SEC:CCD TRACE#:XXXXXXXX3559451 EED:250324 IND ID:0 FYXGKQQBWXSP68 IND N AME:Nathan Staron NTE*ZZZ*PXXXXXX0026\\ TRN: XXXXXX9451 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1028,827,6,6250.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC SEC:CCD TRACE#:XXXXXXXX1842096 EED:250324 IND ID: IND NAME:Lithium Battery Co Consultin g Retainer (3.16.25-3.31.2 5) TRN: XXXXXX2096 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1029,828,6,52.00,0.00,'REMOTE ONLINE DEPOSIT # 1','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1030,829,6,0.00,913.50,'ORIG CO NAME:FIRST INSURANCE ORIG ID:XXXXXX7365 DESC DATE: CO ENTRY DESCR:INSURANCE SEC:CCD TRACE#:XXXXXXXX3564382 EED:250327 IND ID:900 -XXXXX7965 IND NAME:Lith ium Battery Compan PBS ACH DEBIT TRN: XXXXXX4382 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1031,830,6,0.00,175.00,'Zelle payment to Dora House Clea ner JPM929456383','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1032,831,6,0.00,1825.92,'Pay Period: 03/16/2025-03/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1033,831,37,1825.92,0.00,'Pay Period: 03/16/2025-03/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1034,832,6,0.00,384.80,'Pay Period: 03/16/2025-03/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1035,832,37,384.80,0.00,'Pay Period: 03/16/2025-03/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1036,833,6,0.00,584.08,'Tax Payment','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1037,834,6,19600.28,0.00,'LBC#MAIN Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1038,835,6,0.00,130.87,'SERVICE CHARGES FOR THE MONTH OF MARCH','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1039,836,6,0.00,8007.36,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1040,836,27,8007.36,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1041,837,6,0.00,11592.92,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1042,838,6,0.00,175.00,'Zelle payment to Dora House Clea ner JPM929456383','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1043,839,6,0.00,7083.01,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1044,840,6,0.00,27.78,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250404 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX3454971 EED:250404 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0404PPZ236 TRN: XXXXXX4971 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1045,841,6,0.00,141.48,'ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX2335947 EED:250407 IND ID:ST-Y1C4A1G7Q5P3 IND NAME:N ATHAN STARON TRN: XXXXXX5947 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1046,842,6,20220.23,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX6514408 EED:250408 IND ID: IND NAME:LBC Main (#2560) LBC Sh areholder Transfer (NS) TRN: XXXXXX4408 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1047,843,6,6250.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX1969490 EED:250408 IND ID: IND NAME:LBC Main (#2560) Consul ting Retainer (4.1.25-4.15.25 ) TRN: XXXXXX9490 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1048,844,6,0.00,20220.23,'ONLINE DOMESTIC WIRE TRANSFER VIA: PNCBANK PITT/XXXXX0096 A/C: RONALD STARON INDIANA PA X5701 US REF: LBC LOAN REPAYMENT/BNF/LITHIUM BATTERY CO IMAD: 0408MMQFMP 2KXX1400 TRN: XXXXXX5098 ES 04/08','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1049,844,45,20220.23,0.00,'ONLINE DOMESTIC WIRE TRANSFER VIA: PNCBANK PITT/XXXXX0096 A/C: RONALD STARON INDIANA PA X5701 US REF: LBC LOAN REPAYMENT/BNF/LITHIUM BATTERY CO IMAD: 0408MMQFMP 2KXX1400 TRN: XXXXXX5098 ES 04/08','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1050,845,6,0.00,276.65,'ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250406 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX1677193 EED:250408 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX7193 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1051,846,6,0.00,5000.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1052,846,27,5000.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1053,847,6,1665.84,0.00,'Online Transfer to CHK ...2560 transaction#: XXXXXXX0314 04/09','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1054,848,6,20750.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX3023021 EED:250409 IND ID: IND NAME:LBC Main (#2560) OWC - SOFWEEK Table TRN: XXXXXX3021 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1055,849,6,0.00,20.00,'PROPERTYREC.COM XXX-XXX-1102 NM 04/10','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1056,850,6,0.00,7083.01,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1057,851,6,0.00,13631.05,'Online Transfer from CHK ...2560 transaction#: XXXXXXX4037','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1058,852,6,6250.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX1191411 EED:250410 IND ID: IND NAME:LBC Main (#2560) Consul ting Retainer (Adv: 4.16.25-4 .30.25) TRN: XXXXXX1411 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1059,853,6,0.00,175.00,'Zelle payment to Dora House Clea ner JPM929456383','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1060,854,6,0.00,3007.36,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1061,854,27,3007.36,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1062,855,6,0.00,3000.00,'MOBILE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1063,855,27,3000.00,0.00,'MOBILE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1064,856,6,0.00,2838.63,'MOBILE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1065,857,6,0.00,39.00,'SHOPIFY* XXXXX1133 SHOPIFY.COM IL 04/13','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1066,858,6,0.00,2500.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1067,858,27,2500.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1068,859,6,5000.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX3610479 EED:250414 IND ID: IND NAME:LBC Main (#2560) OWC TR N: XXXXXX0479TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1069,860,6,17.94,0.00,'ORIG CO NAME:eBay ComPBF5USK0 ORIG ID:XXXXXX6000 DESC DATE:250414 CO ENTRY DESCR:PAYMENTS SEC:CCD TRACE#:XXXXXXXX8295722 EED:250414 IND ID:USEAYR1TL2H6V6K IND N AME:Nathan Staron NTE*ZZZ*PXXXXXX3226\\ TRN: XXXXXX5722 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1070,861,6,0.00,384.80,'Pay Period: 04/01/2025-04/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1071,861,37,384.80,0.00,'Pay Period: 04/01/2025-04/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1072,862,6,0.00,1825.92,'Pay Period: 04/01/2025-04/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1073,862,37,1825.92,0.00,'Pay Period: 04/01/2025-04/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1074,863,6,0.00,584.08,'Tax Payment','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1075,864,6,1499.99,0.00,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1076,864,14,0.00,1499.99,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1077,865,6,0.00,44.85,'System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1078,866,6,3500.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX7022758 EED:250415 IND ID: IND NAME:LBC Main (#2560) OWC TR N: XXXXXX2758TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1079,867,6,0.00,6.00,'ORIG CO NAME:Rocket Money ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:Premium SEC:CCD TRACE#:XXXXXXXX0024381 EED:250415 IND ID:ST-J7F2J6T8B4B1 IND NAME:ROCKET MONEY INC TRN: XXXXXX4381 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1080,868,6,0.00,175.00,'Zelle payment to Dora House Clea ner JPM929456383','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1081,869,6,0.00,4.99,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250418 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX7852517 EED:250418 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0418PPZWVK TRN: XXXXXX2517 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1082,870,6,22.38,0.00,'ORIG CO NAME:eBay ComIUJJ8WQR ORIG ID:XXXXXX6000 DESC DATE:250418 CO ENTRY DESCR:PAYMENTS SEC:CCD TRACE#:XXXXXXXX5809876 EED:250418 IND ID:7 TH6DK4QIN8PK61 IND N AME:Nathan Staron NTE*ZZZ*PXXXXXX9762\\ TRN: XXXXXX9876 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1083,871,6,0.00,8602.49,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1084,871,27,8602.49,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1085,872,6,3396.05,0.00,'Online Transfer to CHK ...2560 transaction#: XXXXXXX2964 04/21','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1086,873,6,7073.66,0.00,'Online Transfer to CHK ...2560 transaction#: XXXXXXX5521 04/21','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1087,874,6,0.00,141.48,'ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX4346905 EED:250421 IND ID:ST-H5Q4N5J1N7T2 IND NAME:N ATHAN STARON TRN: XXXXXX6905 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1088,875,6,12000.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX1247002 EED:250421 IND ID: IND NAME:LBC Main (#2560) GSL In voice TRN: XXXXXX7002 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1089,876,6,10000.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX1247005 EED:250421 IND ID: IND NAME:LBC Main (#2560) OWC TR N: XXXXXX7005TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1090,877,6,0.00,6133.28,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1091,877,27,6133.28,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1092,878,6,0.00,18608.60,'Online Transfer from CHK ...2560 transaction#: XXXXXXX3274','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1093,879,6,5050.09,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX3388472 EED:250422 IND ID: IND NAME:LBC Main (#2560) OWC Mi n Cash TRN: XXXXXX8472 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1094,880,6,0.00,7.99,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250422 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX1393233 EED:250422 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0422PPZG5T TRN: XXXXXX3233 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1095,881,6,0.00,343.08,'PROGRESSIVE INS XXX-XXX-4737 OH 04/23','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1096,882,6,0.00,1139.49,'ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250422 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX4164084 EED:250423 IND ID:PXXXX2890 IND NAME:STAR ON, NATHAN TRN: XXXXXX4084 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1097,882,51,1139.49,0.00,'ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250422 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX4164084 EED:250423 IND ID:PXXXX2890 IND NAME:STAR ON, NATHAN TRN: XXXXXX4084 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1098,883,6,2300.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX9526699 EED:250424 IND ID: IND NAME:LBC Main (#2560) Effect Web Media Payment TRN: XXXXXX6699 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1099,884,6,0.00,175.00,'Zelle payment to Dora House Clea ner JPM929456383','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1100,885,6,0.00,3375.27,'Online Payment XXXXXXX9472 To HMG 4615 04/25','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1101,886,6,3375.27,0.00,'Online Transfer from CHK ...1215 transaction#: XXXXXXX8239','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1102,886,58,0.00,3375.27,'Online Transfer from CHK ...1215 transaction#: XXXXXXX8239','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1103,887,6,0.00,7.03,'CIRCLE K 209 X7691 HONG KONG 04/26 HK Dollar 54.50 X 0.XXX9908 (EXCHG RTE)','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1104,888,6,0.00,0.21,'FOREIGN EXCHANGE RATE ADJUSTMENT FEE 04/26CIRCLE K','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1105,889,6,0.00,0.50,'FOREIGN EXCHANGE RATE ADJUSTMENT FEE 04/28MCDONALD\'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1106,890,6,0.00,16.76,'MCDONALD\'S-STORE 365 HONG KONG 04/28 HK Dollar 130.00 X 0.XXX9231 (EXCHG RTE)','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1107,891,6,0.00,1456.31,'ORIG CO NAME:MIDLAND NATIONAL ORIG ID:XXXXXX4570 DESC DATE:250425 CO ENTRY DESCR:INSURANCE SEC:PPD TRACE#:XXXXXXXX3761971 EED:250429 IND ID: IND NAME:LITHIUM BA TTERY COMP TRN: XXXXXX1971 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1108,892,6,0.00,1825.93,'Pay Period: 04/16/2025-04/30/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1109,892,37,1825.93,0.00,'Pay Period: 04/16/2025-04/30/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1110,893,6,0.00,384.79,'Pay Period: 04/16/2025-04/30/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1111,893,37,384.79,0.00,'Pay Period: 04/16/2025-04/30/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1112,894,6,0.00,584.08,'Tax Payment','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1113,895,6,0.00,95.00,'SERVICE CHARGES FOR THE MONTH OF APRIL','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1114,896,6,0.00,20.00,'APPLE CASH BALANCE AD XXX-XXX-8552 CA 05/02','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1115,897,6,2210.72,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX0267745 EED:250501 IND ID: IND NAME:LBC Main (#2560) Kevin Eells Payroll Reimbursement ( 4.16.25 - 5.1.25) TRN: XXXXXX7745 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1116,898,6,1500.00,0.00,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1117,898,14,0.00,1500.00,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1118,899,6,0.00,15.00,'System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1119,900,6,0.00,175.00,'Zelle payment to Dora House Clea ner JPM929456383','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1120,901,6,36346.30,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1121,901,8,0.00,36346.30,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1122,902,6,0.00,104.50,'NON-CHASE ATM WITHDRAW XX6671 05/XX1010 N MA','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1123,902,58,104.50,0.00,'NON-CHASE ATM WITHDRAW XX6671 05/XX1010 N MA','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1124,903,6,0.00,3373.14,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1125,904,6,0.00,432.00,'Online Transfer from CHK ...2560 transaction#: XXXXXXX4699','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1126,905,6,0.00,10000.00,'ONLINE DOMESTIC WIRE TRANSFER VIA: CLIMATE FIRST BANK/XXXXX7011 A/C: CLIMATE FIRST BANK ST. PETERSBURG FL X3710 US IMAD: 0505MMQFMP2NXX5379 TRN: XXXXXX5125 ES 05 /05','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1127,906,6,0.00,27.78,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250504 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX7648307 EED:250505 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0504PPZRSC TRN: XXXXXX8307 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1128,907,6,0.00,2300.00,'ORIG CO NAME:EFFECT WEB MEDIA ORIG ID:XXXXXX6202 DESC DATE:250505 CO ENTRY DESCR:SALE SEC:CCD TRACE#:XXXXXXXX7720989 EED:250505 IND ID: IND NAME:LITHIUM BATTERY COMPAN TRN: XXXXXX0989 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1129,908,6,599.96,0.00,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1130,908,14,0.00,599.96,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1131,909,6,0.00,6.00,'System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1132,910,6,0.00,276.65,'ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250506 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX8969158 EED:250508 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX9158 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1133,911,6,0.00,175.00,'Zelle payment to Dora House Clea ner JPM929456383','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1134,912,6,0.00,4500.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1135,913,6,0.00,141.48,'ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX0649540 EED:250512 IND ID:ST-N8M4E1C3C5G8 IND NAME:N ATHAN STARON TRN: XXXXXX9540 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1136,914,6,6250.00,0.00,'Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1137,915,6,0.00,1500.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1138,916,6,0.00,3279.74,'Online Payment XXXXXXX6827 To HMG 4615 05/13','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1139,917,6,0.00,39.00,'SHOPIFY* XXXXX5839 SHOPIFY.COM IL 05/13','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1140,918,6,0.00,384.79,'Pay Period: 05/01/2025-05/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1141,918,37,384.79,0.00,'Pay Period: 05/01/2025-05/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1142,919,6,0.00,1825.92,'Pay Period: 05/01/2025-05/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1143,919,37,1825.92,0.00,'Pay Period: 05/01/2025-05/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1144,920,6,0.00,584.10,'Tax Payment','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1145,921,6,0.00,6.00,'ORIG CO NAME:Rocket Money ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:Premium SEC:CCD TRACE#:XXXXXXXX6420546 EED:250515 IND ID:ST-Z5G0E0R7C9A0 IND NAME:ROCKET MONEY INC TRN: XXXXXX0546 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1146,922,6,0.00,175.00,'Zelle payment to Dora House Clea ner JPM929456383','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1147,923,6,0.00,6250.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1148,923,27,6250.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1149,924,6,0.00,6250.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250516 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX1796687 EED:250516 IND ID:W9994 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6687 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1150,924,27,6250.00,0.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250516 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX1796687 EED:250516 IND ID:W9994 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6687 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1151,925,6,0.00,4.99,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250518 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX5610763 EED:250519 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0518PPZJSB TRN: XXXXXX0763 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1152,926,6,0.00,142.43,'Fiverr XXX-XXX9699 NY 05/21','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1153,927,6,0.00,7.99,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250522 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX5752693 EED:250522 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0522PPZI6P TRN: XXXXXX2693 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1154,928,6,0.00,1531.98,'ONLINE DOMESTIC WIRE TRANSFER VIA: COMMN AMER CU/XXXXX1508 A/C: S2 CAPITAL GROUP LLC LENEXA KS X6285 US REF: REFUND FOR LBC ORDER IMAD: 0522MMQFMP2KXX7696 TRN: XXXXXX5142ES 05/22','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1155,929,6,0.00,201.14,'ONLINE DOMESTIC WIRE TRANSFER VIA: HUDSON VALLEY CU/XXXXX9363 A/C: KEVIN EELLS POUGHKEEPSIE NY X2602 US REF: EXPENSE AND TRAVEL REIMBURSEMENT (3.1.25 - 5.9.25) IMAD: 0522MMQFMP2MXX1144 TRN: XXXXXX5142 ES 05/22','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1156,930,6,0.00,599.96,'ONLINE INTERNATIONAL WIRE TRANSFER A/C: CHINA MERCHANTS BANK CO.,LTD SHENZHEN CHINA XX804-0 CN REF: INVOICE NUMBER: CPXXXX2900C TELXXXXXXXXX6435/INVOICE PAYMENT TRN: XXXXXX5142 ES 05/22','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1157,931,6,0.00,175.00,'Zelle payment to Dora House Clea ner JPM929456383','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1158,932,6,0.00,57.86,'PROGRESSIVE *INSURANC XXX-XXX-4737 OH 05/23','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1159,933,6,0.00,1139.49,'ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250522 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX8623913 EED:250523 IND ID:PXXXX9839 IND NAME:STAR ON, NATHAN TRN: XXXXXX3913 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1160,933,51,1139.49,0.00,'ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250522 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX8623913 EED:250523 IND ID:PXXXX9839 IND NAME:STAR ON, NATHAN TRN: XXXXXX3913 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1161,934,6,0.00,2100.00,'ORIG CO NAME:EFFECT WEB MEDIA ORIG ID:XXXXXX6202 DESC DATE:250524 CO ENTRY DESCR:SALE SEC:CCD TRACE#:XXXXXXXX5783223 EED:250527 IND ID: IND NAME:LITHIUM BATTERY COMPAN TRN: XXXXXX3223 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1162,935,6,0.00,499.00,'Zelle payment to Leon XXXXXXX2853','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1163,936,6,0.00,343.05,'ORIG CO NAME:PROG SELECT INS ORIG ID:XXXXXX8112 DESC DATE:250527 CO ENTRY DESCR:INS PREM SEC:WEB TRACE#:XXXXXXXX1257837 EED:250527 IND ID:POL XXXXX6654 IND NAME :Lithium Battery Co BRANCH02DEBIT ACH TRN: XXXXXX7837 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1164,937,6,0.00,8500.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1165,937,27,8500.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1166,938,6,0.00,141.48,'ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX0045642 EED:250527 IND ID:ST-K6U0M0T2Q8P8 IND NAME:N ATHAN STARON TRN: XXXXXX5642 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1167,939,6,25000.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX1777215 EED:250527 IND ID: IND NAME:LBC Main (#2560) Operat ing Working Capital TRN: XXXXXX7215 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1168,940,6,0.00,990.65,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1169,941,6,0.00,384.79,'Pay Period: 05/16/2025-05/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1170,941,37,384.79,0.00,'Pay Period: 05/16/2025-05/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1171,942,6,0.00,1825.92,'Pay Period: 05/16/2025-05/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1172,942,37,1825.92,0.00,'Pay Period: 05/16/2025-05/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1173,943,6,0.00,584.10,'Tax Payment','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1174,944,6,0.00,175.00,'Zelle payment to Dora House Clea ner JPM929456383','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1175,945,6,3698.78,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1176,945,8,0.00,3698.78,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1177,946,6,0.00,95.00,'SERVICE CHARGES FOR THE MONTH OF MAY','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1178,947,6,993.49,0.00,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1179,947,14,0.00,993.49,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1180,948,6,0.00,29.71,'System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1181,949,6,0.00,27.78,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250603 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX0107117 EED:250603 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0603PPZJVR TRN: XXXXXX7117 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1182,950,6,0.00,3750.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1183,950,27,3750.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1184,951,6,0.00,3500.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1185,952,6,0.00,5000.00,'MOBILE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1186,952,27,5000.00,0.00,'MOBILE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1187,953,6,0.00,2300.00,'ORIG CO NAME:EFFECT WEB MEDIA ORIG ID:XXXXXX6202 DESC DATE:250604 CO ENTRY DESCR:SALE SEC:CCD TRACE#:XXXXXXXX7861406 EED:250604 IND ID: IND NAME:LITHIUM BATTERY COMPAN TRN: XXXXXX1406 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1188,954,6,4766.98,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1189,954,8,0.00,4766.98,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1190,955,6,0.00,175.00,'Zelle payment to Dora House Clea ner JPM929456383','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1191,956,6,0.00,15000.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1192,956,27,15000.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1193,957,6,0.00,2596.40,'ONLINE INTERNATIONAL WIRE TRANSFER A/C: CHINA MERCHANTS BANK CO.,LTD SHENZHEN CHINA XX804-0 CN REF: CPXXXX0600B TELXXXXXXXXX6435/INVOICE PAYMENT TRN: XXXXXX5157 ES 06/06','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1194,958,6,15000.00,0.00,'Online Transfer from CHK ...1215 transaction#: XXXXXXX4918','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1195,958,61,0.00,15000.00,'Online Transfer from CHK ...1215 transaction#: XXXXXXX4918','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1196,959,6,0.00,201.71,'ORIG CO NAME:PROG SELECT INS ORIG ID:XXXXXX8120 DESC DATE:250609 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX7726823 EED:250609 IND ID: IND NAME:Nathan Staro n TRN: XXXXXX6823 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1197,960,6,0.00,449.30,'Online Transfer from CHK ...2560 transaction#: XXXXXXX2875','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1198,961,6,0.00,141.48,'ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX5971472 EED:250609 IND ID:ST-P1O8D5D1H0P7 IND NAME:N ATHAN STARON TRN: XXXXXX1472 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1199,962,6,0.00,276.65,'ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250606 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX0997665 EED:250610 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX7665 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1200,963,6,0.00,1500.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1201,964,6,0.00,360.00,'GREENBERG DENTAL & ORTH TAMPA FL 06/11','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1202,965,6,0.00,221.00,'Online Transfer from CHK ...2560 transaction#: XXXXXXX0070','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1203,966,6,3750.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX6760292 EED:250612 IND ID: IND NAME:LBC Main (#2560) Workin g Capital TRN: XXXXXX0292 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1204,967,6,0.00,39.00,'SHOPIFY* XXXXX8973 SHOPIFY.COM IL 06/12','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1205,968,6,0.00,1825.93,'Pay Period: 06/01/2025-06/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1206,968,37,1825.93,0.00,'Pay Period: 06/01/2025-06/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1207,969,6,0.00,384.80,'Pay Period: 06/01/2025-06/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1208,969,37,384.80,0.00,'Pay Period: 06/01/2025-06/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1209,970,6,0.00,584.06,'Tax Payment','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1210,971,6,5000.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX5801655 EED:250613 IND ID: IND NAME:LBC Main (#2560) Workin g Capital TRN: XXXXXX1655 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1211,972,6,0.00,175.00,'Zelle payment to Dora House Cleaner JPM99bbydttz','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1212,973,6,0.00,3621.46,'ORIG CO NAME:TRUIST LN 506 ORIG ID:9 WEBXX5506 DESC DATE:250612 CO ENTRY DESCR:OLB PYMT SEC:WEB TRACE#:XXXXXXXX4324099 EED:250613 IND ID:XXXXXXXX9421001 IND NAME :NATHAN STARON TRN: XXXXXX4099 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1213,974,6,7500.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX8202242 EED:250616 IND ID: IND NAME:LBC Main (#2560) Nathan CC TRN: XXXXXX2242 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1214,975,6,0.00,6.00,'ORIG CO NAME:Rocket Money ORIG ID:XXXXXX5600 DESC DATE: CO ENTRY DESCR:Premium SEC:CCD TRACE#:XXXXXXXX7669932 EED:250616 IND ID:ST-H6S9L9Z2J6E5 IND NAME:ROCKET MONEY INC TRN: XXXXXX9932 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1215,976,6,0.00,3375.27,'Online Payment XXXXXXX8335 To HMG 4615 06/17','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1216,977,6,16246.74,0.00,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1217,978,6,0.00,485.78,'System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1218,979,6,0.00,1422.00,'Online Transfer from CHK ...2560 transaction#: XXXXXXX3028','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1219,980,6,0.00,4.99,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250618 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX3196884 EED:250618 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0618PPZKV8 TRN: XXXXXX6884 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1220,981,6,0.00,438.17,'ORIG CO NAME:PROG SELECT INS ORIG ID:XXXXXX8112 DESC DATE:250620 CO ENTRY DESCR:INS PREM SEC:WEB TRACE#:XXXXXXXX2194433 EED:250620 IND ID:POL XXXXX6654 IND NAME :LITHIUM BATTERY COMPAN BRANCH02DEBIT ACH TRN: XXXXXX4433 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1221,982,6,0.00,175.00,'Zelle payment to Dora House Cleaner JPM99bcspipo','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1222,983,6,0.00,1139.49,'ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250620 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX8750948 EED:250623 IND ID:PXXXX1798 IND NAME:STAR ON, NATHAN TRN: XXXXXX0948 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1223,983,51,1139.49,0.00,'ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250620 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX8750948 EED:250623 IND ID:PXXXX1798 IND NAME:STAR ON, NATHAN TRN: XXXXXX0948 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1224,984,6,0.00,141.48,'ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX9441884 EED:250623 IND ID:ST-B0H6A3U2W9I1 IND NAME:N ATHAN STARON TRN: XXXXXX1884 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1225,985,6,0.00,7.99,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250621 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX9526254 EED:250623 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0621PPZ4UK TRN: XXXXXX6254 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1226,986,6,0.00,870.00,'Online Transfer from CHK ...2560 transaction#: XXXXXXX8924','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1227,987,6,0.00,3753.00,'Online Transfer from CHK ...2560 transaction#: XXXXXXX5737','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1228,988,6,255.58,0.00,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1229,988,14,0.00,255.58,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1230,989,6,0.00,7.64,'System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1231,990,6,0.00,175.00,'Zelle payment to Dora House Cleaner JPM99bdks99s','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1232,991,6,0.00,384.80,'Pay Period: 06/16/2025-06/30/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1233,991,37,384.80,0.00,'Pay Period: 06/16/2025-06/30/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1234,992,6,0.00,1825.93,'Pay Period: 06/16/2025-06/30/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1235,992,37,1825.93,0.00,'Pay Period: 06/16/2025-06/30/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1236,993,6,0.00,584.06,'Tax Payment','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1237,994,6,0.00,95.00,'SERVICE CHARGES FOR THE MONTH OF JUNE','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1238,995,6,0.00,255.88,'Online Transfer to CHK ...7932 transaction#: XXXXXXX9752 07/03','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1239,996,6,0.00,27.78,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250703 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX0603197 EED:250703 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0703PPZK1L TRN: XXXXXX3197 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1240,997,6,0.00,175.00,'Zelle payment to Dora House Cleaner JPM99bejegb2','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1241,998,6,0.00,202.66,'ORIG CO NAME:PROG SELECT INS ORIG ID:XXXXXX8120 DESC DATE:250707 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX8115569 EED:250707 IND ID: IND NAME:Nathan Staro n TRN: XXXXXX5569 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1242,999,6,0.00,141.48,'ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX5333340 EED:250707 IND ID:ST-J1N0V1E5D4K6 IND NAME:N ATHAN STARON TRN: XXXXXX3340 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1243,1000,6,0.00,2300.00,'ORIG CO NAME:EFFECT WEB MEDIA ORIG ID:XXXXXX6202 DESC DATE:250705 CO ENTRY DESCR:SALE SEC:CCD TRACE#:XXXXXXXX6376969 EED:250707 IND ID: IND NAME:LITHIUM BATTERY COMPAN TRN: XXXXXX6969 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1244,1001,6,0.00,276.65,'ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250706 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX7162086 EED:250708 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX2086 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1245,1002,6,0.00,6920.00,'US DEPT OF EDU - DMCS XXX-XXX-5327 DC 07/08','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1246,1003,6,0.00,396.32,'ORIG CO NAME:PROG SELECT INS ORIG ID:XXXXXX8112 DESC DATE:250709 CO ENTRY DESCR:INS PREM SEC:WEB TRACE#:XXXXXXXX1000153 EED:250709 IND ID:POL XXXXX6654 IND NAME :LITHIUM BATTERY COMPAN BRANCH02DEBIT ACH TRN: XXXXXX0153 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1247,1004,6,0.00,175.00,'Zelle payment to Dora House Cleaner JPM99bfajjf7','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1248,1005,6,0.00,39.00,'SHOPIFY* XXXXX4597 SHOPIFY.COM IL 07/12','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1249,1006,6,2500.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX7426117 EED:250714 IND ID: IND NAME:LBC Main (#2560) Workin g Capital TRN: XXXXXX6117 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1250,1007,6,0.00,384.79,'Pay Period: 07/01/2025-07/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1251,1007,37,384.79,0.00,'Pay Period: 07/01/2025-07/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1252,1008,6,0.00,1825.92,'Pay Period: 07/01/2025-07/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1253,1008,37,1825.92,0.00,'Pay Period: 07/01/2025-07/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1254,1009,6,0.00,584.10,'Tax Payment','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1255,1010,6,0.00,6.00,'ORIG CO NAME:Rocket Money ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:Premium SEC:CCD TRACE#:XXXXXXXX5008603 EED:250715 IND ID:ST-V0G3N5O6D0B9 IND NAME:ROCKET MONEY INC TRN: XXXXXX8603 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1256,1011,6,10000.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX0498916 EED:250717 IND ID: IND NAME:LBC Main (#2560) Credit Card X4007 TRN: XXXXXX8916 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1257,1012,6,3500.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX0498913 EED:250717 IND ID: IND NAME:LBC Main (#2560) Workin g Capital for Min Cash TRN: XXXXXX8913 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1258,1013,6,0.00,4.99,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250718 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX3919777 EED:250718 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0718PPZFR9 TRN: XXXXXX9777 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1259,1014,6,0.00,175.00,'Zelle payment to Dora House Cleaner JPM99bg3yh79','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1260,1015,6,0.00,1766.57,'ORIG CO NAME:TRUIST LN 506 ORIG ID:9 WEBXX5506 DESC DATE:250717 CO ENTRY DESCR:OLB PYMT SEC:WEB TRACE#:XXXXXXXX5723231 EED:250718 IND ID:XXXXXXXX9421001 IND NAME :NATHAN STARON TRN: XXXXXX3231 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1261,1016,6,0.00,9500.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250718 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX5506447 EED:250718 IND ID:W8910 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6447 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1262,1016,27,9500.00,0.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250718 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX5506447 EED:250718 IND ID:W8910 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6447 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1263,1017,6,0.00,7.99,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250721 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX3463170 EED:250721 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0721PPZU2V TRN: XXXXXX3170 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1264,1018,6,0.00,141.48,'ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX2643690 EED:250721 IND ID:ST-T7I3H0X3A6Y2 IND NAME:N ATHAN STARON TRN: XXXXXX3690 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1265,1019,6,0.00,14.24,'DUCKWEED WD INC TAMPA FL 07/21','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1266,1019,58,14.24,0.00,'DUCKWEED WD INC TAMPA FL 07/21','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1267,1020,6,2699.97,0.00,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1268,1021,6,0.00,27.00,'System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1269,1022,6,0.00,1139.49,'ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250722 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX2005503 EED:250723 IND ID:PXXXX4907 IND NAME:STAR ON, NATHAN TRN: XXXXXX5503 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1270,1022,51,1139.49,0.00,'ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250722 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX2005503 EED:250723 IND ID:PXXXX4907 IND NAME:STAR ON, NATHAN TRN: XXXXXX5503 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1271,1023,6,0.00,1934.04,'Online Transfer to CHK ...7932 transaction#: XXXXXXX2635 07/23','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1272,1024,6,3500.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX0016918 EED:250723 IND ID: IND NAME:LBC Main (#2560) AMEX 2 3003 TRN: XXXXXX6918 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1273,1025,6,0.00,3000.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1274,1026,6,0.00,150.00,'Zelle payment to Camila JPM99bgzoxs1\n\nCleaning','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1275,1027,6,0.00,10.00,'ORIG CO NAME:INTUIT PYMT SOLN ORIG ID:XXXXXX6202 DESC DATE:250726 CO ENTRY DESCR:INTUITPMTSSEC:CCD TRACE#:XXXXXXXX4640197 EED:250728 IND ID:XXXXXXXX8541058 IND NAME:LITHIUM BATTERY CO INT TRN: XXXXXX0197 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1276,1028,6,0.00,1349.97,'ORIG CO NAME:INTUIT PYMT SOLN ORIG ID:XXXXXX6202 DESC DATE:250726 CO ENTRY DESCR:INTUITPMTSSEC:CCD TRACE#:XXXXXXXX4642927 EED:250728 IND ID:XXXXXXXX8541058 IND NAME:LITHIUM BATTERY CO INT TRN: XXXXXX2927 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1277,1029,6,3500.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX3273412 EED:250728 IND ID: IND NAME:LBC Main (#2560) OWC - min cash TRN: XXXXXX3412 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1278,1030,6,7312.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX0225396 EED:250729 IND ID: IND NAME:LBC Main (#2560) CC Pay ment (AMEX X3003) TRN: XXXXXX5396 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1279,1031,6,0.00,1456.31,'ORIG CO NAME:MIDLAND NATIONAL ORIG ID:XXXXXX4570 DESC DATE:250725 CO ENTRY DESCR:INSURANCE SEC:PPD TRACE#:XXXXXXXX1550329 EED:250729 IND ID: IND NAME:LITHIUM BA TTERY COMP TRN: XXXXXX0329 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1280,1032,6,0.00,7312.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1281,1033,6,2236.18,0.00,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1282,1033,14,0.00,2236.18,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1283,1034,6,0.00,66.86,'System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1284,1035,6,0.00,384.80,'Pay Period: 07/16/2025-07/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1285,1035,37,384.80,0.00,'Pay Period: 07/16/2025-07/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1286,1036,6,0.00,1825.92,'Pay Period: 07/16/2025-07/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1287,1036,37,1825.92,0.00,'Pay Period: 07/16/2025-07/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1288,1037,6,0.00,584.08,'Tax Payment','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1289,1038,6,9202.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX0982013 EED:250731 IND ID: IND NAME:LBC Main (#2560) Payrol l For Tanner Hance TRN: XXXXXX2013 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1290,1039,6,0.00,95.00,'SERVICE CHARGES FOR THE MONTH OF JULY','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1291,1040,6,0.00,2500.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1292,1041,6,2500.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX4002945 EED:250801 IND ID: IND NAME:LBC Main (#2560) AMEX C C (X3003) TRN: XXXXXX2945 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1293,1042,6,0.00,7535.58,'Pay Period: 08/01/2025-08/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1294,1042,37,7535.58,0.00,'Pay Period: 08/01/2025-08/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1295,1043,6,0.00,1666.25,'Tax Payment','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1296,1044,6,3257.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX6834172 EED:250804 IND ID: IND NAME:LBC Main (#2560) Custom er PO Deposit TRN: XXXXXX4172 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1297,1045,6,2000.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX6834178 EED:250804 IND ID: IND NAME:LBC Main (#2560) Min Ca sh & Working Capital TRN: XXXXXX4178 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1298,1046,6,0.00,27.78,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250802 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX9188581 EED:250804 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0802PPZB6G TRN: XXXXXX8581 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1299,1047,6,0.00,2300.00,'ORIG CO NAME:EFFECT WEB MEDIA ORIG ID:XXXXXX6202 DESC DATE:250804 CO ENTRY DESCR:SALE SEC:CCD TRACE#:XXXXXXXX8782758 EED:250804 IND ID: IND NAME:LITHIUM BATTERY COMPAN TRN: XXXXXX2758 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1300,1048,6,0.00,3257.00,'Online Transfer to CHK ...7932 transaction#: XXXXXXX1962 08/06','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1301,1049,6,0.00,350.00,'Zelle payment to Dora House Cleaner JPM99bik38ux','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1302,1050,6,0.00,202.66,'ORIG CO NAME:PROG SELECT INS ORIG ID:XXXXXX8120 DESC DATE:250807 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX7623523 EED:250807 IND ID: IND NAME:Nathan Staro n TRN: XXXXXX3523 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1303,1051,6,0.00,276.65,'ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250806 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX6803632 EED:250808 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX3632 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1304,1052,6,0.00,400.67,'ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX3033951 EED:250811 IND ID:ST-P3F2F1V3U1W5 IND NAME:N ATHAN STARON TRN: XXXXXX3951 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1305,1053,6,0.00,39.00,'SHOPIFY* XXXXX9587 SHOPIFY.COM IL 08/11','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1306,1054,6,0.00,384.79,'Pay Period: 08/01/2025-08/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1307,1054,37,384.79,0.00,'Pay Period: 08/01/2025-08/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1308,1055,6,0.00,1825.92,'Pay Period: 08/01/2025-08/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1309,1055,37,1825.92,0.00,'Pay Period: 08/01/2025-08/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1310,1056,6,0.00,584.10,'Tax Payment','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1311,1057,6,643.93,0.00,'REMOTE ONLINE DEPOSIT # 2','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1312,1058,6,1636.20,0.00,'REMOTE ONLINE DEPOSIT # 2','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1313,1059,6,0.00,6.00,'ORIG CO NAME:Rocket Money ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:Premium SEC:CCD TRACE#:XXXXXXXX7239467 EED:250815 IND ID:ST-O8T8A2D6Q8W9 IND NAME:ROCKET MONEY INC TRN: XXXXXX9467 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1314,1060,6,0.00,4.99,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250818 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX0467523 EED:250818 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0818PPZ8RL TRN: XXXXXX7523 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1315,1061,6,0.00,1200.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250818 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7112016 EED:250818 IND ID:M3298 IND NAME:NATHAN STARON ER AM TRN: XXXXXX2016 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1316,1062,6,0.00,99.99,'APPLE CASH SENT MONE 1INFINITELOOP CA 08/20','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1317,1063,6,0.00,1766.57,'ORIG CO NAME:TRUIST LN 506 ORIG ID:9 WEBXX5506 DESC DATE:250818 CO ENTRY DESCR:OLB PYMT SEC:WEB TRACE#:XXXXXXXX8723395 EED:250819 IND ID:XXXXXXXX9421001 IND NAME :NATHAN STARON TRN: XXXXXX3395 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1318,1064,6,0.00,7.99,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250820 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX7148327 EED:250820 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0820PPZUT8 TRN: XXXXXX8327 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1319,1065,6,1000.00,0.00,'Online Transfer from CHK ...7932 transaction#: XXXXXXX9003','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1320,1066,6,3500.00,0.00,'Online Transfer from CHK ...7932 transaction#: XXXXXXX2235','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1321,1067,6,0.00,350.00,'Zelle payment to Dora House Cleaner JPM99bkdg4za','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1322,1068,6,0.00,175.00,'ORIG CO NAME:PAYCARGO ORIG ID:XXXXXX5101 DESC DATE: CO ENTRY DESCR:ACHPAYMENTSEC:CCD TRACE#:XXXXXXXX8534285 EED:250822 IND ID:BATCH XXX3473 IND NAME:LITHIUM BAT TERY COMPAN NACHA 100A TRN: XXXXXX4285 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1323,1069,6,0.00,1139.49,'ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250822 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX8921695 EED:250825 IND ID:PXXXX7889 IND NAME:STAR ON, NATHAN TRN: XXXXXX1695 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1324,1070,6,0.00,114.03,'ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX1783929 EED:250825 IND ID:ST-C3I2V1N3B2V3 IND NAME:N ATHAN STARON TRN: XXXXXX3929 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1325,1071,6,0.00,62.54,'THEA Collect XXXXXX5205 TAMPA FL 08/25','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1326,1072,6,0.00,1200.00,'MOBILE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1327,1072,27,1200.00,0.00,'MOBILE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1328,1073,6,0.00,1825.92,'Pay Period: 08/16/2025-08/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1329,1073,37,1825.92,0.00,'Pay Period: 08/16/2025-08/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1330,1074,6,0.00,384.79,'Pay Period: 08/16/2025-08/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1331,1074,37,384.79,0.00,'Pay Period: 08/16/2025-08/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1332,1075,6,0.00,584.10,'Tax Payment','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1333,1076,6,0.00,396.32,'ORIG CO NAME:PROG SELECT INS ORIG ID:XXXXXX8112 DESC DATE:250829 CO ENTRY DESCR:INS PREM SEC:WEB TRACE#:XXXXXXXX6774546 EED:250829 IND ID:POL XXXXX6654 IND NAME :LITHIUM BATTERY COMPAN BRANCH02DEBIT ACH TRN: XXXXXX4546 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1334,1077,6,5000.00,0.00,'Online Transfer from CHK ...7932 transaction#: XXXXXXX0681','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1335,1078,6,0.00,1500.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250829 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX6353453 EED:250829 IND ID:M9752 IND NAME:NATHAN STARON ER AM TRN: XXXXXX3453 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1336,1078,27,1500.00,0.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250829 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX6353453 EED:250829 IND ID:M9752 IND NAME:NATHAN STARON ER AM TRN: XXXXXX3453 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1337,1079,6,0.00,1500.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250829 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX6353429 EED:250829 IND ID:M8876 IND NAME:NATHAN STARON ER AM TRN: XXXXXX3429 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1338,1079,27,1500.00,0.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250829 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX6353429 EED:250829 IND ID:M8876 IND NAME:NATHAN STARON ER AM TRN: XXXXXX3429 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1339,1080,6,0.00,1500.00,'MOBILE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1340,1081,6,6356.89,0.00,'Online Transfer from CHK ...7932 transaction#: XXXXXXX5201','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1341,1082,6,0.00,3000.00,'MOBILE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1342,1083,6,9202.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX6588415 EED:250902 IND ID: IND NAME:LBC Main (#2560) Hance Payroll TRN: XXXXXX8415 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1343,1084,6,0.00,129.00,'SERVICE CHARGES FOR THE MONTH OF AUGUST','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1344,1085,6,0.00,27.78,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250901 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX7320895 EED:250902 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0901PPZVWG TRN: XXXXXX0895 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1345,1086,6,0.00,2300.00,'ORIG CO NAME:EFFECT WEB MEDIA ORIG ID:XXXXXX6202 DESC DATE:250904 CO ENTRY DESCR:SALE SEC:CCD TRACE#:XXXXXXXX4961499 EED:250904 IND ID: IND NAME:LITHIUM BATTERY COMPAN TRN: XXXXXX1499 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1346,1087,6,0.00,46.23,'Zelle payment to Leslie Staron JPM99bm5pkkx','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1347,1088,6,1665.84,0.00,'Customer credit - shipping','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1348,1088,8,0.00,1665.84,'Customer credit - shipping','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1349,1089,6,3884.86,0.00,'Customer credit - shipping','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1350,1089,8,0.00,3884.86,'Customer credit - shipping','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1351,1090,6,0.00,233.95,'CRAB SHACK SAINT PETERSB FL 09/07','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1352,1091,6,0.00,1000.00,'MOBILE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1353,1092,6,0.00,7535.58,'Pay Period: 09/01/2025-09/30/2025 Check created out of sequence in a prior quarter','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1354,1092,37,7535.58,0.00,'Pay Period: 09/01/2025-09/30/2025 Check created out of sequence in a prior quarter','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1355,1093,6,0.00,1435.25,'Tax Payment','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1356,1094,6,0.00,202.66,'ORIG CO NAME:PROG SELECT INS ORIG ID:XXXXXX8120 DESC DATE:250908 CO ENTRY DESCR:INS PREM SEC:PPD TRACE#:XXXXXXXX5411599 EED:250908 IND ID: IND NAME:Nathan Staro n TRN: XXXXXX1599 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1357,1095,6,0.00,141.48,'ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX5159135 EED:250908 IND ID:ST-X8U3R7N7W5L2 IND NAME:N ATHAN STARON TRN: XXXXXX9135 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1358,1096,6,2900.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX2799298 EED:250908 IND ID: IND NAME:LBC Main (#2560) Bayfro nt Capital (Transaction Fees) TRN: XXXXXX9298 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1359,1097,6,0.00,350.00,'Zelle payment to Dora House Cleaner JPM99bmmfrl1','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1360,1098,6,3500.00,0.00,'ORIG CO NAME:JD CAPITAL ADVIS ORIG ID:SXXXXX7665 DESC DATE:250909 CO ENTRY DESCR:SENDER SEC:CTX TRACE#:XXXXXXXX6471376 EED:250909 IND ID:813722100 IND NAME:0000 LITHIUM BATTERY TRN: XXXXXX1376 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1361,1099,6,0.00,276.65,'ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250906 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX9686584 EED:250909 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX6584 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1362,1100,6,0.00,39.00,'SHOPIFY* XXXXX8635 SHOPIFY.COM IL 09/10','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1363,1101,6,6500.00,0.00,'ORIG CO NAME:JD CAPITAL ADVIS ORIG ID:SXXXXX7665 DESC DATE:250910 CO ENTRY DESCR:SENDER SEC:CTX TRACE#:XXXXXXXX1567022 EED:250910 IND ID:813990834 IND NAME:0000 LITHIUM BATTERY TRN: XXXXXX7022 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1364,1102,6,0.00,3279.74,'Online Payment XXXXXXX2890 To HMG 4615 09/10','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1365,1103,6,0.00,250.00,'ONLINE INTERNATIONAL WIRE TRANSFER A/C: BANK OF CHINA HONG KONG LTD WEST KOWLOON HONG KONG HK REF: LBC BMS XXXX0910 INVOICE PAYMENT TRN: XXXXXX5254 ES 09/11','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1366,1104,6,0.00,1825.94,'Pay Period: 09/01/2025-09/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1367,1104,37,1825.94,0.00,'Pay Period: 09/01/2025-09/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1368,1105,6,0.00,506.55,'Tax Payment','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1369,1106,6,0.00,121.97,'ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX5600 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX1704189 EED:250915 IND ID:ST-E9V3N5M2D3U8 IND NAME:N ATHAN STARON TRN: XXXXXX4189 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1370,1107,6,0.00,210.00,'PROGRESSIVE *INSURANC XXX-XXX-4737 OH 09/15','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1371,1108,6,0.00,6.00,'ORIG CO NAME:Rocket Money ORIG ID:XXXXXX8598 DESC DATE: CO ENTRY DESCR:Premium SEC:CCD TRACE#:XXXXXXXX5441658 EED:250915 IND ID:ST-N2V5J6V0U4E7 IND NAME:ROCKET MONEY INC TRN: XXXXXX1658 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1372,1109,6,0.00,396.32,'ORIG CO NAME:PROG SELECT INS ORIG ID:XXXXXX8112 DESC DATE:250916 CO ENTRY DESCR:INS PREM SEC:WEB TRACE#:XXXXXXXX2573929 EED:250916 IND ID:POL XXXXX6654 IND NAME :LITHIUM BATTERY COMPAN BRANCH09DEBIT ACH TRN: XXXXXX3929 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1373,1110,6,0.00,4.99,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250918 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX7879422 EED:250918 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0918PPZHER TRN: XXXXXX9422 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1374,1111,6,0.00,1766.57,'ORIG CO NAME:TRUIST LN 506 ORIG ID:9 WEBXX5506 DESC DATE:250917 CO ENTRY DESCR:OLB PYMT SEC:WEB TRACE#:XXXXXXXX8170379 EED:250918 IND ID:XXXXXXXX9421001 IND NAME :NATHAN STARON TRN: XXXXXX0379 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1375,1112,6,0.00,7.99,'ORIG CO NAME:PAYPAL ORIG ID:PAYPALSI77 DESC DATE:250919 CO ENTRY DESCR:INST XFER SEC:WEB TRACE#:XXXXXXXX1391874 EED:250919 IND ID:TRUTHFINDER IND NAME:LITHIUM B ATTERY COMPAN XX0919PPZTLV TRN: XXXXXX1874 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1376,1113,6,0.00,1100.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1377,1114,6,0.00,141.48,'ORIG CO NAME:NEXT INSUR (AP I ORIG ID:XXXXXX5600 DESC DATE: CO ENTRY DESCR:NEXT INSURSEC:WEB TRACE#:XXXXXXXX1031174 EED:250922 IND ID:ST-J6N8S9P0N5R0 IND NAME:N ATHAN STARON TRN: XXXXXX1174 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1378,1115,6,0.00,1000.00,'CUSTOMER SERVICE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1379,1115,27,1000.00,0.00,'CUSTOMER SERVICE PAYMENT - THANK YOU','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1380,1116,6,21.91,0.00,'REMOTE ONLINE DEPOSIT # 2','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1381,1116,58,0.00,21.91,'REMOTE ONLINE DEPOSIT # 2','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1382,1117,6,1226.31,0.00,'REMOTE ONLINE DEPOSIT # 2','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1383,1118,6,0.00,1139.49,'ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250922 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX1906027 EED:250923 IND ID:PXXXX6046 IND NAME:STAR ON, NATHAN TRN: XXXXXX6027 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1384,1119,6,0.00,350.00,'Zelle payment to Dora House Cleaner JPM99bofhwnh','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1385,1120,6,219.44,0.00,'REMOTE ONLINE DEPOSIT # 2','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1386,1121,6,6912.00,0.00,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1387,1121,14,0.00,6912.00,'System-recorded deposit for QuickBooks Payments','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1388,1122,6,0.00,69.12,'System-recorded fee for QuickBooks Payments. Fee-name: DiscountRateFee, fee-type: Daily.','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1389,1123,6,0.00,7535.58,'Pay Period: 10/01/2025-10/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1390,1123,37,7535.58,0.00,'Pay Period: 10/01/2025-10/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1391,1124,6,0.00,1435.25,'Tax withdrawal','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1392,1124,36,1435.25,0.00,'Tax withdrawal','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1393,1125,6,0.00,6813.53,'Pay Period: 10/01/2025-10/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1394,1126,6,0.00,2093.69,'Pay Period: 10/01/2025-10/15/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1395,1127,6,0.00,3887.21,'Tax withdrawal','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1396,1127,36,3887.21,0.00,'Tax withdrawal','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1397,1128,6,0.00,6813.52,'Pay Period: 10/16/2025-10/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1398,1129,6,0.00,2093.69,'Pay Period: 10/16/2025-10/31/2025','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1399,1130,6,0.00,3876.23,'Tax withdrawal','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1400,1130,36,3876.23,0.00,'Tax withdrawal','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1401,1131,6,135.00,0.00,'Tax overpayment credit refund','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1402,1131,36,0.00,135.00,'Tax overpayment credit refund','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1403,1132,7,0.00,1658.00,'Online Transfer from CHK ...7932 transaction#: XXXXXXX5378','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1404,1133,7,0.00,5262.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1405,1133,26,5262.00,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1406,1134,7,31050.00,0.00,'Online Transfer to CHK ...7932 transaction#: XXXXXXX9694 01/28','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1407,1135,7,0.00,15000.00,'Online Transfer to CHK ...2560 transaction#: XXXXXXX4735 02/04','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1408,1136,7,0.00,6050.01,'Online Transfer to CHK ...2560 transaction#: XXXXXXX1152 02/05','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1409,1137,7,0.00,9999.99,'Online Transfer to CHK ...2560 transaction#: XXXXXXX8062 02/07','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1410,1138,7,6609.98,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1411,1138,8,0.00,6609.98,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1412,1139,7,0.00,6609.98,'Online Transfer to CHK ...2560 transaction#: XXXXXXX3099 02/26','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1413,1140,7,0.00,2132.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1414,1140,26,2132.00,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1415,1141,7,0.00,6531.31,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1416,1141,26,6531.31,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1417,1142,7,0.00,2323.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1418,1142,26,2323.00,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1419,1143,7,0.00,10225.97,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1420,1143,26,10225.97,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1421,1144,7,0.00,13918.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1422,1144,26,13918.00,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1423,1145,7,1531.98,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1424,1145,8,0.00,1531.98,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1425,1146,7,0.00,639.60,'ONLINE INTERNATIONAL WIRE TRANSFER A/C: CHINA MERCHANTS BANK CO.,LTD SHENZHEN CHINA XX804-0 CN REF: CPXXXX0600B TELXXXXXXXXX6435/INVOICE PAYMENT/BNF/CPXXXX0600B TRN: XXXXXX5070 ES 03/11','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1426,1147,7,0.00,2896.69,'ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: LBC1419/BNF/LBC1419 IMAD: 0311MMQFMP2KXX1806 TRN: 32 XXXX5070ES 03/11','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1427,1148,7,2896.69,0.00,'Online Transfer from CHK ...2560 transaction#: XXXXXXX2334','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1428,1149,7,639.60,0.00,'Online Transfer from CHK ...2560 transaction#: XXXXXXX6248','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1429,1150,7,0.00,1531.98,'Online Transfer to CHK ...2560 transaction#: XXXXXXX6587 03/12','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1430,1151,7,0.00,696.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1431,1151,26,696.00,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1432,1152,7,696.00,0.00,'Online Transfer from CHK ...2560 transaction#: XXXXXXX4707','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1433,1153,7,12431.95,0.00,'LBC#7932 Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1434,1154,7,0.00,12431.95,'ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: LBC1415/BNF/LBC1415 IMAD: 0402MMQFMP2NXX0120 TRN: 33 XXXX5092ES 04/02','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1435,1155,7,5695.00,0.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#7932 SEC:CCD TRACE#:XXXXXXXX6424362 EED:250407 IND ID: IND NAME:LBC Int #7932 CPXXX2090 1A TRN: XXXXXX4362 TC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1436,1156,7,0.00,5695.00,'ONLINE INTERNATIONAL WIRE TRANSFER A/C: CHINA MERCHANTS BANK CO.,LTD SHENZHEN CHINA XX804-0 CN REF: LBC INVOICE: CPXXXX0901A TELXXXXXXXXX6435/INVOICE PAYMENT/BN F/LBC INVO ICE: CPXXXX0901A TRN: XXXXXX5098 ES 04/08','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1437,1157,7,0.00,1665.84,'Online Transfer to CHK ...2560 transaction#: XXXXXXX0314 04/09','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1438,1158,7,1665.84,0.00,'CHIPS CREDIT VIA: HSBC BANK USA, N.A./0108 B/O: BERMUDA ELECTRIC LIGHT COMPANY LIMICHURCH STREET HAMILTON,BERMUDA/BM REF: NBNF=LITHIUM BATTERY COMPANY INTL, LLC TAMPA FL XXXXX-8006 US/AC-X0000 XXX5806 ORG=/BM HBBM XXX-XXXXX2-002 CHURCH STREET HAMILTON,BERMUDA/BM OGB=HSBC BANK BERMUDA LIMITED HAMIL TON BERMUDA B SSN: XXXX1521 TRN: XXXXXX9099 FC','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1439,1159,7,13631.05,0.00,'Online Transfer from CHK ...2560 transaction#: XXXXXXX4037','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1440,1160,7,0.00,13631.05,'ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: SFD:LBC1417/BNF/SFD:LBC1417 IMAD: 0410MMQFMP2NXX9006 TRN: XXXXXX5100 ES 04/10','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1441,1161,7,9940.00,0.00,'BOOK TRANSFER CREDIT B/O: N-VISION OPTICS LLC NEEDHAM MA XXXXX-3133 US TRN: XXXXXX5105 ES','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1442,1162,7,33769.84,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1443,1162,8,0.00,33769.84,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1444,1163,7,17896.81,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1445,1163,8,0.00,17896.81,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1446,1164,7,0.00,29997.94,'ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: LBC ORDER 1353A/BNF/LBC ORDER 1353A IMAD: 0416MMQFMP 2MXX3371 TRN: XXXXXX5106 ES 04/16','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1447,1165,7,0.00,20750.00,'ONLINE DOMESTIC WIRE TRANSFER VIA: BK AMER NYC/XXXXX9593 A/C: JD CAPITAL ADVISORS LLC DUNEDIN FL X4698 US REF: SOF WEEK BOOTH REIMBURSEMENT (CLARION EVENTS)/BNF /SOF WEEK BOOTH REIMB URSEMENT (CLARION EVENTS) IMAD: 0416MMQFMP2MXX4719 TRN: XXXXXX5106 ES 04/16','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1448,1166,7,0.00,389.00,'ONLINE INTERNATIONAL WIRE TRANSFER A/C: JPMORGAN CHASE BANK N A HONG KONG HONG KONG XX9077 HK REF: GSL-SHXXXX0417US01 INVOICE PAYMENT/BNF/GSL-SHXXXX0417US01 TRN : XXXXXX5107ES 04/17','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1449,1167,7,0.00,3396.05,'Online Transfer to CHK ...2560 transaction#: XXXXXXX2964 04/21','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1450,1168,7,0.00,7073.66,'Online Transfer to CHK ...2560 transaction#: XXXXXXX5521 04/21','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1451,1169,7,18608.60,0.00,'Online Transfer from CHK ...2560 transaction#: XXXXXXX3274','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1452,1170,7,0.00,18608.60,'ONLINE INTERNATIONAL WIRE TRANSFER A/C: JPMORGAN CHASE BANK N A HONG KONG HONG KONG XX9077 HK REF: LBC INVOICE FOR GSL-SHXXXX0204US01 AND GSL-SHXXXX1026US01 INV OICE PAYM ENT/BNF/LBC INVOICE FOR GSL-SHX0250 204US01 AND GSL-SHXXXX1026US01 TRN: XXXXXX5112 ES 04/22','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1453,1171,7,0.00,432.00,'ONLINE INTERNATIONAL WIRE TRANSFER A/C: CHINA MERCHANTS BANK CO.,LTD SHENZHEN CHINA XX804-0 CN REF: CPXXXX2900C (43.5V35AH) TELXXXXXXXXX6435/INVOICE PAYMENT TRN : XXXXXX5125ES 05/05','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1454,1172,7,432.00,0.00,'Online Transfer from CHK ...2560 transaction#: XXXXXXX4699','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1455,1173,7,449.30,0.00,'Online Transfer from CHK ...2560 transaction#: XXXXXXX2875','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1456,1174,7,0.00,449.30,'ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: SFD LBC1424 IMAD: 0609MMQFMP2MXX3248 TRN: XXXXXX5160 ES 06/09','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1457,1175,7,221.00,0.00,'Online Transfer from CHK ...2560 transaction#: XXXXXXX0070','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1458,1176,7,0.00,221.00,'ONLINE INTERNATIONAL WIRE TRANSFER A/C: BANK OF NINGBO CO LTD NINGBO CITY CHINA XX510-0 CN BEN:/XXXXXXXXXXXXX1931 SHENZHEN GSL ENERGY REF: GSL-SHXXXX0417US01 IN VOICE PAYMENT TRN: XXXXXX5163 ES 06/12','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1459,1177,7,1422.00,0.00,'Online Transfer from CHK ...2560 transaction#: XXXXXXX3028','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1460,1178,7,0.00,1422.00,'ONLINE INTERNATIONAL WIRE TRANSFER A/C: CHINA MERCHANTS BANK CO.,LTD SHENZHEN CHINA XX804-0 CN REF: CPXX0616A - INITIAL DEPOSIT TELXXXXXXXXX6435/INVOICE PAYMENT TRN: XXXXXX5169 ES 06/18','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1461,1178,26,1422.00,0.00,'ONLINE INTERNATIONAL WIRE TRANSFER A/C: CHINA MERCHANTS BANK CO.,LTD SHENZHEN CHINA XX804-0 CN REF: CPXX0616A - INITIAL DEPOSIT TELXXXXXXXXX6435/INVOICE PAYMENT TRN: XXXXXX5169 ES 06/18','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1462,1179,7,870.00,0.00,'Online Transfer from CHK ...2560 transaction#: XXXXXXX8924','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1463,1180,7,0.00,870.00,'ONLINE INTERNATIONAL WIRE TRANSFER A/C: JPMORGAN CHASE BANK N A HONG KONG HONG KONG XX9077 HK REF: GSL-SHXXXX0616US01 INVOICE PAYMENT TRN: XXXXXX5175 ES 06/24','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1464,1180,26,870.00,0.00,'ONLINE INTERNATIONAL WIRE TRANSFER A/C: JPMORGAN CHASE BANK N A HONG KONG HONG KONG XX9077 HK REF: GSL-SHXXXX0616US01 INVOICE PAYMENT TRN: XXXXXX5175 ES 06/24','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1465,1181,7,3753.00,0.00,'Online Transfer from CHK ...2560 transaction#: XXXXXXX5737','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1466,1182,7,0.00,3753.00,'ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: SFD-LBC1425R1 IMAD: 0626MMQFMP2KXX2685 TRN: 36133751 77ES 06/26','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1467,1182,26,3753.00,0.00,'ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: SFD-LBC1425R1 IMAD: 0626MMQFMP2KXX2685 TRN: 36133751 77ES 06/26','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1468,1183,7,255.88,0.00,'Online Transfer to CHK ...7932 transaction#: XXXXXXX9752 07/03','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1469,1184,7,0.00,255.88,'ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: SFD-LBC1424 IMAD: 0703MMQFMP2MXX5454 TRN: XXXXXX5184 ES 07/03','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1470,1185,7,1934.04,0.00,'Online Transfer to CHK ...7932 transaction#: XXXXXXX2635 07/23','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1471,1186,7,0.00,1934.04,'ONLINE INTERNATIONAL WIRE TRANSFER A/C: CHINA MERCHANTS BANK CO.,LTD SHENZHEN CHINA XX804-0 CN REF: LBC INVOICE: CPXXXX2900C TELXXXXXXXXX6435/INVOICE PAYMENT TR N: XXXXXX5204ES 07/23','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1472,1187,7,3257.00,0.00,'Online Transfer to CHK ...7932 transaction#: XXXXXXX1962 08/06','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1473,1188,7,25000.00,0.00,'FEDWIRE CREDIT VIA: FEDERAL HOME LOAN BK OF PITTSBURGH/XXXXX1435 B/O: INFIRST BANK INDIANA, PA X5701 REF: CHASE NYC/CTR/BNF=LITHIUM BATTERY COMPANY INTL, LLC TA MPA FL XXXX4-800 6 US/AC-XXXXXXXX5806 RFB=NOTPROVIDE D OBI=/PURP/START UP FUNDS FOR SON\' S COMP ANY/URI/BUSINESS START UP CO ST IMAD: 0807MMQFMPDRXX0053 TRN: XXXXXX1219 FF','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1474,1188,45,0.00,25000.00,'FEDWIRE CREDIT VIA: FEDERAL HOME LOAN BK OF PITTSBURGH/XXXXX1435 B/O: INFIRST BANK INDIANA, PA X5701 REF: CHASE NYC/CTR/BNF=LITHIUM BATTERY COMPANY INTL, LLC TA MPA FL XXXX4-800 6 US/AC-XXXXXXXX5806 RFB=NOTPROVIDE D OBI=/PURP/START UP FUNDS FOR SON\' S COMP ANY/URI/BUSINESS START UP CO ST IMAD: 0807MMQFMPDRXX0053 TRN: XXXXXX1219 FF','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1475,1189,7,0.00,402.88,'ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: LBC INVOICE 1426 IMAD: 0807MMQFMP2MXX4643 TRN: 30367 X5219ES 08/07','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1476,1189,26,402.88,0.00,'ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: LBC INVOICE 1426 IMAD: 0807MMQFMP2MXX4643 TRN: 30367 X5219ES 08/07','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1477,1190,7,0.00,10431.37,'ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: INVOICELBC1427 IMAD: 0812MMQFMP2KXX7336 TRN: 3307085 224ES 08/12','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1478,1190,26,10431.37,0.00,'ONLINE DOMESTIC WIRE TRANSFER VIA: COMMUNITY FSB/XXXXX3008 A/C: SUNFID NEW ENERGY CO LTD QINXI TOWN CN REF: INVOICELBC1427 IMAD: 0812MMQFMP2KXX7336 TRN: 3307085 224ES 08/12','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1479,1191,7,0.00,1000.00,'Online Transfer from CHK ...7932 transaction#: XXXXXXX9003','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1480,1192,7,0.00,3500.00,'Online Transfer from CHK ...7932 transaction#: XXXXXXX2235','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1481,1193,7,0.00,51566.26,'ONLINE DOMESTIC WIRE TRANSFER VIA: BK AMER NYC/XXXXX9593 A/C: LR PROPERTY MANAGEMENT LLC TAMPA FL X3606 US REF: LBC SECURITY DEPOSIT IMAD: 0822MMQFMP2KXX3207 TR N: XXXXXX5234ES 08/22','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1482,1194,7,50000.00,0.00,'FEDWIRE CREDIT VIA: CAPITAL ONE, NA/XXXXX3502 B/O: UP NORTH CONSULTING LIMITED LIABILITAMPA,FL,X3616,US REF: CHASE NYC/CTR/BNF=LITHIUM BATTERY COMPANY INTL, LLC TAMPA FL XXXX4-800 6 US/AC-XXXXXXXX5806 RFB=SBBMM09TD3 AWDCPN OBI=/URI/COACHMAN LEASE IMAD: 0822MMQFMPGHXX0496 TRN: XXXXXX1234 FF','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1483,1195,7,0.00,51556.26,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1484,1195,26,51556.26,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1485,1196,7,0.00,5000.00,'Online Transfer from CHK ...7932 transaction#: XXXXXXX0681','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1486,1197,7,0.00,6356.89,'Online Transfer from CHK ...7932 transaction#: XXXXXXX5201','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1487,1198,7,22141.24,0.00,'GSL Customer','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1488,1199,7,0.00,9836.97,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1489,1199,26,9836.97,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1490,1200,7,0.00,12431.95,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1491,1200,26,12431.95,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1492,1201,7,0.00,19842.55,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1493,1201,26,19842.55,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1494,1202,7,0.00,6118.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1495,1202,26,6118.00,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1496,1203,8,11052.98,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1497,1204,8,0.00,11052.98,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1498,1204,14,11052.98,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1499,1205,8,7430.49,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1500,1206,8,0.00,6159.90,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1501,1206,14,6159.90,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1502,1207,8,24896.80,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1503,1208,8,0.00,6999.99,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1504,1208,14,6999.99,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1505,1209,8,8033.96,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1506,1210,8,6609.98,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1507,1211,8,0.00,6609.98,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1508,1212,8,0.00,2494.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1509,1212,14,2494.00,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1510,1213,8,0.00,1280.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1511,1213,14,1280.00,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1512,1214,8,0.00,1270.59,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1513,1214,14,1270.59,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1514,1215,8,1531.98,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1515,1216,8,0.00,1531.98,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1516,1217,8,0.00,3266.98,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1517,1218,8,1499.99,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1518,1219,8,0.00,1499.99,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1519,1219,14,1499.99,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1520,1220,8,0.00,33769.84,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1521,1221,8,0.00,17896.81,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1522,1222,8,36346.30,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1523,1223,8,4799.93,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1524,1224,8,0.00,1500.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1525,1224,14,1500.00,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1526,1225,8,0.00,36346.30,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1527,1226,8,0.00,599.96,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1528,1226,14,599.96,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1529,1227,8,0.00,3698.78,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1530,1228,8,1249.07,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1531,1229,8,0.00,993.49,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1532,1229,14,993.49,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1533,1230,8,0.00,4766.98,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1534,1231,8,6246.75,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1535,1232,8,12799.99,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1536,1233,8,0.00,9999.99,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1537,1233,14,9999.99,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1538,1234,8,0.00,6246.75,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1539,1234,14,6246.75,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1540,1235,8,0.00,255.58,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1541,1235,14,255.58,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1542,1236,8,2236.18,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1543,1237,8,0.00,1350.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1544,1237,14,1350.00,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1545,1238,8,0.00,1349.97,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1546,1238,14,1349.97,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1547,1239,8,25328.03,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1548,1240,8,222353.03,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1549,1241,8,0.00,2236.18,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1550,1241,14,2236.18,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1551,1242,8,0.00,1665.84,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1552,1243,8,0.00,3884.86,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1553,1244,8,13824.00,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1554,1245,8,0.00,6912.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1555,1245,14,6912.00,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1556,1246,8,13992.52,0.00,'','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1557,1247,10,11424.00,0.00,'24V 75Ah Lithium Ion Battery - LFP - Opening inventory and value','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1558,1247,59,0.00,11424.00,'24V 75Ah Lithium Ion Battery - LFP - Opening inventory and value','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1559,1248,12,51556.26,0.00,'September 2025 Rent','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1560,1248,26,0.00,51556.26,'September 2025 Rent','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1561,1249,14,11052.98,0.00,'Paid via QuickBooks Payments: Payment ID 610162','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1562,1249,8,0.00,11052.98,'Paid via QuickBooks Payments: Payment ID 610162','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1563,1250,14,0.00,11052.98,'Paid via QuickBooks Payments: Payment ID 610162','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1564,1251,14,6159.90,0.00,'Paid via QuickBooks Payments: Payment ID 498-517','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1565,1251,8,0.00,6159.90,'Paid via QuickBooks Payments: Payment ID 498-517','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1566,1252,14,0.00,6159.90,'Paid via QuickBooks Payments: Payment ID 498-517','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1567,1253,14,6999.99,0.00,'Paid via QuickBooks Payments: Payment ID R58143','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1568,1253,8,0.00,6999.99,'Paid via QuickBooks Payments: Payment ID R58143','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1569,1254,14,0.00,6999.99,'Paid via QuickBooks Payments: Payment ID R58143','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1570,1255,14,2494.00,0.00,'Paid via QuickBooks Payments: Payment ID 200418','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1571,1255,8,0.00,2494.00,'Paid via QuickBooks Payments: Payment ID 200418','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1572,1256,14,1280.00,0.00,'Paid via QuickBooks Payments: Payment ID 115047','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1573,1256,8,0.00,1280.00,'Paid via QuickBooks Payments: Payment ID 115047','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1574,1257,14,0.00,2494.00,'Paid via QuickBooks Payments: Payment ID 200418','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1575,1258,14,0.00,1280.00,'Paid via QuickBooks Payments: Payment ID 115047','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1576,1259,14,1270.59,0.00,'Paid via QuickBooks Payments: Payment ID 650216','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1577,1259,8,0.00,1270.59,'Paid via QuickBooks Payments: Payment ID 650216','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1578,1260,14,0.00,1270.59,'Paid via QuickBooks Payments: Payment ID 650216','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1579,1261,14,1499.99,0.00,'Paid via QuickBooks Payments: Payment ID 221229','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1580,1261,8,0.00,1499.99,'Paid via QuickBooks Payments: Payment ID 221229','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1581,1262,14,0.00,1499.99,'Paid via QuickBooks Payments: Payment ID 221229','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1582,1263,14,1500.00,0.00,'Paid via QuickBooks Payments: Payment ID 291-997','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1583,1263,8,0.00,1500.00,'Paid via QuickBooks Payments: Payment ID 291-997','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1584,1264,14,0.00,1500.00,'Paid via QuickBooks Payments: Payment ID 291-997','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1585,1265,14,599.96,0.00,'Paid via QuickBooks Payments: Payment ID 703-357','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1586,1265,8,0.00,599.96,'Paid via QuickBooks Payments: Payment ID 703-357','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1587,1266,14,0.00,599.96,'Paid via QuickBooks Payments: Payment ID 703-357','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1588,1267,14,993.49,0.00,'Paid via QuickBooks Payments: Payment ID 02754D','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1589,1267,8,0.00,993.49,'Paid via QuickBooks Payments: Payment ID 02754D','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1590,1268,14,0.00,993.49,'Paid via QuickBooks Payments: Payment ID 02754D','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1591,1269,14,9999.99,0.00,'Paid via QuickBooks Payments: Payment ID 034416','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1592,1269,8,0.00,9999.99,'Paid via QuickBooks Payments: Payment ID 034416','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1593,1270,14,6246.75,0.00,'Paid via QuickBooks Payments: Payment ID 260460','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1594,1270,8,0.00,6246.75,'Paid via QuickBooks Payments: Payment ID 260460','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1595,1271,14,0.00,9999.99,'Paid via QuickBooks Payments: Payment ID 034416','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1596,1272,14,0.00,6246.75,'Paid via QuickBooks Payments: Payment ID 260460','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1597,1273,14,255.58,0.00,'Paid via QuickBooks Payments: Payment ID 04071D','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1598,1273,8,0.00,255.58,'Paid via QuickBooks Payments: Payment ID 04071D','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1599,1274,14,0.00,255.58,'Paid via QuickBooks Payments: Payment ID 04071D','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1600,1275,14,1350.00,0.00,'Paid via QuickBooks Payments: Payment ID 823-147','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1601,1275,8,0.00,1350.00,'Paid via QuickBooks Payments: Payment ID 823-147','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1602,1276,14,1349.97,0.00,'Paid via QuickBooks Payments: Payment ID 824-387','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1603,1276,8,0.00,1349.97,'Paid via QuickBooks Payments: Payment ID 824-387','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1604,1277,14,0.00,1350.00,'Paid via QuickBooks Payments: Payment ID 823-147','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1605,1278,14,0.00,1349.97,'Paid via QuickBooks Payments: Payment ID 824-387','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1606,1279,14,2236.18,0.00,'Paid via QuickBooks Payments: Payment ID 288032','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1607,1279,8,0.00,2236.18,'Paid via QuickBooks Payments: Payment ID 288032','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1608,1280,14,0.00,2236.18,'Paid via QuickBooks Payments: Payment ID 288032','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1609,1281,14,6912.00,0.00,'Paid via QuickBooks Payments: Payment ID 229-367','2025-11-12 00:09:23','2025-11-12 00:09:23'),
(1610,1281,8,0.00,6912.00,'Paid via QuickBooks Payments: Payment ID 229-367','2025-11-12 00:09:23','2025-11-12 00:09:24'),
(1611,1282,14,0.00,6912.00,'Paid via QuickBooks Payments: Payment ID 229-367','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1612,1283,18,66095.84,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1613,1284,19,112351.29,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1614,1285,20,9959.30,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1615,1286,25,1769719.80,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1616,1287,25,221990.00,0.00,'WIRE TO FOGEL LAW GROUP TRUST ACCOUNT - For Plant Machinery & Equipement','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1617,1288,36,358.00,0.00,'Holding account setup','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1618,1289,36,1435.25,0.00,'Tax withdrawal','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1619,1290,36,0.00,1435.25,'Tax Payment for Period: 10/01/2025-10/03/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1620,1291,36,3887.21,0.00,'Tax withdrawal','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1621,1292,36,0.00,3876.21,'Tax Payment for Period: 10/15/2025-10/17/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1622,1293,36,0.00,234.00,'Tax Payment for Period: 07/01/2025-09/30/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1623,1294,36,3876.23,0.00,'Tax withdrawal','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1624,1295,36,0.00,135.00,'Tax overpayment credit refund','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1625,1296,36,0.00,3876.23,'Tax Payment for Period: 10/29/2025-10/31/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1626,1297,26,8503.95,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1627,1298,26,1500.00,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1628,1299,26,0.00,6531.31,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1629,1300,26,5262.00,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1630,1301,26,0.00,2323.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1631,1302,26,0.00,13918.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1632,1303,26,2132.00,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1633,1304,26,6531.31,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1634,1305,26,2323.00,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1635,1306,26,10225.97,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1636,1307,26,13918.00,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1637,1308,26,0.00,2132.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1638,1309,26,0.00,696.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1639,1310,26,696.00,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1640,1311,26,0.00,50173.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1641,1312,26,10034.60,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1642,1313,26,0.00,7540.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1643,1314,26,1422.00,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1644,1315,26,0.00,4127.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1645,1316,26,870.00,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1646,1317,26,0.00,12682.13,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1647,1318,26,3753.00,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1648,1319,26,10034.60,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1649,1320,26,15051.90,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1650,1321,26,0.00,1341.62,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1651,1322,26,402.88,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1652,1323,26,0.00,60442.92,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1653,1324,26,10431.37,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1654,1325,26,51556.26,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1655,1326,26,9836.97,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1656,1327,26,12431.95,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1657,1328,26,19842.55,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1658,1329,26,0.00,5262.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1659,1330,26,0.00,51556.26,'September 2025 Rent','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1660,1330,12,51556.26,0.00,'September 2025 Rent','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1661,1331,26,0.00,6000.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1662,1332,26,0.00,3428.70,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1663,1333,26,6118.00,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1664,1334,26,0.00,34832.60,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1665,1335,27,0.00,14.58,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1666,1336,27,0.00,18.99,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1667,1337,27,0.00,72.25,'FLBLUE* ACA         JACKSONVILLE        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1668,1338,27,0.00,2672.17,'FLBLUE* ACA         JACKSONVILLE        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1669,1339,27,0.00,15.20,'FATHOM.VIDEO        SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1670,1340,27,0.00,99.99,'LINKEDIN SN *3505782LNKD.IN/BILL        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1671,1341,27,0.00,129.82,'GOOGLE*GSUITE LITHIUCC GOOGLE.COM','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1672,1342,27,0.00,64.10,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1673,1343,27,0.00,9.99,'AplPay UBER ONE     help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1674,1344,27,0.00,143.75,'NIC*-FL SUNBIZ.ORG  TALLAHASSEE         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1675,1345,27,0.00,5.53,'WAWA FUEL/CONVENIENCPINELLAS PARK       FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1676,1346,27,0.00,20.00,'BT*DIALPAD MEETINGS SAN RAMON           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1677,1347,27,0.00,514.80,'IN *BLUE WATER MARINGULFPORT            FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1678,1348,27,0.00,39.49,'FRESH KITCHEN KENNEDTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1679,1349,27,0.00,96.16,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1680,1350,27,0.00,32.99,'DNH*GODADDY#35037227Tempe               AZ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1681,1351,27,0.00,180.00,'BRIGHT EYES FAMILY V813-7920637         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1682,1352,27,0.00,300.19,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1683,1352,58,300.19,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1684,1353,27,0.00,8.00,'MICROSOFT-G072409147MSBILL.INFO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1685,1354,27,0.00,30.13,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1686,1355,27,0.00,195.06,'CIRQUE ENTERTAINMENTBRADENTON           FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1687,1356,27,5000.00,0.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1688,1357,27,0.00,3.00,'BLINK               AMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1689,1358,27,0.00,411.33,'VZWRLSS BILL PAY VE 800-922-0204        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1690,1359,27,0.00,26.88,'KWIK STOP WESTSHORE TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1691,1360,27,0.00,100.00,'HELP.USEMOTION.COM  SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1692,1361,27,0.00,10.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1693,1362,27,0.00,1494.00,'AplPay HIMS & HERS HSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1694,1363,27,0.00,58.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1695,1363,58,58.00,0.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1696,1364,27,0.00,21.00,'SQSP* INV164321443  NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1697,1365,27,0.00,99.00,'YOAST B.V.*${MERCHANWIJCHEN             NL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1698,1366,27,0.00,33.90,'ZOOM.COM 888-799-966SAN JOSE            CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1699,1367,27,0.00,62.32,'DNH*GODADDY#35123870Tempe               AZ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1700,1368,27,0.00,117.10,'JETPACK ER6PM31WMA  SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1701,1369,27,0.00,48.36,'WWW.WOODIESWASH.COM TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1702,1370,27,0.00,10.64,'APPLECARE MNTHLY PLARICHFIELD           MN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1703,1371,27,0.00,94.30,'DNH*GODADDY#35136131Tempe               AZ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1704,1372,27,0.00,141.29,'DNH*GODADDY#35135959Tempe               AZ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1705,1373,27,0.00,14.60,'JETPACK HK7DL7CU48  SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1706,1374,27,0.00,189.57,'SAM\'S CLUB 6403 6403BRANDON             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1707,1375,27,0.00,229.33,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1708,1375,58,229.33,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1709,1376,27,0.00,59.99,'PADDLE.NET* PREPRODUNEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1710,1377,27,0.00,121.23,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1711,1378,27,0.00,283.39,'JETPACK D9GRT8WNUQ  SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1712,1379,27,0.00,3.05,'THE HOME DEPOT      TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1713,1380,27,99.00,0.00,'YOAST B.V.          WIJCHEN             NL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1714,1381,27,0.00,249.95,'SEMRUSH INC         BOSTON              MA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1715,1382,27,0.00,18.73,'AplPay UBER EATS    help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1716,1383,27,0.00,322.36,'PY *STORQUEST - TAMPTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1717,1384,27,0.00,32.91,'AplPay Uber Trip    help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1718,1385,27,0.00,39.99,'ROCKETLAW 877-757-15SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1719,1386,27,0.00,12.95,'CANVA* I04393-492629CAMDEN              DE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1720,1387,27,0.00,32.30,'DEAD BOB\'S TOO 40390TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1721,1388,27,0.00,36.80,'PIN CHASERS VETERANSTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1722,1389,27,0.00,38.32,'PIN CHASERS VETERANSTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1723,1390,27,0.00,47.91,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1724,1391,27,0.00,112.23,'LINKEDIN PRE*3707270LNKD.IN/BILL        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1725,1392,27,0.00,365.34,'DNH*GODADDY#35223307Tempe               AZ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1726,1393,27,1500.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1727,1394,27,0.00,20.00,'AHREFS.COM          SINGAPORE           SG','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1728,1395,27,0.00,249.00,'AHREFS.COM          SINGAPORE           SG','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1729,1396,27,0.00,211.99,'BESTBUYCOMXXXXXX9403RICHFIELD           MN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1730,1397,27,0.00,40.00,'LIVEPLAN            EUGENE              OR','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1731,1398,27,0.00,199.17,'AHREFS.COM          SINGAPORE           SG','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1732,1399,27,0.00,76.00,'GANDY CITGO 00034666TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1733,1400,27,747.00,0.00,'AplPay HIMS & HERS HSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1734,1400,58,0.00,747.00,'AplPay HIMS & HERS HSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1735,1401,27,0.00,69.00,'PAYPAL *NEXTCART    *****6390           VN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1736,1402,27,0.00,199.00,'IMPORTGENIUS.COM    (855)573-9976       AZ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1737,1403,27,2000.00,0.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1738,1404,27,25000.00,0.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1739,1405,27,0.00,203.88,'DNH*GODADDY#35276886Tempe               AZ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1740,1406,27,5242.70,0.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1741,1407,27,0.00,95.10,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1742,1408,27,0.00,59.99,'BLS*WWW ARTLIST IO  DOVER               DE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1743,1409,27,0.00,40.00,'INAI PTE. LTD.      SINGAPORE           SG','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1744,1410,27,0.00,60.00,'AITUBOART           HUNGHOM             HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1745,1411,27,0.00,179.00,'B2B NINJABIGCOMM APHOUSTON TX NATHAN A STARON-13009-NT_ND9V76CY +15128564652 B2B NINJA-BIGCOMM APP HOUSTON TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1746,1412,27,0.00,362.09,'AMZ*WOOT LLC E5R32P0PAY.AMAZON.CO       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1747,1413,27,0.00,225.17,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1748,1413,58,225.17,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1749,1414,27,0.00,9.99,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1750,1415,27,0.00,35.96,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1751,1416,27,0.00,179.00,'B2B NINJA-BIGCOMM APHOUSTON             TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1752,1417,27,0.00,179.00,'B2B NINJA-BIGCOMM APHOUSTON             TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1753,1418,27,179.00,0.00,'B2B NINJA-BIGCOMM APP                   TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1754,1419,27,537.00,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1755,1420,27,0.00,31.92,'AplPay UBER EATS    HTTPS://HELP.UBER.COCA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1756,1421,27,0.00,11.52,'AplPay UBER THEORIGIHTTPS://HELP.UBER.COCA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1757,1422,27,0.00,15.00,'FIGMA MONTHLY RENEWASAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1758,1423,27,0.00,232.07,'SP CPAP.COM         STAFFORD            TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1759,1423,58,232.07,0.00,'SP CPAP.COM         STAFFORD            TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1760,1424,27,0.00,31.93,'AMAZON.COM          AMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1761,1425,27,0.00,132.28,'AplPay UBER EATS    help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1762,1426,27,0.00,77.00,'AMAZON.COM          AMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1763,1427,27,0.00,69.99,'YITHEMES.COM        SANTA CRUZ DE TENERI','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1764,1428,27,0.00,194.81,'SAM\'S CLUB 6403 6403BRANDON             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1765,1429,27,0.00,59.60,'SAM\'S CLUB 6403 6403BRANDON             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1766,1430,27,0.00,53.24,'WWW.WOODIESWASH.COM TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1767,1431,27,0.00,16.99,'WALGREENS           TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1768,1432,27,0.00,11.17,'DNH*GODADDY#35403911Tempe               AZ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1769,1433,27,0.00,399.00,'EIN PRESSWIRE NEWS 0WASHINGTON          DC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1770,1434,27,0.00,52.84,'AplPay FRESH KITCHENTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1771,1435,27,52.02,0.00,'SP CPAP.COM         STAFFORD            TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1772,1435,58,0.00,52.02,'SP CPAP.COM         STAFFORD            TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1773,1436,27,0.00,598.43,'TECO/PEOPLES GAS    813-223-0800        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1774,1437,27,0.00,18.20,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1775,1437,58,18.20,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1776,1438,27,0.00,2.75,'KUBRA/TECO CONV FEE 800-766-6616        NJ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1777,1439,27,0.00,118.05,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1778,1440,27,0.00,200.43,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1779,1440,58,200.43,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1780,1441,27,0.00,29.00,'FIGMENT.SO          NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1781,1442,27,0.00,170.81,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1782,1443,27,0.00,19.99,'MICROSOFT           MSBILL.INFO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1783,1444,27,0.00,23.10,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1784,1445,27,0.00,101.60,'AplPay PUBLIX #1808 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1785,1446,27,0.00,20.00,'AplPay KWIK STOP WESTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1786,1447,27,0.00,137.57,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1787,1448,27,0.00,15.00,'BT*RADIORF*180DAYSUBSAN ANTONIO         TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1788,1449,27,0.00,94.17,'GOOGLE *YOUTUBE TV   G.CO/HELPPAY#      CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1789,1450,27,0.00,2733.00,'HDN*PARRISH LAW, PA SATELLITE BEA       FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1790,1451,27,3776.00,0.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250128 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7796936 EED:250128 IND ID:W0510 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6936 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1791,1452,27,0.00,44.50,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1792,1453,27,0.00,19.06,'AMAZON.COM          AMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1793,1454,27,0.00,48.92,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1794,1455,27,0.00,9.99,'AplPay UBER ONE     help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1795,1456,27,0.00,1050.00,'INSURANCE PAYMENT FEDURHAM              NC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1796,1457,27,0.00,75.00,'AplPay JONI\'S PET SATampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1797,1457,58,75.00,0.00,'AplPay JONI\'S PET SATampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1798,1458,27,0.00,513.00,'PIPEDRIVE INC       NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1799,1459,27,0.00,30000.00,'STRATAGEM RISK LLC 9ST PETERSBURG       FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1800,1460,27,0.00,10.64,'APPLECARE MNTHLY PLARICHFIELD           MN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1801,1461,27,0.00,96.33,'AplPay PUBLIX #1808 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1802,1462,27,0.00,166.05,'Extra Space 3639    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1803,1463,27,0.00,29.99,'GOOGLE*TV GOOGLE PAY G.CO HELPPAY#','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1804,1464,27,0.00,325.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1805,1464,58,325.00,0.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1806,1465,27,0.00,25.00,'JACKSON DENTAL, P.A.TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1807,1466,27,0.00,49.01,'AplPay UBER EATS    help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1808,1467,27,0.00,4.00,'KORE WIRELESS       ATLANTA             GA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1809,1468,27,0.00,13.99,'HOSTINGER* HOSTINGERWILMINGTON          DE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1810,1469,27,0.00,124.57,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1811,1470,27,0.00,72.25,'FLBLUE* ACA         JACKSONVILLE        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1812,1471,27,0.00,65.00,'DABA NAILS & SPA 941TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1813,1471,58,65.00,0.00,'DABA NAILS & SPA 941TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1814,1472,27,0.00,127.00,'BIGCOMMERCE         AUSTIN              TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1815,1473,27,0.00,2672.17,'FLBLUE* ACA         JACKSONVILLE        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1816,1474,27,0.00,14.58,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1817,1475,27,0.00,338.97,'SAM\'S CLUB 6403 6403BRANDON             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1818,1476,27,0.00,110.97,'DNH*GODADDY#35591481Tempe               AZ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1819,1477,27,0.00,15.20,'FATHOM.VIDEO        SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1820,1478,27,0.00,127.50,'GOOGLE              MOUNTAIN VIEW       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1821,1479,27,0.00,99.99,'LINKEDIN SN *3982298LNKD.IN/BILL        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1822,1480,27,0.00,12875.00,'DEW CADILLAC F&I 000PINELLAS PARK       FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1823,1481,27,0.00,9.99,'AplPay UBER ONE     help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1824,1482,27,0.00,1.99,'WALGREENS           TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1825,1483,27,0.00,20.00,'BT*DIALPAD MEETINGS SAN RAMON           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1826,1484,27,0.00,40.00,'AplPay GROUPON, INC.CHICAGO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1827,1485,27,0.00,21.52,'AplPay TAMPA BAY DOWTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1828,1486,27,0.00,22.50,'AplPay GANDY BLVD SMTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1829,1487,27,0.00,8.26,'AplPay TAMPA BAY DOWTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1830,1488,27,0.00,29.34,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1831,1488,58,29.34,0.00,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1832,1489,27,0.00,139.44,'AplPay PUBLIX #1808 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1833,1490,27,0.00,45.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1834,1490,58,45.00,0.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1835,1491,27,0.00,9.52,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1836,1491,58,9.52,0.00,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1837,1492,27,0.00,9.19,'AplPay CREAM DE LA CTampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1838,1493,27,0.00,543.58,'DNH*GODADDY#XXXXXXX0480-505-8855        AZ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1839,1494,27,25000.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1840,1495,27,114.00,0.00,'WISESTAMP.COM       WILMINGTON          DE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1841,1496,27,0.00,114.00,'WISESTAMP.COM       WILMINGTON          DE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1842,1497,27,0.00,120.00,'CUSTOMESIGNATURE.COMSAN DIEGO           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1843,1498,27,0.00,195.00,'EDUWHERE-KEIKA VENTUDURHAM              NC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1844,1499,27,0.00,38.70,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1845,1499,58,38.70,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1846,1500,27,0.00,83.00,'GANDY CITGO 00034666TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1847,1501,27,0.00,8.00,'MICROSOFT           MSBILL.INFO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1848,1502,27,0.00,3.00,'BLINK               AMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1849,1503,27,0.00,600.00,'VZWRLSS BILL PAY VE 800-922-0204        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1850,1504,27,0.00,84.93,'AplPay PUBLIX #1808 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1851,1505,27,6050.01,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1852,1506,27,0.00,7.99,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1853,1507,27,0.00,100.00,'HELP.USEMOTION.COM  SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1854,1508,27,0.00,58.50,'AplPay WAWA 5301 000TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1855,1509,27,0.00,21.00,'SQSP* INV168566245  NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1856,1510,27,0.00,24.48,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1857,1511,27,10000.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1858,1512,27,0.00,123.64,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1859,1513,27,0.00,6.82,'WALGREENS           TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1860,1514,27,0.00,51.76,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1861,1515,27,0.00,48.36,'WWW.WOODIESWASH.COM TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1862,1516,27,0.00,7.70,'AplPay DINOSAUR WORLPLANT CITY          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1863,1516,58,7.70,0.00,'AplPay DINOSAUR WORLPLANT CITY          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1864,1517,27,0.00,979.14,'SPIRIT AIRLINES     SOUTH FLORIDA       FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1865,1518,27,0.00,55.27,'DINOSAUR WORLD 00-08PLANT CITY          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1866,1518,58,55.27,0.00,'DINOSAUR WORLD 00-08PLANT CITY          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1867,1519,27,0.00,11.07,'AplPay DINOSAUR WORLPLANT CITY          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1868,1519,58,11.07,0.00,'AplPay DINOSAUR WORLPLANT CITY          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1869,1520,27,0.00,79.85,'AplPay SP SAND SURF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1870,1521,27,0.00,21.52,'AplPay TACO MADRE LLPLANT CITY          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1871,1522,27,0.00,57.51,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1872,1523,27,0.00,84.92,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1873,1524,27,0.00,10.64,'APPLECARE MNTHLY PLARICHFIELD           MN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1874,1525,27,0.00,26.05,'AplPay UBER EATS    help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1875,1526,27,0.00,279.87,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1876,1527,27,0.00,15.70,'GENERAL MOTORS      DETROIT             MI','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1877,1528,27,0.00,25.91,'GENERAL MOTORS      DETROIT             MI','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1878,1529,27,0.00,14.67,'JETPACK HRB9EB9UHJ  SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1879,1530,27,0.00,12.91,'AplPay DAIRY JOY    Tampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1880,1531,27,0.00,249.95,'BT*SEMRUSH          BOSTON              MA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1881,1532,27,0.00,59.99,'PADDLE.NET* PREPRODUNEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1882,1533,27,0.00,192.36,'AIRBNB * HMR8NZ43XB SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1883,1534,27,0.00,990.32,'AIRBNB * HMR8NZ43XB SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1884,1535,27,0.00,33.90,'ZOOM.COM 888-799-966SAN JOSE            CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1885,1536,27,0.00,7.99,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1886,1537,27,0.00,18.99,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1887,1538,27,0.00,12.95,'CANVA* I04424-697630CAMDEN              DE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1888,1539,27,0.00,39.99,'ROCKETLAW 877-757-15SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1889,1540,27,0.00,48.70,'AplPay HARD ROCK BANTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1890,1541,27,0.00,70.13,'AplPay SPROUTS FARMETampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1891,1542,27,0.00,43.70,'AplPay HARD ROCK BANTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1892,1543,27,0.00,322.36,'PY *STORQUEST - TAMPTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1893,1544,27,12500.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1894,1545,27,0.00,20.00,'LIVEPLAN            EUGENE              OR','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1895,1546,27,0.00,112.23,'LINKEDIN PRE*4240022LNKD.IN/BILL        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1896,1547,27,0.00,406.55,'AVIS.COM PREPAY     VIRGINIA BEACH      VA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1897,1548,27,0.00,60.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1898,1548,58,60.00,0.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1899,1549,27,0.00,7.99,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1900,1550,27,0.00,199.00,'IMPORTGENIUS.COM    (855)573-9976       AZ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1901,1551,27,0.00,4.49,'AplPay SHEETZ 0582  MONROEVILLE         PA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1902,1552,27,0.00,148.87,'TEXAS ROADHOUSE #284INDIANA             PA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1903,1553,27,0.00,13.72,'AplPay TPA 6126 ChicTampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1904,1554,27,0.00,42.26,'AplPay UBER EATS    help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1905,1555,27,0.00,29.99,'GOOGLE *YOUTUBE VIDE G.CO/HELPPAY#      CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1906,1556,27,0.00,46.00,'HILTON GARDEN INN ININDIANA             PA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1907,1557,27,0.00,0.75,'AplPay WHITE TOWNSHIINDIANA             PA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1908,1558,27,0.00,6.75,'AplPay WHITE TOWNSHIINDIANA             PA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1909,1559,27,0.00,21.90,'AplPay SHEETZ       INDIANA             PA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1910,1560,27,0.00,4.65,'AplPay DUNKIN #34938INDIANA             PA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1911,1561,27,0.00,65.72,'AplPay MARTIN\'S FOODINDIANA             PA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1912,1562,27,0.00,38.16,'HILTON GARDEN INN 0 INDIANA             PA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1913,1563,27,0.00,18.52,'AplPay CHICK FIL A 6PITTSBURGH          PA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1914,1564,27,0.00,106.44,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1915,1564,58,106.44,0.00,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1916,1565,27,0.00,19.42,'AplPay CHICK FIL A 6PITTSBURGH          PA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1917,1566,27,0.00,94.84,'AVIS RENT A CAR     PITTSBURGH          PA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1918,1567,27,0.00,49.00,'GET GO              PITTSBURGH          PA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1919,1568,27,0.00,40.00,'INAI PTE. LTD.      SINGAPORE           SG','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1920,1569,27,0.00,97.02,'PITAP - FB - HR PittPITTSBURGH          PA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1921,1570,27,0.00,60.00,'AITUBOART           HUNGHOM             HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1922,1571,27,0.00,9.99,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1923,1572,27,0.00,450.18,'AMERICAN AIRLINES   800-433-7300        TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1924,1573,27,0.00,450.18,'AMERICAN AIRLINES   800-433-7300        TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1925,1574,27,0.00,450.18,'AMERICAN AIRLINES   800-433-7300        TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1926,1575,27,6200.29,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1927,1576,27,0.00,624.18,'DELTA AIR LINES     ATLANTA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1928,1577,27,0.00,624.18,'DELTA AIR LINES     ATLANTA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1929,1578,27,0.00,26.28,'AplPay CHICK FIL A 6PITTSBURGH          PA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1930,1579,27,0.00,624.18,'DELTA AIR LINES     ATLANTA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1931,1580,27,0.00,11.63,'TST* PITTSBURGH - BUPITTSBURGH          PA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1932,1581,27,0.00,340.86,'HOTELCOMXXXXXXXX1597HOTELS.COM          WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1933,1582,27,0.00,10.20,'AplPay CAPITOL FILE LAS VEGAS           NV','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1934,1583,27,0.00,11.63,'TST* PITTSBURGH - BUPITTSBURGH          PA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1935,1584,27,0.00,343.33,'AplPay PUBLIX #1808 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1936,1585,27,0.00,30.00,'FIGMA MONTHLY RENEWASAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1937,1586,27,624.18,0.00,'DELTA AIR LINES     ATLANTA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1938,1587,27,624.18,0.00,'DELTA AIR LINES     ATLANTA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1939,1588,27,624.18,0.00,'DELTA AIR LINES     ATLANTA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1940,1589,27,0.00,76.71,'PY *PF CHANG\'S 00000ARLINGTON           VA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1941,1590,27,0.00,2.65,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1942,1591,27,0.00,82.98,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1943,1592,27,0.00,239.88,'DNH*GODADDY#XXXXXXX4480-505-8855        AZ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1944,1593,27,0.00,24.99,'ROCK IT FITNESS 9362TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1945,1593,58,24.99,0.00,'ROCK IT FITNESS 9362TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1946,1594,27,0.00,182.00,'THE STUDY SALON     TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1947,1594,58,182.00,0.00,'THE STUDY SALON     TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1948,1595,27,0.00,117.38,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1949,1595,58,117.38,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1950,1596,27,0.00,53.24,'WWW.WOODIESWASH.COM TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1951,1597,27,0.00,89.10,'YOAST B.V.          WIJCHEN             NL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1952,1598,27,0.00,2862.87,'AIRBNB * HMBPS53AYD SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1953,1599,27,0.00,49.00,'SHUTTERSTOCK        NEW YORK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1954,1600,27,0.00,49.00,'SHUTTERSTOCK        NEW YORK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1955,1601,27,0.00,85.22,'AplPay SP SAND SURF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1956,1601,58,85.22,0.00,'AplPay SP SAND SURF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1957,1602,27,0.00,31.96,'AplPay SP SAND SURF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1958,1602,58,31.96,0.00,'AplPay SP SAND SURF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1959,1603,27,0.00,45.00,'AplPay GROUPON, INC.CHICAGO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1960,1603,58,45.00,0.00,'AplPay GROUPON, INC.CHICAGO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1961,1604,27,0.00,90.53,'SP SAND SURF CO     TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1962,1604,58,90.53,0.00,'SP SAND SURF CO     TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1963,1605,27,0.00,126.36,'SP SAND SURF CO     TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1964,1605,58,126.36,0.00,'SP SAND SURF CO     TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1965,1606,27,0.00,17.90,'CHUCK LAGER AMERICA\'TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1966,1607,27,0.00,11.92,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1967,1608,27,0.00,40.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1968,1608,58,40.00,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1969,1609,27,0.00,9.06,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1970,1609,58,9.06,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1971,1610,27,0.00,101.33,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1972,1610,58,101.33,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1973,1611,27,0.00,29.00,'FIGMENT.SO          NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1974,1612,27,0.00,58.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1975,1612,58,58.00,0.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1976,1613,27,0.00,150.00,'AplPay LECADA LLC 00TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1977,1614,27,0.00,99.00,'AplPay GROUPON, INC.CHICAGO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1978,1614,58,99.00,0.00,'AplPay GROUPON, INC.CHICAGO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1979,1615,27,0.00,34.06,'WALMART.COM 80092562BENTONVILLE         AR','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1980,1616,27,0.00,50.00,'AplPay PALMA CEIA HETAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1981,1617,27,0.00,32.50,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1982,1618,27,0.00,148.72,'AplPay IC* ABC FINE SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1983,1619,27,0.00,117.15,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1984,1620,27,0.00,98.10,'AplPay UBER EATS    help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1985,1621,27,0.00,57.32,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1986,1622,27,0.00,54.79,'AplPay UBER EATS    help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1987,1623,27,0.00,68.07,'AplPay PUBLIX #1688 INDIALANTIC         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1988,1624,27,0.00,19.99,'MICROSOFT*ULTIMATE 1MSBILL.INFO         WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1989,1625,27,0.00,28.20,'AplPay UBER EATS    help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1990,1626,27,0.00,10.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1991,1626,58,10.00,0.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1992,1627,27,0.00,10.00,'PPY=TAMPA NEUROPSYCHTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1993,1627,58,10.00,0.00,'PPY=TAMPA NEUROPSYCHTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1994,1628,27,0.00,49.77,'AplPay UBER EATS    help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1995,1629,27,0.00,114.95,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1996,1630,27,0.00,9.99,'AplPay UBER ONE     help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1997,1631,27,0.00,46.10,'AplPay PUBLIX #1688 INDIALANTIC         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1998,1632,27,0.00,94.17,'GOOGLE *YOUTUBE TV   G.CO/HELPPAY#      CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(1999,1633,27,0.00,34.44,'COLD STONE CREAMERY INDIALANTIC         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2000,1634,27,0.00,340.17,'AplPay RON JON SURF COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2001,1634,58,340.17,0.00,'AplPay RON JON SURF COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2002,1635,27,0.00,47.08,'AplPay RON JON SURF COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2003,1635,58,47.08,0.00,'AplPay RON JON SURF COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2004,1636,27,0.00,26.60,'AplPay RON JON SURF COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2005,1636,58,26.60,0.00,'AplPay RON JON SURF COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2006,1637,27,0.00,10.64,'APPLECARE MNTHLY PLARICHFIELD           MN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2007,1638,27,0.00,55.46,'WALGREENS           TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2008,1639,27,0.00,13.99,'HOSTINGER* HOSTINGERWILMINGTON          DE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2009,1640,27,0.00,2612.17,'FLBLUE* ACA         JACKSONVILLE        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2010,1641,27,0.00,72.25,'FLBLUE* ACA         JACKSONVILLE        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2011,1642,27,0.00,513.00,'PIPEDRIVE INC       NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2012,1643,27,0.00,14.58,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2013,1644,27,0.00,46.22,'AplPay UBER EATS    help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2014,1645,27,0.00,34.74,'AplPay UBER EATS    help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2015,1646,27,0.00,228.43,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2016,1647,27,0.00,15.20,'FATHOM.VIDEO        SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2017,1648,27,0.00,166.05,'Extra Space 3639    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2018,1649,27,0.00,64.80,'GOOGLE *GSUITE_LITHICC@GOOGLE.COM       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2019,1650,27,0.00,127.00,'BIGCOMMERCE         AUSTIN              TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2020,1651,27,0.00,99.99,'LINKEDIN SN *2701599LNKD.IN/BILL        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2021,1652,27,0.00,8.40,'USPS.COM CLICKNSHIP 800-344-7779        DC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2022,1653,27,0.00,4.00,'KORE WIRELESS       ATLANTA             GA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2023,1654,27,0.00,9.99,'AplPay UBER ONE     help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2024,1655,27,0.00,20.00,'BT*DIALPAD MEETINGS SAN RAMON           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2025,1656,27,0.00,198.00,'ENVATO              CHICAGO             IL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2026,1657,27,0.00,416.00,'MISTER SPARKY 436845BRADENTON           FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2027,1658,27,0.00,109.76,'AplPay PUBLIX #1808 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2028,1659,27,0.00,34.95,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2029,1659,58,34.95,0.00,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2030,1660,27,0.00,85.84,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2031,1660,58,85.84,0.00,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2032,1661,27,0.00,8.00,'MICROSOFT           MSBILL.INFO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2033,1662,27,0.00,37.28,'TARGET.COM          800-591-3869        MN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2034,1663,27,0.00,48.99,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2035,1664,27,0.00,3.00,'BLINK               AMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2036,1665,27,0.00,100.00,'HELP.USEMOTION.COM  SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2037,1666,27,0.00,59.95,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2038,1666,58,59.95,0.00,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2039,1667,27,0.00,21.00,'SQSP* INV172626226  NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2040,1668,27,0.00,208.05,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2041,1669,27,0.00,7.99,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2042,1670,27,0.00,31.68,'AplPay JFK Ml CASA TAshburn             VA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2043,1671,27,0.00,51.76,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2044,1672,27,0.00,34.07,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2045,1673,27,0.00,48.36,'WWW.WOODIESWASH.COM TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2046,1674,27,0.00,22.50,'AplPay GANDY BLVD SMTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2047,1675,27,0.00,10.64,'APPLECARE MNTHLY PLARICHFIELD           MN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2048,1676,27,0.00,28.66,'AplPay UBER EATS    help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2049,1677,27,0.00,14.67,'JETPACK RYQ29RWQEY  SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2050,1678,27,0.00,49.65,'FLORIDA STRAWBERRY FPLANT CITY          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2051,1678,58,49.65,0.00,'FLORIDA STRAWBERRY FPLANT CITY          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2052,1679,27,0.00,21.00,'AplPay GRIFF\'S CATERPlant City          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2053,1680,27,0.00,23.48,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2054,1680,58,23.48,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2055,1681,27,0.00,249.95,'SEMRUSH INC         BOSTON              MA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2056,1682,27,0.00,194.29,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2057,1683,27,0.00,33.90,'ZOOM.COM 888-799-966SAN JOSE            CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2058,1684,27,0.00,59.99,'PADDLE.NET* PREPRODUNEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2059,1685,27,0.00,23.42,'AplPay AMC 9640 ONLILEAWOOD             KS','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2060,1685,58,23.42,0.00,'AplPay AMC 9640 ONLILEAWOOD             KS','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2061,1686,27,0.00,35.50,'AplPay AMC 9640 ONLILEAWOOD             KS','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2062,1686,58,35.50,0.00,'AplPay AMC 9640 ONLILEAWOOD             KS','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2063,1687,27,0.00,12.95,'CANVA* I04452-658981CAMDEN              DE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2064,1688,27,0.00,39.99,'ROCKETLAW 877-757-15SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2065,1689,27,0.00,322.36,'PY *STORQUEST - TAMPTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2066,1690,27,0.00,112.23,'LINKEDIN PRE*4819531LNKD.IN/BILL        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2067,1691,27,0.00,20.00,'THE WOMANS GROUP OF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2068,1691,58,20.00,0.00,'THE WOMANS GROUP OF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2069,1692,27,0.00,10.92,'LA TERESITA RESTAURATAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2070,1693,27,0.00,71.41,'AplPay UBER EATS    help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2071,1694,27,0.00,71.26,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2072,1694,58,71.26,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2073,1695,27,0.00,8.62,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2074,1696,27,0.00,29.59,'AplPay PUBLIX #1808 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2075,1697,27,0.00,113.82,'AplPay IC* PUBLIX L SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2076,1698,27,0.00,47.02,'AplPay PUBLIX #1808 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2077,1699,27,0.00,20.00,'LIVEPLAN            EUGENE              OR','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2078,1700,27,0.00,199.00,'IMPORTGENIUS.COM    (855)573-9976       AZ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2079,1701,27,0.00,75.00,'JONI\'S PET SALON, INTampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2080,1701,58,75.00,0.00,'JONI\'S PET SALON, INTampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2081,1702,27,0.00,16.95,'AplPay PARKMOBILE PaATLANTA             GA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2082,1703,27,0.00,98.93,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2083,1704,27,0.00,30.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2084,1704,58,30.00,0.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2085,1705,27,0.00,15.98,'SAM\'S CLUB 6403 6403BRANDON             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2086,1706,27,0.00,246.61,'SAM\'S CLUB 6403 6403BRANDON             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2087,1707,27,2783.35,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2088,1708,27,0.00,60.00,'AITUBOART           HUNGHOM             HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2089,1709,27,0.00,2.65,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2090,1710,27,0.00,42.53,'AplPay THE HOME DEPOTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2091,1711,27,0.00,40.00,'INAI PTE. LTD.      SINGAPORE           SG','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2092,1712,27,0.00,9.99,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2093,1713,27,0.00,9.99,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2094,1714,27,0.00,12.27,'AMAZON.COM          AMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2095,1715,27,0.00,58.98,'AplPay SPROUTS FARMETampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2096,1716,27,0.00,38.07,'AplPay TRADER JOE S TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2097,1717,27,0.00,60.00,'FIGMA               SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2098,1718,27,0.00,325.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2099,1718,58,325.00,0.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2100,1719,27,0.00,16.25,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2101,1720,27,0.00,186.93,'DNH*GODADDY#XXXXXXX9480-505-8855        AZ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2102,1721,27,0.00,80.14,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2103,1722,27,0.00,65.00,'SERENITY HEALS THERAFORT MYERS          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2104,1722,58,65.00,0.00,'SERENITY HEALS THERAFORT MYERS          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2105,1723,27,0.00,53.24,'WWW.WOODIESWASH.COM TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2106,1724,27,0.00,73.88,'BESTBUYCOMXXXXXX5523RICHFIELD           MN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2107,1725,27,0.00,119.99,'MICROSOFT           MSBILL.INFO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2108,1726,27,0.00,148.52,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2109,1727,27,0.00,30.00,'AplPay D34 DISNEY ONPALMETTO            FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2110,1727,58,30.00,0.00,'AplPay D34 DISNEY ONPALMETTO            FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2111,1728,27,0.00,22.05,'AplPay AMALIE ARENA TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2112,1728,58,22.05,0.00,'AplPay AMALIE ARENA TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2113,1729,27,0.00,40.00,'AplPay D34 DISNEY ONPALMETTO            FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2114,1729,58,40.00,0.00,'AplPay D34 DISNEY ONPALMETTO            FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2115,1730,27,0.00,22.05,'AplPay AMALIE ARENA TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2116,1730,58,22.05,0.00,'AplPay AMALIE ARENA TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2117,1731,27,0.00,28.18,'AplPay AMALIE ARENA TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2118,1731,58,28.18,0.00,'AplPay AMALIE ARENA TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2119,1732,27,0.00,15.44,'AplPay AMALIE ARENA TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2120,1732,58,15.44,0.00,'AplPay AMALIE ARENA TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2121,1733,27,0.00,335.52,'RESTAURANT DEPOT 413TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2122,1733,58,335.52,0.00,'RESTAURANT DEPOT 413TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2123,1734,27,0.00,102.49,'AplPay IC* TOTAL WI SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2124,1735,27,0.00,59.26,'AplPay UBER EATS    HTTPS://HELP.UBER.COCA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2125,1736,27,0.00,129.99,'MICROSOFT           MSBILL.INFO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2126,1737,27,0.00,31.84,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2127,1738,27,0.00,29.00,'FIGMENT.SO          NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2128,1739,27,0.00,6.28,'AplPay DUCKWEED LIQUTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2129,1740,27,0.00,594.00,'AplPay AMTRAK MOBILEWASHINGTON          DC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2130,1741,27,0.00,388.63,'AplPay PUBLIX #1808 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2131,1742,27,0.00,19.99,'MICROSOFT           MSBILL.INFO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2132,1743,27,155.00,0.00,'AplPay AMTRAK MOBILEWASHINGTON          DC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2133,1744,27,0.00,2.99,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2134,1745,27,0.00,94.17,'GOOGLE *YOUTUBE TV   G.CO/HELPPAY#      CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2135,1746,27,0.00,40.00,'DABA NAILS & SPA 941TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2136,1746,58,40.00,0.00,'DABA NAILS & SPA 941TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2137,1747,27,0.00,4.00,'KORE WIRELESS       ATLANTA             GA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2138,1748,27,0.00,257.63,'SUSHI SONO 00-080326COLUMBIA            MD','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2139,1749,27,0.00,17.56,'AplPay COLUMBIA CAFETAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2140,1750,27,0.00,513.00,'PIPEDRIVE INC       NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2141,1751,27,0.00,166.05,'Extra Space 3639    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2142,1752,27,0.00,96.18,'AplPay GIANT FOOD   LORTON              VA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2143,1753,27,0.00,138.56,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2144,1754,27,0.00,13.99,'HOSTINGER* HOSTINGERWILMINGTON          DE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2145,1755,27,0.00,114.94,'AplPay UBER EATS    HTTPS://HELP.UBER.COCA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2146,1756,27,0.00,319.48,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2147,1757,27,0.00,96.34,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2148,1758,27,0.00,39.07,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2149,1759,27,0.00,127.00,'BIGCOMMERCE         AUSTIN              TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2150,1760,27,0.00,2672.17,'FLBLUE* ACA         JACKSONVILLE        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2151,1761,27,0.00,72.25,'FLBLUE* ACA         JACKSONVILLE        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2152,1762,27,0.00,28.23,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2153,1763,27,0.00,64.80,'GOOGLE              MOUNTAIN VIEW       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2154,1764,27,0.00,99.99,'LINKEDIN SN P5207806MOUNTAIN VIEW','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2155,1765,27,0.00,336.51,'AplPay TARGET       TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2156,1766,27,0.00,229.90,'AplPay EIOTCLUB     ADMIRALTY           HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2157,1767,27,0.00,122.94,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2158,1768,27,0.00,21.49,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2159,1769,27,0.00,9.99,'AplPay UBER ONE     help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2160,1770,27,8007.36,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2161,1771,27,0.00,20.00,'BT*DIALPAD MEETINGS SAN RAMON           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2162,1772,27,0.00,10.00,'PPY=TAMPA NEUROPSYCHTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2163,1773,27,0.00,106.49,'RING STANDARD PLAN  SANTA MONICA        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2164,1774,27,0.00,366.94,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2165,1775,27,0.00,21.29,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2166,1776,27,0.00,7.02,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2167,1777,27,0.00,325.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2168,1778,27,0.00,79.90,'AplPay EIOTCLUB     ADMIRALTY           HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2169,1779,27,0.00,96.80,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2170,1779,58,96.80,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2171,1780,27,0.00,18.99,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2172,1781,27,0.00,33.85,'AplPay UBER EATS    help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2173,1782,27,0.00,88.39,'AplPay IC* PUBLIX L LAKELAND            FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2174,1783,27,0.00,8.00,'MICROSOFT           MSBILL.INFO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2175,1784,27,0.00,3.00,'BLINK               AMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2176,1785,27,0.00,100.00,'HELP.USEMOTION.COM  SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2177,1786,27,0.00,12.31,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2178,1787,27,0.00,62.40,'AplPay MANHATTAN NAITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2179,1788,27,0.00,21.00,'SQSP* INV176792092  NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2180,1789,27,0.00,48.87,'AMAZON.COM          AMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2181,1790,27,0.00,500.00,'VZWRLSS BILL PAY VE 800-922-0204        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2182,1791,27,0.00,101.75,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2183,1792,27,0.00,50.00,'PMT*VEHICLETAGREN HITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2184,1793,27,0.00,28.23,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2185,1794,27,0.00,48.36,'WWW.WOODIESWASH.COM TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2186,1795,27,0.00,33.90,'ZOOM.COM 888-799-966SAN JOSE            CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2187,1796,27,0.00,7.02,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2188,1797,27,5000.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2189,1798,27,0.00,14.82,'JETPACK 5HYSMGTE7K  SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2190,1799,27,0.00,59.95,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2191,1799,58,59.95,0.00,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2192,1800,27,0.00,60.06,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2193,1801,27,0.00,30.49,'AplPay UBER EATS    help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2194,1802,27,0.00,249.95,'SEMRUSH INC         BOSTON              MA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2195,1803,27,0.00,42.86,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2196,1804,27,0.00,35.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2197,1804,58,35.00,0.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2198,1805,27,0.00,53.51,'AplPay DUCKWEED LIQUTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2199,1806,27,0.00,7.02,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2200,1807,27,0.00,59.99,'PADDLE.NET* PREPRODUNEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2201,1808,27,0.00,82.50,'AplPay CIRCLE K 0881TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2202,1809,27,0.00,27.15,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2203,1810,27,0.00,29.10,'AMAZON.COM          AMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2204,1811,27,0.00,40.81,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2205,1812,27,0.00,29.10,'AMAZON.COM          AMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2206,1813,27,0.00,12.95,'CANVA* I04483-837153CAMDEN              DE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2207,1814,27,3007.36,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2208,1815,27,0.00,193.97,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2209,1816,27,0.00,39.99,'ROCKETLAW 877-757-15SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2210,1817,27,3000.00,0.00,'MOBILE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2211,1818,27,0.00,322.36,'PY *STORQUEST - TAMPTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2212,1819,27,0.00,919.91,'AMERICAN EXPRESS TRASEATTLE             WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2213,1820,27,0.00,919.91,'AMERICAN EXPRESS TRASEATTLE             WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2214,1821,27,0.00,28.45,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2215,1822,27,0.00,123.95,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2216,1823,27,0.00,22.35,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2217,1824,27,0.00,349.99,'AplPay PUBLIX #1808 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2218,1825,27,0.00,20.95,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2219,1826,27,0.00,40.75,'WALGREENS           TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2220,1827,27,0.00,406.76,'DELTA AIR LINES     ATLANTA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2221,1828,27,0.00,406.76,'DELTA AIR LINES     ATLANTA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2222,1829,27,0.00,49.98,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2223,1830,27,0.00,112.23,'LINKEDIN PRE P545260MOUNTAIN VIEW','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2224,1831,27,0.00,174.20,'AplPay CARTER S #131TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2225,1831,58,174.20,0.00,'AplPay CARTER S #131TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2226,1832,27,0.00,7.36,'AplPay CREAM DE LA CTampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2227,1832,58,7.36,0.00,'AplPay CREAM DE LA CTampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2228,1833,27,0.00,21.48,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2229,1833,58,21.48,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2230,1834,27,0.00,68.44,'AplPay UBER EATS    help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2231,1835,27,0.00,13.26,'AplPay Uber Trip    help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2232,1836,27,2500.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2233,1837,27,0.00,199.00,'IMPORTGENIUS.COM    (855)573-9976       AZ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2234,1838,27,0.00,10.00,'WALGREENS           TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2235,1839,27,0.00,7.02,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2236,1840,27,0.00,49.96,'AplPay THE HOME DEPOTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2237,1841,27,0.00,27.53,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2238,1842,27,0.00,16.23,'AplPay Uber Trip    help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2239,1843,27,0.00,7.02,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2240,1844,27,0.00,131.80,'AplPay TARGET       TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2241,1845,27,0.00,4800.00,'LEAF HOME WATER SOLUHUDSON              OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2242,1845,58,4800.00,0.00,'LEAF HOME WATER SOLUHUDSON              OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2243,1846,27,0.00,1029.97,'MOD DISPLAYS        HARRISONBURG        VA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2244,1847,27,0.00,60.00,'AITUBOART           HUNGHOM             HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2245,1847,58,60.00,0.00,'AITUBOART           HUNGHOM             HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2246,1848,27,0.00,40.00,'INAI PTE. LTD.      SINGAPORE           SG','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2247,1848,58,40.00,0.00,'INAI PTE. LTD.      SINGAPORE           SG','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2248,1849,27,0.00,9.99,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2249,1850,27,0.00,5.31,'AplPay PUBLIX       FORT MYERS          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2250,1851,27,0.00,60.00,'FIGMA               SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2251,1852,27,0.00,17.98,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2252,1853,27,0.00,306.74,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2253,1853,58,306.74,0.00,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2254,1854,27,0.00,29.23,'RACETRAC2571  025718FORT MYERS          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2255,1854,58,29.23,0.00,'RACETRAC2571  025718FORT MYERS          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2256,1855,27,0.00,53.24,'WWW.WOODIESWASH.COM TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2257,1856,27,0.00,59.59,'AplPay PUBLIX       FORT MYERS          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2258,1857,27,8602.49,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2259,1858,27,0.00,9.07,'PEACOCK             NEW YORK CITY       NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2260,1858,58,9.07,0.00,'PEACOCK             NEW YORK CITY       NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2261,1859,27,9.07,0.00,'Platinum Digital Entertainment Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2262,1859,58,0.00,9.07,'Platinum Digital Entertainment Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2263,1860,27,0.00,50.98,'AplPay FORDS GARAGE ESTERO              FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2264,1861,27,0.00,479.88,'DNH*GODADDY#XXXXXXX3480-505-8855        AZ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2265,1862,27,0.00,55.57,'AplPay PUBLIX       FORT MYERS          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2266,1863,27,6133.28,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2267,1864,27,0.00,47.88,'ELEMENTOR           WILMINGTON          DE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2268,1865,27,0.00,99.00,'ELEMENTOR           WILMINGTON          DE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2269,1866,27,0.00,30.00,'AplPay A NAILS      FORT MYERS          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2270,1866,58,30.00,0.00,'AplPay A NAILS      FORT MYERS          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2271,1867,27,0.00,415.63,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2272,1868,27,36.69,0.00,'AplPay PUBLIX #1808 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2273,1869,27,0.00,29.00,'FIGMENT.SO          NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2274,1870,27,0.00,38.33,'TARGET.COM          800-591-3869        MN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2275,1871,27,0.00,239.63,'TARGET.COM          800-591-3869        MN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2276,1872,27,0.00,306.22,'AplPay PRICELN*CROWNNORWALK             CT','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2277,1872,58,306.22,0.00,'AplPay PRICELN*CROWNNORWALK             CT','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2278,1873,27,0.00,44.57,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2279,1874,27,0.00,19.99,'MICROSOFT           MSBILL.INFO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2280,1875,27,0.00,28.81,'AplPay SUBWAY TST EATSIM SHA TSUI EAST  HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2281,1876,27,0.00,257.74,'AplPay Apple Store 9HongKong            HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2282,1877,27,0.00,20.53,'AplPay UBER TRIP    HTTPS://HELP.UBER.COHK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2283,1878,27,0.00,24.39,'AplPay UBER TRIP    HTTPS://HELP.UBER.COHK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2284,1879,27,0.00,18.67,'AplPay UBER TRIP    HTTPS://HELP.UBER.COHK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2285,1880,27,0.00,85.42,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2286,1881,27,0.00,1364.90,'AIRBNB * HMR8NZ43XB SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2287,1882,27,0.00,8.64,'AplPay SUBWAY TST EATSIM SHA TSUI EAST  HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2288,1883,27,0.00,1089.74,'PAYPAL *KAMYUU1105  XXXXXX7733          HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2289,1883,58,1089.74,0.00,'PAYPAL *KAMYUU1105  XXXXXX7733          HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2290,1884,27,0.00,94.17,'GOOGLE *YOUTUBE TV   G.CO/HELPPAY#      CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2291,1885,27,0.00,17.28,'AplPay SUBWAY TST EATSIM SHA TSUI EAST  HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2292,1886,27,0.00,513.00,'PIPEDRIVE INC       NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2293,1887,27,0.00,166.05,'Extra Space 3639    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2294,1888,27,0.00,45.55,'AplPay WHOLEFDS WTP#TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2295,1889,27,0.00,218.11,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2296,1890,27,0.00,13.99,'HOSTINGER* HOSTINGERWILMINGTON          DE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2297,1891,27,0.00,72.25,'FLBLUE* ACA         JACKSONVILLE        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2298,1892,27,0.00,2672.17,'FLBLUE* ACA         JACKSONVILLE        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2299,1893,27,0.00,15.20,'FATHOM.VIDEO        SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2300,1894,27,0.00,64.80,'GOOGLE*GSUITE LITHIUCC GOOGLE.COM','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2301,1895,27,0.00,1.23,'GOOGLE              MOUNTAIN VIEW       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2302,1896,27,217.26,0.00,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2303,1896,58,0.00,217.26,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2304,1897,27,72.42,0.00,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2305,1897,58,0.00,72.42,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2306,1898,27,0.00,99.99,'LINKEDIN SN P5754303MOUNTAIN VIEW','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2307,1899,27,0.00,296.00,'AplPay BT*GAMETIME  SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2308,1899,58,296.00,0.00,'AplPay BT*GAMETIME  SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2309,1900,27,0.00,4.00,'KORE WIRELESS       ATLANTA             GA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2310,1900,58,4.00,0.00,'KORE WIRELESS       ATLANTA             GA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2311,1901,27,0.00,9.99,'AplPay UBER ONE     help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2312,1902,27,0.00,17.82,'AplPay UBER TRIP    HTTPS://HELP.UBER.COHK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2313,1903,27,0.00,42.76,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2314,1904,27,0.00,20.00,'BT*DIALPAD MEETINGS SAN RAMON           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2315,1905,27,0.00,362.10,'AplPay UNIFORM NAMETTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2316,1905,58,362.10,0.00,'AplPay UNIFORM NAMETTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2317,1906,27,0.00,58.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2318,1906,58,58.00,0.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2319,1907,27,0.00,2443.53,'AplPay AIRBNB PAYMENSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2320,1908,27,0.00,117.16,'AplPay BACK TO THE FNew York            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2321,1909,27,0.00,28.80,'TST* BAR CARTS-STRAZTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2322,1909,58,28.80,0.00,'TST* BAR CARTS-STRAZTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2323,1910,27,0.00,39.00,'7-ELEVEN 37149 00073TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2324,1911,27,0.00,44.90,'SAM\'S CLUB 4861 4861ST. PETERSBURG      FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2325,1912,27,0.00,831.07,'SAM\'S CLUB 4861 4861ST. PETERSBURG      FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2326,1913,27,0.00,55.08,'AplPay EMPAMAMAS    Tampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2327,1913,58,55.08,0.00,'AplPay EMPAMAMAS    Tampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2328,1914,27,0.00,361.89,'VZWRLSS BILL PAY VE 800-922-0204        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2329,1915,27,0.00,62.98,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2330,1916,27,0.00,101.84,'AplPay PUBLIX #1808 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2331,1917,27,0.00,8.00,'MICROSOFT           MSBILL.INFO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2332,1918,27,0.00,23.61,'AplPay TARGET       TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2333,1919,27,0.00,33.65,'PMC - PAID PARKING  NASHVILLE           TN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2334,1920,27,0.00,19.99,'CKO*WONDERSHARE 2079HK                  HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2335,1921,27,0.00,11.50,'AplPay VALET TIPS   NASHVILLE           TN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2336,1921,58,11.50,0.00,'AplPay VALET TIPS   NASHVILLE           TN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2337,1922,27,0.00,3.00,'BLINK               AMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2338,1923,27,0.00,31.90,'AplPay 7-ELEVEN 3714TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2339,1924,27,0.00,65.51,'AplPay PUBLIX #1808 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2340,1925,27,0.00,100.00,'HELP.USEMOTION.COM  SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2341,1926,27,0.00,3.99,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2342,1927,27,0.00,52.17,'AplPay TARGET       TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2343,1928,27,0.00,13.38,'AplPay MCDONALD\'S M2TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2344,1929,27,0.00,998.00,'CVENT LEADCAPTURE   MC LEAN             VA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2345,1930,27,0.00,21.00,'SQSP* INV180951011  NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2346,1930,58,21.00,0.00,'SQSP* INV180951011  NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2347,1931,27,0.00,46.43,'PMC - PAID PARKING  NASHVILLE           TN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2348,1932,27,0.00,217.00,'THE STUDY SALON     TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2349,1933,27,0.00,11.50,'AplPay VALET TIPS   NASHVILLE           TN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2350,1933,58,11.50,0.00,'AplPay VALET TIPS   NASHVILLE           TN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2351,1934,27,0.00,48.36,'WWW.WOODIESWASH.COM TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2352,1935,27,0.00,33.90,'ZOOM.COM 888-799-966SAN JOSE            CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2353,1936,27,0.00,59.95,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2354,1936,58,59.95,0.00,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2355,1937,27,0.00,46.43,'PMC - PAID PARKING  NASHVILLE           TN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2356,1938,27,0.00,11.50,'VALET TIPS          NASHVILLE           TN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2357,1938,58,11.50,0.00,'VALET TIPS          NASHVILLE           TN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2358,1939,27,0.00,15.12,'JETPACK XSV3MCJPAA  SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2359,1940,27,0.00,48.75,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2360,1941,27,0.00,249.95,'BT*SEMRUSH          BOSTON              MA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2361,1942,27,0.00,1746.73,'AIRBNB * HMQBMSA5AN SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2362,1943,27,0.00,6.22,'AplPay DUCKWEED LIQUTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2363,1944,27,0.00,59.99,'PADDLE.NET* PREPRODUNEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2364,1945,27,0.00,41.13,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2365,1945,58,41.13,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2366,1946,27,0.00,12.95,'CANVA* I04513-712612CAMDEN              DE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2367,1947,27,0.00,243.84,'AplPay PUBLIX #1688 INDIALANTIC         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2368,1948,27,0.00,39.99,'ROCKETLAW 877-757-15SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2369,1949,27,0.00,66.44,'AplPay OCEANSIDE PIZINDIALANTIC         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2370,1950,27,0.00,322.36,'PY *STORQUEST - TAMPTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2371,1951,27,59.95,0.00,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2372,1951,58,0.00,59.95,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2373,1952,27,59.95,0.00,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2374,1952,58,0.00,59.95,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2375,1953,27,59.95,0.00,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2376,1953,58,0.00,59.95,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2377,1954,27,0.00,10.42,'AplPay CROWNE PLAZA MELBOURNE           FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2378,1955,27,0.00,619.49,'VZWRLSS BILL PAY VE 800-922-0204        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2379,1956,27,0.00,49.97,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2380,1957,27,0.00,85.59,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2381,1958,27,0.00,129.99,'BESTBUYCOMXXXXXX3611RICHFIELD           MN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2382,1959,27,0.00,79.96,'AplPay PUBLIX #1688 INDIALANTIC         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2383,1960,27,0.00,112.23,'LINKEDIN PRE P598700MOUNTAIN VIEW','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2384,1961,27,0.00,199.00,'IMPORTGENIUS.COM    (855)573-9976       AZ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2385,1962,27,0.00,1440.26,'AIRBNB * HMQBMSA5AN SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2386,1963,27,0.00,54.56,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2387,1964,27,0.00,48.77,'RON JON SURF SHOP   COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2388,1964,58,48.77,0.00,'RON JON SURF SHOP   COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2389,1965,27,0.00,173.45,'RON JON SURF SHOP   COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2390,1965,58,173.45,0.00,'RON JON SURF SHOP   COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2391,1966,27,0.00,11.12,'RON JON SURF SHOP   COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2392,1966,58,11.12,0.00,'RON JON SURF SHOP   COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2393,1967,27,0.00,37.32,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2394,1968,27,6250.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2395,1969,27,6250.00,0.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250516 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX1796687 EED:250516 IND ID:W9994 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6687 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2396,1970,27,0.00,2.75,'KUBRA/TECO CONV FEE 800-766-6616        NJ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2397,1971,27,0.00,664.97,'TECO/PEOPLES GAS    813-223-0800        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2398,1972,27,0.00,19.55,'AplPay 7-ELEVEN 1011INDIALANTIC         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2399,1973,27,0.00,56.88,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2400,1973,58,56.88,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2401,1974,27,0.00,312.84,'AplPay IC* INSTACARTLAKELAND            FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2402,1974,58,312.84,0.00,'AplPay IC* INSTACARTLAKELAND            FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2403,1975,27,0.00,122.07,'AplPay PUBLIX #1688 INDIALANTIC         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2404,1976,27,0.00,60.00,'AITUBO.AI           HUNGHOM             HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2405,1976,58,60.00,0.00,'AITUBO.AI           HUNGHOM             HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2406,1977,27,0.00,40.00,'INAI PTE. LTD.      SINGAPORE           SG','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2407,1977,58,40.00,0.00,'INAI PTE. LTD.      SINGAPORE           SG','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2408,1978,27,0.00,9.99,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2409,1979,27,0.00,27.95,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2410,1980,27,0.00,60.00,'FIGMA               SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2411,1981,27,0.00,14.34,'AplPay MOOS SOFT SERINDIALANTIC         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2412,1982,27,0.00,11.63,'AplPay MOOS SOFT SERINDIALANTIC         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2413,1983,27,0.00,69.26,'AplPay IC* ABC FINE ORLANDO             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2414,1983,58,69.26,0.00,'AplPay IC* ABC FINE ORLANDO             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2415,1984,27,0.00,39.37,'AplPay IC* ABC FINE ORLANDO             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2416,1984,58,39.37,0.00,'AplPay IC* ABC FINE ORLANDO             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2417,1985,27,0.00,52.05,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2418,1986,27,0.00,328.01,'AMAZON.COM          AMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2419,1987,27,0.00,68.76,'AplPay OCEANSIDE PIZINDIALANTIC         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2420,1988,27,0.00,53.24,'WWW.WOODIESWASH.COM TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2421,1989,27,0.00,7.49,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2422,1989,58,7.49,0.00,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2423,1990,27,0.00,1.95,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2424,1990,58,1.95,0.00,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2425,1991,27,0.00,13.49,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2426,1991,58,13.49,0.00,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2427,1992,27,0.00,7.99,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2428,1993,27,0.00,8.18,'AplPay MCDONALDS OF ORLANDO             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2429,1994,27,0.00,5.45,'AplPay MCDONALD\'S   MELBOURNE           FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2430,1995,27,0.00,9.07,'PEACOCK             NEW YORK CITY       NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2431,1995,58,9.07,0.00,'PEACOCK             NEW YORK CITY       NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2432,1996,27,9.07,0.00,'Platinum Digital Entertainment Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2433,1996,58,0.00,9.07,'Platinum Digital Entertainment Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2434,1997,27,0.00,68.11,'AplPay SP REEF.COM  NEWTON              MA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2435,1997,58,68.11,0.00,'AplPay SP REEF.COM  NEWTON              MA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2436,1998,27,0.00,247.47,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2437,1999,27,0.00,8.28,'AplPay CREAM DE LA CTampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2438,1999,58,8.28,0.00,'AplPay CREAM DE LA CTampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2439,2000,27,0.00,29.37,'MACYS   .COM 0000001MASON               OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2440,2000,58,29.37,0.00,'MACYS   .COM 0000001MASON               OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2441,2001,27,0.00,25.00,'PAY* ANGI-MAY23     INDIANAPOLIS        IN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2442,2001,58,25.00,0.00,'PAY* ANGI-MAY23     INDIANAPOLIS        IN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2443,2002,27,25.00,0.00,'PAY* ANGI-MAY23                         IN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2444,2002,58,0.00,25.00,'PAY* ANGI-MAY23                         IN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2445,2003,27,0.00,47.83,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2446,2004,27,0.00,68.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2447,2004,58,68.00,0.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2448,2005,27,0.00,325.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2449,2006,27,0.00,10.00,'SMC # 67065         ST. PETERSBURG      FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2450,2007,27,0.00,21.28,'APPLECARE PLAN026104RICHFIELD           MN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2451,2008,27,0.00,19.46,'7-ELEVEN 37149 00073TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2452,2009,27,0.00,29.00,'FIGMENT.SO          NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2453,2010,27,0.00,1387.34,'PAYPAL *KAMYUU1105  XXXXXX7733          HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2454,2010,58,1387.34,0.00,'PAYPAL *KAMYUU1105  XXXXXX7733          HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2455,2011,27,0.00,19.99,'MICROSOFT           MSBILL.INFO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2456,2012,27,0.00,6.22,'AplPay DUCKWEED LIQUTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2457,2013,27,0.00,23.52,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2458,2014,27,0.00,515.67,'BT*MYRIAD WOMEN\'S HESOUTH SAN FRANCISCO CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2459,2014,58,515.67,0.00,'BT*MYRIAD WOMEN\'S HESOUTH SAN FRANCISCO CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2460,2015,27,0.00,69.51,'AplPay PUBLIX #1808 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2461,2016,27,0.00,13.67,'AplPay MCDONALD\'S   GRAPEVINE           TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2462,2017,27,0.00,83.38,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2463,2018,27,8500.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2464,2019,27,0.00,94.17,'GOOGLE *YOUTUBE TV   G.CO/HELPPAY#      CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2465,2020,27,0.00,187.76,'HOMEDEPOT.COM       800-430-3376        GA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2466,2021,27,0.00,74.31,'AplPay JONI\'S PET SATAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2467,2021,58,74.31,0.00,'AplPay JONI\'S PET SATAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2468,2022,27,0.00,21.28,'APPLECARE PLAN026104RICHFIELD           MN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2469,2023,27,0.00,10.00,'PPY=TAMPA NEUROPSYCHTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2470,2024,27,0.00,86.07,'HOMEDEPOT.COM       800-430-3376        GA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2471,2025,27,0.00,513.00,'PIPEDRIVE INC       NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2472,2026,27,0.00,10.64,'APPLECARE PLAN026104RICHFIELD           MN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2473,2027,27,0.00,166.05,'Extra Space 3639    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2474,2028,27,0.00,40.88,'AplPay FK WESTSHORE TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2475,2028,58,40.88,0.00,'AplPay FK WESTSHORE TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2476,2029,27,0.00,26.61,'AMAZON.COM          AMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2477,2030,27,0.00,106.11,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2478,2031,27,0.00,13.99,'HOSTINGER* HOSTINGERWILMINGTON          DE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2479,2032,27,0.00,4.00,'KORE WIRELESS       ATLANTA             GA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2480,2033,27,0.00,49.00,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2481,2034,27,0.00,77.49,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2482,2034,58,77.49,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2483,2035,27,0.00,315.13,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2484,2035,58,315.13,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2485,2036,27,0.00,10.31,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2486,2037,27,0.00,68.01,'AplPay THE HOME DEPOTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2487,2038,27,0.00,2672.17,'FLBLUE* ACA         JACKSONVILLE        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2488,2039,27,0.00,72.25,'FLBLUE* ACA         JACKSONVILLE        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2489,2040,27,0.00,15.20,'FATHOM.VIDEO        SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2490,2041,27,0.00,68.89,'GOOGLE *CLOUD MV2CNP G.CO/HELPPAY#      CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2491,2042,27,0.00,67.65,'GOOGLE*GSUITE_LITHIUMOUNTAIN VIEW       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2492,2043,27,0.00,99.99,'LINKEDIN SN P6329569MOUNTAIN VIEW','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2493,2044,27,0.00,49.53,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2494,2045,27,0.00,10.00,'TELADOC 0259        LEWISVILLE          TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2495,2045,58,10.00,0.00,'TELADOC 0259        LEWISVILLE          TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2496,2046,27,0.00,9.99,'AplPay UBER ONE     help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2497,2047,27,0.00,20.00,'BT*DIALPAD MEETINGS SAN RAMON           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2498,2048,27,0.00,97.84,'WAL-MART SUPERCENTERTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2499,2049,27,0.00,38.99,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2500,2050,27,0.00,21.39,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2501,2051,27,0.00,27.00,'AplPay GREAT EXPLORAST PETERSBURG       FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2502,2051,58,27.00,0.00,'AplPay GREAT EXPLORAST PETERSBURG       FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2503,2052,27,0.00,102.28,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2504,2053,27,3750.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2505,2054,27,0.00,7.02,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2506,2055,27,0.00,1665.18,'AplPay ASHLEY HOMESTTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2507,2056,27,0.00,16931.41,'AplPay ASHLEY HOMESTTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2508,2057,27,5000.00,0.00,'MOBILE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2509,2058,27,0.00,499.00,'BONFIRE PREMIUM VENDOAKVILLE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2510,2059,27,0.00,90.85,'AplPay SPROUTS FARMETampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2511,2059,58,90.85,0.00,'AplPay SPROUTS FARMETampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2512,2060,27,0.00,74.50,'7-ELEVEN 38123 00073ST PETERSBURG       FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2513,2061,27,0.00,30.00,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2514,2062,27,0.00,8.00,'MICROSOFT           MSBILL.INFO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2515,2063,27,0.00,7.02,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2516,2064,27,0.00,3.00,'BLINK               AMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2517,2065,27,0.00,138.51,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2518,2066,27,0.00,4.17,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2519,2067,27,15000.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2520,2068,27,0.00,21.00,'SQSP* INV185094968  NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2521,2068,58,21.00,0.00,'SQSP* INV185094968  NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2522,2069,27,0.00,59.09,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2523,2070,27,0.00,24.48,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2524,2071,27,499.00,0.00,'BONFIRE PREMIUM VENDOAKVILLE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2525,2071,58,0.00,499.00,'BONFIRE PREMIUM VENDOAKVILLE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2526,2072,27,0.00,27.37,'AplPay IC* INSTACARTLAKELAND            FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2527,2072,58,27.37,0.00,'AplPay IC* INSTACARTLAKELAND            FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2528,2073,27,0.00,48.36,'WWW.WOODIESWASH.COM TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2529,2074,27,0.00,11.12,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2530,2075,27,0.00,45.05,'HOOTERS OF SOUTH TAMTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2531,2076,27,0.00,10.74,'APPLECARE MNTHLY PLARICHFIELD           MN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2532,2077,27,0.00,59.08,'SAM\'S CLUB 6403 6403BRANDON             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2533,2078,27,0.00,318.66,'SAM\'S CLUB 6403 6403BRANDON             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2534,2079,27,0.00,19.99,'GOOGLE*YOUTUBE VIDEO G.CO HELPPAY#','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2535,2080,27,0.00,15.34,'JETPACK WERLSWSBW4  SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2536,2081,27,0.00,7.99,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2537,2082,27,0.00,7.02,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2538,2083,27,0.00,1084.35,'SPIRIT AIRLINES     SOUTH FLORIDA       FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2539,2084,27,0.00,42.44,'MACYS MARKETPLACE 00MASON               OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2540,2084,58,42.44,0.00,'MACYS MARKETPLACE 00MASON               OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2541,2085,27,0.00,249.95,'BT*SEMRUSH          BOSTON              MA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2542,2086,27,0.00,14.46,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2543,2087,27,0.00,59.99,'PADDLE.NET* PREPRODUNEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2544,2088,27,0.00,380.00,'RELUME.IO           DURAL               AU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2545,2089,27,0.00,41.48,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2546,2090,27,0.00,325.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2547,2091,27,0.00,325.32,'PY *STORQUEST - TAMPTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2548,2092,27,0.00,57.30,'CHUCK LAGER AMERICA\'TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2549,2092,58,57.30,0.00,'CHUCK LAGER AMERICA\'TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2550,2093,27,0.00,129.39,'AplPay PUBLIX #1808 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2551,2094,27,0.00,14.11,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2552,2095,27,0.00,65.00,'SERENITY HEALS THERAFORT MYERS          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2553,2095,58,65.00,0.00,'SERENITY HEALS THERAFORT MYERS          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2554,2096,27,0.00,8.40,'MICROSOFT           MSBILL.INFO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2555,2097,27,0.00,112.23,'LINKEDIN PRE P655876MOUNTAIN VIEW','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2556,2098,27,0.00,6.22,'AplPay DUCKWEED LIQUTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2557,2099,27,0.00,15.01,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2558,2100,27,0.00,8.45,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2559,2101,27,0.00,9.99,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2560,2102,27,0.00,7.19,'AplPay CREAM DE LA CTampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2561,2102,58,7.19,0.00,'AplPay CREAM DE LA CTampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2562,2103,27,0.00,153.52,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2563,2104,27,0.00,7.99,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2564,2105,27,0.00,12.87,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2565,2106,27,0.00,64.38,'AplPay THE HOME DEPOTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2566,2107,27,0.00,58.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2567,2107,58,58.00,0.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2568,2108,27,0.00,9.99,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2569,2109,27,0.00,7.02,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2570,2110,27,0.00,20.00,'FIGMA               SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2571,2111,27,0.00,28.23,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2572,2112,27,0.00,260.19,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2573,2112,58,260.19,0.00,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2574,2113,27,0.00,64.49,'AplPay DUCKWEED LIQUTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2575,2114,27,0.00,15.00,'AplPay TOUCHTUNES MUSCHAUMBURG          IL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2576,2114,58,15.00,0.00,'AplPay TOUCHTUNES MUSCHAUMBURG          IL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2577,2115,27,0.00,331.37,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2578,2115,58,331.37,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2579,2116,27,0.00,54.98,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2580,2117,27,0.00,12.00,'AplPay PIN CHASERS VTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2581,2118,27,0.00,12.84,'AplPay PIN CHASERS VTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2582,2119,27,0.00,8.56,'AplPay PIN CHASERS VTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2583,2120,27,0.00,23.28,'PIN CHASERS VETERANSTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2584,2121,27,0.00,22.20,'PIN CHASERS VETERANSTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2585,2122,27,0.00,9.07,'PEACOCK             NEW YORK CITY       NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2586,2122,58,9.07,0.00,'PEACOCK             NEW YORK CITY       NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2587,2123,27,9.07,0.00,'Platinum Digital Entertainment Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2588,2123,58,0.00,9.07,'Platinum Digital Entertainment Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2589,2124,27,0.00,53.74,'WWW.WOODIESWASH.COM TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2590,2124,58,53.74,0.00,'WWW.WOODIESWASH.COM TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2591,2125,27,0.00,7.34,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2592,2126,27,0.00,9.57,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2593,2127,27,0.00,64.49,'AplPay DUCKWEED LIQUTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2594,2128,27,0.00,28.23,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2595,2129,27,0.00,56.35,'AplPay CHILL GRILL HTampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2596,2130,27,0.00,13.05,'DAVE & BUSTERS #120 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2597,2131,27,0.00,186.46,'DAVE & BUSTERS #120 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2598,2132,27,0.00,7.02,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2599,2133,27,0.00,0.39,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2600,2134,27,0.00,19.99,'MICROSOFT           MSBILL.INFO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2601,2135,27,0.00,82.64,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2602,2136,27,0.00,27.39,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2603,2137,27,0.00,8.59,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2604,2138,27,0.00,94.17,'GOOGLE *YOUTUBE TV   G.CO/HELPPAY#      CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2605,2139,27,0.00,31.61,'MCDONALD\'S          ROMULUS             MI','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2606,2140,27,0.00,19.84,'HAMLIN PUB 650000006SHELBY TOWNSH       MI','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2607,2141,27,0.00,70.46,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2608,2141,58,70.46,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2609,2142,27,0.00,167.67,'Extra Space 3639    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2610,2143,27,0.00,4.00,'KORE WIRELESS       ATLANTA             GA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2611,2144,27,0.00,10.74,'APPLECARE MNTHLY PLARICHFIELD           MN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2612,2145,27,0.00,7.02,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2613,2146,27,0.00,6.22,'AplPay DUCKWEED LIQUTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2614,2147,27,0.00,72.25,'FLBLUE* ACA         JACKSONVILLE        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2615,2148,27,0.00,2672.17,'FLBLUE* ACA         JACKSONVILLE        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2616,2149,27,0.00,81.95,'AplPay IC* ABC FINE ORLANDO             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2617,2150,27,0.00,20.00,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2618,2151,27,0.00,66.69,'TST* BUDDY\'S PIZZA -DEARBORN            MI','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2619,2152,27,0.00,99.99,'LINKEDIN SN P6835902MOUNTAIN VIEW','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2620,2153,27,0.00,2895.28,'PROPAY RESIDENTIAL RTampa               FL\n\nHOA Special Assessment','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2621,2154,27,0.00,554.49,'JEWELERS-MUTUAL-PMNT800-558-6411        WI','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2622,2155,27,0.00,5.61,'GOOGLE*CLOUD QCMVKK  G.CO HELPPAY#','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2623,2156,27,0.00,337.18,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2624,2157,27,0.00,7.02,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2625,2158,27,0.00,9.99,'AplPay UBER ONE     help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2626,2159,27,0.00,20.00,'BT*DIALPAD MEETINGS SAN RAMON           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2627,2160,27,0.00,21.98,'SPIRIT AIRLINES ONBOIRVING              TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2628,2161,27,42.44,0.00,'MACYS MARKETPLACE 00MASON               OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2629,2162,27,0.00,42.99,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2630,2163,27,0.00,42.99,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2631,2164,27,0.00,38.58,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2632,2165,27,0.00,142.75,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2633,2166,27,0.00,5.04,'MCDONALD\'S M2086 000TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2634,2167,27,0.00,14.11,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2635,2168,27,0.00,50.15,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2636,2169,27,0.00,48.99,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2637,2170,27,0.00,209.51,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2638,2171,27,0.00,3.00,'BLINK               AMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2639,2172,27,0.00,3.99,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2640,2173,27,0.00,10.74,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2641,2174,27,0.00,25.48,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2642,2175,27,0.00,21.00,'SQSP* INV189046655  NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2643,2176,27,0.00,887.87,'VZWRLSS BILL PAY VE 800-922-0204        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2644,2177,27,0.00,42.34,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2645,2178,27,0.00,35.40,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2646,2179,27,0.00,48.36,'WWW.WOODIESWASH.COM TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2647,2180,27,0.00,33.00,'BT*DD *QWENCHJUICE  SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2648,2181,27,0.00,10.75,'AplPay DRNK & QWENCHTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2649,2182,27,0.00,10.74,'APPLECARE MNTHLY PLARICHFIELD           MN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2650,2183,27,0.00,15.36,'JETPACK QNACXGGHAX  SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2651,2184,27,0.00,149.31,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2652,2185,27,0.00,50.98,'AplPay CARTER S #131TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2653,2185,58,50.98,0.00,'AplPay CARTER S #131TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2654,2186,27,0.00,14.04,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2655,2187,27,0.00,59.99,'PADDLE.NET* PREPRODUNEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2656,2188,27,59.99,0.00,'PADDLE.NET* PREPRODUNEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2657,2189,27,0.00,7.19,'AplPay CREAM DE LA CTampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2658,2190,27,0.00,35.75,'AplPay SPROUTS FARMETampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2659,2191,27,0.00,81.95,'AplPay IC* ABC FINE ORLANDO             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2660,2192,27,0.00,15.48,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2661,2193,27,0.00,325.32,'PY *STORQUEST - TAMPTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2662,2194,27,0.00,176.59,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2663,2195,27,0.00,57.98,'AplPay IC* INSTACARTLAKELAND            FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2664,2196,27,0.00,87.00,'AplPay MANHATTAN NAITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2665,2197,27,0.00,7.02,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2666,2198,27,0.00,112.23,'LINKEDIN PRE P702474MOUNTAIN VIEW','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2667,2199,27,0.00,8.40,'MICROSOFT           MSBILL.INFO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2668,2200,27,0.00,103.74,'SPORT CLIPS - FL111 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2669,2200,58,103.74,0.00,'SPORT CLIPS - FL111 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2670,2201,27,0.00,28.23,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2671,2202,27,0.00,634.24,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2672,2203,27,0.00,7.02,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2673,2204,27,0.00,35.09,'AplPay TARGET       TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2674,2205,27,0.00,10.00,'TELADOC 0259        LEWISVILLE          TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2675,2205,58,10.00,0.00,'TELADOC 0259        LEWISVILLE          TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2676,2206,27,0.00,101.87,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2677,2207,27,0.00,48.35,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2678,2208,27,0.00,275.39,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2679,2209,27,0.00,105.99,'713 TAMPA DALE MABRYTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2680,2210,27,0.00,99.96,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2681,2211,27,0.00,5.04,'AplPay MCDONALD\'S M2TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2682,2212,27,0.00,10.49,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2683,2213,27,0.00,29.98,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2684,2214,27,0.00,9.99,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2685,2215,27,9500.00,0.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250718 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX5506447 EED:250718 IND ID:W8910 IND NAME:NATHAN STARON ER AM TRN: XXXXXX6447 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2686,2216,27,0.00,178.10,'AplPay PUBLIX #1808 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2687,2217,27,0.00,29.00,'LATE FEE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2688,2218,27,0.00,20.00,'FIGMA               SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2689,2219,27,0.00,20.75,'WALGREENS           TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2690,2220,27,0.00,10.00,'TELADOC 0259        LEWISVILLE          TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2691,2220,58,10.00,0.00,'TELADOC 0259        LEWISVILLE          TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2692,2221,27,0.00,371.80,'AplPay ZENOTIUSA_POSTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2693,2222,27,0.00,28.23,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2694,2223,27,0.00,75.40,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2695,2224,27,0.00,25.52,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2696,2225,27,0.00,9.07,'PEACOCK             NEW YORK CITY       NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2697,2225,58,9.07,0.00,'PEACOCK             NEW YORK CITY       NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2698,2226,27,0.00,50.19,'AplPay LITTLE CAESARTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2699,2227,27,0.00,53.74,'WWW.WOODIESWASH.COM TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2700,2228,27,0.00,4059.35,'VRBO                512-759-0902        TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2701,2229,27,9.07,0.00,'Platinum Digital Entertainment Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2702,2229,58,0.00,9.07,'Platinum Digital Entertainment Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2703,2230,27,0.00,89.00,'CSA-GGA-DAM/TRIPINSUSAN DIEGO           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2704,2231,27,0.00,127.97,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2705,2232,27,0.00,99.00,'IC* INSTACART*SUBSCRSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2706,2233,27,0.00,354.00,'GiftHealth*LillyDire833-6144438         OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2707,2234,27,0.00,11.18,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2708,2235,27,0.00,11.59,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2709,2236,27,0.00,33.10,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2710,2237,27,0.00,27.62,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2711,2238,27,0.00,19.99,'MICROSOFT           MSBILL.INFO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2712,2239,27,0.00,236.68,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2713,2240,27,0.00,10.00,'WALGREENS           TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2714,2241,27,0.00,14.36,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2715,2242,27,0.00,562.80,'SAM\'S CLUB 6403 6403BRANDON             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2716,2243,27,0.00,20.00,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2717,2244,27,0.00,133.88,'SAM\'S CLUB 6403 6403BRANDON             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2718,2245,27,0.00,19.34,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2719,2246,27,0.00,94.17,'GOOGLE *YOUTUBE TV   G.CO/HELPPAY#      CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2720,2247,27,0.00,107.15,'AplPay IC* INSTACARTLAKELAND            FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2721,2248,27,0.00,10.00,'AplPay BOSSY LEMON  Tampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2722,2249,27,0.00,28.23,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2723,2250,27,0.00,10.74,'APPLECARE MNTHLY PLARICHFIELD           MN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2724,2251,27,0.00,471.35,'FREIGHTQUOTE.COM INCKANSAS CITY         MO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2725,2252,27,0.00,179.06,'Extra Space 3639    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2726,2253,27,0.00,14.36,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2727,2254,27,0.00,101.40,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2728,2255,27,0.00,4.00,'KORE WIRELESS       ATLANTA             GA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2729,2256,27,0.00,29.99,'WALGREENS           TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2730,2257,27,0.00,37.78,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2731,2258,27,0.00,72.25,'FLBLUE* ACA         JACKSONVILLE        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2732,2259,27,0.00,20.35,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2733,2260,27,0.00,68.00,'AplPay MANHATTAN NAITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2734,2261,27,0.00,2672.17,'FLBLUE* ACA         JACKSONVILLE        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2735,2262,27,0.00,28.90,'GOOGLE *CLOUD PH6XZP G.CO/HELPPAY#      CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2736,2263,27,0.00,75.44,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2737,2264,27,0.00,159.54,'AplPay IC* INSTACARTLAKELAND            FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2738,2265,27,0.00,7.34,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2739,2266,27,0.00,15.98,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2740,2267,27,0.00,9.99,'AplPay UBER ONE     help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2741,2268,27,0.00,14.11,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2742,2269,27,0.00,19.77,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2743,2270,27,0.00,20.00,'BT*DIALPAD MEETINGS SAN RAMON           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2744,2271,27,0.00,146.27,'AplPay PUBLIX #1808 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2745,2272,27,0.00,6.89,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2746,2273,27,20.00,0.00,'BT*DIALPAD MEETINGS SAN RAMON           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2747,2274,27,0.00,280.00,'AplPay LECADA LLC 00TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2748,2275,27,0.00,34.82,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2749,2276,27,0.00,60.42,'AplPay TARGET       TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2750,2277,27,0.00,61.43,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2751,2278,27,0.00,8.93,'AplPay STARBUCKS STOTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2752,2279,27,0.00,23.43,'AplPay SPROUTS FARMETampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2753,2280,27,0.00,14.80,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2754,2281,27,0.00,28.98,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2755,2282,27,0.00,39.95,'PADDLE.NET* MACPAW.CNEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2756,2283,27,0.00,31.65,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2757,2284,27,0.00,7.34,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2758,2285,27,0.00,3.00,'BLINK               AMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2759,2286,27,0.00,21.00,'SQSP* WEBSIT#1931741NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2760,2286,58,21.00,0.00,'SQSP* WEBSIT#1931741NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2761,2287,27,0.00,79.57,'AplPay PUBLIX #1808 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2762,2288,27,0.00,63.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2763,2288,58,63.00,0.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2764,2289,27,32.24,0.00,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2765,2290,27,0.00,20.19,'AplPay TARGET       TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2766,2291,27,0.00,28.23,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2767,2292,27,0.00,21.70,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2768,2293,27,0.00,65.00,'SERENITY HEALS THERAFORT MYERS          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2769,2293,58,65.00,0.00,'SERENITY HEALS THERAFORT MYERS          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2770,2294,27,0.00,48.36,'WWW.WOODIESWASH.COM TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2771,2295,27,0.00,10.74,'APPLECARE MNTHLY PLARICHFIELD           MN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2772,2296,27,0.00,158.00,'AplPay SP SAND SURF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2773,2296,58,158.00,0.00,'AplPay SP SAND SURF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2774,2297,27,0.00,59.86,'AplPay ZITNIK TRAINSPINELLAS PARK       FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2775,2297,58,59.86,0.00,'AplPay ZITNIK TRAINSPINELLAS PARK       FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2776,2298,27,0.00,152.16,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2777,2299,27,0.00,14.11,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2778,2300,27,0.00,13.78,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2779,2301,27,0.00,82.95,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2780,2302,27,0.00,34.35,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2781,2303,27,0.00,100.56,'AplPay TARGET       TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2782,2304,27,0.00,322.36,'PY *STORQUEST - TAMPTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2783,2305,27,0.00,6.89,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2784,2306,27,0.00,49.98,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2785,2307,27,0.00,112.23,'LINKEDIN PRE P756314MOUNTAIN VIEW','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2786,2308,27,0.00,22.10,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2787,2309,27,0.00,8.40,'MICROSOFT           MSBILL.INFO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2788,2310,27,0.00,504.00,'GiftHealth*LillyDire833-6144438         OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2789,2310,58,504.00,0.00,'GiftHealth*LillyDire833-6144438         OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2790,2311,27,0.00,34.84,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2791,2312,27,0.00,36.37,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2792,2313,27,0.00,114.67,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2793,2314,27,0.00,262.24,'AplPay PUBLIX #1688 INDIALANTIC         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2794,2315,27,0.00,89.80,'AplPay ABC FINE WINEINDIALANTIC         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2795,2316,27,0.00,5.98,'AplPay ABC FINE WINEINDIALANTIC         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2796,2317,27,16931.41,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2797,2318,27,29.00,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2798,2319,27,0.00,127.03,'AplPay RON JON SURF COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2799,2319,58,127.03,0.00,'AplPay RON JON SURF COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2800,2320,27,0.00,12.83,'AplPay 5600 NORTH HAMELBOURNE           FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2801,2320,58,12.83,0.00,'AplPay 5600 NORTH HAMELBOURNE           FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2802,2321,27,0.00,9.99,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2803,2322,27,0.00,77.13,'AplPay IC* ABC FINE ORLANDO             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2804,2323,27,0.00,126.84,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2805,2324,27,0.00,139.80,'AplPay OCEANSIDE PIZINDIALANTIC         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2806,2325,27,0.00,9.07,'PEACOCK             NEW YORK CITY       NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2807,2325,58,9.07,0.00,'PEACOCK             NEW YORK CITY       NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2808,2326,27,9.07,0.00,'Platinum Digital Entertainment Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2809,2326,58,0.00,9.07,'Platinum Digital Entertainment Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2810,2327,27,0.00,53.74,'WWW.WOODIESWASH.COM TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2811,2328,27,0.00,22.93,'AplPay IC* ABC FINE ORLANDO             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2812,2329,27,0.00,152.10,'RON JON SURF SHOP   COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2813,2329,58,152.10,0.00,'RON JON SURF SHOP   COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2814,2330,27,0.00,314.35,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2815,2331,27,0.00,9.01,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2816,2332,27,0.00,4061.33,'SHOGUN              COVINA              CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2817,2333,27,0.00,28.23,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2818,2334,27,0.00,29.99,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2819,2335,27,0.00,101.49,'SP SAND SURF CO     TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2820,2335,58,101.49,0.00,'SP SAND SURF CO     TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2821,2336,27,0.00,17.73,'AplPay SP SAND SURF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2822,2336,58,17.73,0.00,'AplPay SP SAND SURF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2823,2337,27,0.00,9.19,'AplPay CREAM DE LA CTampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2824,2338,27,4061.33,0.00,'SHOGUN              COVINA              CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2825,2339,27,0.00,145.45,'AplPay TARGET       TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2826,2340,27,0.00,19.99,'MICROSOFT           MSBILL.INFO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2827,2341,27,0.00,850.00,'THE WOMANS GROUP OF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2828,2341,58,850.00,0.00,'THE WOMANS GROUP OF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2829,2342,27,0.00,80.00,'THE WOMANS GROUP OF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2830,2342,58,80.00,0.00,'THE WOMANS GROUP OF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2831,2343,27,0.00,166.96,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2832,2344,27,0.00,6.89,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2833,2345,27,0.00,34.98,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2834,2346,27,0.00,9.19,'AplPay CREAM DE LA CTampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2835,2347,27,9.13,0.00,'SP SAND SURF CO     TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2836,2347,58,0.00,9.13,'SP SAND SURF CO     TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2837,2348,27,0.00,36.29,'WAL-MART SUPERCENTERTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2838,2349,27,0.00,126.20,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2839,2350,27,0.00,7.00,'AplPay TOUCHTUNES MUSCHAUMBURG          IL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2840,2350,58,7.00,0.00,'AplPay TOUCHTUNES MUSCHAUMBURG          IL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2841,2351,27,0.00,60.23,'PY *PDQ - SOUTH TAMPTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2842,2351,58,60.23,0.00,'PY *PDQ - SOUTH TAMPTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2843,2352,27,1200.00,0.00,'MOBILE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2844,2353,27,0.00,7.02,'AplPay DUCKWEED WD ITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2845,2354,27,0.00,10.74,'APPLECARE MNTHLY PLARICHFIELD           MN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2846,2355,27,0.00,4.00,'KORE WIRELESS       ATLANTA             GA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2847,2356,27,0.00,179.06,'Extra Space 3639    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2848,2357,27,0.00,29.99,'WALMART.COM         WALMART.COM         AR','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2849,2358,27,1500.00,0.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250829 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX6353453 EED:250829 IND ID:M9752 IND NAME:NATHAN STARON ER AM TRN: XXXXXX3453 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2850,2359,27,1500.00,0.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250829 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX6353429 EED:250829 IND ID:M8876 IND NAME:NATHAN STARON ER AM TRN: XXXXXX3429 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2851,2360,27,0.00,383.63,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2852,2361,27,0.00,28.23,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2853,2362,27,0.00,115.87,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2854,2363,27,0.00,6.43,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2855,2364,27,0.00,63.64,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2856,2365,27,0.00,5.38,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2857,2366,27,0.00,8.99,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2858,2367,27,0.00,34832.60,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2859,2368,27,0.00,9.99,'AplPay UBER ONE     help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2860,2369,27,0.00,1.29,'AplPay DUCKWEED GROCTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2861,2370,27,0.00,41.36,'ATHLETA ONLINE      GROVE CITY          OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2862,2371,27,0.00,77.31,'AplPay JONI\'S PET SATAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2863,2371,58,77.31,0.00,'AplPay JONI\'S PET SATAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2864,2372,27,0.00,15.91,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2865,2373,27,0.00,14.23,'AplPay DUCKWEED GROCTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2866,2374,27,8.00,0.00,'AplPay TARGET       TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2867,2375,27,0.00,91.86,'AplPay TARGET       TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2868,2376,27,0.00,9.66,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2869,2377,27,0.00,39.00,'FREIGHTQUOTE.COM INCKANSAS CITY         MO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2870,2378,27,0.00,358.77,'SAM\'S CLUB 6403 6403BRANDON             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2871,2379,27,0.00,11.69,'AplPay DUCKWEED GROCTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2872,2380,27,0.00,108.68,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2873,2381,27,0.00,9.57,'AplPay DUCKWEED GROCTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2874,2382,27,0.00,6.89,'AplPay DUCKWEED GROCTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2875,2383,27,0.00,21.00,'SQSP* WEBSIT#1993604NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2876,2384,27,0.00,56.75,'AplPay GOFUNDME     SAN DIEGO           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2877,2385,27,0.00,51.04,'AplPay IC* ABC FINE ORLANDO             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2878,2386,27,0.00,3.00,'BLINK               AMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2879,2387,27,0.00,27.15,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2880,2388,27,0.00,30.02,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2881,2389,27,16.94,0.00,'WAL-MART SUPERCENTERTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2882,2390,27,0.00,504.00,'GiftHealth*LillyDire833-6144438         OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2883,2391,27,0.00,18.99,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2884,2392,27,0.00,48.36,'WWW.WOODIESWASH.COM TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2885,2393,27,0.00,10.10,'AplPay DUCKWEED GROCTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2886,2394,27,0.00,8.19,'AplPay CREAM DE LA CTampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2887,2395,27,0.00,10.74,'APPLECARE MNTHLY PLARICHFIELD           MN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2888,2396,27,0.00,9.54,'AplPay DUCKWEED GROCTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2889,2397,27,0.00,5.79,'AplPay DUCKWEED GROCTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2890,2398,27,0.00,200.78,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2891,2399,27,0.00,853.79,'VZWRLSS BILL PAY VE 800-922-0204        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2892,2400,27,0.00,322.36,'PY *STORQUEST - TAMPTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2893,2401,27,0.00,25.00,'WALGREENS           TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2894,2401,58,25.00,0.00,'WALGREENS           TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2895,2402,27,0.00,25.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2896,2402,58,25.00,0.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2897,2403,27,0.00,112.23,'LINKEDIN PRE P811231MOUNTAIN VIEW','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2898,2404,27,0.00,8.40,'MICROSOFT           MSBILL.INFO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2899,2405,27,0.00,289.85,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2900,2405,58,289.85,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2901,2406,27,0.00,37.68,'AplPay SPROUTS FARMETampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2902,2407,27,0.00,31.12,'AplPay TST* MICKEY STAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2903,2408,27,0.00,43.50,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2904,2409,27,0.00,9.99,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2905,2410,27,0.00,9.99,'APPLE.COM/BILL      INTERNET CHARGE     CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2906,2411,27,0.00,29.00,'LATE FEE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2907,2412,27,0.00,173.97,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2908,2413,27,0.00,53.74,'WWW.WOODIESWASH.COM TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2909,2414,27,12.47,0.00,'Platinum Digital Entertainment Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2910,2414,58,0.00,12.47,'Platinum Digital Entertainment Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2911,2415,27,0.00,12.47,'PEACOCK             NEW YORK CITY       NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2912,2415,58,12.47,0.00,'PEACOCK             NEW YORK CITY       NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2913,2416,27,1000.00,0.00,'CUSTOMER SERVICE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2914,2417,27,0.00,17.85,'AplPay CHIPOTLE     TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2915,2418,27,0.00,28.61,'AplPay PANERA BREAD TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2916,2419,27,0.00,19.32,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2917,2420,27,0.00,122.42,'AplPay UBER EATS    HTTPS://HELP.UBER.COCA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2918,2421,28,50.00,0.00,'AUTOPAY PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2919,2422,28,0.00,1111.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2920,2423,28,0.00,24.76,'Interest Charge on Pay Over Time Purchases','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2921,2424,28,4043.00,0.00,'MOBILE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2922,2425,28,0.00,1665.27,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2923,2426,28,1665.27,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2924,2427,28,0.00,5.35,'PITAP - LDG - HR PitPITTSBURGH          PA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2925,2428,28,0.00,477.34,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2926,2429,28,0.00,235.41,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2927,2430,28,0.00,43.51,'CIRCLE K 08811/CIRCLTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2928,2431,28,0.00,44.08,'TAMPA BAY DOWNS - FOTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2929,2432,28,0.00,289.48,'AMERICAN EXPRESS TRASEATTLE             WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2930,2433,28,0.00,988.44,'AMERICAN EXPRESS TRASEATTLE             WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2931,2434,28,0.00,8094.69,'TRAVELOUTLET CASH 93ALHAMBRA            CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2932,2435,28,0.00,355.04,'TST* TAMPA BAY BREWITAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2933,2436,28,0.00,88.51,'SHELL SERVICE STATIOVERO BEACH          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2934,2437,28,0.00,245.76,'VZWIRELESS MY VZ VE 800-922-0204        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2935,2438,28,0.00,79.79,'THE HOME DEPOT      TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2936,2439,28,0.00,174.12,'AMEXTRAVEL.COM      800-297-2977        WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2937,2440,28,0.00,65.97,'REGAL AIRPORT HOTEL CHEK LAP KOK        HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2938,2441,28,0.00,123.72,'REGAL AIRPORT HOTEL CHEK LAP KOK        HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2939,2442,28,0.00,4.75,'REGAL AIRPORT HOTEL CHEK LAP KOK        HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2940,2443,28,0.00,180.74,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2941,2444,28,0.00,58.62,'CIRCLE K 08811/CIRCLTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2942,2445,28,0.00,37.60,'7-ELEVEN 37149 00073TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2943,2446,28,0.00,30.00,'XAI LLC             PALO ALTO           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2944,2447,28,10.00,0.00,'Wireless Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2945,2448,28,0.00,484.43,'TECO/PEOPLES GAS    813-223-0800        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2946,2449,28,0.00,2.75,'KUBRA/TECO CONV FEE 800-766-6616        NJ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2947,2450,28,0.00,245.35,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2948,2451,28,0.00,69.04,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2949,2452,28,0.00,44.65,'TST* GREENLANE - GANTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2950,2453,28,0.00,20.00,'S REG GAR EVENT 0327TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2951,2454,28,0.00,64.39,'CIRCLE K 08811/CIRCLTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2952,2455,28,0.00,47.93,'TST* AZTECA DORO BRABRANDON             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2953,2456,28,0.00,1345.71,'AMERICAN EXPRESS TRASEATTLE             WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2954,2457,28,0.00,168.98,'FRONTIER AIRLINES AIDENVER              CO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2955,2458,28,0.00,4179.20,'CATHAY PACIFIC AIRWAHONG KONG           HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2956,2459,28,0.00,120.00,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2957,2460,28,0.00,27.56,'Bar Design A/S E TPATAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2958,2461,28,0.00,32.56,'Bar Design A/S E TPATAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2959,2462,28,0.00,19.98,'FRONTIER AIRLINES ONIRVING              TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2960,2463,28,0.00,23.08,'MCDONALD\'S          SANFORD             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2961,2464,28,11592.92,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2962,2465,28,0.00,708.40,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2963,2466,28,0.00,5962.16,'CATHAY PACIFIC AIRWAHONG KONG           HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2964,2467,28,0.00,19.25,'CATHAY PACIFIC AIRWAVANCOUVER           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2965,2468,28,0.00,7251.05,'CATHAY PACIFIC AIRWAHONG KONG           HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2966,2469,28,0.00,19.25,'CATHAY PACIFIC AIRWAVANCOUVER           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2967,2470,28,0.00,161.19,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2968,2471,28,7083.01,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2969,2472,28,4032.26,0.00,'CATHAY PACIFIC AIRWAHONG KONG           HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2970,2473,28,7083.01,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2971,2474,28,0.00,30.00,'XAI LLC             PALO ALTO           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2972,2475,28,2838.63,0.00,'MOBILE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2973,2476,28,0.00,945.98,'SPIRIT AIRLINES     SOUTH FLORIDA       FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2974,2477,28,0.00,39.00,'RETURN PAYMENT FEE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2975,2478,28,0.00,196.73,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2976,2479,28,0.00,51.24,'GANDY CITGO 00034666TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2977,2480,28,0.00,106.91,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2978,2481,28,0.00,14.04,'RACETRAC2571  025718FORT MYERS          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2979,2482,28,0.00,178.39,'SHERATON GATEWAY RSTMISSISSAUGA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2980,2483,28,0.00,82.27,'COLUMBIA CAFE       TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2981,2484,28,0.00,57.28,'Bar Design A/S E TPATAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2982,2485,28,0.00,2285.94,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2983,2486,28,0.00,3.84,'SHENZHENSHIZHUJIANGHSHENZHEN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2984,2487,28,0.00,128.42,'OCEAN PARK CORPORATIHONG KONG           HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2985,2488,28,0.00,140.39,'VIEW ENTERPRISE LIMIHONG KONG           HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2986,2489,28,0.00,112.05,'MAXIM\'S PALACE - CITCENTRAL             HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2987,2490,28,0.00,287.52,'VISTAPRINT          WALTHAM             MA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2988,2491,28,0.00,78.79,'VISTAPRINT          WALTHAM             MA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2989,2492,28,0.00,164.24,'VIEW ENTERPRISE LIMIHONG KONG           HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2990,2493,28,0.00,4210.29,'HOTEL ICON - FRONT OTSIM SHA TSUI EAST  HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2991,2494,28,0.00,211.24,'AMEXTRAVEL.COM      800-297-2977        WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2992,2495,28,0.00,250.00,'MOD DISPLAYS        HARRISONBURG        VA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2993,2496,28,0.00,105.77,'RAMADA PLAZA BY WYNDBEIJING','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2994,2497,28,0.00,118.58,'RAMADA PLAZA BY WYNDBEIJING','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2995,2498,28,0.00,24.10,'RAMADA PLAZA BY WYNDBEIJING','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2996,2499,28,0.00,21.94,'BOC HK GCAG*MTR-AIRPHong Kong           HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2997,2500,28,0.00,65.38,'UBER EATS           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2998,2501,28,0.00,53.81,'NOBEL BURGER        MISSISSAUGA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(2999,2502,28,3373.14,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3000,2503,28,0.00,72.39,'VISTAPRINT          WALTHAM             MA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3001,2504,28,0.00,53.61,'WAL-MART SUPERCENTERTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3002,2505,28,0.00,15.00,'FT BROOK GAR DAILY 0TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3003,2506,28,0.00,240.00,'CLARION EVENTS INC  TULSA               OK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3004,2507,28,0.00,209.99,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3005,2508,28,0.00,18.65,'Uber Trip           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3006,2509,28,0.00,41.97,'THE HOME DEPOT      TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3007,2510,28,0.00,44.92,'ABC FINE WINE/SPIRITINDIALANTIC         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3008,2511,28,0.00,30.00,'XAI LLC             PALO ALTO           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3009,2512,28,0.00,38.78,'WAWA FUEL/CONVENIENCDAVENPORT           FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3010,2513,28,4500.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3011,2514,28,1500.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3012,2515,28,0.00,65.88,'UBER EATS           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3013,2516,28,0.00,25.70,'UBER EATS           HTTPS://HELP.UBER.COCA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3014,2517,28,0.00,150.65,'UBER EATS           HTTPS://HELP.UBER.COCA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3015,2518,28,0.00,177.92,'TRIP.COM            CITY OF WILMINGTON','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3016,2519,28,0.00,8425.91,'AMERICAN EXPRESS TRASEATTLE             WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3017,2520,28,0.00,47.01,'UBER EATS           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3018,2521,28,0.00,69.51,'EXXONMOBIL 9755     ORLANDO             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3019,2522,28,0.00,1053.78,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3020,2523,28,0.00,17.88,'UBER EATS           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3021,2524,28,0.00,33.30,'UBER EATS           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3022,2525,28,0.00,3.16,'UBER EATS           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3023,2526,28,0.00,46.00,'7-ELEVEN 37149 00073TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3024,2527,28,0.00,34.01,'7-ELEVEN 37149 00073TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3025,2528,28,0.00,166.99,'TIE DAO BU ZI JING QBEIJING','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3026,2529,28,66.56,0.00,'TRIP.COM            CITY OF WILMINGTON','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3027,2530,28,76.69,0.00,'TRIP.COM            CITY OF WILMINGTON','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3028,2531,28,990.65,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3029,2532,28,0.00,35.00,'AMERICANAIRLINES PACIRVINE              CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3030,2533,28,0.00,16.98,'SHAKESHACK          shanghaishi','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3031,2534,28,0.00,64.74,'UBER EATS           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3032,2535,28,0.00,35.50,'THEA Collect 8772585TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3033,2536,28,0.00,25.00,'SUNPASS*ACC5797382  888-865-5352        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3034,2537,28,3500.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3035,2538,28,0.00,169.13,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3036,2539,28,0.00,29.80,'UBER EATS           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3037,2540,28,0.00,102.80,'THE HOME DEPOT      TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3038,2541,28,0.00,100.00,'HELP.USEMOTION.COM  SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3039,2542,28,0.00,899.91,'DNH*GODADDY#37753959Tempe               AZ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3040,2543,28,0.00,99.99,'Oceanpayment*wondersHK                  HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3041,2544,28,0.00,36.02,'ZOOM.COM 888-799-966SAN JOSE            CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3042,2545,28,0.00,30.00,'XAI LLC             PALO ALTO           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3043,2546,28,1500.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3044,2547,28,0.00,12.95,'CANVA* I04544-839394CAMDEN              DE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3045,2548,28,0.00,113.91,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3046,2549,28,0.00,22.67,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3047,2550,28,0.00,67.93,'UBER EATS           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3048,2551,28,0.00,12.08,'UBER EATS           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3049,2552,28,0.00,99.00,'APPLE ONLINE STORE  CUPERTINO           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3050,2553,28,0.00,20.30,'THE HOME DEPOT      TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3051,2554,28,0.00,53.25,'WAWA 5301 0000      TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3052,2555,28,0.00,14.90,'EMAIL HELP@CLOUDHQ.NSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3053,2556,28,0.00,51.75,'SHANNA & BRYAN GLAZETAMPA               FL\n\nTampa Bay Manufacturing Association - Networking','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3054,2557,28,0.00,254.93,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3055,2558,28,0.00,183.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3056,2559,28,0.00,27.13,'BT*DIALPAD          SAN RAMON           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3057,2560,28,0.00,50.00,'SUNPASS*ACC5797382  888-865-5352        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3058,2561,28,0.00,162.29,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3059,2562,28,0.00,513.00,'PIPEDRIVE INC       NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3060,2563,28,0.00,67.54,'UBER EATS           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3061,2564,28,0.00,84.08,'GOOGLE *GSUITE_LITHICC@GOOGLE.COM       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3062,2565,28,0.00,15.20,'FATHOM.VIDEO        SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3063,2566,28,0.00,88.64,'7-ELEVEN 37149 00073TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3064,2567,28,0.00,52.61,'UBER EATS           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3065,2568,28,0.00,355.55,'TECO/PEOPLES GAS    813-223-0800        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3066,2569,28,0.00,2.75,'KUBRA/TECO CONV FEE 800-766-6616        NJ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3067,2570,28,0.00,100.00,'HELP.USEMOTION.COM  SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3068,2571,28,0.00,36.02,'ZOOM.COM 888-799-966SAN JOSE            CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3069,2572,28,0.00,39.63,'UBER EATS           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3070,2573,28,0.00,569.08,'THE HOME DEPOT 6327 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3071,2574,28,0.00,56.83,'Interest Charge on Pay Over Time Purchases','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3072,2575,28,0.00,183.90,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3073,2576,28,0.00,12.95,'CANVA* I04574-775316CAMDEN              DE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3074,2577,28,0.00,30.00,'XAI LLC             PALO ALTO           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3075,2578,28,0.00,76.45,'UBER THEORIGINALW   HTTPS://HELP.UBER.COCA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3076,2579,28,0.00,28.80,'7-ELEVEN 37149 00073TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3077,2580,28,0.00,536.43,'THE HOME DEPOT 6327 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3078,2581,28,0.00,332.07,'PAYPAL *FIXNFLYDRON XXXXXX7733          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3079,2582,28,0.00,2678.07,'FEDEX38859838 FedEx MEMPHIS             TN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3080,2583,28,0.00,73.67,'INSURANCE PAYMENT FEDURHAM              NC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3081,2584,28,0.00,2104.80,'STRATAGEM RISK LLC 9ST PETERSBURG       FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3082,2585,28,0.00,177.53,'UPS*                800-811-1648        GA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3083,2586,28,0.00,171.14,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3084,2587,28,0.00,256.86,'DNH*GODADDY#38206879Tempe               AZ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3085,2588,28,0.00,73.91,'UBER EATS           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3086,2589,28,0.00,14.90,'EMAIL HELP@CLOUDHQ.NSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3087,2590,28,0.00,10.00,'SMC # 67065         ST. PETERSBURG      FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3088,2591,28,0.00,20.00,'WWW.PERPLEXITY.AI   SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3089,2592,28,0.00,27.99,'INSURANCE PAYMENT SECOLUMBUS            GA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3090,2593,28,0.00,932.91,'FIRST INSURANCE FUNDNORTHBROOK          IL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3091,2594,28,0.00,1231.23,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3092,2595,28,3000.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3093,2596,28,0.00,504.00,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3094,2597,28,0.00,9.57,'AMZ*WOOT LLC E5R32P0PAY.AMAZON.CO       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3095,2598,28,0.00,39.00,'MANUS AI            SINGAPORE           SG','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3096,2599,28,0.00,176.25,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3097,2600,28,0.00,51.76,'7-ELEVEN 37149 00073TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3098,2601,28,0.00,35.73,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3099,2602,28,0.00,73.91,'UBER EATS           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3100,2603,28,7312.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3101,2604,28,0.00,1625.00,'IN *TRANSCONTINENTALTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3102,2605,28,0.00,150.00,'IN *TRANSCONTINENTALTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3103,2606,28,0.00,20.85,'UPS 29RL04QPAK4     ATLANTA             GA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3104,2607,28,0.00,513.00,'PIPEDRIVE INC       NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3105,2608,28,2500.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3106,2609,28,0.00,65.10,'UBER THEORIGINALW   HTTPS://HELP.UBER.COCA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3107,2610,28,0.00,99.99,'LINKEDIN SN P7360398MOUNTAIN VIEW','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3108,2611,28,0.00,15.20,'FATHOM.VIDEO        SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3109,2612,28,0.00,94.21,'GOOGLE *GSUITE_LITHICC@GOOGLE.COM       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3110,2613,28,0.00,42.13,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3111,2614,28,0.00,127.50,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3112,2615,28,0.00,14.99,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3113,2616,28,0.00,51.00,'7-ELEVEN 37149 00073TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3114,2617,28,0.00,89.99,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3115,2618,28,0.00,72.57,'BATTS ENTERPRISES LLJOHNS ISLAND        SC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3116,2619,28,0.00,180.00,'EXOSTAR LLC         HERNDON             VA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3117,2620,28,0.00,100.00,'HELP.USEMOTION.COM  SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3118,2621,28,35.73,0.00,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3119,2622,28,0.00,302.49,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3120,2623,28,0.00,36.02,'ZOOM.COM 888-799-966SAN JOSE            CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3121,2624,28,0.00,64.49,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3122,2625,28,0.00,150.49,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3123,2626,28,0.00,63.41,'7-ELEVEN 38123 00073ST PETERSBURG       FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3124,2627,28,0.00,190.28,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3125,2628,28,0.00,22.56,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3126,2629,28,0.00,51.55,'Interest Charge on Pay Over Time Purchases','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3127,2630,28,0.00,58.56,'AMZ*WOOT LLC E5R32P0PAY.AMAZON.CO       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3128,2631,28,0.00,27.09,'BT*DIALPAD          SAN RAMON           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3129,2632,28,0.00,30.00,'XAI LLC             PALO ALTO           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3130,2633,28,0.00,12.95,'CANVA* I04605-557277CAMDEN              DE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3131,2634,28,0.00,27.99,'INSURANCE PAYMENT SECOLUMBUS            GA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3132,2635,28,0.00,932.91,'FIRST INSURANCE FUNDNORTHBROOK          IL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3133,2636,28,0.00,378.50,'FREIGHTQUOTE BY CH RKANSAS CITY         MO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3134,2637,28,0.00,2.75,'KUBRA/TECO CONV FEE 800-766-6616        NJ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3135,2638,28,0.00,922.90,'TECO/PEOPLES GAS    813-223-0800        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3136,2639,28,0.00,28.43,'UBER EATS           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3137,2640,28,0.00,93.98,'UBER EATS           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3138,2641,28,1200.00,0.00,'ORIG CO NAME:AMERICAN EXPRESS ORIG ID:XXXXXX2111 DESC DATE:250818 CO ENTRY DESCR:ACH PMT SEC:CCD TRACE#:XXXXXXXX7112016 EED:250818 IND ID:M3298 IND NAME:NATHAN STARON ER AM TRN: XXXXXX2016 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3139,2642,28,0.00,93.90,'UBER EATS           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3140,2643,28,0.00,381.12,'FREIGHTQUOTE BY CH RKANSAS CITY         MO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3141,2644,28,0.00,14.90,'EMAIL HELP@CLOUDHQ.NSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3142,2645,28,0.00,106.48,'AMZ*WOOT LLC E5R32P0PAY.AMAZON.CO       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3143,2646,28,0.00,44.98,'AMAZON.COM          AMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3144,2647,28,0.00,12.99,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3145,2648,28,0.00,62.55,'WAWA FUEL/CONVENIENCMELBOURNE           FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3146,2649,28,0.00,12.19,'DNH*GODADDY#38655881Tempe               AZ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3147,2650,28,0.00,39.00,'MANUS AI            SINGAPORE           SG','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3148,2651,28,0.00,56.02,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3149,2652,28,0.00,3.00,'UBER EATS           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3150,2653,28,0.00,11.48,'UBER EATS           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3151,2654,28,0.00,36.98,'UBER 7ELEVEN4747    HTTPS://HELP.UBER.COCA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3152,2655,28,1500.00,0.00,'MOBILE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3153,2656,28,0.00,94.17,'GOOGLE *YOUTUBE TV   G.CO/HELPPAY#      CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3154,2657,28,0.00,513.00,'PIPEDRIVE INC       NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3155,2658,28,0.00,23.80,'UPS 29JM1O79C9H     ATLANTA             GA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3156,2659,28,0.00,72.25,'FLBLUE* ACA         JACKSONVILLE        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3157,2660,28,0.00,2672.17,'FLBLUE* ACA         JACKSONVILLE        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3158,2661,28,3000.00,0.00,'MOBILE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3159,2662,28,0.00,99.99,'LINKEDIN SN P7877367MOUNTAIN VIEW','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3160,2663,28,0.00,15.20,'FATHOM.VIDEO        SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3161,2664,28,0.00,86.07,'GOOGLE *GSUITE_LITHICC@GOOGLE.COM       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3162,2665,28,0.00,84.35,'CIRCLE K 08811/CIRCLTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3163,2666,28,0.00,78.82,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3164,2667,28,0.00,119.65,'UBER THEORIGINALW   HTTPS://HELP.UBER.COCA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3165,2668,28,0.00,34.57,'DNH*GODADDY#38792940Tempe               AZ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3166,2669,28,0.00,100.00,'HELP.USEMOTION.COM  SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3167,2670,28,1000.00,0.00,'MOBILE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3168,2671,28,0.00,36.02,'ZOOM.COM 888-799-966SAN JOSE            CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3169,2672,28,0.00,935.95,'xAI','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3170,2673,28,0.00,83.11,'Interest Charge on Pay Over Time Purchases','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3171,2674,28,0.00,12.95,'CANVA* I04636-580863CAMDEN              DE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3172,2675,28,0.00,30.00,'XAI LLC             PALO ALTO           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3173,2676,28,0.00,74.17,'GANDY CITGO 00034666TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3174,2677,28,0.00,155.13,'HOOTERS #34 0001    TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3175,2678,28,0.00,9.99,'CLOAKED* IND MONTH  LOWELL              MA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3176,2679,28,0.00,195.32,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3177,2680,28,0.00,49.64,'THE SHERWIN-WILLIAMSCLEVELAND           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3178,2681,28,0.00,28.98,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3179,2682,28,0.00,45.65,'7-ELEVEN 37149 00073TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3180,2683,28,0.00,100.07,'UBER EATS           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3181,2684,28,0.00,46.76,'DNH*GODADDY#38959148Tempe               AZ','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3182,2685,28,1100.00,0.00,'ONLINE PAYMENT - THANK YOU','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3183,2686,28,0.00,348.26,'WALMART.COM         WALMART.COM         AR','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3184,2687,28,0.00,139.74,'AMAZON MARKETPLACE NAMZN.COM/BILL       WA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3185,2688,28,0.00,27.99,'INSURANCE PAYMENT SECOLUMBUS            GA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3186,2689,28,0.00,932.91,'FIRST INSURANCE FUNDNORTHBROOK          IL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3187,2690,28,0.00,14.90,'EMAIL HELP@CLOUDHQ.NSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3188,2691,28,0.00,154.95,'UBER EATS           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3189,2692,28,0.00,377.26,'WALMART.COM 80092562BENTONVILLE         AR','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3190,2693,28,0.00,154.76,'WALMART.COM         WALMART.COM         AR','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3191,2694,28,0.00,46.50,'UBER EATS           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3192,2695,28,0.00,25.08,'UBER EATS           help.uber.com       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3193,2696,29,23556.36,0.00,'Created by QB Online to adjust balance for deletion','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3194,2696,59,0.00,23556.36,'Created by QB Online to adjust balance for deletion','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3195,2697,37,0.00,384.80,'Pay Period: 01/01/2025-01/15/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3196,2698,37,0.00,1825.92,'Pay Period: 01/01/2025-01/15/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3197,2699,37,1825.92,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3198,2700,37,384.80,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3199,2701,37,0.00,384.79,'Pay Period: 01/16/2025-01/31/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3200,2702,37,0.00,1825.92,'Pay Period: 01/16/2025-01/31/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3201,2703,37,1825.92,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3202,2704,37,384.79,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3203,2705,37,1825.93,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3204,2706,37,384.79,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3205,2707,37,0.00,1825.93,'Pay Period: 02/01/2025-02/15/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3206,2708,37,0.00,384.79,'Pay Period: 02/01/2025-02/15/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3207,2709,37,0.00,1825.93,'Pay Period: 02/16/2025-02/28/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3208,2710,37,0.00,384.80,'Pay Period: 02/16/2025-02/28/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3209,2711,37,1825.93,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3210,2712,37,384.80,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3211,2713,37,384.79,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3212,2714,37,1825.92,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3213,2715,37,0.00,384.79,'Pay Period: 03/01/2025-03/15/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3214,2716,37,0.00,1825.92,'Pay Period: 03/01/2025-03/15/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3215,2717,37,0.00,1825.92,'Pay Period: 03/16/2025-03/31/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3216,2718,37,1825.92,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3217,2719,37,0.00,384.80,'Pay Period: 03/16/2025-03/31/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3218,2720,37,384.80,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3219,2721,37,0.00,384.80,'Pay Period: 04/01/2025-04/15/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3220,2722,37,0.00,1825.92,'Pay Period: 04/01/2025-04/15/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3221,2723,37,384.80,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3222,2724,37,1825.92,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3223,2725,37,0.00,1825.93,'Pay Period: 04/16/2025-04/30/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3224,2726,37,1825.93,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3225,2727,37,0.00,384.79,'Pay Period: 04/16/2025-04/30/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3226,2728,37,384.79,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3227,2729,37,0.00,384.79,'Pay Period: 05/01/2025-05/15/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3228,2730,37,0.00,1825.92,'Pay Period: 05/01/2025-05/15/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3229,2731,37,384.79,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3230,2732,37,1825.92,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3231,2733,37,384.79,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3232,2734,37,1825.92,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3233,2735,37,0.00,384.79,'Pay Period: 05/16/2025-05/31/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3234,2736,37,0.00,1825.92,'Pay Period: 05/16/2025-05/31/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3235,2737,37,1825.93,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3236,2738,37,384.80,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3237,2739,37,0.00,1825.93,'Pay Period: 06/01/2025-06/15/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3238,2740,37,0.00,384.80,'Pay Period: 06/01/2025-06/15/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3239,2741,37,0.00,1825.93,'Pay Period: 06/16/2025-06/30/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3240,2742,37,0.00,384.80,'Pay Period: 06/16/2025-06/30/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3241,2743,37,384.80,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3242,2744,37,1825.93,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3243,2745,37,0.00,1825.92,'Pay Period: 07/01/2025-07/15/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3244,2746,37,0.00,384.79,'Pay Period: 07/01/2025-07/15/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3245,2747,37,384.79,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3246,2748,37,1825.92,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3247,2749,37,0.00,384.80,'Pay Period: 07/16/2025-07/31/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3248,2750,37,0.00,1825.92,'Pay Period: 07/16/2025-07/31/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3249,2751,37,384.80,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3250,2752,37,1825.92,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3251,2753,37,0.00,7535.58,'Pay Period: 08/01/2025-08/31/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3252,2754,37,7535.58,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3253,2755,37,0.00,384.79,'Pay Period: 08/01/2025-08/15/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3254,2756,37,0.00,1825.92,'Pay Period: 08/01/2025-08/15/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3255,2757,37,384.79,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3256,2758,37,1825.92,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3257,2759,37,1825.92,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3258,2760,37,384.79,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3259,2761,37,0.00,1825.92,'Pay Period: 08/16/2025-08/31/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3260,2762,37,0.00,384.79,'Pay Period: 08/16/2025-08/31/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3261,2763,37,0.00,7535.58,'Pay Period: 09/01/2025-09/30/2025 Check created out of sequence in a prior quarter','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3262,2764,37,7535.58,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3263,2765,37,0.00,1825.94,'Pay Period: 09/01/2025-09/15/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3264,2766,37,1825.94,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3265,2767,37,0.00,7535.58,'Pay Period: 10/01/2025-10/31/2025','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3266,2768,37,7535.58,0.00,'Direct Deposit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3267,2769,44,387.00,0.00,'ORIG CO NAME:SBA EIDL LOAN ORIG ID:XXXXXX0118 DESC DATE:241231 CO ENTRY DESCR:PAYMENT SEC:CCD TRACE#:XXXXXXXX2211203 EED:250102 IND ID:0000 IND NAME:NATHAN STAR ON XXXXXX7203 ACH TRANSACTION TRN: XXXXXX1203 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3268,2770,44,387.00,0.00,'ORIG CO NAME:SBA EIDL LOAN ORIG ID:XXXXXX0118 DESC DATE:250221 CO ENTRY DESCR:PAYMENT SEC:CCD TRACE#:XXXXXXXX8546940 EED:250224 IND ID:0000 IND NAME:NATHAN STAR ON XXXXXX7203 ACH TRANSACTION TRN: XXXXXX6940 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3269,2771,44,82151.33,0.00,'ONLINE DOMESTIC WIRE TRANSFER VIA: TREAS NYC/XXXXX0004 A/C: SMALL BUSINESS ADMINISTRATION DENVER CO X0202 US REF: LITHIUM BATTERY COMPANY (NATHAN A STARON) EIDL LOAN: XXXXXX7203/BNF/LI THIUM BATTERY COMPANY (NATHAN A STA RON) EIDL LOAN: XXXXXX7203 IMAD: 0306MMQFMP2MXX4558 TRN: XXXXXX5065 ES 03/06','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3270,2772,44,260.67,0.00,'Loan Fees','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3271,2773,45,15000.00,0.00,'ONLINE DOMESTIC WIRE TRANSFER VIA: PNCBANK PITT/XXXXX0096 A/C: RONALD STARON INDIANA PA X5701 US REF: LBC LOAN REPAYMENT (N.S.)/BNF/LITHIUM BATTERY CO IMAD: 021 3MMQFMP2KXX6076 TRN: XXXXXX5044 ES 02/13','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3272,2774,45,15000.00,0.00,'ONLINE DOMESTIC WIRE TRANSFER VIA: PNCBANK PITT/XXXXX0096 A/C: RONALD STARON INDIANA PA X5701 US REF: LBC LOAN REPAYMENT/BNF/LITHIUM BATTERY CO IMAD: 0304MMQFMP 2NXX2800 TRN: XXXXXX5063 ES 03/04','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3273,2775,45,20220.23,0.00,'ONLINE DOMESTIC WIRE TRANSFER VIA: PNCBANK PITT/XXXXX0096 A/C: RONALD STARON INDIANA PA X5701 US REF: LBC LOAN REPAYMENT/BNF/LITHIUM BATTERY CO IMAD: 0408MMQFMP 2KXX1400 TRN: XXXXXX5098 ES 04/08','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3274,2776,45,0.00,220.23,'Loan Fees Adjustment','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3275,2777,45,0.00,25000.00,'FEDWIRE CREDIT VIA: FEDERAL HOME LOAN BK OF PITTSBURGH/XXXXX1435 B/O: INFIRST BANK INDIANA, PA X5701 REF: CHASE NYC/CTR/BNF=LITHIUM BATTERY COMPANY INTL, LLC TA MPA FL XXXX4-800 6 US/AC-XXXXXXXX5806 RFB=NOTPROVIDE D OBI=/PURP/START UP FUNDS FOR SON\' S COMP ANY/URI/BUSINESS START UP CO ST IMAD: 0807MMQFMPDRXX0053 TRN: XXXXXX1219 FF','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3276,2778,47,893.72,0.00,'ORIG CO NAME:ALLY ORIG ID:XXXXXX2002 DESC DATE:250108 CO ENTRY DESCR:ALLY PAYMTSEC:CCD TRACE#:XXXXXXXX7292718 EED:250108 IND ID:XXXXXXXX1804 IND NAME:LITHIUM BA TTERY CO TRN: XXXXXX2718 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3277,2779,47,43661.35,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3278,2780,48,0.00,42574.74,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3279,2781,49,0.00,107618.94,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3280,2782,49,1766.57,0.00,'ORIG CO NAME:TRUIST LN 506 ORIG ID:9 WEBXX5506 DESC DATE:250917 CO ENTRY DESCR:OLB PYMT SEC:WEB TRACE#:XXXXXXXX8170379 EED:250918 IND ID:XXXXXXXX9421001 IND NAME :NATHAN STARON TRN: XXXXXX0379 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3281,2783,50,0.00,3596.35,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3282,2784,50,276.65,0.00,'ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250906 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX9686584 EED:250909 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX6584 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3283,2785,51,43601.53,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3284,2786,51,1139.49,0.00,'ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250422 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX4164084 EED:250423 IND ID:PXXXX2890 IND NAME:STAR ON, NATHAN TRN: XXXXXX4084 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3285,2787,51,1139.49,0.00,'ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250522 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX8623913 EED:250523 IND ID:PXXXX9839 IND NAME:STAR ON, NATHAN TRN: XXXXXX3913 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3286,2788,51,1139.49,0.00,'ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250620 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX8750948 EED:250623 IND ID:PXXXX1798 IND NAME:STAR ON, NATHAN TRN: XXXXXX0948 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3287,2789,51,1139.49,0.00,'ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250722 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX2005503 EED:250723 IND ID:PXXXX4907 IND NAME:STAR ON, NATHAN TRN: XXXXXX5503 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3288,2790,54,0.00,1769719.80,'2 Payments Direct From CFB to Vendor','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3289,2791,54,0.00,155000.00,'0687 Lithium Battery Company Draw #7','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3290,2792,54,0.00,118242.57,'XXXXXX0687 Lithium Battery Draw #8','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3291,2793,54,0.00,85000.00,'Draw #9','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3292,2794,54,0.00,63453.71,'Draw #10','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3293,2795,54,0.00,20000.00,'Lithium Battery Draw #14','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3294,2796,55,0.00,2850000.00,'Initial SBA Loan Balance','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3295,2797,55,2850000.00,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3296,2798,55,0.00,30000.00,'Draw #1 - Payroll','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3297,2799,55,0.00,65000.00,'Draw #2 - Insurance Binding pymt - CFB to LBC; 2 payments = $30,000 - NS AMEX, $30,000 JB repayment; $5,000 LBC Chase 2560 = $65,000','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3298,2800,55,0.00,85000.00,'EIDL #3 - Transfer Payment','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3299,2801,55,0.00,75000.00,'Inventory Repayment #4 - RS','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3300,2802,27,0.00,28426.40,'Opening Balance from Bank','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3301,2802,59,28426.40,0.00,'Opening Balance from Bank','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3302,2803,27,0.00,3.00,'BLINK AMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3303,2804,27,0.00,47.91,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3304,2805,27,0.00,362.09,'AMZ*WOOT LLC E5R32P0PAY.AMAZON.CO WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3305,2806,27,0.00,77.00,'AMAZON.COM AMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3306,2807,27,0.00,31.93,'AMAZON.COM AMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3307,2808,27,0.00,19.06,'AMAZON.COM AMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3308,2809,27,0.00,48.92,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3309,2810,27,0.00,44.50,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3310,2811,27,0.00,3.00,'BLINK AMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3311,2812,27,0.00,51.76,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3312,2813,27,0.00,84.92,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3313,2814,27,0.00,57.51,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3314,2815,27,0.00,450.18,'AMERICAN AIRLINES XXX-XXX-7300 TX XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3315,2816,27,0.00,450.18,'AMERICAN AIRLINES XXX-XXX-7300 TX XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3316,2817,27,0.00,450.18,'AMERICAN AIRLINES XXX-XXX-7300 TX XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3317,2818,27,0.00,82.98,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3318,2819,27,0.00,57.32,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3319,2820,27,0.00,117.15,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3320,2821,27,0.00,114.95,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3321,2822,27,0.00,3.00,'BLINK AMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3322,2823,27,0.00,34.07,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3323,2824,27,0.00,51.76,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3324,2825,27,0.00,8.62,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3325,2826,27,0.00,98.93,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3326,2827,27,0.00,12.27,'AMAZON.COM AMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3327,2828,27,0.00,31.84,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3328,2829,27,0.00,319.48,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3329,2830,27,0.00,96.34,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3330,2831,27,0.00,122.94,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3331,2832,27,0.00,21.49,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3332,2833,27,0.00,3.00,'BLINK AMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3333,2834,27,0.00,48.87,'AMAZON.COM AMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3334,2835,27,0.00,60.06,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3335,2836,27,0.00,27.15,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3336,2837,27,0.00,29.10,'AMAZON.COM AMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3337,2838,27,0.00,29.10,'AMAZON.COM AMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3338,2839,27,0.00,40.81,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3339,2840,27,0.00,28.45,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3340,2841,27,0.00,123.95,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3341,2842,27,0.00,22.35,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3342,2843,27,0.00,27.53,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3343,2844,27,0.00,3.00,'BLINK AMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3344,2845,27,0.00,85.59,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3345,2846,27,0.00,54.56,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3346,2847,27,0.00,37.32,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3347,2848,27,0.00,27.95,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3348,2849,27,0.00,52.05,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3349,2850,27,0.00,328.01,'AMAZON.COM AMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3350,2851,27,0.00,47.83,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3351,2852,27,0.00,26.61,'AMAZON.COM AMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3352,2853,27,0.00,49.00,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3353,2854,27,0.00,21.39,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3354,2855,27,0.00,3.00,'BLINK AMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3355,2856,27,0.00,24.48,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3356,2857,27,0.00,59.09,'AMAZON MARKETPLACE NAMZN.COM/BILL WA XXXX4007','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3357,2858,27,33041.93,0.00,'Created by QB Online to adjust balance for deletion','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3358,2858,59,0.00,33041.93,'Created by QB Online to adjust balance for deletion','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3359,2859,32,572.58,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3360,2860,32,0.00,63.74,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3361,2860,37,63.74,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3362,2861,32,0.00,506.59,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3363,2861,37,506.59,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3364,2862,32,570.33,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3365,2863,32,0.00,63.76,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3366,2863,37,63.76,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3367,2864,32,0.00,506.59,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3368,2864,37,506.59,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3369,2865,32,570.35,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3370,2866,32,570.33,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3371,2867,32,0.00,506.57,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3372,2867,37,506.57,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3373,2868,32,0.00,63.76,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3374,2868,37,63.76,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3375,2869,32,0.00,506.57,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3376,2869,37,506.57,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3377,2870,32,0.00,63.74,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3378,2870,37,63.74,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3379,2871,32,570.31,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3380,2872,32,570.35,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3381,2873,32,0.00,63.76,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3382,2873,37,63.76,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3383,2874,32,0.00,506.59,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3384,2874,37,506.59,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3385,2875,32,0.00,506.59,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3386,2875,37,506.59,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3387,2876,32,0.00,63.74,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3388,2876,37,63.74,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3389,2877,32,570.33,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3390,2878,32,0.00,63.74,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3391,2878,37,63.74,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3392,2879,32,0.00,506.59,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3393,2879,37,506.59,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3394,2880,32,570.33,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3395,2881,32,0.00,506.57,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3396,2881,37,506.57,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3397,2882,32,0.00,63.76,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3398,2882,37,63.76,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3399,2883,32,570.33,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3400,2884,32,0.00,63.76,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3401,2884,37,63.76,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3402,2885,32,0.00,506.59,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3403,2885,37,506.59,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3404,2886,32,570.35,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3405,2887,32,570.35,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3406,2888,32,0.00,63.76,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3407,2888,37,63.76,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3408,2889,32,0.00,506.59,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3409,2889,37,506.59,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3410,2890,32,570.31,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3411,2891,32,0.00,506.57,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3412,2891,37,506.57,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3413,2892,32,0.00,63.74,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3414,2892,37,63.74,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3415,2893,32,0.00,506.57,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3416,2893,37,506.57,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3417,2894,32,0.00,63.74,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3418,2894,37,63.74,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3419,2895,32,570.31,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3420,2896,32,0.00,506.59,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3421,2896,37,506.59,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3422,2897,32,0.00,63.76,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3423,2897,37,63.76,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3424,2898,32,570.35,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3425,2899,32,0.00,63.74,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3426,2899,37,63.74,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3427,2900,32,0.00,506.59,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3428,2900,37,506.59,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3429,2901,32,570.33,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3430,2902,32,0.00,1435.25,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3431,2902,37,1435.25,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3432,2903,32,1435.25,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3433,2904,32,0.00,63.76,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3434,2904,37,63.76,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3435,2905,32,0.00,506.59,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3436,2905,37,506.59,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3437,2906,32,570.35,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3438,2907,32,570.35,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3439,2908,32,0.00,506.59,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3440,2908,37,506.59,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3441,2909,32,0.00,63.76,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3442,2909,37,63.76,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3443,2910,32,0.00,1435.25,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3444,2910,37,1435.25,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3445,2911,32,1435.25,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3446,2912,32,0.00,506.55,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3447,2912,37,506.55,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3448,2913,32,506.55,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3449,2914,32,0.00,1435.25,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3450,2914,37,1435.25,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3451,2915,32,1435.25,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3452,2915,36,0.00,1435.25,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3453,2916,32,0.00,3278.65,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3454,2917,32,0.00,597.56,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3455,2918,32,3876.21,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3456,2918,36,0.00,3876.21,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3457,2919,32,0.00,3278.67,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3458,2920,32,0.00,597.56,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3459,2921,32,3876.23,0.00,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3460,2921,36,0.00,3876.23,'Federal Taxes (941/943/944)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3461,2922,33,0.00,2.50,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3462,2922,37,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3463,2923,33,0.00,13.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3464,2923,37,13.00,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3465,2924,33,15.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3466,2925,33,126.00,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3467,2926,33,0.00,2.50,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3468,2926,37,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3469,2927,33,0.00,13.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3470,2927,37,13.00,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3471,2928,33,15.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3472,2929,33,15.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3473,2930,33,0.00,13.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3474,2930,37,13.00,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3475,2931,33,0.00,2.50,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3476,2931,37,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3477,2932,33,0.00,3.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3478,2932,37,3.00,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3479,2933,33,0.00,2.50,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3480,2933,37,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3481,2934,33,5.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3482,2935,33,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3483,2936,33,0.00,2.50,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3484,2936,37,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3485,2937,33,0.00,2.50,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3486,2937,37,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3487,2938,33,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3488,2939,33,0.00,2.50,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3489,2939,37,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3490,2940,33,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3491,2941,33,0.00,2.50,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3492,2941,37,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3493,2942,33,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3494,2943,33,0.00,2.50,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3495,2943,37,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3496,2944,33,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3497,2945,33,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3498,2946,33,0.00,2.50,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3499,2946,37,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3500,2947,33,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3501,2948,33,0.00,2.50,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3502,2948,37,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3503,2949,33,0.00,2.50,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3504,2949,37,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3505,2950,33,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3506,2951,33,0.00,2.50,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3507,2951,37,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3508,2952,33,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3509,2953,33,0.00,2.50,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3510,2953,37,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3511,2954,33,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3512,2955,33,0.00,42.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3513,2955,37,42.00,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3514,2956,33,42.00,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3515,2957,33,0.00,2.50,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3516,2957,37,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3517,2958,33,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3518,2959,33,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3519,2960,33,0.00,2.50,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3520,2960,37,2.50,0.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3521,2961,33,0.00,124.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3522,2962,33,0.00,2.00,'Federal Unemployment (940)','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3523,2963,34,0.00,11.25,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3524,2963,37,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3525,2964,34,0.00,58.50,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3526,2964,37,58.50,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3527,2965,34,69.75,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3528,2966,34,0.00,11.25,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3529,2966,37,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3530,2967,34,0.00,58.50,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3531,2967,37,58.50,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3532,2968,34,69.75,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3533,2969,34,69.75,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3534,2970,34,0.00,58.51,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3535,2970,37,58.51,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3536,2971,34,0.00,11.25,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3537,2971,37,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3538,2972,34,0.01,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3539,2973,34,0.00,13.49,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3540,2973,37,13.49,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3541,2974,34,0.00,11.25,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3542,2974,37,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3543,2975,34,24.74,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3544,2976,34,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3545,2977,34,0.00,11.25,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3546,2977,37,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3547,2978,34,0.00,11.25,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3548,2978,37,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3549,2979,34,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3550,2980,34,0.00,11.25,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3551,2980,37,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3552,2981,34,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3553,2982,34,0.00,11.25,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3554,2982,37,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3555,2983,34,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3556,2984,34,0.00,11.25,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3557,2984,37,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3558,2985,34,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3559,2986,34,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3560,2987,34,0.00,11.25,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3561,2987,37,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3562,2988,34,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3563,2989,34,0.00,11.25,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3564,2989,37,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3565,2990,34,0.00,11.25,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3566,2990,37,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3567,2991,34,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3568,2992,34,0.00,11.25,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3569,2992,37,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3570,2993,34,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3571,2994,34,0.00,11.25,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3572,2994,37,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3573,2995,34,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3574,2996,34,0.00,189.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3575,2996,37,189.00,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3576,2997,34,189.00,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3577,2998,34,0.00,11.25,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3578,2998,37,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3579,2999,34,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3580,3000,34,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3581,3001,34,0.00,11.25,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3582,3001,37,11.25,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3583,3002,34,0.00,234.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3584,3003,34,0.00,9.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3585,3004,34,234.00,0.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3586,3004,36,0.00,234.00,'FL Unemployment Tax','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3587,3005,58,300.19,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3588,3005,27,0.00,300.19,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3589,3006,58,58.00,0.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3590,3006,27,0.00,58.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3591,3007,58,229.33,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3592,3007,27,0.00,229.33,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3593,3008,58,0.00,747.00,'AplPay HIMS & HERS HSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3594,3008,27,747.00,0.00,'AplPay HIMS & HERS HSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3595,3009,58,54341.50,0.00,'Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3596,3010,58,225.17,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3597,3010,27,0.00,225.17,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3598,3011,58,232.07,0.00,'SP CPAP.COM         STAFFORD            TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3599,3011,27,0.00,232.07,'SP CPAP.COM         STAFFORD            TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3600,3012,58,0.00,52.02,'SP CPAP.COM         STAFFORD            TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3601,3012,27,52.02,0.00,'SP CPAP.COM         STAFFORD            TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3602,3013,58,18.20,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3603,3013,27,0.00,18.20,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3604,3014,58,200.43,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3605,3014,27,0.00,200.43,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3606,3015,58,12500.00,0.00,'Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3607,3016,58,31190.58,0.00,'Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3608,3017,58,75.00,0.00,'AplPay JONI\'S PET SATampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3609,3017,27,0.00,75.00,'AplPay JONI\'S PET SATampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3610,3018,58,325.00,0.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3611,3018,27,0.00,325.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3612,3019,58,65.00,0.00,'DABA NAILS & SPA 941TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3613,3019,27,0.00,65.00,'DABA NAILS & SPA 941TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3614,3020,58,29.34,0.00,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3615,3020,27,0.00,29.34,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3616,3021,58,45.00,0.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3617,3021,27,0.00,45.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3618,3022,58,9.52,0.00,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3619,3022,27,0.00,9.52,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3620,3023,58,38.70,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3621,3023,27,0.00,38.70,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3622,3024,58,7.70,0.00,'AplPay DINOSAUR WORLPLANT CITY          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3623,3024,27,0.00,7.70,'AplPay DINOSAUR WORLPLANT CITY          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3624,3025,58,55.27,0.00,'DINOSAUR WORLD 00-08PLANT CITY          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3625,3025,27,0.00,55.27,'DINOSAUR WORLD 00-08PLANT CITY          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3626,3026,58,11.07,0.00,'AplPay DINOSAUR WORLPLANT CITY          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3627,3026,27,0.00,11.07,'AplPay DINOSAUR WORLPLANT CITY          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3628,3027,58,60.00,0.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3629,3027,27,0.00,60.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3630,3028,58,106.44,0.00,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3631,3028,27,0.00,106.44,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3632,3029,58,24.99,0.00,'ROCK IT FITNESS 9362TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3633,3029,27,0.00,24.99,'ROCK IT FITNESS 9362TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3634,3030,58,182.00,0.00,'THE STUDY SALON     TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3635,3030,27,0.00,182.00,'THE STUDY SALON     TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3636,3031,58,117.38,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3637,3031,27,0.00,117.38,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3638,3032,58,6552.94,0.00,'Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3639,3033,58,85.22,0.00,'AplPay SP SAND SURF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3640,3033,27,0.00,85.22,'AplPay SP SAND SURF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3641,3034,58,31.96,0.00,'AplPay SP SAND SURF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3642,3034,27,0.00,31.96,'AplPay SP SAND SURF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3643,3035,58,45.00,0.00,'AplPay GROUPON, INC.CHICAGO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3644,3035,27,0.00,45.00,'AplPay GROUPON, INC.CHICAGO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3645,3036,58,90.53,0.00,'SP SAND SURF CO     TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3646,3036,27,0.00,90.53,'SP SAND SURF CO     TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3647,3037,58,126.36,0.00,'SP SAND SURF CO     TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3648,3037,27,0.00,126.36,'SP SAND SURF CO     TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3649,3038,58,40.00,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3650,3038,27,0.00,40.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3651,3039,58,9.06,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3652,3039,27,0.00,9.06,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3653,3040,58,101.33,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3654,3040,27,0.00,101.33,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3655,3041,58,58.00,0.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3656,3041,27,0.00,58.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3657,3042,58,99.00,0.00,'AplPay GROUPON, INC.CHICAGO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3658,3042,27,0.00,99.00,'AplPay GROUPON, INC.CHICAGO','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3659,3043,58,10.00,0.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3660,3043,27,0.00,10.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3661,3044,58,10.00,0.00,'PPY=TAMPA NEUROPSYCHTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3662,3044,27,0.00,10.00,'PPY=TAMPA NEUROPSYCHTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3663,3045,58,340.17,0.00,'AplPay RON JON SURF COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3664,3045,27,0.00,340.17,'AplPay RON JON SURF COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3665,3046,58,47.08,0.00,'AplPay RON JON SURF COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3666,3046,27,0.00,47.08,'AplPay RON JON SURF COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3667,3047,58,26.60,0.00,'AplPay RON JON SURF COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3668,3047,27,0.00,26.60,'AplPay RON JON SURF COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3669,3048,58,34.95,0.00,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3670,3048,27,0.00,34.95,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3671,3049,58,85.84,0.00,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3672,3049,27,0.00,85.84,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3673,3050,58,12500.00,0.00,'Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3674,3051,58,59.95,0.00,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3675,3051,27,0.00,59.95,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3676,3052,58,49.65,0.00,'FLORIDA STRAWBERRY FPLANT CITY          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3677,3052,27,0.00,49.65,'FLORIDA STRAWBERRY FPLANT CITY          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3678,3053,58,23.48,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3679,3053,27,0.00,23.48,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3680,3054,58,23.42,0.00,'AplPay AMC 9640 ONLILEAWOOD             KS','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3681,3054,27,0.00,23.42,'AplPay AMC 9640 ONLILEAWOOD             KS','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3682,3055,58,35.50,0.00,'AplPay AMC 9640 ONLILEAWOOD             KS','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3683,3055,27,0.00,35.50,'AplPay AMC 9640 ONLILEAWOOD             KS','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3684,3056,58,20.00,0.00,'THE WOMANS GROUP OF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3685,3056,27,0.00,20.00,'THE WOMANS GROUP OF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3686,3057,58,71.26,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3687,3057,27,0.00,71.26,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3688,3058,58,75.00,0.00,'JONI\'S PET SALON, INTampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3689,3058,27,0.00,75.00,'JONI\'S PET SALON, INTampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3690,3059,58,30.00,0.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3691,3059,27,0.00,30.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3692,3060,58,325.00,0.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3693,3060,27,0.00,325.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3694,3061,58,65.00,0.00,'SERENITY HEALS THERAFORT MYERS          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3695,3061,27,0.00,65.00,'SERENITY HEALS THERAFORT MYERS          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3696,3062,58,30.00,0.00,'AplPay D34 DISNEY ONPALMETTO            FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3697,3062,27,0.00,30.00,'AplPay D34 DISNEY ONPALMETTO            FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3698,3063,58,22.05,0.00,'AplPay AMALIE ARENA TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3699,3063,27,0.00,22.05,'AplPay AMALIE ARENA TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3700,3064,58,40.00,0.00,'AplPay D34 DISNEY ONPALMETTO            FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3701,3064,27,0.00,40.00,'AplPay D34 DISNEY ONPALMETTO            FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3702,3065,58,22.05,0.00,'AplPay AMALIE ARENA TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3703,3065,27,0.00,22.05,'AplPay AMALIE ARENA TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3704,3066,58,28.18,0.00,'AplPay AMALIE ARENA TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3705,3066,27,0.00,28.18,'AplPay AMALIE ARENA TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3706,3067,58,15.44,0.00,'AplPay AMALIE ARENA TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3707,3067,27,0.00,15.44,'AplPay AMALIE ARENA TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3708,3068,58,335.52,0.00,'RESTAURANT DEPOT 413TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3709,3068,27,0.00,335.52,'RESTAURANT DEPOT 413TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3710,3069,58,40.00,0.00,'DABA NAILS & SPA 941TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3711,3069,27,0.00,40.00,'DABA NAILS & SPA 941TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3712,3070,58,12500.00,0.00,'Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3713,3071,58,96.80,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3714,3071,27,0.00,96.80,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3715,3072,58,59.95,0.00,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3716,3072,27,0.00,59.95,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3717,3073,58,35.00,0.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3718,3073,27,0.00,35.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3719,3074,58,12500.00,0.00,'Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3720,3075,58,174.20,0.00,'AplPay CARTER S #131TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3721,3075,27,0.00,174.20,'AplPay CARTER S #131TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3722,3076,58,7.36,0.00,'AplPay CREAM DE LA CTampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3723,3076,27,0.00,7.36,'AplPay CREAM DE LA CTampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3724,3077,58,21.48,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3725,3077,27,0.00,21.48,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3726,3078,58,4800.00,0.00,'LEAF HOME WATER SOLUHUDSON              OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3727,3078,27,0.00,4800.00,'LEAF HOME WATER SOLUHUDSON              OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3728,3079,58,60.00,0.00,'AITUBOART           HUNGHOM             HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3729,3079,27,0.00,60.00,'AITUBOART           HUNGHOM             HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3730,3080,58,40.00,0.00,'INAI PTE. LTD.      SINGAPORE           SG','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3731,3080,27,0.00,40.00,'INAI PTE. LTD.      SINGAPORE           SG','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3732,3081,58,306.74,0.00,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3733,3081,27,0.00,306.74,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3734,3082,58,29.23,0.00,'RACETRAC2571  025718FORT MYERS          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3735,3082,27,0.00,29.23,'RACETRAC2571  025718FORT MYERS          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3736,3083,58,9.07,0.00,'PEACOCK             NEW YORK CITY       NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3737,3083,27,0.00,9.07,'PEACOCK             NEW YORK CITY       NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3738,3084,58,0.00,9.07,'Platinum Digital Entertainment Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3739,3084,27,9.07,0.00,'Platinum Digital Entertainment Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3740,3085,58,12500.00,0.00,'Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3741,3086,58,30.00,0.00,'AplPay A NAILS      FORT MYERS          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3742,3086,27,0.00,30.00,'AplPay A NAILS      FORT MYERS          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3743,3087,58,306.22,0.00,'AplPay PRICELN*CROWNNORWALK             CT','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3744,3087,27,0.00,306.22,'AplPay PRICELN*CROWNNORWALK             CT','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3745,3088,58,0.00,3375.27,'Online Transfer from CHK ...1215 transaction#: XXXXXXX8239','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3746,3089,58,1089.74,0.00,'PAYPAL *KAMYUU1105  XXXXXX7733          HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3747,3089,27,0.00,1089.74,'PAYPAL *KAMYUU1105  XXXXXX7733          HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3748,3090,58,6250.00,0.00,'Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3749,3091,58,0.00,217.26,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3750,3091,27,217.26,0.00,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3751,3092,58,0.00,72.42,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3752,3092,27,72.42,0.00,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3753,3093,58,296.00,0.00,'AplPay BT*GAMETIME  SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3754,3093,27,0.00,296.00,'AplPay BT*GAMETIME  SAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3755,3094,58,4.00,0.00,'KORE WIRELESS       ATLANTA             GA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3756,3094,27,0.00,4.00,'KORE WIRELESS       ATLANTA             GA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3757,3095,58,362.10,0.00,'AplPay UNIFORM NAMETTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3758,3095,27,0.00,362.10,'AplPay UNIFORM NAMETTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3759,3096,58,58.00,0.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3760,3096,27,0.00,58.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3761,3097,58,28.80,0.00,'TST* BAR CARTS-STRAZTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3762,3097,27,0.00,28.80,'TST* BAR CARTS-STRAZTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3763,3098,58,104.50,0.00,'NON-CHASE ATM WITHDRAW XX6671 05/XX1010 N MA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3764,3099,58,55.08,0.00,'AplPay EMPAMAMAS    Tampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3765,3099,27,0.00,55.08,'AplPay EMPAMAMAS    Tampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3766,3100,58,11.50,0.00,'AplPay VALET TIPS   NASHVILLE           TN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3767,3100,27,0.00,11.50,'AplPay VALET TIPS   NASHVILLE           TN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3768,3101,58,21.00,0.00,'SQSP* INV180951011  NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3769,3101,27,0.00,21.00,'SQSP* INV180951011  NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3770,3102,58,11.50,0.00,'AplPay VALET TIPS   NASHVILLE           TN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3771,3102,27,0.00,11.50,'AplPay VALET TIPS   NASHVILLE           TN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3772,3103,58,59.95,0.00,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3773,3103,27,0.00,59.95,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3774,3104,58,11.50,0.00,'VALET TIPS          NASHVILLE           TN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3775,3104,27,0.00,11.50,'VALET TIPS          NASHVILLE           TN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3776,3105,58,41.13,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3777,3105,27,0.00,41.13,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3778,3106,58,0.00,59.95,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3779,3106,27,59.95,0.00,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3780,3107,58,0.00,59.95,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3781,3107,27,59.95,0.00,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3782,3108,58,0.00,59.95,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3783,3108,27,59.95,0.00,'FABLETICS.COM       855-202-3570        CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3784,3109,58,48.77,0.00,'RON JON SURF SHOP   COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3785,3109,27,0.00,48.77,'RON JON SURF SHOP   COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3786,3110,58,173.45,0.00,'RON JON SURF SHOP   COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3787,3110,27,0.00,173.45,'RON JON SURF SHOP   COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3788,3111,58,11.12,0.00,'RON JON SURF SHOP   COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3789,3111,27,0.00,11.12,'RON JON SURF SHOP   COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3790,3112,58,56.88,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3791,3112,27,0.00,56.88,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3792,3113,58,312.84,0.00,'AplPay IC* INSTACARTLAKELAND            FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3793,3113,27,0.00,312.84,'AplPay IC* INSTACARTLAKELAND            FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3794,3114,58,60.00,0.00,'AITUBO.AI           HUNGHOM             HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3795,3114,27,0.00,60.00,'AITUBO.AI           HUNGHOM             HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3796,3115,58,40.00,0.00,'INAI PTE. LTD.      SINGAPORE           SG','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3797,3115,27,0.00,40.00,'INAI PTE. LTD.      SINGAPORE           SG','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3798,3116,58,69.26,0.00,'AplPay IC* ABC FINE ORLANDO             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3799,3116,27,0.00,69.26,'AplPay IC* ABC FINE ORLANDO             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3800,3117,58,39.37,0.00,'AplPay IC* ABC FINE ORLANDO             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3801,3117,27,0.00,39.37,'AplPay IC* ABC FINE ORLANDO             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3802,3118,58,7.49,0.00,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3803,3118,27,0.00,7.49,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3804,3119,58,1.95,0.00,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3805,3119,27,0.00,1.95,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3806,3120,58,13.49,0.00,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3807,3120,27,0.00,13.49,'OLD NAVY ON-LINE 084GROVEPORT           OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3808,3121,58,9.07,0.00,'PEACOCK             NEW YORK CITY       NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3809,3121,27,0.00,9.07,'PEACOCK             NEW YORK CITY       NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3810,3122,58,0.00,9.07,'Platinum Digital Entertainment Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3811,3122,27,9.07,0.00,'Platinum Digital Entertainment Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3812,3123,58,68.11,0.00,'AplPay SP REEF.COM  NEWTON              MA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3813,3123,27,0.00,68.11,'AplPay SP REEF.COM  NEWTON              MA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3814,3124,58,8.28,0.00,'AplPay CREAM DE LA CTampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3815,3124,27,0.00,8.28,'AplPay CREAM DE LA CTampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3816,3125,58,29.37,0.00,'MACYS   .COM 0000001MASON               OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3817,3125,27,0.00,29.37,'MACYS   .COM 0000001MASON               OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3818,3126,58,25.00,0.00,'PAY* ANGI-MAY23     INDIANAPOLIS        IN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3819,3126,27,0.00,25.00,'PAY* ANGI-MAY23     INDIANAPOLIS        IN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3820,3127,58,0.00,25.00,'PAY* ANGI-MAY23                         IN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3821,3127,27,25.00,0.00,'PAY* ANGI-MAY23                         IN','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3822,3128,58,68.00,0.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3823,3128,27,0.00,68.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3824,3129,58,1387.34,0.00,'PAYPAL *KAMYUU1105  XXXXXX7733          HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3825,3129,27,0.00,1387.34,'PAYPAL *KAMYUU1105  XXXXXX7733          HK','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3826,3130,58,515.67,0.00,'BT*MYRIAD WOMEN\'S HESOUTH SAN FRANCISCO CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3827,3130,27,0.00,515.67,'BT*MYRIAD WOMEN\'S HESOUTH SAN FRANCISCO CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3828,3131,58,74.31,0.00,'AplPay JONI\'S PET SATAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3829,3131,27,0.00,74.31,'AplPay JONI\'S PET SATAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3830,3132,58,6250.00,0.00,'Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3831,3133,58,40.88,0.00,'AplPay FK WESTSHORE TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3832,3133,27,0.00,40.88,'AplPay FK WESTSHORE TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3833,3134,58,12500.00,0.00,'Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3834,3135,58,77.49,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3835,3135,27,0.00,77.49,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3836,3136,58,315.13,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3837,3136,27,0.00,315.13,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3838,3137,58,10.00,0.00,'TELADOC 0259        LEWISVILLE          TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3839,3137,27,0.00,10.00,'TELADOC 0259        LEWISVILLE          TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3840,3138,58,27.00,0.00,'AplPay GREAT EXPLORAST PETERSBURG       FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3841,3138,27,0.00,27.00,'AplPay GREAT EXPLORAST PETERSBURG       FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3842,3139,58,90.85,0.00,'AplPay SPROUTS FARMETampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3843,3139,27,0.00,90.85,'AplPay SPROUTS FARMETampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3844,3140,58,21.00,0.00,'SQSP* INV185094968  NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3845,3140,27,0.00,21.00,'SQSP* INV185094968  NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3846,3141,58,0.00,499.00,'BONFIRE PREMIUM VENDOAKVILLE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3847,3141,27,499.00,0.00,'BONFIRE PREMIUM VENDOAKVILLE','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3848,3142,58,27.37,0.00,'AplPay IC* INSTACARTLAKELAND            FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3849,3142,27,0.00,27.37,'AplPay IC* INSTACARTLAKELAND            FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3850,3143,58,42.44,0.00,'MACYS MARKETPLACE 00MASON               OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3851,3143,27,0.00,42.44,'MACYS MARKETPLACE 00MASON               OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3852,3144,58,4210.00,0.00,'Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3853,3145,58,57.30,0.00,'CHUCK LAGER AMERICA\'TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3854,3145,27,0.00,57.30,'CHUCK LAGER AMERICA\'TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3855,3146,58,65.00,0.00,'SERENITY HEALS THERAFORT MYERS          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3856,3146,27,0.00,65.00,'SERENITY HEALS THERAFORT MYERS          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3857,3147,58,7.19,0.00,'AplPay CREAM DE LA CTampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3858,3147,27,0.00,7.19,'AplPay CREAM DE LA CTampa               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3859,3148,58,58.00,0.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3860,3148,27,0.00,58.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3861,3149,58,260.19,0.00,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3862,3149,27,0.00,260.19,'AplPay PUBLIX #1722 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3863,3150,58,15.00,0.00,'AplPay TOUCHTUNES MUSCHAUMBURG          IL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3864,3150,27,0.00,15.00,'AplPay TOUCHTUNES MUSCHAUMBURG          IL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3865,3151,58,331.37,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3866,3151,27,0.00,331.37,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3867,3152,58,9.07,0.00,'PEACOCK             NEW YORK CITY       NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3868,3152,27,0.00,9.07,'PEACOCK             NEW YORK CITY       NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3869,3153,58,0.00,9.07,'Platinum Digital Entertainment Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3870,3153,27,9.07,0.00,'Platinum Digital Entertainment Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3871,3154,58,53.74,0.00,'WWW.WOODIESWASH.COM TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3872,3154,27,0.00,53.74,'WWW.WOODIESWASH.COM TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3873,3155,58,6250.00,0.00,'Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3874,3156,58,70.46,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3875,3156,27,0.00,70.46,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3876,3157,58,6250.00,0.00,'Nathans Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3877,3158,58,50.98,0.00,'AplPay CARTER S #131TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3878,3158,27,0.00,50.98,'AplPay CARTER S #131TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3879,3159,58,103.74,0.00,'SPORT CLIPS - FL111 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3880,3159,27,0.00,103.74,'SPORT CLIPS - FL111 TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3881,3160,58,10.00,0.00,'TELADOC 0259        LEWISVILLE          TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3882,3160,27,0.00,10.00,'TELADOC 0259        LEWISVILLE          TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3883,3161,58,6250.00,0.00,'Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3884,3162,58,10.00,0.00,'TELADOC 0259        LEWISVILLE          TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3885,3162,27,0.00,10.00,'TELADOC 0259        LEWISVILLE          TX','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3886,3163,58,14.24,0.00,'DUCKWEED WD INC TAMPA FL 07/21','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3887,3164,58,9.07,0.00,'PEACOCK             NEW YORK CITY       NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3888,3164,27,0.00,9.07,'PEACOCK             NEW YORK CITY       NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3889,3165,58,0.00,9.07,'Platinum Digital Entertainment Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3890,3165,27,9.07,0.00,'Platinum Digital Entertainment Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3891,3166,58,6250.00,0.00,'Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3892,3167,58,21.00,0.00,'SQSP* WEBSIT#1931741NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3893,3167,27,0.00,21.00,'SQSP* WEBSIT#1931741NEW YORK            NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3894,3168,58,63.00,0.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3895,3168,27,0.00,63.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3896,3169,58,65.00,0.00,'SERENITY HEALS THERAFORT MYERS          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3897,3169,27,0.00,65.00,'SERENITY HEALS THERAFORT MYERS          FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3898,3170,58,158.00,0.00,'AplPay SP SAND SURF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3899,3170,27,0.00,158.00,'AplPay SP SAND SURF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3900,3171,58,59.86,0.00,'AplPay ZITNIK TRAINSPINELLAS PARK       FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3901,3171,27,0.00,59.86,'AplPay ZITNIK TRAINSPINELLAS PARK       FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3902,3172,58,504.00,0.00,'GiftHealth*LillyDire833-6144438         OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3903,3172,27,0.00,504.00,'GiftHealth*LillyDire833-6144438         OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3904,3173,58,6250.00,0.00,'Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3905,3174,58,127.03,0.00,'AplPay RON JON SURF COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3906,3174,27,0.00,127.03,'AplPay RON JON SURF COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3907,3175,58,12.83,0.00,'AplPay 5600 NORTH HAMELBOURNE           FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3908,3175,27,0.00,12.83,'AplPay 5600 NORTH HAMELBOURNE           FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3909,3176,58,9.07,0.00,'PEACOCK             NEW YORK CITY       NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3910,3176,27,0.00,9.07,'PEACOCK             NEW YORK CITY       NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3911,3177,58,0.00,9.07,'Platinum Digital Entertainment Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3912,3177,27,9.07,0.00,'Platinum Digital Entertainment Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3913,3178,58,152.10,0.00,'RON JON SURF SHOP   COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3914,3178,27,0.00,152.10,'RON JON SURF SHOP   COCOA BEACH         FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3915,3179,58,101.49,0.00,'SP SAND SURF CO     TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3916,3179,27,0.00,101.49,'SP SAND SURF CO     TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3917,3180,58,17.73,0.00,'AplPay SP SAND SURF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3918,3180,27,0.00,17.73,'AplPay SP SAND SURF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3919,3181,58,850.00,0.00,'THE WOMANS GROUP OF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3920,3181,27,0.00,850.00,'THE WOMANS GROUP OF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3921,3182,58,80.00,0.00,'THE WOMANS GROUP OF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3922,3182,27,0.00,80.00,'THE WOMANS GROUP OF TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3923,3183,58,0.00,9.13,'SP SAND SURF CO     TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3924,3183,27,9.13,0.00,'SP SAND SURF CO     TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3925,3184,58,7.00,0.00,'AplPay TOUCHTUNES MUSCHAUMBURG          IL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3926,3184,27,0.00,7.00,'AplPay TOUCHTUNES MUSCHAUMBURG          IL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3927,3185,58,60.23,0.00,'PY *PDQ - SOUTH TAMPTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3928,3185,27,0.00,60.23,'PY *PDQ - SOUTH TAMPTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3929,3186,58,77.31,0.00,'AplPay JONI\'S PET SATAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3930,3186,27,0.00,77.31,'AplPay JONI\'S PET SATAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3931,3187,58,6250.00,0.00,'Advisory Lithium Ck IDXXXXXX7067,  ID: XXXXXX7067','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3932,3188,58,25.00,0.00,'WALGREENS           TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3933,3188,27,0.00,25.00,'WALGREENS           TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3934,3189,58,25.00,0.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3935,3189,27,0.00,25.00,'AplPay SPORT CLIPS -TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3936,3190,58,289.85,0.00,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3937,3190,27,0.00,289.85,'AplPay IC* INSTACARTSAN FRANCISCO       CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3938,3191,58,0.00,12.47,'Platinum Digital Entertainment Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3939,3191,27,12.47,0.00,'Platinum Digital Entertainment Credit','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3940,3192,58,12.47,0.00,'PEACOCK             NEW YORK CITY       NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3941,3192,27,0.00,12.47,'PEACOCK             NEW YORK CITY       NY','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3942,3193,58,0.00,21.91,'REMOTE ONLINE DEPOSIT # 2','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3943,3194,59,28426.40,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3944,3195,59,0.00,23556.36,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3945,3196,59,0.00,33041.93,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3946,3197,59,0.00,11424.00,'24V 75Ah Lithium Ion Battery - LFP - Opening inventory and value','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3947,3197,10,11424.00,0.00,'24V 75Ah Lithium Ion Battery - LFP - Opening inventory and value','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3948,3198,60,0.00,11000.00,'FEDWIRE CREDIT VIA: BANK OF AMERICA, N.A./XXXXX9593 B/O: 1/JD CAPITAL ADVISORS LLC 3/US/SAINT PETERSBURG X3705 REF: CHASE NYC/CTR/BNF=LITHIUM BATTERY COMPANY IN TL, LLC TAMPA FL XXXX4-800 6 US/AC-XXXXXXXX3316 RFB=XXXXX8276 OBI=LBC EQUITY INVESTMENT IMAD: 0108B6B7HU2RXX5650 TRN: XXXXXX1008 FF','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3949,3199,60,276.65,0.00,'ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250106 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX0638159 EED:250108 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX8159 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3950,3200,60,1139.49,0.00,'ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250122 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX1204033 EED:250123 IND ID:PXXXX4506 IND NAME:STAR ON, NATHAN TRN: XXXXXX4033 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3951,3201,60,276.65,0.00,'ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250206 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX0848924 EED:250210 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX8924 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3952,3202,60,1139.49,0.00,'ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250221 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX6850342 EED:250224 IND ID:PXXXX8790 IND NAME:STAR ON, NATHAN TRN: XXXXXX0342 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3953,3203,60,2500.00,0.00,'Online Transfer to CHK ...1215 transaction#: XXXXXXX9780 03/07','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3954,3204,60,276.65,0.00,'ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250306 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX4195671 EED:250310 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX5671 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3955,3205,60,3533.14,0.00,'ORIG CO NAME:TRUIST LN 506 ORIG ID:9 WEBXX5506 DESC DATE:250320 CO ENTRY DESCR:OLB PYMT SEC:WEB TRACE#:XXXXXXXX8464628 EED:250321 IND ID:XXXXXXXX9421001 IND NAME :NATHAN STARON TRN: XXXXXX4628 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3956,3206,60,1139.49,0.00,'ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250321 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX8020777 EED:250324 IND ID:PXXXX2527 IND NAME:STAR ON, NATHAN TRN: XXXXXX0777 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3957,3207,60,0.00,121879.28,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3958,3208,60,10.00,0.00,'PPY=TAMPA NEUROPSYCHTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3959,3208,27,0.00,10.00,'PPY=TAMPA NEUROPSYCHTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3960,3209,60,325.00,0.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3961,3209,27,0.00,325.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3962,3210,60,325.00,0.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3963,3210,27,0.00,325.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3964,3211,60,10.00,0.00,'PPY=TAMPA NEUROPSYCHTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3965,3211,27,0.00,10.00,'PPY=TAMPA NEUROPSYCHTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3966,3212,60,1665.18,0.00,'AplPay ASHLEY HOMESTTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3967,3212,27,0.00,1665.18,'AplPay ASHLEY HOMESTTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3968,3213,60,16931.41,0.00,'AplPay ASHLEY HOMESTTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3969,3213,27,0.00,16931.41,'AplPay ASHLEY HOMESTTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3970,3214,60,325.00,0.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3971,3214,27,0.00,325.00,'NEUROSPA            TAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3972,3215,60,3621.46,0.00,'ORIG CO NAME:TRUIST LN 506 ORIG ID:9 WEBXX5506 DESC DATE:250612 CO ENTRY DESCR:OLB PYMT SEC:WEB TRACE#:XXXXXXXX4324099 EED:250613 IND ID:XXXXXXXX9421001 IND NAME :NATHAN STARON TRN: XXXXXX4099 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3973,3216,60,15156.95,0.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3974,3217,60,554.49,0.00,'JEWELERS-MUTUAL-PMNT800-558-6411        WI','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3975,3217,27,0.00,554.49,'JEWELERS-MUTUAL-PMNT800-558-6411        WI','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3976,3218,60,0.00,42.44,'MACYS MARKETPLACE 00MASON               OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3977,3218,27,42.44,0.00,'MACYS MARKETPLACE 00MASON               OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3978,3219,60,81.95,0.00,'AplPay IC* ABC FINE ORLANDO             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3979,3219,27,0.00,81.95,'AplPay IC* ABC FINE ORLANDO             FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3980,3220,60,105.99,0.00,'713 TAMPA DALE MABRYTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3981,3220,27,0.00,105.99,'713 TAMPA DALE MABRYTAMPA               FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3982,3221,60,1766.57,0.00,'ORIG CO NAME:TRUIST LN 506 ORIG ID:9 WEBXX5506 DESC DATE:250717 CO ENTRY DESCR:OLB PYMT SEC:WEB TRACE#:XXXXXXXX5723231 EED:250718 IND ID:XXXXXXXX9421001 IND NAME :NATHAN STARON TRN: XXXXXX3231 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3983,3222,60,89.00,0.00,'CSA-GGA-DAM/TRIPINSUSAN DIEGO           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3984,3222,27,0.00,89.00,'CSA-GGA-DAM/TRIPINSUSAN DIEGO           CA','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3985,3223,60,354.00,0.00,'GiftHealth*LillyDire833-6144438         OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3986,3223,27,0.00,354.00,'GiftHealth*LillyDire833-6144438         OH','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3987,3224,60,0.00,70000.00,'Draw #15','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3988,3225,60,2672.17,0.00,'FLBLUE* ACA         JACKSONVILLE        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3989,3225,27,0.00,2672.17,'FLBLUE* ACA         JACKSONVILLE        FL','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3990,3226,60,276.65,0.00,'ORIG CO NAME:360 SHEFFIELD FI ORIG ID:XXXXXX1532 DESC DATE:250806 CO ENTRY DESCR:TRANS PMT SEC:PPD TRACE#:XXXXXXXX6803632 EED:250808 IND ID: IND NAME:STARON NAT HAN A TRN: XXXXXX3632 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3991,3227,60,0.00,16931.41,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3992,3228,60,0.00,29.00,'','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3993,3229,60,1766.57,0.00,'ORIG CO NAME:TRUIST LN 506 ORIG ID:9 WEBXX5506 DESC DATE:250818 CO ENTRY DESCR:OLB PYMT SEC:WEB TRACE#:XXXXXXXX8723395 EED:250819 IND ID:XXXXXXXX9421001 IND NAME :NATHAN STARON TRN: XXXXXX3395 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3994,3230,60,1139.49,0.00,'ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250822 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX8921695 EED:250825 IND ID:PXXXX7889 IND NAME:STAR ON, NATHAN TRN: XXXXXX1695 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3995,3231,60,0.00,25000.00,'Draw #17','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3996,3232,60,1139.49,0.00,'ORIG CO NAME:BANK OF AMERICA ORIG ID:941687665 G DESC DATE:250922 CO ENTRY DESCR:Payment SEC:TEL TRACE#:XXXXXXXX1906027 EED:250923 IND ID:PXXXX6046 IND NAME:STAR ON, NATHAN TRN: XXXXXX6027 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3997,3233,61,0.00,15000.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:Dividend SEC:CCD TRACE#:XXXXXXXX6914437 EED:250213 IND ID: IND NAME:Lithium Battery Co LBC Shareholder Transfer (NS) TRN: XXXXXX4437 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3998,3234,61,0.00,15000.00,'Online Transfer from CHK ...1215 transaction#: XXXXXXX4918','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(3999,3235,63,0.00,1226.31,'REMOTE ONLINE DEPOSIT # 2','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(4000,3236,64,0.00,180833.33,'LOAN FUNDS','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(4001,3237,64,0.00,2900.00,'ORIG CO NAME:Lithium Ck ORIG ID:XXXXXX7067 DESC DATE: CO ENTRY DESCR:LBC#MAIN SEC:CCD TRACE#:XXXXXXXX2799298 EED:250908 IND ID: IND NAME:LBC Main (#2560) Bayfro nt Capital (Transaction Fees) TRN: XXXXXX9298 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(4002,3238,64,0.00,3500.00,'ORIG CO NAME:JD CAPITAL ADVIS ORIG ID:SXXXXX7665 DESC DATE:250909 CO ENTRY DESCR:SENDER SEC:CTX TRACE#:XXXXXXXX6471376 EED:250909 IND ID:813722100 IND NAME:0000 LITHIUM BATTERY TRN: XXXXXX1376 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(4003,3239,64,0.00,6500.00,'ORIG CO NAME:JD CAPITAL ADVIS ORIG ID:SXXXXX7665 DESC DATE:250910 CO ENTRY DESCR:SENDER SEC:CTX TRACE#:XXXXXXXX1567022 EED:250910 IND ID:813990834 IND NAME:0000 LITHIUM BATTERY TRN: XXXXXX7022 TC','2025-11-12 00:09:24','2025-11-12 00:09:24'),
(4004,3240,64,0.00,9396.52,'SENDER JD CAPITAL ADVIS IDS941687665, ID: 820696952','2025-11-12 00:09:24','2025-11-12 00:09:24');
/*!40000 ALTER TABLE `journal_entry_lines` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `journal_entry_lines_backup_20250111`
--

DROP TABLE IF EXISTS `journal_entry_lines_backup_20250111`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `journal_entry_lines_backup_20250111` (
  `id` int(10) unsigned NOT NULL DEFAULT 0,
  `entry_id` int(10) unsigned NOT NULL,
  `account_id` int(10) unsigned NOT NULL,
  `debit` decimal(15,2) DEFAULT 0.00,
  `credit` decimal(15,2) DEFAULT 0.00,
  `description` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `journal_entry_lines_backup_20250111`
--

LOCK TABLES `journal_entry_lines_backup_20250111` WRITE;
/*!40000 ALTER TABLE `journal_entry_lines_backup_20250111` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `journal_entry_lines_backup_20250111` VALUES
(1,3,21,308025.00,0.00,'Invoice #INV-20251031-8225','2025-11-11 00:33:35','2025-11-11 00:33:35'),
(2,3,12,0.00,308025.00,'Sales revenue for Invoice #INV-20251031-8225','2025-11-11 00:33:35','2025-11-11 00:33:35'),
(3,7,2,1936.00,0.00,'Payment for Invoice #INV-20251031-7461','2025-11-11 00:33:35','2025-11-11 00:33:35'),
(4,7,21,0.00,1936.00,'Payment for Invoice #INV-20251031-7461','2025-11-11 00:33:35','2025-11-11 00:33:35'),
(5,8,21,999.00,0.00,'Invoice #INV-20251031-3380','2025-11-11 00:33:35','2025-11-11 00:33:35'),
(6,8,12,0.00,999.00,'Sales revenue for Invoice #INV-20251031-3380','2025-11-11 00:33:35','2025-11-11 00:33:35'),
(7,9,2,999.00,0.00,'Payment for Invoice #INV-20251031-3380','2025-11-11 00:33:35','2025-11-11 00:33:35'),
(8,9,21,0.00,999.00,'Payment for Invoice #INV-20251031-3380','2025-11-11 00:33:35','2025-11-11 00:33:35'),
(9,10,92,500000.00,0.00,'Initial cash investment - operating','2025-11-11 00:33:35','2025-11-11 00:33:35'),
(10,10,94,250000.00,0.00,'Initial cash investment - savings','2025-11-11 00:33:35','2025-11-11 00:33:35'),
(11,10,11,0.00,750000.00,'Capital stock - initial investment','2025-11-11 00:33:35','2025-11-11 00:33:35'),
(12,12,2,1000000.00,0.00,'Opening balance - Bank account','2025-11-11 00:33:35','2025-11-11 00:33:35'),
(13,12,10,0.00,1000000.00,'Opening balance - Equity','2025-11-11 00:33:35','2025-11-11 00:33:35'),
(14,13,2,10000000.00,0.00,'Opening balance - Bank account','2025-11-11 00:33:35','2025-11-11 00:33:35'),
(15,13,10,0.00,10000000.00,'Opening balance - Equity','2025-11-11 00:33:35','2025-11-11 00:33:35');
/*!40000 ALTER TABLE `journal_entry_lines_backup_20250111` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `location_asset_overrides`
--

DROP TABLE IF EXISTS `location_asset_overrides`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `location_asset_overrides` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `location_id` int(10) unsigned NOT NULL,
  `asset_category_id` int(10) unsigned NOT NULL,
  `useful_life_years` decimal(5,1) DEFAULT NULL COMMENT 'Override global value',
  `maintenance_capex_rate` decimal(5,2) DEFAULT NULL,
  `replacement_period_years` decimal(5,1) DEFAULT NULL,
  `capitalization_threshold` decimal(5,2) DEFAULT NULL,
  `depreciation_method` enum('straight_line','declining_balance','units_of_production') DEFAULT NULL,
  `salvage_value_percent` decimal(5,2) DEFAULT NULL,
  `notes` text DEFAULT NULL COMMENT 'Location-specific notes',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `location_category` (`location_id`,`asset_category_id`),
  KEY `asset_category_id` (`asset_category_id`),
  CONSTRAINT `location_asset_overrides_ibfk_1` FOREIGN KEY (`location_id`) REFERENCES `locations` (`id`) ON DELETE CASCADE,
  CONSTRAINT `location_asset_overrides_ibfk_2` FOREIGN KEY (`asset_category_id`) REFERENCES `asset_categories` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `location_asset_overrides`
--

LOCK TABLES `location_asset_overrides` WRITE;
/*!40000 ALTER TABLE `location_asset_overrides` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `location_asset_overrides` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `location_capacity_forecast`
--

DROP TABLE IF EXISTS `location_capacity_forecast`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `location_capacity_forecast` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `assumption_set_id` int(11) NOT NULL,
  `location_id` int(10) unsigned NOT NULL,
  `equipment_line_id` int(10) unsigned DEFAULT NULL,
  `projection_date` date NOT NULL,
  `period_type` enum('monthly','quarterly','annual') DEFAULT 'monthly',
  `available_hours` decimal(12,2) NOT NULL,
  `planned_production_hours` decimal(12,2) NOT NULL,
  `utilization_pct` decimal(5,2) NOT NULL,
  `bottleneck` tinyint(1) DEFAULT 0 COMMENT 'Is this a capacity bottleneck?',
  `fixed_costs` decimal(15,2) DEFAULT 0.00 COMMENT 'Facility rent, utilities, etc',
  `variable_costs` decimal(15,2) DEFAULT 0.00 COMMENT 'Based on actual production',
  `labor_costs` decimal(15,2) DEFAULT 0.00,
  `overhead_costs` decimal(15,2) DEFAULT 0.00,
  `generated_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_set` (`assumption_set_id`),
  KEY `idx_location` (`location_id`),
  KEY `idx_equipment` (`equipment_line_id`),
  KEY `idx_date` (`projection_date`),
  CONSTRAINT `location_capacity_forecast_ibfk_1` FOREIGN KEY (`assumption_set_id`) REFERENCES `forecast_assumption_sets` (`id`) ON DELETE CASCADE,
  CONSTRAINT `location_capacity_forecast_ibfk_2` FOREIGN KEY (`location_id`) REFERENCES `locations` (`id`) ON DELETE CASCADE,
  CONSTRAINT `location_capacity_forecast_ibfk_3` FOREIGN KEY (`equipment_line_id`) REFERENCES `equipment_lines` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `location_capacity_forecast`
--

LOCK TABLES `location_capacity_forecast` WRITE;
/*!40000 ALTER TABLE `location_capacity_forecast` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `location_capacity_forecast` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `locations`
--

DROP TABLE IF EXISTS `locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `locations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL,
  `code` varchar(50) NOT NULL,
  `address` text DEFAULT NULL,
  `city` varchar(100) DEFAULT NULL,
  `state` varchar(100) DEFAULT NULL,
  `zip` varchar(20) DEFAULT NULL,
  `country` varchar(100) DEFAULT NULL,
  `square_footage` decimal(10,2) DEFAULT NULL COMMENT 'Square footage of the location',
  `phone` varchar(20) DEFAULT NULL,
  `manager_id` int(10) unsigned DEFAULT NULL,
  `status` enum('active','inactive') DEFAULT 'active',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `description` text DEFAULT NULL,
  `work_days_per_week` decimal(3,1) DEFAULT NULL COMMENT 'Override global - work days per week',
  `work_hours_per_shift` decimal(4,1) DEFAULT NULL COMMENT 'Override global - hours per shift',
  `shifts_per_day` int(11) DEFAULT NULL COMMENT 'Override global - number of shifts',
  `working_weeks_per_year` int(11) DEFAULT NULL COMMENT 'Override global - working weeks per year',
  `labor_utilization_rate` decimal(5,2) DEFAULT NULL COMMENT 'Override global - labor utilization %',
  `hours_per_day` decimal(5,1) DEFAULT NULL COMMENT 'Override global - total hours per day',
  `facility_size_sqft` decimal(12,2) DEFAULT NULL COMMENT 'Location facility size in square feet',
  `capitalization_limit` decimal(12,2) DEFAULT NULL COMMENT 'Override global - capitalization threshold',
  `cpi_increase_rate` decimal(5,2) DEFAULT NULL COMMENT 'Override global - CPI increase rate',
  `project_start_date` date DEFAULT NULL COMMENT 'Override global - project start date',
  `base_year` int(11) DEFAULT NULL COMMENT 'Override global - base year',
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `code` (`code`),
  KEY `manager_id` (`manager_id`),
  KEY `idx_deleted_at` (`deleted_at`),
  CONSTRAINT `locations_ibfk_1` FOREIGN KEY (`manager_id`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `locations`
--

LOCK TABLES `locations` WRITE;
/*!40000 ALTER TABLE `locations` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `locations` VALUES
(2,'Garage','GAR','123 Garage St','Garage','ST','11123','USA',85000.00,'',NULL,'active','2025-10-27 16:13:22',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-11 00:36:45',NULL),
(3,'Farm','FARM','123 Farm Road','Place','ST','11111','USA',6500000.00,'',NULL,'active','2025-10-27 16:13:38',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-11 00:36:45',NULL);
/*!40000 ALTER TABLE `locations` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `lot_serial_movements`
--

DROP TABLE IF EXISTS `lot_serial_movements`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `lot_serial_movements` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `lot_serial_id` int(10) unsigned NOT NULL,
  `movement_type` enum('receipt','shipment','transfer','adjustment','return','production','consumption') NOT NULL,
  `from_location_id` int(10) unsigned DEFAULT NULL,
  `to_location_id` int(10) unsigned DEFAULT NULL,
  `quantity` decimal(10,2) NOT NULL,
  `reference_type` varchar(50) DEFAULT NULL,
  `reference_id` int(10) unsigned DEFAULT NULL,
  `movement_date` datetime DEFAULT current_timestamp(),
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `from_location_id` (`from_location_id`),
  KEY `to_location_id` (`to_location_id`),
  KEY `created_by` (`created_by`),
  KEY `idx_lot_serial` (`lot_serial_id`),
  KEY `idx_movement_date` (`movement_date`),
  KEY `idx_reference` (`reference_type`,`reference_id`),
  CONSTRAINT `lot_serial_movements_ibfk_1` FOREIGN KEY (`lot_serial_id`) REFERENCES `lot_serial_numbers` (`id`) ON DELETE CASCADE,
  CONSTRAINT `lot_serial_movements_ibfk_2` FOREIGN KEY (`from_location_id`) REFERENCES `locations` (`id`) ON DELETE SET NULL,
  CONSTRAINT `lot_serial_movements_ibfk_3` FOREIGN KEY (`to_location_id`) REFERENCES `locations` (`id`) ON DELETE SET NULL,
  CONSTRAINT `lot_serial_movements_ibfk_4` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lot_serial_movements`
--

LOCK TABLES `lot_serial_movements` WRITE;
/*!40000 ALTER TABLE `lot_serial_movements` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `lot_serial_movements` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `lot_serial_numbers`
--

DROP TABLE IF EXISTS `lot_serial_numbers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `lot_serial_numbers` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `product_id` int(10) unsigned NOT NULL,
  `lot_number` varchar(100) DEFAULT NULL,
  `serial_number` varchar(100) DEFAULT NULL,
  `manufacture_date` date DEFAULT NULL,
  `expiration_date` date DEFAULT NULL,
  `quantity` decimal(10,2) DEFAULT 1.00,
  `location_id` int(10) unsigned DEFAULT NULL,
  `status` enum('active','reserved','sold','expired','returned') DEFAULT 'active',
  `notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `created_by` int(10) unsigned DEFAULT NULL,
  `last_notified_at` datetime DEFAULT NULL COMMENT 'Last expiry reminder sent',
  `notification_level` varchar(20) DEFAULT NULL COMMENT 'Current notification level: 30day, 7day, expired',
  PRIMARY KEY (`id`),
  KEY `location_id` (`location_id`),
  KEY `created_by` (`created_by`),
  KEY `idx_lot_number` (`lot_number`),
  KEY `idx_serial_number` (`serial_number`),
  KEY `idx_product` (`product_id`),
  KEY `idx_expiration` (`expiration_date`),
  KEY `idx_status` (`status`),
  KEY `idx_lot_expiry_notification` (`expiration_date`,`status`,`last_notified_at`),
  CONSTRAINT `lot_serial_numbers_ibfk_1` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`),
  CONSTRAINT `lot_serial_numbers_ibfk_2` FOREIGN KEY (`location_id`) REFERENCES `locations` (`id`) ON DELETE SET NULL,
  CONSTRAINT `lot_serial_numbers_ibfk_3` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lot_serial_numbers`
--

LOCK TABLES `lot_serial_numbers` WRITE;
/*!40000 ALTER TABLE `lot_serial_numbers` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `lot_serial_numbers` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `machine_events`
--

DROP TABLE IF EXISTS `machine_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `machine_events` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `equipment_id` int(10) unsigned NOT NULL,
  `event_type` varchar(50) NOT NULL COMMENT 'e.g., status_change, production_update, utilization_update, alert',
  `event_data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Event details in JSON format' CHECK (json_valid(`event_data`)),
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `equipment_id` (`equipment_id`),
  KEY `event_type` (`event_type`),
  KEY `created_at` (`created_at`),
  CONSTRAINT `machine_events_ibfk_1` FOREIGN KEY (`equipment_id`) REFERENCES `equipment` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Logs machine automation events and data integration';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `machine_events`
--

LOCK TABLES `machine_events` WRITE;
/*!40000 ALTER TABLE `machine_events` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `machine_events` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `material_requirements`
--

DROP TABLE IF EXISTS `material_requirements`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `material_requirements` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `work_order_id` int(10) unsigned DEFAULT NULL,
  `product_id` int(10) unsigned NOT NULL,
  `total_required` decimal(15,3) NOT NULL DEFAULT 0.000,
  `on_hand` decimal(15,3) NOT NULL DEFAULT 0.000,
  `on_order` decimal(15,3) NOT NULL DEFAULT 0.000,
  `allocated` decimal(15,3) NOT NULL DEFAULT 0.000,
  `net_required` decimal(15,3) NOT NULL DEFAULT 0.000,
  `suggested_order_date` date DEFAULT NULL,
  `requisition_created` tinyint(1) DEFAULT 0,
  `requisition_id` int(10) unsigned DEFAULT NULL,
  `calculated_at` datetime DEFAULT current_timestamp(),
  `created_at` datetime DEFAULT current_timestamp(),
  `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_work_order` (`work_order_id`),
  KEY `idx_product` (`product_id`),
  KEY `idx_calculated_at` (`calculated_at`),
  KEY `idx_net_required` (`net_required`),
  KEY `idx_material_req_product_calculated` (`product_id`,`calculated_at`),
  CONSTRAINT `material_requirements_ibfk_1` FOREIGN KEY (`work_order_id`) REFERENCES `work_orders` (`id`) ON DELETE CASCADE,
  CONSTRAINT `material_requirements_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `material_requirements`
--

LOCK TABLES `material_requirements` WRITE;
/*!40000 ALTER TABLE `material_requirements` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `material_requirements` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Temporary table structure for view `mention_stats`
--

DROP TABLE IF EXISTS `mention_stats`;
/*!50001 DROP VIEW IF EXISTS `mention_stats`*/;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8mb4;
/*!50001 CREATE VIEW `mention_stats` AS SELECT
 1 AS `user_id`,
  1 AS `user_name`,
  1 AS `total_mentions`,
  1 AS `unread_mentions`,
  1 AS `last_mention_at` */;
SET character_set_client = @saved_cs_client;

--
-- Table structure for table `mentions`
--

DROP TABLE IF EXISTS `mentions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `mentions` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `mentioned_by` int(10) unsigned NOT NULL,
  `entity_type` varchar(50) NOT NULL COMMENT 'Comment, Note, Message, etc.',
  `entity_id` int(11) NOT NULL COMMENT 'ID of the comment/note/message',
  `related_type` varchar(50) DEFAULT NULL COMMENT 'Invoice, Quote, Task, etc.',
  `related_id` int(11) DEFAULT NULL COMMENT 'ID of the invoice/quote/task',
  `content_snippet` varchar(500) DEFAULT NULL COMMENT 'Snippet of text where mention occurred',
  `is_read` tinyint(1) DEFAULT 0,
  `read_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_user_id` (`user_id`,`is_read`),
  KEY `idx_mentioned_by` (`mentioned_by`),
  KEY `idx_entity` (`entity_type`,`entity_id`),
  KEY `idx_related` (`related_type`,`related_id`),
  CONSTRAINT `mentions_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE,
  CONSTRAINT `mentions_ibfk_2` FOREIGN KEY (`mentioned_by`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Track @mentions across the system';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mentions`
--

LOCK TABLES `mentions` WRITE;
/*!40000 ALTER TABLE `mentions` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `mentions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `menu_items`
--

DROP TABLE IF EXISTS `menu_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `menu_items` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `parent_id` int(11) DEFAULT NULL,
  `label` varchar(100) NOT NULL,
  `icon` varchar(50) DEFAULT NULL,
  `url` varchar(255) DEFAULT NULL,
  `target` varchar(20) DEFAULT '_self',
  `permission_required` varchar(100) DEFAULT NULL COMMENT 'Permission key to check (e.g., users.view)',
  `display_order` int(11) DEFAULT 0,
  `is_active` tinyint(1) DEFAULT 1,
  `is_header` tinyint(1) DEFAULT 0 COMMENT 'Is this a section header?',
  `is_app_grid` tinyint(1) DEFAULT 0,
  `badge_query` text DEFAULT NULL COMMENT 'SQL query to get badge count',
  `badge_color` varchar(20) DEFAULT NULL COMMENT 'Badge color: primary, danger, warning, etc.',
  `urgent_threshold` int(11) DEFAULT NULL COMMENT 'If badge count > this, show as urgent',
  `urgent_color` varchar(20) DEFAULT NULL COMMENT 'Color when urgent',
  `description` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_parent` (`parent_id`),
  KEY `idx_order` (`display_order`),
  KEY `idx_active` (`is_active`),
  KEY `idx_permission` (`permission_required`),
  CONSTRAINT `menu_items_ibfk_1` FOREIGN KEY (`parent_id`) REFERENCES `menu_items` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=364 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `menu_items`
--

LOCK TABLES `menu_items` WRITE;
/*!40000 ALTER TABLE `menu_items` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `menu_items` VALUES
(1,NULL,'Dashboard','bi bi-cpu','dashboard','_self','dashboard.view',1,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:43:45','2025-11-30 01:23:31'),
(2,NULL,'DEPARTMENTS',NULL,NULL,'_self',NULL,100,1,1,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:43:45','2025-11-01 17:43:45'),
(3,2,'CRM','bi bi-person-badge','#','_self','crm.view',20,1,0,0,'','',NULL,'','','2025-11-01 17:44:23','2025-11-11 11:44:58'),
(4,3,'Dashboard','','crm/dashboard','_self','crm.dashboard',10,1,0,0,'','',NULL,'','','2025-11-01 17:44:23','2025-11-29 19:13:00'),
(5,3,'Companies','','companies','_self','companies.view',25,1,0,0,'SELECT COUNT(*) FROM customers WHERE status = \'active\'','',NULL,'','','2025-11-01 17:44:23','2025-11-28 22:27:00'),
(7,3,'Contacts','','crm/contacts','_self','crm.contacts',20,1,0,0,'SELECT ((SELECT COUNT(*) FROM client_contacts) + (SELECT COUNT(*) FROM customer_contacts))','primary',NULL,'','','2025-11-01 17:44:23','2025-11-29 19:13:00'),
(8,3,'Activities','','crm/activities','_self','crm.activities',15,1,0,0,'SELECT COUNT(*) as count FROM activities WHERE assigned_to = {user_id} AND activity_date = CURDATE() AND status != \'completed\'','info',3,'warning','','2025-11-01 17:44:23','2025-11-29 19:13:00'),
(10,3,'Opportunities','','crm/opportunities','_self','crm.opportunities',60,1,0,0,'SELECT COUNT(*) as count FROM opportunities WHERE status NOT IN (\'won\', \'lost\', \'closed\')','success',5,'warning','','2025-11-01 17:44:23','2025-11-29 19:13:00'),
(11,3,'Support','','#','_self','crm.view',80,1,0,0,'SELECT COUNT(*) as count FROM crm_support_tickets WHERE status NOT IN (\'closed\', \'resolved\')','danger',2,'warning','','2025-11-01 17:44:23','2025-11-11 12:23:42'),
(12,11,'Tickets',NULL,'crm/support','_self','crm.view',1,1,0,0,'SELECT COUNT(*) as count FROM crm_support_tickets WHERE status NOT IN (\'closed\', \'resolved\')','danger',2,'warning',NULL,'2025-11-01 17:44:23','2025-11-11 11:15:46'),
(14,3,'Reports','','crm/reports','_self','crm.reports',90,1,0,0,'','',NULL,'','','2025-11-01 17:44:23','2025-11-29 19:13:00'),
(15,NULL,'ADMIN','','','_self','admin',400,1,1,0,'','',NULL,'','','2025-11-01 17:44:54','2025-11-08 15:02:09'),
(16,15,'Announcements','bi bi-megaphone-fill','announcements','_self','announcements.view',1,1,0,0,'SELECT COUNT(*) as count FROM announcements WHERE status = \'active\' AND start_date <= CURDATE() AND (end_date IS NULL OR end_date >= CURDATE())','info',NULL,'','','2025-11-01 17:44:54','2025-11-28 22:27:00'),
(17,15,'Settings','bi bi-gear-wide-connected','#','_self','admin',2,1,0,0,'','',NULL,'','','2025-11-01 17:44:54','2025-11-08 15:02:28'),
(18,17,'Company Settings','','#','_self','admin',50,1,0,0,'','',NULL,'','','2025-11-01 17:44:54','2025-11-17 11:28:18'),
(19,18,'Company Info',NULL,'settings/company','_self','settings.company',1,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:44:54','2025-11-29 19:13:00'),
(20,18,'Email Settings',NULL,'settings/email','_self','settings.email',2,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:44:54','2025-11-29 19:13:00'),
(21,18,'Locations',NULL,'locations','_self','locations.view',3,1,0,0,'SELECT COUNT(*) FROM locations WHERE is_active = 1','primary',NULL,NULL,NULL,'2025-11-01 17:44:54','2025-11-28 22:27:00'),
(22,17,'Financial Settings','','#','_self','admin',60,1,0,0,'','',NULL,'','','2025-11-01 17:44:54','2025-11-17 11:29:22'),
(23,22,'Tax Settings','','settings/tax','_self','settings.tax',5,1,0,0,'','',NULL,'','','2025-11-01 17:44:54','2025-11-29 19:13:00'),
(24,22,'Fiscal Year',NULL,'settings/fiscal-year','_self','settings.fiscal_year',2,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:44:54','2025-11-29 19:13:00'),
(25,22,'Payment Terms',NULL,'settings/payment-terms','_self','settings.payment_terms',3,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:44:54','2025-11-29 19:13:00'),
(26,22,'Cost Allocation','','settings/cost-allocation','_self','settings.cost_allocation',1,1,0,0,'','',NULL,'','','2025-11-01 17:44:54','2025-11-29 19:13:00'),
(27,22,'PP&E Parameters','','settings/ppe-parameters','_self','settings.ppe_parameters',4,1,0,0,'','',NULL,'','','2025-11-01 17:44:54','2025-11-29 19:13:00'),
(28,17,'Location Settings','','#','_self','admin',80,1,0,0,'','',NULL,'','','2025-11-01 17:44:54','2025-11-17 11:29:38'),
(29,28,'Business Parameters',NULL,'settings/business-parameters','_self','settings.business_parameters',1,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:44:54','2025-11-29 19:13:00'),
(30,28,'Facilities & Leasing',NULL,'settings/facilities','_self','settings.facilities',2,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:44:54','2025-11-29 19:13:00'),
(31,28,'Payroll Settings',NULL,'settings/payroll','_self','settings.payroll',3,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:44:54','2025-11-29 19:13:00'),
(32,17,'Security Settings','','#','_self','admin',140,1,0,0,'','',NULL,'','','2025-11-01 17:44:54','2025-11-29 12:46:27'),
(33,32,'Users','','users','_self','users.view',5,1,0,0,'SELECT COUNT(*) as count FROM users WHERE status != \'active\'','',NULL,'','','2025-11-01 17:44:54','2025-11-30 13:39:08'),
(35,17,'System Configuration','','#','_self','admin',150,1,0,0,'','',NULL,'','','2025-11-01 17:44:54','2025-11-24 19:17:51'),
(36,281,'Menu Mgmt','','menus','_self','menus.view',20,1,0,0,'','',NULL,'','','2025-11-01 17:44:54','2025-11-28 22:27:00'),
(37,35,'Dropdowns',NULL,'#','_self','admin',2,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:44:54','2025-11-08 15:04:07'),
(38,37,'Sales & CRM','','settings/dropdowns/sales','_self','settings.sales__crm',3,1,0,0,'','',NULL,'','','2025-11-01 17:44:54','2025-11-29 19:15:36'),
(39,37,'Operations',NULL,'settings/dropdowns/operations','_self','settings.operations',2,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:44:54','2025-11-29 19:15:36'),
(40,35,'Templates','','#','_self','admin',6,1,0,0,'','',NULL,'','','2025-11-01 17:44:54','2025-11-24 19:17:08'),
(42,40,'Terms & Conditions',NULL,'settings/terms-conditions','_self','settings.terms_conditions',2,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:44:54','2025-11-29 19:13:00'),
(43,35,'QuickBooks Mgmt','','quickbooks','_self','quickbooks.view',3,1,0,0,'','',NULL,'','','2025-11-01 17:44:54','2025-11-28 22:27:00'),
(44,2,'Accounting','bi bi-calculator','#','_self','accounting.view',10,1,0,0,'','',NULL,'','','2025-11-01 17:45:12','2025-11-11 11:44:58'),
(45,61,'All Report Package','','accounting/reports/package','_self','accounting.all_report_package',0,1,0,0,'','',NULL,'','','2025-11-01 17:45:12','2025-11-29 19:15:36'),
(46,44,'Core Accounting','','#','_self','accounting.view',30,1,0,0,'','',NULL,'','','2025-11-01 17:45:12','2025-11-15 19:19:45'),
(47,46,'Chart of Accounts',NULL,'accounting/accounts','_self','accounting.accounts',1,1,0,0,'SELECT COUNT(*) FROM chart_of_accounts WHERE status = \'active\'','primary',NULL,NULL,NULL,'2025-11-01 17:45:12','2025-11-29 19:13:00'),
(48,46,'Journal Entries',NULL,'accounting/journal','_self','accounting.journal',2,1,0,0,'SELECT COUNT(*) as count FROM journal_entries WHERE status = \'draft\'','primary',0,'warning',NULL,'2025-11-01 17:45:12','2025-11-29 19:13:00'),
(49,46,'General Ledger',NULL,'accounting/ledger','_self','accounting.ledger',3,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:45:12','2025-11-29 19:13:00'),
(50,44,'Banking/Cash','','#','_self','accounting.banking_cash',20,1,0,0,'','',NULL,'','','2025-11-01 17:45:12','2025-12-02 13:56:09'),
(51,50,'Bank Accounts',NULL,'accounting/bank-accounts','_self','accounting.bank_accounts',1,1,0,0,'SELECT COUNT(*) FROM bank_accounts WHERE is_active = 1','primary',NULL,NULL,NULL,'2025-11-01 17:45:12','2025-11-29 19:13:00'),
(52,50,'Bank Reconciliation',NULL,'accounting/reconciliation','_self','accounting.reconciliation',2,1,0,0,'SELECT COUNT(*) as count FROM bank_accounts WHERE last_reconciliation_date < DATE_SUB(CURDATE(), INTERVAL 30 DAY) OR last_reconciliation_date IS NULL','danger',1,'danger',NULL,'2025-11-01 17:45:12','2025-11-29 19:13:00'),
(53,44,'Operations','','#','_self','accounting.operations',60,1,0,0,'','',NULL,'','','2025-11-01 17:45:12','2025-12-02 13:56:09'),
(54,53,'Expenses',NULL,'accounting/expenses','_self','accounting.expenses',1,1,0,0,'SELECT COUNT(*) as count FROM expenses WHERE status = \'pending_approval\'','info',10,'warning',NULL,'2025-11-01 17:45:12','2025-11-29 19:13:00'),
(55,53,'Budgets',NULL,'accounting/budgets','_self','accounting.budgets',2,1,0,0,'SELECT COUNT(*) FROM budgets WHERE status = \'active\'','primary',NULL,NULL,NULL,'2025-11-01 17:45:12','2025-11-29 19:13:00'),
(56,44,'Assets/Compliance','','#','_self','accounting.assets_compliance',10,1,0,0,'','',NULL,'','','2025-11-01 17:45:12','2025-12-02 13:56:09'),
(57,56,'Fixed Assets',NULL,'accounting/assets','_self','accounting.assets',1,1,0,0,'SELECT COUNT(*) as count FROM fixed_assets WHERE status = \'active\' AND depreciation_method != \'none\'','primary',NULL,NULL,NULL,'2025-11-01 17:45:12','2025-11-29 19:13:00'),
(58,56,'Depreciation',NULL,'accounting/depreciation','_self','accounting.depreciation',2,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:45:12','2025-11-29 19:13:00'),
(60,56,'Period Closing',NULL,'accounting/period','_self','accounting.period',4,1,0,0,'SELECT COUNT(*) as count FROM accounting_periods WHERE status = \'open\'','warning',1,'warning',NULL,'2025-11-01 17:45:12','2025-11-29 19:13:00'),
(61,44,'Reports','','#','_self','accounting.reports',90,1,0,0,'','',NULL,'','','2025-11-01 17:45:12','2025-12-02 13:56:09'),
(62,61,'Balance Sheet',NULL,'accounting/reports/balance-sheet','_self','accounting.balance_sheet',1,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:45:12','2025-11-29 19:15:36'),
(63,61,'Income Statement',NULL,'accounting/reports/income-statement','_self','accounting.income_statement',2,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:45:12','2025-11-29 19:15:36'),
(65,61,'Trial Balance','','accounting/reports/trial-balance','_self','accounting.trial_balance',5,1,0,0,'','',NULL,'','','2025-11-01 17:45:12','2025-11-29 19:15:36'),
(66,61,'Aging Reports',NULL,'accounting/reports/aging','_self','accounting.aging_reports',6,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:45:12','2025-11-29 19:15:36'),
(68,2,'HR','bi bi-people','#','_self','hr.view',30,1,0,0,'','',NULL,'','','2025-11-01 17:45:27','2025-11-11 12:23:42'),
(69,68,'Dashboard',NULL,'hr/dashboard','_self','hr.dashboard',1,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:45:27','2025-11-29 19:13:00'),
(70,68,'Employees',NULL,'employees','_self','employees.view',2,1,0,0,'SELECT COUNT(*) FROM employees WHERE status = \'active\'','primary',NULL,NULL,NULL,'2025-11-01 17:45:27','2025-11-29 19:13:00'),
(71,68,'Recruitment',NULL,'#','_self','hr.view',3,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:45:27','2025-11-11 11:41:06'),
(72,71,'Dashboard',NULL,'hr/recruitment/dashboard','_self','hr.dashboard',1,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:45:27','2025-11-29 19:15:36'),
(73,71,'Job Positions',NULL,'hr/recruitment/positions','_self','positions.view',2,1,0,0,'SELECT COUNT(*) FROM job_positions WHERE status = \'open\'','primary',NULL,NULL,NULL,'2025-11-01 17:45:27','2025-11-11 12:46:12'),
(74,71,'Applications',NULL,'hr/recruitment/applications','_self','hr.applications',3,1,0,0,'SELECT COUNT(*) as count FROM applications WHERE status = \'pending_review\'','info',5,'warning',NULL,'2025-11-01 17:45:27','2025-11-29 19:15:36'),
(75,71,'Interviews',NULL,'hr/recruitment/interviews','_self','hr.interviews',4,1,0,0,'SELECT COUNT(*) as count FROM interviews WHERE status = \'scheduled\'','info',0,'warning',NULL,'2025-11-01 17:45:27','2025-11-29 19:15:36'),
(76,71,'Assessments',NULL,'hr/recruitment/assessments','_self','hr.assessments',5,1,0,0,'SELECT COUNT(*) FROM qualification_assessments WHERE status = \'pending\'',NULL,NULL,NULL,NULL,'2025-11-01 17:45:27','2025-11-29 19:15:36'),
(77,71,'Offers',NULL,'hr/recruitment/offers','_self','hr.offers',6,1,0,0,'SELECT COUNT(*) as count FROM offers WHERE status = \'pending\'','success',0,'warning',NULL,'2025-11-01 17:45:27','2025-11-29 19:15:36'),
(78,68,'Development',NULL,'#','_self','hr.view',4,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:45:27','2025-11-11 11:41:06'),
(79,78,'Contracts',NULL,'hr/development/contracts','_self','hr.contracts',1,1,0,0,'SELECT COUNT(*) as count FROM contracts WHERE status IN (\'draft\', \'pending_signature\', \'pending_approval\')','warning',3,'warning',NULL,'2025-11-01 17:45:27','2025-11-29 19:15:36'),
(80,78,'Training',NULL,'hr/development/training','_self','hr.training',2,1,0,0,'SELECT COUNT(*) as count FROM training_programs WHERE status = \'in_progress\'','secondary',NULL,NULL,NULL,'2025-11-01 17:45:27','2025-11-29 19:15:36'),
(81,78,'Performance Reviews',NULL,'hr/development/reviews','_self','hr.performance_reviews',3,1,0,0,'SELECT COUNT(*) as count FROM performance_reviews WHERE status IN (\'pending\', \'in_progress\')','info',3,'warning',NULL,'2025-11-01 17:45:27','2025-11-29 19:15:36'),
(82,68,'Relations',NULL,'#','_self','hr.view',5,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:45:27','2025-11-11 11:41:06'),
(83,82,'Issues & Challenges',NULL,'hr/relations/issues','_self','hr.issues__challenges',1,1,0,0,'SELECT COUNT(*) FROM employee_issues WHERE status IN (\'reported\', \'investigating\', \'in-progress\')','warning',NULL,NULL,NULL,'2025-11-01 17:45:27','2025-11-29 19:15:36'),
(84,82,'Separations',NULL,'hr/relations/separations','_self','hr.separations',2,1,0,0,'SELECT COUNT(*) as count FROM separations WHERE status = \'pending\'','warning',NULL,NULL,NULL,'2025-11-01 17:45:27','2025-11-29 19:15:36'),
(85,68,'Attendance',NULL,'hr/attendance','_self','hr.view',6,1,0,0,'SELECT COUNT(*) as count FROM attendance WHERE date = CURDATE() AND clock_out IS NULL','danger',0,'danger',NULL,'2025-11-01 17:45:27','2025-11-30 00:54:34'),
(86,2,'Inventory','bi bi-box-seam','#','_self','inventory.view',40,1,0,0,'','',NULL,'','','2025-11-01 17:45:41','2025-11-11 12:23:42'),
(87,86,'Dashboard',NULL,'inventory/dashboard','_self','inventory.dashboard',1,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:45:41','2025-11-29 19:13:00'),
(88,86,'Product Management',NULL,'#','_self','inventory.view',2,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:45:41','2025-11-11 11:41:06'),
(89,88,'Products',NULL,'products','_self','products.view',1,1,0,0,'SELECT COUNT(DISTINCT p.id) as count FROM products p LEFT JOIN inventory_levels il ON p.id = il.product_id WHERE COALESCE(il.quantity, 0) <= COALESCE(p.reorder_level, 0) AND p.reorder_level > 0','danger',3,'danger',NULL,'2025-11-01 17:45:41','2025-11-29 19:13:00'),
(90,88,'Categories',NULL,'inventory/categories','_self','inventory.categories',2,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:45:41','2025-11-29 19:13:00'),
(91,86,'Stock Levels',NULL,'/inventory/stock-levels','_self','inventory.stock_levels',3,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:45:41','2025-11-29 19:13:00'),
(92,2,'Manufacturing','bi bi-gear','#','_self','manufacturing.view',50,1,0,0,'','',NULL,'','','2025-11-01 17:46:13','2025-11-11 12:23:42'),
(93,92,'Dashboard',NULL,'manufacturing','_self','manufacturing.dashboard',1,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-11-29 19:13:00'),
(94,92,'Capacity Planning',NULL,'#','_self','manufacturing.capacity_planning',2,1,0,0,'SELECT COUNT(*) as count FROM capacity_plans WHERE utilization_percentage > 100 AND period_date >= CURDATE()',NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-12-02 13:56:09'),
(95,94,'Dashboard',NULL,'manufacturing/capacity','_self','manufacturing.capacity_dashboard',1,1,0,0,'SELECT COUNT(*) as count FROM capacity_plans WHERE utilization_percentage > 100 AND period_date >= CURDATE()',NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-11-29 19:15:36'),
(96,94,'Real-time Status',NULL,'manufacturing/capacity/machineStatus','_self','manufacturing.real_time_status',2,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-11-29 19:15:36'),
(97,94,'Analytics',NULL,'manufacturing/capacity/analytics','_self','manufacturing.analytics',3,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-11-29 19:15:36'),
(98,94,'Availability',NULL,'manufacturing/capacity/availability','_self','manufacturing.availability',4,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-11-29 19:15:36'),
(99,94,'Feasibility',NULL,'manufacturing/capacity/feasibility','_self','manufacturing.feasibility',5,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-11-29 19:15:36'),
(100,92,'Planning & Materials',NULL,'#','_self','manufacturing.planning_materials',3,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-12-02 13:56:09'),
(101,100,'Bill of Materials',NULL,'manufacturing/boms','_self','manufacturing.boms',1,1,0,0,'SELECT COUNT(DISTINCT b.id) as count FROM boms b INNER JOIN bom_components bc ON b.id = bc.bom_id INNER JOIN products p ON bc.component_id = p.id LEFT JOIN inventory_levels il ON p.id = il.product_id WHERE COALESCE(il.quantity, 0) < COALESCE(bc.quantity_required * 2, 0)','primary',NULL,NULL,NULL,'2025-11-01 17:46:13','2025-11-29 19:13:00'),
(102,100,'MRP',NULL,'manufacturing/mrp','_self','manufacturing.mrp',2,1,0,0,'SELECT COUNT(*) as count FROM mrp_requirements WHERE status = \'required\' AND required_date <= DATE_ADD(CURDATE(), INTERVAL 7 DAY)','info',NULL,NULL,NULL,'2025-11-01 17:46:13','2025-11-29 19:13:00'),
(103,100,'Production Scheduling',NULL,'manufacturing/scheduling','_self','manufacturing.scheduling',3,1,0,0,'SELECT COUNT(*) as count FROM work_orders WHERE status = \'pending\'',NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-11-29 19:13:00'),
(104,92,'Production',NULL,'#','_self','manufacturing.production',4,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-12-02 13:56:09'),
(105,104,'Work Orders',NULL,'manufacturing/workorders','_self','manufacturing.workorders',1,1,0,0,'SELECT COUNT(*) as count FROM work_orders WHERE status NOT IN (\'completed\', \'cancelled\')','primary',10,'warning',NULL,'2025-11-01 17:46:13','2025-11-29 19:13:00'),
(106,104,'Shop Floor Control',NULL,'manufacturing/shopfloor','_self','manufacturing.shopfloor',2,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-11-29 19:13:00'),
(107,92,'Resources',NULL,'#','_self','manufacturing.resources',5,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-12-02 13:56:09'),
(108,107,'Business Lines',NULL,'manufacturing/business-lines','_self','manufacturing.business_lines',1,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-11-29 19:13:00'),
(109,107,'Equipment Lines',NULL,'manufacturing/equipment-lines','_self','manufacturing.equipment_lines',2,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-11-29 19:13:00'),
(110,107,'Equipment Units',NULL,'manufacturing/equipment','_self','manufacturing.equipment',3,1,0,0,'SELECT COUNT(*) as count FROM equipment WHERE status = \'maintenance_required\'',NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-11-29 19:13:00'),
(111,92,'Quality Control',NULL,'#','_self','manufacturing.quality_control',6,1,0,0,'SELECT COUNT(*) FROM quality_inspections WHERE status = \'pending\'','warning',NULL,NULL,NULL,'2025-11-01 17:46:13','2025-12-02 13:56:09'),
(112,111,'Dashboard',NULL,'manufacturing/quality','_self','manufacturing.quality_dashboard',1,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-11-29 19:15:36'),
(113,111,'Inspections',NULL,'manufacturing/quality/inspections','_self','manufacturing.inspections',2,1,0,0,'SELECT COUNT(*) as count FROM quality_inspections WHERE status IN (\'pending\', \'in_progress\')','warning',0,'danger',NULL,'2025-11-01 17:46:13','2025-11-29 19:15:36'),
(114,111,'NCR',NULL,'manufacturing/quality/ncr','_self','manufacturing.ncr',3,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-11-29 19:15:36'),
(115,111,'Metrics',NULL,'manufacturing/quality/metrics','_self','manufacturing.metrics',4,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-11-29 19:15:36'),
(116,111,'Templates',NULL,'manufacturing/quality/templates','_self','manufacturing.templates',5,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-11-29 19:15:36'),
(117,92,'Maintenance',NULL,'#','_self','manufacturing.maintenance',7,1,0,0,'SELECT COUNT(*) as count FROM maintenance_work_orders WHERE status IN (\'pending\', \'scheduled\')',NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-12-02 13:56:09'),
(118,117,'Maintenance Schedules',NULL,'manufacturing/maintenance/schedules','_self','manufacturing.maintenance_schedules',1,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-11-29 19:15:36'),
(119,117,'Maintenance Work Orders',NULL,'manufacturing/maintenance/work-orders','_self','manufacturing.maintenance_work_orders',2,1,0,0,'SELECT COUNT(*) as count FROM maintenance_work_orders WHERE status IN (\'pending\', \'scheduled\')','warning',3,'danger',NULL,'2025-11-01 17:46:13','2025-11-29 19:15:36'),
(120,117,'Downtime Tracking',NULL,'manufacturing/maintenance/downtime','_self','manufacturing.downtime_tracking',3,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-11-29 19:15:36'),
(121,92,'Costing',NULL,'#','_self','manufacturing.costing',8,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-12-02 13:56:09'),
(122,121,'Production Costing',NULL,'manufacturing/costing/production','_self','manufacturing.production_costing',1,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-11-29 19:15:36'),
(123,121,'Job Costing',NULL,'manufacturing/costing/jobs','_self','manufacturing.job_costing',2,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-11-29 19:15:36'),
(124,92,'Reports',NULL,'#','_self','manufacturing.reports',9,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-12-02 13:56:09'),
(125,124,'Production Reports',NULL,'manufacturing/reports/production','_self','manufacturing.production_reports',1,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-11-29 19:15:36'),
(126,124,'OEE Reports',NULL,'manufacturing/reports/oee','_self','manufacturing.oee_reports',2,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:13','2025-11-29 19:15:36'),
(127,2,'Sales','bi bi-cart','#','_self','sales.view',70,1,0,0,'','',NULL,'','','2025-11-01 17:46:33','2025-11-11 12:23:42'),
(128,127,'Dashboard',NULL,'sales/dashboard','_self','sales.dashboard',1,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:33','2025-11-29 19:13:00'),
(129,127,'Sales Documents',NULL,'#','_self','sales.view',2,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:33','2025-11-11 11:41:06'),
(130,129,'Quotes','bi bi-1-square','quotes','_self','quotes.view',1,1,0,0,'SELECT COUNT(*) as count FROM quotes WHERE status NOT IN (\'converted\', \'rejected\', \'expired\')','info',5,'warning','','2025-11-01 17:46:33','2025-11-29 19:13:00'),
(131,129,'Orders','bi bi-3-square','sales/orders','_self','sales.orders',3,1,0,0,'SELECT COUNT(*) as count FROM sales_orders WHERE status NOT IN (\'delivered\', \'cancelled\')','primary',5,'warning','','2025-11-01 17:46:33','2025-11-29 19:13:00'),
(132,129,'Invoices','bi bi-4-square','invoices','_self','invoices.view',4,1,0,0,'SELECT COUNT(*) as count FROM invoices WHERE status NOT IN (\'paid\', \'cancelled\')','warning',5,'danger','','2025-11-01 17:46:33','2025-11-24 14:54:27'),
(133,129,'Credit Notes','','creditnotes','_self','creditnotes.view',10,1,0,0,'SELECT COUNT(*) as count FROM credit_notes WHERE status NOT IN (\'applied\', \'cancelled\')','',NULL,'','','2025-11-01 17:46:33','2025-11-29 19:13:00'),
(135,127,'Fulfillment',NULL,'#','_self','sales.fulfillment',4,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:33','2025-12-02 14:03:43'),
(136,135,'Shipments',NULL,'shipments','_self','shipments.view',1,1,0,0,'SELECT COUNT(*) as count FROM shipments WHERE status NOT IN (\'delivered\', \'cancelled\')','primary',5,'warning',NULL,'2025-11-01 17:46:33','2025-11-29 19:13:00'),
(137,135,'Delivery Notes',NULL,'sales/delivery_notes','_self','sales.delivery_notes',2,1,0,0,'SELECT COUNT(*) as count FROM delivery_notes WHERE status IN (\'draft\', \'pending\', \'in_transit\')','info',5,'warning',NULL,'2025-11-01 17:46:33','2025-11-29 19:13:00'),
(138,135,'Returns (RMA)',NULL,'sales/returns','_self','sales.returns',3,1,0,0,'SELECT COUNT(*) as count FROM returns WHERE status IN (\'pending\', \'approved\', \'received\')','warning',10,'danger',NULL,'2025-11-01 17:46:33','2025-11-29 19:13:00'),
(139,127,'Configuration',NULL,'#','_self','sales.configuration',5,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:33','2025-12-02 14:03:43'),
(140,139,'Pricing Rules',NULL,'sales/pricing_rules','_self','sales.pricing_rules',1,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:33','2025-11-29 19:13:00'),
(141,139,'Discounts & Promotions',NULL,'sales/promotions','_self','sales.promotions',2,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:33','2025-11-29 19:13:00'),
(142,127,'Reports',NULL,'sales/reports','_self','sales.reports',6,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:33','2025-11-29 19:13:00'),
(143,2,'Purchases','bi bi-bag','#','_self','purchases.view',60,1,0,0,'','',NULL,'','','2025-11-01 17:46:47','2025-11-11 12:23:42'),
(144,143,'Dashboard',NULL,'purchases/dashboard','_self','purchases.dashboard',1,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:47','2025-11-29 19:13:00'),
(145,143,'Suppliers',NULL,'suppliers','_self','suppliers.view',2,1,0,0,'SELECT COUNT(*) FROM suppliers','primary',NULL,NULL,NULL,'2025-11-01 17:46:47','2025-11-29 19:13:00'),
(146,143,'Procurement Process',NULL,'#','_self','purchases.procurement_process',3,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:47','2025-12-02 13:59:43'),
(147,146,'Purchase Requisitions',NULL,'purchases/requisitions','_self','purchases.requisitions',1,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:47','2025-11-29 19:13:00'),
(148,146,'RFQs (Quotes)',NULL,'purchases/rfqs','_self','purchases.rfqs',2,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:47','2025-11-29 19:13:00'),
(149,146,'Purchase Orders',NULL,'purchases/orders','_self','purchases.orders',3,1,0,0,'SELECT COUNT(*) as count FROM purchase_orders WHERE status NOT IN (\'completed\', \'cancelled\')','primary',5,'warning',NULL,'2025-11-01 17:46:47','2025-11-29 19:13:00'),
(150,146,'Goods Receipt',NULL,'purchases/receiving','_self','purchases.receiving',4,1,0,0,'SELECT COUNT(*) as count FROM goods_receipts WHERE status IN (\'pending\', \'received\')','info',5,'warning',NULL,'2025-11-01 17:46:47','2025-11-29 19:13:00'),
(151,143,'Payments & Documents',NULL,'#','_self','purchases.payments_documents',4,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:47','2025-12-02 13:59:43'),
(152,151,'Bills/Invoices',NULL,'purchases/bills','_self','purchases.bills',1,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:47','2025-11-29 19:13:00'),
(153,151,'Payments Made (Legacy)',NULL,'purchases/payments','_self','purchases.payments',2,1,0,0,NULL,NULL,NULL,NULL,'DEPRECATED: Use Accounting > Vendor Payments instead','2025-11-01 17:46:47','2025-11-29 19:13:00'),
(154,151,'Purchase Returns',NULL,'purchases/returns','_self','purchases.returns',3,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:47','2025-11-29 19:13:00'),
(155,151,'Debit Notes',NULL,'purchases/debit-notes','_self','purchases.debit_notes',4,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:47','2025-11-29 19:13:00'),
(156,143,'Supplier Contracts','','purchases/contracts','_self','purchases.view',5,1,0,0,'','',NULL,'','','2025-11-01 17:46:47','2025-12-02 19:36:11'),
(157,143,'Reports',NULL,'purchases/reports','_self','purchases.reports',6,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:46:47','2025-11-29 19:13:00'),
(161,11,'FAQs',NULL,'crm/faqs','_self','crm.view',2,0,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-01 17:57:10','2025-11-11 11:15:46'),
(162,NULL,'QUICK LINKS','','','_self','dashboard.view',300,1,1,0,'','',NULL,'','','2025-11-01 18:11:31','2025-11-11 11:15:46'),
(164,68,'Time Off',NULL,'hr/timeoff','_self','hr.view',50,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:34','2025-11-30 00:54:34'),
(165,164,'My Time Off',NULL,'hr/timeoff/my','_self','hr.view',1,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:34','2025-11-30 01:00:47'),
(166,164,'All Requests',NULL,'hr/timeoff/all','_self','hr.view',2,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:34','2025-11-30 01:00:47'),
(167,164,'Approve Requests',NULL,'hr/timeoff/approve','_self','hr.view',3,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:34','2025-11-30 01:00:47'),
(168,164,'Time Off Types',NULL,'hr/timeoff/types','_self','admin',4,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:34','2025-11-30 01:00:47'),
(169,164,'Accrual Rules',NULL,'hr/timeoff/accruals','_self','admin',5,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:34','2025-11-30 01:00:47'),
(170,68,'Timesheets',NULL,'hr/timesheets','_self','hr.view',51,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:34','2025-11-30 00:54:34'),
(171,170,'My Timesheet',NULL,'hr/timesheets/my','_self','hr.view',1,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:34','2025-11-30 01:00:47'),
(172,170,'All Timesheets',NULL,'hr/timesheets/all','_self','hr.view',2,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:34','2025-11-30 01:00:47'),
(173,170,'Approve Timesheets',NULL,'hr/timesheets/approve','_self','hr.view',3,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:34','2025-11-30 01:00:47'),
(174,170,'Timesheet Reports',NULL,'hr/timesheets/reports','_self','hr.view',4,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:34','2025-11-30 01:00:47'),
(180,86,'Lot/Serial Numbers','','inventory/lots','_self','inventory.lots',40,1,0,0,'SELECT COUNT(*) as count FROM lot_serial_numbers WHERE expiration_date IS NOT NULL AND expiration_date BETWEEN CURDATE() AND DATE_ADD(CURDATE(), INTERVAL 30 DAY) AND status = \'active\'','warning',5,'danger','','2025-11-03 19:25:34','2025-11-29 19:13:00'),
(181,180,'All Lots/Serials',NULL,'inventory/lots/all','_self','inventory.all_lotsserials',1,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:34','2025-11-29 19:15:36'),
(182,180,'Traceability',NULL,'inventory/lots/traceability','_self','inventory.traceability',2,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:34','2025-11-29 19:15:36'),
(183,180,'Expiration Dates',NULL,'inventory/lots/expiration','_self','inventory.expiration_dates',3,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:34','2025-11-29 19:15:36'),
(184,44,'Multi-Currency','','accounting/currency','_self','accounting.multicurrency',50,1,0,0,'','',NULL,'','','2025-11-03 19:25:34','2025-12-02 13:56:09'),
(185,184,'Currencies','','accounting/currency/list','_self','accounting.currencies',1,1,0,0,'','',NULL,'','','2025-11-03 19:25:34','2025-11-29 19:15:36'),
(186,184,'Exchange Rates','','accounting/currency/rates','_self','accounting.exchange_rates',2,1,0,0,'','',NULL,'','','2025-11-03 19:25:34','2025-11-29 19:15:36'),
(187,184,'Currency Gains/Losses','','accounting/currency/revaluation','_self','accounting.view',3,1,0,0,'','',NULL,'','','2025-11-03 19:25:34','2025-11-12 17:45:06'),
(188,32,'Audit Log','','audit-logs','_self','audit_log.view',2,1,0,0,'','',NULL,'','','2025-11-03 19:25:34','2025-11-30 13:42:36'),
(193,17,'Automation','','settings/automation','_self','settings.automation',30,1,0,0,'','',NULL,'','','2025-11-03 19:25:34','2025-11-29 19:13:00'),
(194,193,'Workflows','','settings/automation/workflows','_self','admin',5,0,0,0,'','',NULL,'','','2025-11-03 19:25:35','2025-11-16 21:19:23'),
(195,193,'Approval Rules','','settings/automation/approvals','_self','admin',1,0,0,0,'','',NULL,'','','2025-11-03 19:25:35','2025-11-16 21:20:03'),
(196,193,'Templates','','automation/email-templates','_self','admin',2,1,0,0,'','',NULL,'','','2025-11-03 19:25:35','2025-11-16 21:47:57'),
(197,193,'Scheduled Actions',NULL,'settings/automation/scheduled','_self','admin',4,0,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:35','2025-11-05 16:19:55'),
(198,241,'Projects','bi bi-kanban','projects','_self','projects.view',300,1,0,0,'SELECT COUNT(*) as count FROM projects WHERE status IN (\'active\', \'on_hold\')','',NULL,'','','2025-11-03 19:25:35','2025-11-11 14:34:18'),
(199,198,'Dashboard','','projects/dashboard','_self','projects.dashboard',1,1,0,0,'','',NULL,'','','2025-11-03 19:25:35','2025-11-29 19:05:45'),
(201,198,'My Projects','','projects/?my_projects=1','_self','projects.my_projects',11,1,0,0,'','',NULL,'','','2025-11-03 19:25:35','2025-11-29 19:13:00'),
(202,198,'My Tasks','','projects/my-tasks','_self','projects.my_tasks',20,1,0,0,'','',NULL,'','','2025-11-03 19:25:35','2025-11-29 19:13:00'),
(203,198,'Gantt Chart','','projects/gantt','_self','projects.gantt',30,0,0,0,'','',NULL,'','','2025-11-03 19:25:35','2025-11-29 19:26:50'),
(204,198,'Time Tracking','','projects/time','_self','projects.time_tracking',40,0,0,0,'','',NULL,'','','2025-11-03 19:25:35','2025-11-29 19:26:50'),
(205,198,'Resource Planning','','projects/resources','_self','projects.resource_planning',50,0,0,0,'','',NULL,'','','2025-11-03 19:25:35','2025-11-29 19:26:50'),
(206,198,'Project Profitability','','projects/profitability','_self','projects.profitability',60,0,0,0,'','',NULL,'','','2025-11-03 19:25:35','2025-11-29 19:26:50'),
(207,241,'Files','bi bi-file-earmark-text','/files','_self','files.manage',100,1,0,0,'','',NULL,'','','2025-11-03 19:25:35','2025-11-21 21:48:10'),
(208,207,'All Files','','/files','_self','file_manager.all_files',10,1,0,0,'SELECT COUNT(*) FROM files WHERE 1=1','',NULL,'','','2025-11-03 19:25:35','2025-11-29 19:13:00'),
(209,207,'My Files','','/files?context=user','_self','file_manager.my_files',11,1,0,0,'SELECT COUNT(*) FROM files WHERE uploaded_by = {user_id}','',NULL,'','','2025-11-03 19:25:35','2025-11-29 19:13:00'),
(210,207,'Shared With Me','','files/shared','_self','file_manager.shared',12,1,0,0,'SELECT COUNT(DISTINCT f.id) FROM files f \r\n                 INNER JOIN file_shares fs ON f.id = fs.file_id \r\n                 WHERE (fs.shared_with_user_id = {user_id} OR fs.shared_with_role_id = {role_id})\r\n                 AND (fs.expires_at IS NULL OR fs.expires_at > NOW())\r\n                 AND f.uploaded_by != {user_id}','',NULL,'','','2025-11-03 19:25:35','2025-11-29 19:13:00'),
(213,241,'Reports','bi bi-clipboard-data','reports/custom','_self','reports.view',400,1,0,0,'SELECT COUNT(*) FROM custom_reports WHERE created_by = {user_id}','',NULL,'','','2025-11-03 19:25:35','2025-11-11 14:33:34'),
(214,213,'Report Builder',NULL,'reports/custom/builder','_self','custom_reports.builder',1,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:35','2025-11-29 19:05:45'),
(215,213,'My Reports',NULL,'reports/custom/my','_self','custom_reports.my',2,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:35','2025-11-29 19:05:45'),
(216,213,'Shared Reports',NULL,'reports/custom/shared','_self','custom_reports.shared',3,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:35','2025-11-29 19:05:45'),
(217,213,'Scheduled Reports',NULL,'reports/custom/scheduled','_self','custom_reports.scheduled',4,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:35','2025-11-29 19:05:45'),
(218,3,'Email Marketing','','email-marketing','_self','marketing.view',40,1,0,0,'','',NULL,'','','2025-11-03 19:25:35','2025-11-15 19:18:10'),
(219,218,'Dashboard',NULL,'email-marketing/dashboard','_self','marketing.view',1,0,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:35','2025-11-11 11:15:46'),
(220,218,'Campaigns',NULL,'email-marketing/campaigns','_self','marketing.view',10,0,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:35','2025-11-11 11:15:46'),
(221,218,'Email Templates',NULL,'email-marketing/templates','_self','marketing.view',20,0,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:35','2025-11-11 11:15:46'),
(222,218,'Mailing Lists',NULL,'email-marketing/lists','_self','marketing.view',30,0,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:35','2025-11-11 11:15:46'),
(223,218,'Automation',NULL,'email-marketing/automation','_self','marketing.view',40,0,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:35','2025-11-11 11:15:46'),
(224,218,'Analytics',NULL,'email-marketing/analytics','_self','marketing.view',50,0,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:35','2025-11-11 11:15:46'),
(225,241,'Helpdesk','bi bi-headset','helpdesk','_self','help_desk.view',200,1,0,0,'SELECT COUNT(*) as count FROM crm_support_tickets WHERE status NOT IN (\'closed\', \'resolved\')','',NULL,'','','2025-11-03 19:25:35','2025-11-29 19:01:02'),
(226,225,'Dashboard',NULL,'helpdesk/dashboard','_self','help_desk.dashboard',1,1,0,0,'SELECT COUNT(*) as count FROM crm_support_tickets WHERE status NOT IN (\'closed\', \'resolved\')',NULL,NULL,NULL,NULL,'2025-11-03 19:25:35','2025-11-29 19:01:02'),
(227,225,'Tickets',NULL,'helpdesk/tickets','_self','help_desk.tickets',10,1,0,0,'SELECT COUNT(*) as count FROM crm_support_tickets WHERE status NOT IN (\'closed\', \'resolved\')','danger',2,'warning',NULL,'2025-11-03 19:25:35','2025-11-29 19:01:02'),
(228,225,'My Tickets',NULL,'helpdesk/my-tickets','_self','help_desk.myTickets',11,1,0,0,'SELECT COUNT(*) as count FROM crm_support_tickets WHERE created_by = {user_id} AND status NOT IN (\'closed\', \'resolved\')','danger',0,'danger',NULL,'2025-11-03 19:25:35','2025-11-29 19:01:02'),
(229,225,'SLA Management',NULL,'helpdesk/sla','_self','help_desk.sla',20,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:35','2025-11-29 19:01:02'),
(230,225,'Knowledge Base',NULL,'helpdesk/kb','_self','help_desk.knowledgeBase',30,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:35','2025-11-29 19:01:02'),
(231,225,'Live Chat',NULL,'helpdesk/chat','_self','help_desk.chat',40,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:35','2025-11-29 19:01:02'),
(232,225,'Reports',NULL,'helpdesk/reports','_self','help_desk.reports',50,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-03 19:25:35','2025-11-29 19:01:02'),
(234,NULL,'APP GRID',NULL,NULL,'_self','admin',999,1,1,0,NULL,NULL,NULL,NULL,'Container for app grid shortcuts','2025-11-03 21:45:59','2025-11-08 15:05:40'),
(235,234,'DASHBOARD','bi bi-speedometer2','dashboard','_self','dashboard.view',1,1,0,1,'','',NULL,'','Quick access to dashboard','2025-11-03 21:45:59','2025-11-18 18:40:34'),
(236,234,'CALENDAR','bi bi-calendar4','calendar','_self','calendar.view',2,1,0,1,NULL,NULL,NULL,NULL,'Quick access to calendar','2025-11-03 21:45:59','2025-11-11 11:15:46'),
(237,234,'EMPLOYEES','bi bi-people','employees/directory','_self','employees.directory',3,1,0,1,'','',NULL,'','Quick access to customers','2025-11-03 21:45:59','2025-11-28 22:18:52'),
(238,234,'SALES','bi bi-cart','salesorders','_self','sales.view',200,0,0,1,'','',NULL,'','Quick access to sales orders','2025-11-03 21:45:59','2025-11-18 18:40:41'),
(239,234,'PRODUCTS','bi bi-box-seam','products','_self','inventory.view',100,0,0,1,'SELECT COUNT(DISTINCT p.id) as count FROM products p LEFT JOIN inventory_levels il ON p.id = il.product_id WHERE COALESCE(il.quantity, 0) <= COALESCE(p.reorder_level, 0) AND p.reorder_level > 0','danger',3,'danger','Quick access to products','2025-11-03 21:45:59','2025-11-18 18:40:40'),
(240,234,'SETTINGS','bi bi-sliders','settings','_self','settings.view',300,0,0,1,'','',NULL,'','Quick access to settings','2025-11-03 21:45:59','2025-11-18 18:40:42'),
(241,NULL,'TOOLS','','','_self',NULL,200,1,1,0,'','',NULL,'','','2025-11-03 23:09:44','2025-11-11 12:43:15'),
(250,18,'Positions','','hr/positions','_self','positions.view',4,1,0,0,'','',NULL,'','','2025-11-08 15:00:54','2025-11-11 13:13:12'),
(251,61,'A/P Aging Detail',NULL,'accounting/reports/ap-aging-detail','_self','accounting.ap_aging_detail',7,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-09 13:34:09','2025-11-29 19:15:36'),
(252,61,'A/R Aging Detail',NULL,'accounting/reports/ar-aging-detail','_self','accounting.ar_aging_detail',8,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-09 13:34:09','2025-11-29 19:15:36'),
(253,61,'Cash Flow Statement','','accounting/reports/cash-flow-statement','_self','accounting.cash_flow_statement',4,1,0,0,'','',NULL,'','','2025-11-09 13:34:09','2025-11-29 19:15:36'),
(254,61,'Payment Terms List',NULL,'accounting/reports/payment-terms-list','_self','accounting.payment_terms_list',10,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-09 13:34:09','2025-11-29 19:15:36'),
(255,281,'PHPmyadmin','','/phpmyadmin','_self','admin',30,1,0,0,'','',NULL,'','Admin access to PHPmyadmin','2025-11-11 13:25:37','2025-12-02 13:44:42'),
(257,86,'Visual Audits','','/camera-audit','_self','inventory.view',100,1,0,0,'','',NULL,'','Visual inventory audit logs with camera imagery','2025-11-13 18:23:41','2025-12-02 13:44:42'),
(259,18,'User Groups','','settings/user-groups','_self','settings.user_groups',10,1,0,0,'','',NULL,'','','2025-11-14 13:14:30','2025-11-29 19:13:00'),
(264,274,'Vendor Payments','','/accounting/vendor-payments','_self','accounting.vendor_payments',30,1,0,0,'','',NULL,'','','2025-11-15 18:53:41','2025-12-02 13:44:42'),
(265,44,'Tax Management','','#','_self','accounting.view',80,1,0,0,'','',NULL,'','','2025-11-15 18:53:41','2025-12-02 13:44:42'),
(266,265,'Tax Jurisdictions','','/tax/jurisdictions','_self','tax_jurisdictions.view',1,1,0,0,'','',NULL,'','','2025-11-15 18:53:41','2025-11-15 19:20:47'),
(267,265,'Tax Payments','','/tax/payments','_self','tax_payments.view',2,1,0,0,'','',NULL,'','','2025-11-15 18:53:41','2025-11-15 19:20:58'),
(268,265,'Tax Reports','','/tax/reports/liability','_self','tax_reports.view',3,1,0,0,'','',NULL,'','','2025-11-15 18:53:41','2025-11-15 19:21:09'),
(269,145,'1099 Contractors','','/suppliers?filter=1099','_self','1099_contractors.view',15,1,0,0,'','',NULL,'','','2025-11-15 18:53:41','2025-11-15 18:55:44'),
(270,145,'Suppliers','','suppliers','_self','purchases.view',10,1,0,0,'','',NULL,'','','2025-11-15 18:56:26','2025-12-02 13:44:42'),
(272,274,'Customer Payments','','/accounting/customer-payments','_self','accounting.customer_payments.view',10,1,0,0,'','',NULL,'','','2025-11-15 19:51:04','2025-11-15 19:57:01'),
(274,44,'Payments','','','_self','accounting.view',70,1,0,0,'','',NULL,'','','2025-11-15 19:56:44','2025-12-02 13:44:42'),
(276,44,'Recurring Transactions','','/recurring','_self','accounting.view',75,1,0,0,'','',NULL,'','','2025-11-15 21:52:32','2025-12-02 13:44:42'),
(277,35,'Action Menu Editor','','settings/action-menus','_self','settings.action_menus',1,1,0,0,'','',NULL,'','','2025-11-16 20:47:28','2025-11-29 19:13:00'),
(278,40,'NDA Templates','','settings/nda-templates','_self','settings.nda_templates',1,1,0,0,'','',NULL,'','','2025-11-16 21:54:23','2025-11-29 19:13:00'),
(279,3,'NDAs','','ndas','_self','ndas.view',70,1,0,0,'','',NULL,'','','2025-11-16 22:28:51','2025-11-28 22:27:00'),
(280,281,'System Backup','','backup','_self','admin',40,1,0,0,'','',NULL,'','','2025-11-17 11:21:31','2025-12-02 13:44:42'),
(281,17,'Administrative','','','_self','admin',0,1,0,0,'','',NULL,'','','2025-11-17 11:23:09','2025-12-02 13:44:42'),
(282,225,'Documentation','','documentation','_self','help_desk.view',5,1,0,0,'','',NULL,'','','2025-11-17 14:24:20','2025-12-02 13:44:42'),
(283,281,'Document Mgmt','','#','_self','admin',10,1,0,0,'','',NULL,'','Cloud document storage and collaborative editing via Nextcloud','2025-11-18 01:03:28','2025-12-02 13:44:42'),
(301,193,'AI Testing','','ai-test','_self','admin',0,1,0,0,'','',NULL,'','','2025-11-19 12:52:34','2025-12-02 13:44:42'),
(303,2,'Forecaster','bi bi-graph-up-arrow','','_self','forecasting.view',22,1,0,0,'','',NULL,'','Daily forecasting and assumptions management','2025-11-19 17:30:35','2025-11-20 03:03:23'),
(304,303,'Daily Update','bi bi-1-square','assumptions','_self','forecasting.update_daily',2,1,0,0,'','',NULL,'','Quick daily updates for key assumptions','2025-11-19 17:30:35','2025-11-20 03:08:49'),
(305,303,'Variance Report','','assumptions/variance','_self','forecasting.view_actuals',10,1,0,0,'','',NULL,'','Compare forecast vs actual performance','2025-11-19 17:30:35','2025-11-20 03:11:34'),
(306,303,'Assumption Sets','bi bi-2-square','assumptions/sets','_self','forecasting.manage_assumptions',3,1,0,0,'','',NULL,'','Manage multiple assumption scenarios','2025-11-19 17:30:35','2025-11-20 03:09:17'),
(307,303,'Advanced Tools','','','_self','',98,1,1,0,'','',NULL,'','','2025-11-19 17:30:35','2025-11-20 03:11:56'),
(308,303,'Scenario Modeler','','forecaster','_self','forecasting.view',99,1,0,0,'','',NULL,'','Advanced scenario modeling with financing','2025-11-19 17:30:35','2025-11-20 03:13:02'),
(309,303,'Product Configs','bi bi-3-square','product-forecast','_self','forecasting.manage_products',4,1,0,0,'','',NULL,'','Configure product-level forecasts with capacity constraints','2025-11-19 18:02:33','2025-11-20 13:03:51'),
(310,303,'Generate Projections','bi bi-4-square','product-forecast/generate','_self','forecasting.generate_projections',5,1,0,0,'','',NULL,'','Run projection engine for all configured products','2025-11-19 18:02:33','2025-11-20 03:10:05'),
(311,303,'Pro Forma Stmts','bi bi-5-square','product-forecast/proforma','_self','product_forecast.proforma',6,1,0,0,'','',NULL,'','View consolidated financial statements','2025-11-19 18:02:33','2025-11-29 19:13:00'),
(312,303,'Compare Scenarios','','product-forecast/compare','_self','product_forecast.compare',9,1,0,0,'','',NULL,'','Side-by-side scenario comparison','2025-11-19 18:02:33','2025-11-29 19:13:00'),
(313,303,'Sensitivity Analysis','','product-forecast/sensitivity','_self','product_forecast.sensitivity',8,1,0,0,'','',NULL,'','Interactive what-if scenario analysis','2025-11-19 18:57:32','2025-11-29 19:13:00'),
(314,303,'Variance Tracking','bi bi-6-square','/product-forecast/variance','_self','manufacturing.view',7,1,0,0,'','',NULL,'','','2025-11-19 19:05:49','2025-12-02 13:44:42'),
(315,303,'Command Center','','/product-forecast/command-center','_self','manufacturing.view',1,1,0,0,'','',NULL,'','','2025-11-19 19:29:24','2025-12-02 13:44:42'),
(316,303,'Getting Started','','/product-forecast/getting-started','_self','manufacturing.view',0,1,0,0,'','',NULL,'','Learn the forecasting workflow','2025-11-19 19:57:51','2025-12-02 13:44:42'),
(317,207,'Company Files','bi bi-people','/files?context=company','_self','customers.documents',15,1,0,0,'SELECT COUNT(*) FROM files WHERE entity_type = \'customer\'','',NULL,'','','2025-11-21 14:40:15','2025-11-24 19:17:29'),
(319,207,'Accounting Files','bi bi-calculator','/files?context=accounting','_self','accounting.view',14,1,0,0,'SELECT COUNT(*) FROM files WHERE entity_type = \'accounting\'','',NULL,'','','2025-11-21 14:40:15','2025-11-21 17:11:02'),
(320,207,'Project Files','bi bi-kanban','/files?context=project','_self','projects.view',77,1,0,0,'SELECT COUNT(*) FROM files WHERE entity_type = \'project\'','',NULL,'','','2025-11-21 14:40:15','2025-11-21 19:07:54'),
(321,207,'HR Documents','bi bi-people','/files?context=hr','_self','hr.view',65,1,0,0,'SELECT COUNT(*) FROM files WHERE entity_type = \'hr\'',NULL,NULL,NULL,NULL,'2025-11-21 17:05:14','2025-11-29 01:04:03'),
(322,207,'Inventory Documents','bi bi-box-seam','/files?context=inventory','_self','inventory.view',70,1,0,0,'SELECT COUNT(*) FROM files WHERE entity_type = \'inventory\'',NULL,NULL,NULL,NULL,'2025-11-21 17:05:14','2025-11-29 01:04:03'),
(323,207,'Manufacturing Documents','bi bi-gear','/files?context=manufacturing','_self','manufacturing.view',75,1,0,0,'SELECT COUNT(*) FROM files WHERE entity_type = \'manufacturing\'',NULL,NULL,NULL,NULL,'2025-11-21 17:05:14','2025-11-29 01:04:03'),
(324,207,'Purchases Documents','bi bi-cart','/files?context=purchases','_self','purchases.view',80,1,0,0,'SELECT COUNT(*) FROM files WHERE entity_type = \'purchases\'',NULL,NULL,NULL,NULL,'2025-11-21 17:05:14','2025-11-29 01:04:03'),
(325,207,'Sales Documents','bi bi-cart-check','/files?context=sales','_self','sales.view',85,1,0,0,'SELECT COUNT(*) FROM files WHERE entity_type = \'sales\'',NULL,NULL,NULL,NULL,'2025-11-21 17:05:14','2025-11-29 01:04:03'),
(326,129,'Agreements','bi bi-2-square','agreements','_self','sales.create',2,1,0,0,'','',NULL,'','','2025-11-24 14:53:27','2025-11-25 23:44:54'),
(327,281,'System Scripts','','admin/system-scripts','_self','admin.system_scripts',250,1,0,0,'','',NULL,'','','2025-11-24 19:14:40','2025-11-25 12:55:37'),
(328,44,'Dashboard','','accounting','_self','',0,1,0,0,'','',NULL,'','','2025-11-24 19:27:52','2025-11-24 19:27:52'),
(330,NULL,'Email','bi-envelope','/email','_self','email.view',2,1,0,0,'SELECT COUNT(*) FROM emails e INNER JOIN email_folder_map efm ON e.id = efm.email_id INNER JOIN email_folders f ON efm.folder_id = f.id WHERE e.user_id = {user_id} AND e.is_read = 0 AND f.folder_type = \'inbox\'','primary',NULL,'','','2025-11-26 15:55:28','2025-12-04 16:08:20'),
(331,330,'Inbox','bi-inbox','/email','_self','email.view',1,1,0,0,'SELECT COUNT(DISTINCT e.id) FROM emails e INNER JOIN email_folder_map efm ON e.id = efm.email_id INNER JOIN email_folders f ON efm.folder_id = f.id WHERE e.user_id = {user_id} AND f.folder_type = \'inbox\' AND e.is_read = 0','primary',10,'warning',NULL,'2025-11-26 16:10:07','2025-12-04 16:08:20'),
(334,330,'Starred','bi-star','/email/folder/starred','_self','email.view',3,1,0,0,'SELECT COUNT(*) FROM emails WHERE user_id = {user_id} AND is_starred = 1','warning',NULL,'','','2025-11-26 16:10:07','2025-12-04 16:08:20'),
(335,330,'Compose','bi-pencil-square','/email/compose','_self','email.view',2,1,0,0,'','',NULL,'','','2025-11-26 16:10:07','2025-12-02 13:44:42'),
(339,330,'Sent','bi bi-send','/email/folder/sent','_self','email.view',2,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-27 13:24:34','2025-12-02 13:44:42'),
(340,330,'Drafts','bi bi-file-earmark','/email/folder/drafts','_self','email.view',3,1,0,0,'SELECT COUNT(DISTINCT e.id) FROM emails e INNER JOIN email_folder_map efm ON e.id = efm.email_id INNER JOIN email_folders f ON efm.folder_id = f.id WHERE e.user_id = {user_id} AND f.folder_type = \'drafts\'','info',NULL,NULL,NULL,'2025-11-27 13:24:34','2025-12-04 16:08:20'),
(341,330,'Archive','bi bi-archive','/email/folder/archive','_self','email.view',4,1,0,0,NULL,NULL,NULL,NULL,NULL,'2025-11-27 13:24:34','2025-12-02 13:44:42'),
(342,330,'Trash','bi bi-trash','/email/folder/trash','_self','email.view',10,1,0,0,'SELECT COUNT(DISTINCT e.id) FROM emails e INNER JOIN email_folder_map efm ON e.id = efm.email_id INNER JOIN email_folders f ON efm.folder_id = f.id WHERE e.user_id = {user_id} AND f.folder_type = \'trash\'','secondary',NULL,'','','2025-11-27 13:24:34','2025-12-04 16:08:20'),
(343,330,'Spam','bi bi-exclamation-triangle','/email/folder/spam','_self','email.view',6,1,0,0,'SELECT COUNT(DISTINCT e.id) FROM emails e INNER JOIN email_folder_map efm ON e.id = efm.email_id INNER JOIN email_folders f ON efm.folder_id = f.id WHERE e.user_id = {user_id} AND f.folder_type = \'spam\' AND e.is_read = 0','danger',0,'danger',NULL,'2025-11-27 13:24:34','2025-12-04 16:08:20'),
(347,32,'Access Management','','/security/roles','_self','roles.view',1,1,0,0,'','',NULL,'','','2025-11-30 13:38:35','2025-11-30 13:42:13'),
(348,207,'CRM Documents','bi bi-briefcase','/files?context=activity','_self','customers.view',62,1,0,0,'SELECT COUNT(*) FROM files WHERE entity_type = \'activity\'','',NULL,'','','2025-12-02 02:47:48','2025-12-02 13:44:42'),
(349,241,'Diagrams','fas fa-draw-polygon','/diagrams','_self','diagrams.view',95,1,0,0,'','',NULL,'','','2025-12-02 03:48:20','2025-12-02 13:12:58'),
(352,362,'Equipment Research','','/manufacturing/equipment-research','_self','equipment.view',85,1,0,0,'','',NULL,'','','2025-12-05 14:40:59','2025-12-05 22:31:05'),
(353,352,'Dashboard','','/manufacturing/equipment-research','_self','equipment.view',1,1,0,0,'','',NULL,'','','2025-12-05 14:40:59','2025-12-05 22:31:58'),
(354,352,'Vendors','','/manufacturing/equipment-research/vendors','_self','equipment.view',2,1,0,0,'','',NULL,'','','2025-12-05 14:40:59','2025-12-05 22:32:06'),
(355,352,'Market Research','','/manufacturing/equipment-research/market-research','_self','equipment.view',3,1,0,0,'','',NULL,'','','2025-12-05 14:40:59','2025-12-05 22:32:18'),
(356,352,'ROI Analysis','','/manufacturing/equipment-research/roi-analyses','_self','equipment.view',4,1,0,0,'','',NULL,'','','2025-12-05 14:40:59','2025-12-05 22:32:22'),
(357,352,'Benchmarking','','/manufacturing/equipment-research/benchmarking','_self','equipment.view',5,1,0,0,'','',NULL,'','','2025-12-05 14:40:59','2025-12-05 22:32:26'),
(358,352,'Technology Trends','','/manufacturing/equipment-research/technology-trends','_self','equipment.view',6,1,0,0,'','',NULL,'','','2025-12-05 14:40:59','2025-12-05 22:32:29'),
(359,352,'Competitor Intel','','/manufacturing/equipment-research/competitor-snapshots','_self','equipment.view',7,1,0,0,'','',NULL,'','','2025-12-05 14:40:59','2025-12-05 22:32:32'),
(360,303,'Profit Optimizer','','/manufacturing/profit-optimizer','_self','equipment.view',999,1,0,0,'','',NULL,'','','2025-12-05 14:40:59','2025-12-05 22:31:31'),
(362,NULL,'DEV','fas fa-code','#','_self','admin',999,1,0,0,'','',NULL,'','','2025-12-05 18:06:31','2025-12-05 22:31:43');
/*!40000 ALTER TABLE `menu_items` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `message_attachments`
--

DROP TABLE IF EXISTS `message_attachments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `message_attachments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `message_id` int(10) unsigned NOT NULL,
  `filename` varchar(255) NOT NULL,
  `original_filename` varchar(255) NOT NULL,
  `file_path` varchar(500) NOT NULL,
  `file_size` int(10) unsigned NOT NULL,
  `mime_type` varchar(100) NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_message_id` (`message_id`),
  CONSTRAINT `message_attachments_ibfk_1` FOREIGN KEY (`message_id`) REFERENCES `messages` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `message_attachments`
--

LOCK TABLES `message_attachments` WRITE;
/*!40000 ALTER TABLE `message_attachments` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `message_attachments` VALUES
(1,6,'691650a6c7230_1763070118.png','1984 Apple Macintosh 128k.png','/Users/rpmbbu/LocalPHPStorm/m1_erp_web/uploads/messaging/691650a6c7230_1763070118.png',13052,'image/png','2025-11-13 21:41:58','2025-11-13 21:41:58'),
(2,7,'691655cb26b0d_1763071435.png','fsociety.png','/Users/rpmbbu/LocalPHPStorm/m1_erp_web/uploads/messaging/691655cb26b0d_1763071435.png',36485,'image/png','2025-11-13 22:03:55','2025-11-13 22:03:55');
/*!40000 ALTER TABLE `message_attachments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `message_reactions`
--

DROP TABLE IF EXISTS `message_reactions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `message_reactions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `message_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `emoji` varchar(50) NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `message_user_emoji` (`message_id`,`user_id`,`emoji`),
  KEY `idx_message_id` (`message_id`),
  KEY `idx_user_id` (`user_id`),
  CONSTRAINT `message_reactions_ibfk_1` FOREIGN KEY (`message_id`) REFERENCES `messages` (`id`) ON DELETE CASCADE,
  CONSTRAINT `message_reactions_ibfk_2` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `message_reactions`
--

LOCK TABLES `message_reactions` WRITE;
/*!40000 ALTER TABLE `message_reactions` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `message_reactions` VALUES
(8,5,1,'❤️','2025-11-13 21:40:50','2025-11-13 21:40:50'),
(14,6,1,'🤜','2025-11-14 19:43:44','2025-11-14 19:43:44');
/*!40000 ALTER TABLE `message_reactions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `messages`
--

DROP TABLE IF EXISTS `messages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `messages` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `channel_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `parent_id` int(10) unsigned DEFAULT NULL COMMENT 'For threaded replies',
  `message` text NOT NULL,
  `is_edited` tinyint(4) DEFAULT 0,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `mentions` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Array of mentioned user IDs' CHECK (json_valid(`mentions`)),
  PRIMARY KEY (`id`),
  KEY `idx_channel_id` (`channel_id`),
  KEY `idx_user_id` (`user_id`),
  KEY `idx_parent_id` (`parent_id`),
  KEY `idx_created_at` (`created_at`),
  CONSTRAINT `messages_ibfk_1` FOREIGN KEY (`channel_id`) REFERENCES `channels` (`id`) ON DELETE CASCADE,
  CONSTRAINT `messages_ibfk_2` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE,
  CONSTRAINT `messages_ibfk_3` FOREIGN KEY (`parent_id`) REFERENCES `messages` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `messages`
--

LOCK TABLES `messages` WRITE;
/*!40000 ALTER TABLE `messages` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `messages` VALUES
(5,1,1,NULL,'Hey @admin does this work?',0,'2025-11-13 21:40:46','2025-11-13 21:40:46',NULL),
(6,1,1,NULL,'Shared a file: 1984 Apple Macintosh 128k.png',0,'2025-11-13 21:41:58','2025-11-13 21:41:58',NULL),
(7,1,1,NULL,'Shared a file: fsociety.png',0,'2025-11-13 22:03:55','2025-11-13 22:03:55',NULL);
/*!40000 ALTER TABLE `messages` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `mrp_requirements`
--

DROP TABLE IF EXISTS `mrp_requirements`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `mrp_requirements` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `product_id` int(10) unsigned NOT NULL,
  `total_required` decimal(15,3) NOT NULL DEFAULT 0.000,
  `on_hand` decimal(15,3) NOT NULL DEFAULT 0.000,
  `on_order` decimal(15,3) NOT NULL DEFAULT 0.000,
  `allocated` decimal(15,3) NOT NULL DEFAULT 0.000,
  `net_required` decimal(15,3) NOT NULL DEFAULT 0.000,
  `suggested_order_date` date DEFAULT NULL,
  `lead_time_days` int(11) DEFAULT 7,
  `created_at` datetime DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_product` (`product_id`),
  KEY `idx_net_required` (`net_required`),
  KEY `idx_created_at` (`created_at`),
  CONSTRAINT `mrp_requirements_ibfk_1` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mrp_requirements`
--

LOCK TABLES `mrp_requirements` WRITE;
/*!40000 ALTER TABLE `mrp_requirements` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `mrp_requirements` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `ncr_actions`
--

DROP TABLE IF EXISTS `ncr_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `ncr_actions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `ncr_id` int(10) unsigned NOT NULL,
  `action_type` enum('investigation','corrective','preventive','follow_up') NOT NULL,
  `description` text NOT NULL,
  `assigned_to` int(10) unsigned DEFAULT NULL,
  `due_date` date DEFAULT NULL,
  `status` enum('pending','in_progress','completed') DEFAULT 'pending',
  `completed_by` int(10) unsigned DEFAULT NULL,
  `completed_at` datetime DEFAULT NULL,
  `created_at` datetime DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_ncr` (`ncr_id`),
  KEY `idx_status` (`status`),
  KEY `assigned_to` (`assigned_to`),
  KEY `completed_by` (`completed_by`),
  CONSTRAINT `ncr_actions_ibfk_1` FOREIGN KEY (`ncr_id`) REFERENCES `non_conformance_reports` (`id`) ON DELETE CASCADE,
  CONSTRAINT `ncr_actions_ibfk_2` FOREIGN KEY (`assigned_to`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `ncr_actions_ibfk_3` FOREIGN KEY (`completed_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ncr_actions`
--

LOCK TABLES `ncr_actions` WRITE;
/*!40000 ALTER TABLE `ncr_actions` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `ncr_actions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `nda_signatures`
--

DROP TABLE IF EXISTS `nda_signatures`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `nda_signatures` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `nda_id` int(11) NOT NULL,
  `signer_role` enum('customer','company_representative') NOT NULL DEFAULT 'customer',
  `signer_name` varchar(255) NOT NULL,
  `signer_email` varchar(255) NOT NULL,
  `signer_title` varchar(255) DEFAULT NULL,
  `signer_company` varchar(255) DEFAULT NULL,
  `signature_data` text DEFAULT NULL,
  `signed_at` datetime NOT NULL,
  `ip_address` varchar(45) DEFAULT NULL,
  `user_agent` text DEFAULT NULL,
  `acceptance_text` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_nda_id` (`nda_id`),
  KEY `idx_signed_at` (`signed_at`),
  KEY `idx_signer_role` (`signer_role`),
  CONSTRAINT `nda_signatures_ibfk_1` FOREIGN KEY (`nda_id`) REFERENCES `ndas` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `nda_signatures`
--

LOCK TABLES `nda_signatures` WRITE;
/*!40000 ALTER TABLE `nda_signatures` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `nda_signatures` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `nda_templates`
--

DROP TABLE IF EXISTS `nda_templates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `nda_templates` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `template_name` varchar(255) NOT NULL,
  `template_type` enum('mutual','unilateral','custom') NOT NULL,
  `template_content` longtext NOT NULL,
  `merge_fields` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`merge_fields`)),
  `is_active` tinyint(1) DEFAULT 1,
  `is_default` tinyint(1) DEFAULT 0,
  `created_by` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_is_active` (`is_active`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `nda_templates`
--

LOCK TABLES `nda_templates` WRITE;
/*!40000 ALTER TABLE `nda_templates` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `nda_templates` VALUES
(1,'Mavrix 1 Unilateral NDA','unilateral','\n<div style=\"text-align: center; margin-bottom: 30px;\">\n    <h1 style=\"font-size: 18pt; margin: 20px 0;\">NON-DISCLOSURE AGREEMENT</h1>\n</div>\n\n<p>This Agreement is dated as of the date of the last signature below (the \"Effective Date\") by and between <strong>{your_company_name}</strong>, having its principal legal mailing address at: <strong>{your_company_address}</strong></p>\n\n<p style=\"text-align: center; margin: 20px 0;\"><strong>AND</strong></p>\n\n<p>(individual/Company/LLC): <strong>{company_name}</strong>, with its principal address at: <strong>{contact_address}</strong>.</p>\n\n<p>The parties wish to assure the confidentiality of certain trade secrets, information, and other materials, which have been or may be disclosed by one party (\"Discloser\") to the other party (\"Recipient\") during the review and consideration of a possible business relationship (the \"Purpose\").</p>\n\n<h2 style=\"margin-top: 30px;\">1. NO JOINT VENTURE</h2>\n<p>The parties hereto agree that this Agreement is for the purposes of protecting confidential information disclosed in furtherance of the Purpose only. This Agreement is not a joint venture or other such business arrangement; and any agreement between the parties as to a joint business activities will be, or already is, set forth in other written agreements.</p>\n\n<h2 style=\"margin-top: 30px;\">2. NO LICENSES</h2>\n<p>No license to Recipient under any trademark, patent, copyright or any other intellectual property right is either granted or implied by the disclosure of Confidential Information to Recipient. None of the Confidential Information which may be disclosed to Recipient shall constitute any representation, warranty, assurance, guarantee or inducement by either party to the other of any kind including but not limited to representations, warranties, assurances, guarantees or inducements with respect to the non-infringement of trademarks, patents, copyrights, or any other intellectual property rights, or other rights of either party or of third parties.</p>\n\n<h2 style=\"margin-top: 30px;\">3. CONFIDENTIAL INFORMATION</h2>\n<p>\"Confidential Information\" shall mean any information, field technical guide, technical data, or know-how including, but not limited to, that which relates to a party\'s hardware, software, screens, specifications, designs, plans, site plans, site drawings, general drawings, data, prototypes, discoveries, research, developments, processes, procedures, and/or technical information and materials, in oral, demonstrative, written, electronic, graphic, or machine-readable form and any analyses, compilations, studies, or documents prepared by Recipient, its representatives, or employees, which summarize any such information of Discloser.</p>\n\n<p>This Agreement also encompasses 3rd Party members of contributions/information to {your_company_name}, {your_company_name} perspective DBA\'s and subordinate companies in design, engineering diagrams, unique business model, network(s) whether marked or unmarked confidential and any other originating content, as proprietary, and not to be disclosed outside of the recipient party or used in any form.</p>\n\n<h2 style=\"margin-top: 30px;\">4. EXCEPTIONS</h2>\n<p><strong>a)</strong> Notwithstanding anything to the contrary contained herein, Recipient shall have no obligation with respect to any Confidential Information of Discloser which, as evidenced by tangible records kept in the ordinary course of business: (i) is or becomes generally known to companies engaged in the same or similar business as the parties hereto on a nonconfidential basis, through no wrongful act of Recipient; (ii) is lawfully obtained by Recipient from a third party without any obligation by Recipient to maintain the information proprietary or confidential; (iii) is known by Recipient prior to disclosure hereunder without any obligation to keep it confidential and such information was not disclosed by Discloser under this Agreement; (iv) is independently developed by Recipient without reference to or use of the other\'s Confidential Information; or (v) is the subject of a written agreement whereby Discloser consents to the disclosure of such Confidential Information.</p>\n\n<p><strong>b)</strong> If Recipient or any of its representatives shall be under a legal obligation in any administrative or judicial circumstance to disclose any Confidential Information, Recipient shall give Discloser prompt notice thereof so that Discloser may seek a protective order and/or waive the duty of non-disclosure; provided that in the absence of such order or waiver, if Recipient or any such representative shall, in the opinion of its counsel, stand liable for contempt or be likely to suffer other censure or penalty for failure to disclose, disclosure pursuant to the order of such tribunal may be made Recipient or its representatives without liability hereunder.</p>\n\n<h2 style=\"margin-top: 30px; page-break-before: always;\">5. PROTECTION OF CONFIDENTIAL INFORMATION</h2>\n<p><strong>a)</strong> Recipient agrees not to disclose the Confidential Information of Discloser or to use Confidential Information for any purpose other than the Purpose specified in paragraph 1 above. Recipient agrees to protect the Confidential Information of Discloser from disclosure to anyone other than its directors, officers, and employees who have a business-related need to have access to such Confidential Information in connection with the purposes of this Agreement, and who have entered into the agreements with such party pursuant to which they are bound by the confidentiality provisions of this Agreement to the same extent that Recipient is bound. Recipient further agrees promptly to advise Discloser in writing of any unauthorized misappropriation, disclosure or use by any person of the Confidential Information of Discloser which may come to its attention and to take all steps reasonably requested by Discloser to limit, stop or otherwise remedy such misappropriation, disclosure or use.</p>\n\n<p><strong>b)</strong> Recipient will only make as many copies of Confidential Information as are necessary for its use under the terms hereof, and each such copy will be marked with the same proprietary notices that appear on the originals.</p>\n\n<p><strong>c)</strong> The rights and obligations of the parties under this Agreement expire <strong>FIVE (5) years</strong> after the Effective Date, provided that with respect to Confidential Information that constitutes a trade secret under applicable law, such rights and obligations will survive such expiration until, if ever, such Confidential Information loses its trade secret protection other than due to an act or omission of Recipient or its representatives.</p>\n\n<p><strong>d)</strong> The rights and obligations of the parties under this Agreement as to the confidence obligations of sensitive classified and unclassified information pertaining to national security shall continue forever and shall survive the expiration and/or termination of this Agreement.</p>\n\n<p><strong>e)</strong> The Parties acknowledge and agree that any Controlled Unclassified Information (CUI) exchanged or accessed in the course of this Agreement, whether oral, written, or electronic, shall be handled, protected, and secured in accordance with all applicable laws, regulations, and policies governing the handling of CUI. The receiving party agrees to protect the CUI from unauthorized access, disclosure, or use, and will implement appropriate and reasonable security measures in compliance with federal, state, and local laws, as well as any specific requirements outlined by the Disclosing Party. The receiving Party agrees that CUI disclosed under this Agreement shall be used solely for the purpose of the business relationship between the Parties and will not be used for any unauthorized or non-business-related purposes. Upon termination of this Agreement, or upon request of the Disclosing Party, the Receiving Party shall promptly return or take reasonable measures to destroy all copies of CUI, as instructed by the Disclosing Party.</p>\n\n<p><strong>f)</strong> In the event of a suspected or actual breach of CUI, the Receiving Party shall immediately notify the Disclosing Party and cooperate in any investigation or remedial actions necessary to address and mitigate any such breach. The obligations of this section shall survive the termination of this Agreement for as long as the information qualifies under CUI applicable laws and regulations.</p>\n\n<p><strong>g)</strong> Protection of confidentiality and other sensitive data under this Agreement must also adhere to the standard as provided by Department of Defense directive Operations Security (OPSEC) Program § 5205.02-M.</p>\n\n<p style=\"margin-left: 30px; font-style: italic;\">The Department of Defense policy, outlined in Department of Defense Manual (\"DoDM\") §5205.02-M mandates the establishment and maintenance of Operational Security (\"OPSEC\") programs to ensure national security-related missions and functions are protected. OPSEC is a risk management strategy designed to safeguard sensitive information and prevent unauthorized access or exploitation of information, communications, and data in the interest of the National Security of the United States.</p>\n\n<p style=\"margin-left: 30px; font-style: italic;\">Examples of OPSEC include avoiding sharing specific dates, locations, or casualty details to third parties, social media, or to anyone privately or in the public sphere; maintaining caution with regard to discussing unit specifics and capabilities. OPSEC involves a systematic approach that includes identifying critical information by evaluating potential adversaries and their capabilities to exploit vulnerabilities; vulnerability analysis by identifying weaknesses in security measures that could be exploited by adversaries; risk assessment by evaluating the likelihood and potential impact of vulnerabilities being exploited; and adherence to countermeasures by implementing measures to mitigate identified risks and protecting critical information.</p>\n\n<p style=\"margin-left: 30px; font-style: italic;\"><strong>OPSEC is a continuing process that requires ongoing assessment and adaptation to evolving threats and vulnerabilities. OPSEC also applies to unclassified information that could reveal sensitive details or information.</strong></p>\n\n<h2 style=\"margin-top: 30px; page-break-before: always;\">6. GENERAL PROVISIONS</h2>\n\n<p><strong>a. SEVERABILITY.</strong> If any term, provision, covenant or condition of this Agreement, or the application thereof to any person, place or circumstance, shall be held to be invalid, unenforceable or void, the remainder of this Agreement and such term, provision, covenant or condition as applied to other persons, places and circumstances shall remain in full force and effect.</p>\n\n<p><strong>b. RIGHTS CUMULATIVE.</strong> The rights and remedies provided by this Agreement are cumulative, and the exercise of any right or remedy by either party hereto (or by its successor), whether pursuant to this Agreement, to any other agreement, or to law, shall not preclude or waive its right to exercise any or all other rights and remedies.</p>\n\n<p>No failure or neglect of either party hereto in any instance to exercise any right, power, or privilege hereunder or under law shall constitute a waiver of any other right, power, or privilege or of the same right, power or privilege in any other instance. All waivers by either party hereto must be contained in a written instrument signed by the party to be charged and, in the case of the Company, by an officer of the Company or other person duly authorized by the Company.</p>\n\n<p><strong>c. REMEDY FOR BREACH.</strong> The parties hereto agree that, in the event of breach or threatened breach of any covenants of this Agreement, the damage or imminent damage to the other Party shall be inestimable, and that therefore any remedy at law or in damages shall be inadequate. Accordingly, the parties hereto agree that the aggrieved party shall be entitled to injunctive relief against the other Party in the event of any breach or threatened breach of this Agreement, in addition to any other relief (including damages) available to the Company under this Agreement or under law.</p>\n\n<p><strong>d. CHOICE OF LAW.</strong> Client consents to personal jurisdiction of the State and Federal courts located in the State of Florida, County of Manatee or closest thereof in connection with any controversy relating in any way to this Agreement or to any transaction. Client agrees to hold harmless {your_company_name} in any litigation, arbitration or any other choses or claim of action the Client may commence against Lender, Investor, Funding Source or Guarantor, or any other subcontracted party of the {your_company_name}.</p>\n\n<p>It is further agreed that any dispute, whether taking place in an international jurisdiction or in the USA shall be governed under the Laws of the United States of America and under the State and Federal courts named above.</p>\n\n<p><strong>e. NOTICES.</strong> Any notice, request, consent or approval required or permitted to be given under this Agreement or pursuant to law shall be sufficient if in writing, and if and when sent by certified or registered mail with postage prepaid and/or electronic mail, to {your_company_name}\'s address (as noted above) or to the Company\'s principal office, as the case may be.</p>\n\n<p><strong>f. MISCELLANEOUS.</strong></p>\n<p style=\"margin-left: 30px;\">(a) Should this Agreement be transmitted by facsimile, email, or electronic signature, the document shall be considered as an original document, and if signed and transmitted separately each section becoming both legally binding and enforceable.</p>\n<p style=\"margin-left: 30px;\">(b) This Agreement may only be modified or changed in writing and signed by both parties.</p>\n<p style=\"margin-left: 30px;\">(c) If any person or provision of this Agreement or its application is held to be invalid, illegal, or unenforceable in any respect, the validity, legality, or enforceability of any of the other provisions and applications therein shall not in any way be affected or impaired.</p>\n','{\"your_company_name\": \"Your company name\", \"your_company_address\": \"Your company address\", \"company_name\": \"Customer company name\", \"contact_name\": \"Customer contact name\", \"contact_title\": \"Customer contact title\", \"contact_email\": \"Customer contact email\", \"contact_address\": \"Customer company address\", \"effective_date\": \"Agreement effective date\", \"term_months\": \"Term duration in months\"}',1,1,NULL,'2025-11-16 11:44:05','2025-11-16 22:17:58');
/*!40000 ALTER TABLE `nda_templates` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `ndas`
--

DROP TABLE IF EXISTS `ndas`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `ndas` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `opportunity_id` int(10) unsigned NOT NULL,
  `nda_number` varchar(50) NOT NULL,
  `nda_type` enum('mutual','unilateral','custom') DEFAULT 'unilateral',
  `template_id` int(11) DEFAULT NULL,
  `company_name` varchar(255) NOT NULL,
  `contact_name` varchar(255) NOT NULL,
  `contact_email` varchar(255) NOT NULL,
  `contact_title` varchar(255) DEFAULT NULL,
  `effective_date` date NOT NULL,
  `expiration_date` date DEFAULT NULL,
  `term_months` int(11) DEFAULT 12,
  `document_content` longtext DEFAULT NULL,
  `document_path` varchar(500) DEFAULT NULL,
  `public_token` varchar(64) NOT NULL,
  `token_expires_at` datetime DEFAULT NULL,
  `status` enum('draft','sent','viewed','partially_signed','signed','fully_executed','declined','expired') DEFAULT 'draft',
  `sent_at` datetime DEFAULT NULL,
  `viewed_at` datetime DEFAULT NULL,
  `signed_at` datetime DEFAULT NULL,
  `company_signed_at` datetime DEFAULT NULL,
  `company_signed_by` int(11) DEFAULT NULL,
  `declined_at` datetime DEFAULT NULL,
  `declined_reason` text DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `created_by` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `nda_number` (`nda_number`),
  UNIQUE KEY `public_token` (`public_token`),
  KEY `idx_opportunity_id` (`opportunity_id`),
  KEY `idx_status` (`status`),
  KEY `idx_public_token` (`public_token`),
  KEY `idx_created_at` (`created_at`),
  KEY `idx_company_signed_by` (`company_signed_by`),
  CONSTRAINT `fk_ndas_opportunity` FOREIGN KEY (`opportunity_id`) REFERENCES `crm_opportunities` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ndas`
--

LOCK TABLES `ndas` WRITE;
/*!40000 ALTER TABLE `ndas` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `ndas` VALUES
(15,24,'NDA-2025-00001','unilateral',1,'AeroVironment','','aerovironment@example.com','CEO','2025-11-27','2026-11-27',12,'\n<div style=\"text-align: center; margin-bottom: 30px;\">\n    <h1 style=\"font-size: 18pt; margin: 20px 0;\">NON-DISCLOSURE AGREEMENT</h1>\n</div>\n\n<p>This Agreement is dated as of the date of the last signature below (the \"Effective Date\") by and between <strong>Your Company Name</strong>, having its principal legal mailing address at: <strong>Your Company Address</strong></p>\n\n<p style=\"text-align: center; margin: 20px 0;\"><strong>AND</strong></p>\n\n<p>(individual/Company/LLC): <strong>{company_name}</strong>, with its principal address at: <strong>{contact_address}</strong>.</p>\n\n<p>The parties wish to assure the confidentiality of certain trade secrets, information, and other materials, which have been or may be disclosed by one party (\"Discloser\") to the other party (\"Recipient\") during the review and consideration of a possible business relationship (the \"Purpose\").</p>\n\n<h2 style=\"margin-top: 30px;\">1. NO JOINT VENTURE</h2>\n<p>The parties hereto agree that this Agreement is for the purposes of protecting confidential information disclosed in furtherance of the Purpose only. This Agreement is not a joint venture or other such business arrangement; and any agreement between the parties as to a joint business activities will be, or already is, set forth in other written agreements.</p>\n\n<h2 style=\"margin-top: 30px;\">2. NO LICENSES</h2>\n<p>No license to Recipient under any trademark, patent, copyright or any other intellectual property right is either granted or implied by the disclosure of Confidential Information to Recipient. None of the Confidential Information which may be disclosed to Recipient shall constitute any representation, warranty, assurance, guarantee or inducement by either party to the other of any kind including but not limited to representations, warranties, assurances, guarantees or inducements with respect to the non-infringement of trademarks, patents, copyrights, or any other intellectual property rights, or other rights of either party or of third parties.</p>\n\n<h2 style=\"margin-top: 30px;\">3. CONFIDENTIAL INFORMATION</h2>\n<p>\"Confidential Information\" shall mean any information, field technical guide, technical data, or know-how including, but not limited to, that which relates to a party\'s hardware, software, screens, specifications, designs, plans, site plans, site drawings, general drawings, data, prototypes, discoveries, research, developments, processes, procedures, and/or technical information and materials, in oral, demonstrative, written, electronic, graphic, or machine-readable form and any analyses, compilations, studies, or documents prepared by Recipient, its representatives, or employees, which summarize any such information of Discloser.</p>\n\n<p>This Agreement also encompasses 3rd Party members of contributions/information to Your Company Name, Your Company Name perspective DBA\'s and subordinate companies in design, engineering diagrams, unique business model, network(s) whether marked or unmarked confidential and any other originating content, as proprietary, and not to be disclosed outside of the recipient party or used in any form.</p>\n\n<h2 style=\"margin-top: 30px;\">4. EXCEPTIONS</h2>\n<p><strong>a)</strong> Notwithstanding anything to the contrary contained herein, Recipient shall have no obligation with respect to any Confidential Information of Discloser which, as evidenced by tangible records kept in the ordinary course of business: (i) is or becomes generally known to companies engaged in the same or similar business as the parties hereto on a nonconfidential basis, through no wrongful act of Recipient; (ii) is lawfully obtained by Recipient from a third party without any obligation by Recipient to maintain the information proprietary or confidential; (iii) is known by Recipient prior to disclosure hereunder without any obligation to keep it confidential and such information was not disclosed by Discloser under this Agreement; (iv) is independently developed by Recipient without reference to or use of the other\'s Confidential Information; or (v) is the subject of a written agreement whereby Discloser consents to the disclosure of such Confidential Information.</p>\n\n<p><strong>b)</strong> If Recipient or any of its representatives shall be under a legal obligation in any administrative or judicial circumstance to disclose any Confidential Information, Recipient shall give Discloser prompt notice thereof so that Discloser may seek a protective order and/or waive the duty of non-disclosure; provided that in the absence of such order or waiver, if Recipient or any such representative shall, in the opinion of its counsel, stand liable for contempt or be likely to suffer other censure or penalty for failure to disclose, disclosure pursuant to the order of such tribunal may be made Recipient or its representatives without liability hereunder.</p>\n\n<h2 style=\"margin-top: 30px; page-break-before: always;\">5. PROTECTION OF CONFIDENTIAL INFORMATION</h2>\n<p><strong>a)</strong> Recipient agrees not to disclose the Confidential Information of Discloser or to use Confidential Information for any purpose other than the Purpose specified in paragraph 1 above. Recipient agrees to protect the Confidential Information of Discloser from disclosure to anyone other than its directors, officers, and employees who have a business-related need to have access to such Confidential Information in connection with the purposes of this Agreement, and who have entered into the agreements with such party pursuant to which they are bound by the confidentiality provisions of this Agreement to the same extent that Recipient is bound. Recipient further agrees promptly to advise Discloser in writing of any unauthorized misappropriation, disclosure or use by any person of the Confidential Information of Discloser which may come to its attention and to take all steps reasonably requested by Discloser to limit, stop or otherwise remedy such misappropriation, disclosure or use.</p>\n\n<p><strong>b)</strong> Recipient will only make as many copies of Confidential Information as are necessary for its use under the terms hereof, and each such copy will be marked with the same proprietary notices that appear on the originals.</p>\n\n<p><strong>c)</strong> The rights and obligations of the parties under this Agreement expire <strong>FIVE (5) years</strong> after the Effective Date, provided that with respect to Confidential Information that constitutes a trade secret under applicable law, such rights and obligations will survive such expiration until, if ever, such Confidential Information loses its trade secret protection other than due to an act or omission of Recipient or its representatives.</p>\n\n<p><strong>d)</strong> The rights and obligations of the parties under this Agreement as to the confidence obligations of sensitive classified and unclassified information pertaining to national security shall continue forever and shall survive the expiration and/or termination of this Agreement.</p>\n\n<p><strong>e)</strong> The Parties acknowledge and agree that any Controlled Unclassified Information (CUI) exchanged or accessed in the course of this Agreement, whether oral, written, or electronic, shall be handled, protected, and secured in accordance with all applicable laws, regulations, and policies governing the handling of CUI. The receiving party agrees to protect the CUI from unauthorized access, disclosure, or use, and will implement appropriate and reasonable security measures in compliance with federal, state, and local laws, as well as any specific requirements outlined by the Disclosing Party. The receiving Party agrees that CUI disclosed under this Agreement shall be used solely for the purpose of the business relationship between the Parties and will not be used for any unauthorized or non-business-related purposes. Upon termination of this Agreement, or upon request of the Disclosing Party, the Receiving Party shall promptly return or take reasonable measures to destroy all copies of CUI, as instructed by the Disclosing Party.</p>\n\n<p><strong>f)</strong> In the event of a suspected or actual breach of CUI, the Receiving Party shall immediately notify the Disclosing Party and cooperate in any investigation or remedial actions necessary to address and mitigate any such breach. The obligations of this section shall survive the termination of this Agreement for as long as the information qualifies under CUI applicable laws and regulations.</p>\n\n<p><strong>g)</strong> Protection of confidentiality and other sensitive data under this Agreement must also adhere to the standard as provided by Department of Defense directive Operations Security (OPSEC) Program § 5205.02-M.</p>\n\n<p style=\"margin-left: 30px; font-style: italic;\">The Department of Defense policy, outlined in Department of Defense Manual (\"DoDM\") §5205.02-M mandates the establishment and maintenance of Operational Security (\"OPSEC\") programs to ensure national security-related missions and functions are protected. OPSEC is a risk management strategy designed to safeguard sensitive information and prevent unauthorized access or exploitation of information, communications, and data in the interest of the National Security of the United States.</p>\n\n<p style=\"margin-left: 30px; font-style: italic;\">Examples of OPSEC include avoiding sharing specific dates, locations, or casualty details to third parties, social media, or to anyone privately or in the public sphere; maintaining caution with regard to discussing unit specifics and capabilities. OPSEC involves a systematic approach that includes identifying critical information by evaluating potential adversaries and their capabilities to exploit vulnerabilities; vulnerability analysis by identifying weaknesses in security measures that could be exploited by adversaries; risk assessment by evaluating the likelihood and potential impact of vulnerabilities being exploited; and adherence to countermeasures by implementing measures to mitigate identified risks and protecting critical information.</p>\n\n<p style=\"margin-left: 30px; font-style: italic;\"><strong>OPSEC is a continuing process that requires ongoing assessment and adaptation to evolving threats and vulnerabilities. OPSEC also applies to unclassified information that could reveal sensitive details or information.</strong></p>\n\n<h2 style=\"margin-top: 30px; page-break-before: always;\">6. GENERAL PROVISIONS</h2>\n\n<p><strong>a. SEVERABILITY.</strong> If any term, provision, covenant or condition of this Agreement, or the application thereof to any person, place or circumstance, shall be held to be invalid, unenforceable or void, the remainder of this Agreement and such term, provision, covenant or condition as applied to other persons, places and circumstances shall remain in full force and effect.</p>\n\n<p><strong>b. RIGHTS CUMULATIVE.</strong> The rights and remedies provided by this Agreement are cumulative, and the exercise of any right or remedy by either party hereto (or by its successor), whether pursuant to this Agreement, to any other agreement, or to law, shall not preclude or waive its right to exercise any or all other rights and remedies.</p>\n\n<p>No failure or neglect of either party hereto in any instance to exercise any right, power, or privilege hereunder or under law shall constitute a waiver of any other right, power, or privilege or of the same right, power or privilege in any other instance. All waivers by either party hereto must be contained in a written instrument signed by the party to be charged and, in the case of the Company, by an officer of the Company or other person duly authorized by the Company.</p>\n\n<p><strong>c. REMEDY FOR BREACH.</strong> The parties hereto agree that, in the event of breach or threatened breach of any covenants of this Agreement, the damage or imminent damage to the other Party shall be inestimable, and that therefore any remedy at law or in damages shall be inadequate. Accordingly, the parties hereto agree that the aggrieved party shall be entitled to injunctive relief against the other Party in the event of any breach or threatened breach of this Agreement, in addition to any other relief (including damages) available to the Company under this Agreement or under law.</p>\n\n<p><strong>d. CHOICE OF LAW.</strong> Client consents to personal jurisdiction of the State and Federal courts located in the State of Florida, County of Manatee or closest thereof in connection with any controversy relating in any way to this Agreement or to any transaction. Client agrees to hold harmless Your Company Name in any litigation, arbitration or any other choses or claim of action the Client may commence against Lender, Investor, Funding Source or Guarantor, or any other subcontracted party of the Your Company Name.</p>\n\n<p>It is further agreed that any dispute, whether taking place in an international jurisdiction or in the USA shall be governed under the Laws of the United States of America and under the State and Federal courts named above.</p>\n\n<p><strong>e. NOTICES.</strong> Any notice, request, consent or approval required or permitted to be given under this Agreement or pursuant to law shall be sufficient if in writing, and if and when sent by certified or registered mail with postage prepaid and/or electronic mail, to Your Company Name\'s address (as noted above) or to the Company\'s principal office, as the case may be.</p>\n\n<p><strong>f. MISCELLANEOUS.</strong></p>\n<p style=\"margin-left: 30px;\">(a) Should this Agreement be transmitted by facsimile, email, or electronic signature, the document shall be considered as an original document, and if signed and transmitted separately each section becoming both legally binding and enforceable.</p>\n<p style=\"margin-left: 30px;\">(b) This Agreement may only be modified or changed in writing and signed by both parties.</p>\n<p style=\"margin-left: 30px;\">(c) If any person or provision of this Agreement or its application is held to be invalid, illegal, or unenforceable in any respect, the validity, legality, or enforceability of any of the other provisions and applications therein shall not in any way be affected or impaired.</p>\n',NULL,'2242bdbb432e3a906edd9951e9c48c7c4e1523fdb6c7b8165d36191f64d428b2','2026-02-25 11:11:25','sent','2025-11-27 11:11:33',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-11-27 16:11:25','2025-11-27 16:11:33'),
(16,24,'NDA-2025-00002','unilateral',1,'AeroVironment','','aerovironment@example.com','CEO','2025-12-02','2026-12-02',12,'\n<div style=\"text-align: center; margin-bottom: 30px;\">\n    <h1 style=\"font-size: 18pt; margin: 20px 0;\">NON-DISCLOSURE AGREEMENT</h1>\n</div>\n\n<p>This Agreement is dated as of the date of the last signature below (the \"Effective Date\") by and between <strong>Your Company Name</strong>, having its principal legal mailing address at: <strong>Your Company Address</strong></p>\n\n<p style=\"text-align: center; margin: 20px 0;\"><strong>AND</strong></p>\n\n<p>(individual/Company/LLC): <strong>{company_name}</strong>, with its principal address at: <strong>{contact_address}</strong>.</p>\n\n<p>The parties wish to assure the confidentiality of certain trade secrets, information, and other materials, which have been or may be disclosed by one party (\"Discloser\") to the other party (\"Recipient\") during the review and consideration of a possible business relationship (the \"Purpose\").</p>\n\n<h2 style=\"margin-top: 30px;\">1. NO JOINT VENTURE</h2>\n<p>The parties hereto agree that this Agreement is for the purposes of protecting confidential information disclosed in furtherance of the Purpose only. This Agreement is not a joint venture or other such business arrangement; and any agreement between the parties as to a joint business activities will be, or already is, set forth in other written agreements.</p>\n\n<h2 style=\"margin-top: 30px;\">2. NO LICENSES</h2>\n<p>No license to Recipient under any trademark, patent, copyright or any other intellectual property right is either granted or implied by the disclosure of Confidential Information to Recipient. None of the Confidential Information which may be disclosed to Recipient shall constitute any representation, warranty, assurance, guarantee or inducement by either party to the other of any kind including but not limited to representations, warranties, assurances, guarantees or inducements with respect to the non-infringement of trademarks, patents, copyrights, or any other intellectual property rights, or other rights of either party or of third parties.</p>\n\n<h2 style=\"margin-top: 30px;\">3. CONFIDENTIAL INFORMATION</h2>\n<p>\"Confidential Information\" shall mean any information, field technical guide, technical data, or know-how including, but not limited to, that which relates to a party\'s hardware, software, screens, specifications, designs, plans, site plans, site drawings, general drawings, data, prototypes, discoveries, research, developments, processes, procedures, and/or technical information and materials, in oral, demonstrative, written, electronic, graphic, or machine-readable form and any analyses, compilations, studies, or documents prepared by Recipient, its representatives, or employees, which summarize any such information of Discloser.</p>\n\n<p>This Agreement also encompasses 3rd Party members of contributions/information to Your Company Name, Your Company Name perspective DBA\'s and subordinate companies in design, engineering diagrams, unique business model, network(s) whether marked or unmarked confidential and any other originating content, as proprietary, and not to be disclosed outside of the recipient party or used in any form.</p>\n\n<h2 style=\"margin-top: 30px;\">4. EXCEPTIONS</h2>\n<p><strong>a)</strong> Notwithstanding anything to the contrary contained herein, Recipient shall have no obligation with respect to any Confidential Information of Discloser which, as evidenced by tangible records kept in the ordinary course of business: (i) is or becomes generally known to companies engaged in the same or similar business as the parties hereto on a nonconfidential basis, through no wrongful act of Recipient; (ii) is lawfully obtained by Recipient from a third party without any obligation by Recipient to maintain the information proprietary or confidential; (iii) is known by Recipient prior to disclosure hereunder without any obligation to keep it confidential and such information was not disclosed by Discloser under this Agreement; (iv) is independently developed by Recipient without reference to or use of the other\'s Confidential Information; or (v) is the subject of a written agreement whereby Discloser consents to the disclosure of such Confidential Information.</p>\n\n<p><strong>b)</strong> If Recipient or any of its representatives shall be under a legal obligation in any administrative or judicial circumstance to disclose any Confidential Information, Recipient shall give Discloser prompt notice thereof so that Discloser may seek a protective order and/or waive the duty of non-disclosure; provided that in the absence of such order or waiver, if Recipient or any such representative shall, in the opinion of its counsel, stand liable for contempt or be likely to suffer other censure or penalty for failure to disclose, disclosure pursuant to the order of such tribunal may be made Recipient or its representatives without liability hereunder.</p>\n\n<h2 style=\"margin-top: 30px; page-break-before: always;\">5. PROTECTION OF CONFIDENTIAL INFORMATION</h2>\n<p><strong>a)</strong> Recipient agrees not to disclose the Confidential Information of Discloser or to use Confidential Information for any purpose other than the Purpose specified in paragraph 1 above. Recipient agrees to protect the Confidential Information of Discloser from disclosure to anyone other than its directors, officers, and employees who have a business-related need to have access to such Confidential Information in connection with the purposes of this Agreement, and who have entered into the agreements with such party pursuant to which they are bound by the confidentiality provisions of this Agreement to the same extent that Recipient is bound. Recipient further agrees promptly to advise Discloser in writing of any unauthorized misappropriation, disclosure or use by any person of the Confidential Information of Discloser which may come to its attention and to take all steps reasonably requested by Discloser to limit, stop or otherwise remedy such misappropriation, disclosure or use.</p>\n\n<p><strong>b)</strong> Recipient will only make as many copies of Confidential Information as are necessary for its use under the terms hereof, and each such copy will be marked with the same proprietary notices that appear on the originals.</p>\n\n<p><strong>c)</strong> The rights and obligations of the parties under this Agreement expire <strong>FIVE (5) years</strong> after the Effective Date, provided that with respect to Confidential Information that constitutes a trade secret under applicable law, such rights and obligations will survive such expiration until, if ever, such Confidential Information loses its trade secret protection other than due to an act or omission of Recipient or its representatives.</p>\n\n<p><strong>d)</strong> The rights and obligations of the parties under this Agreement as to the confidence obligations of sensitive classified and unclassified information pertaining to national security shall continue forever and shall survive the expiration and/or termination of this Agreement.</p>\n\n<p><strong>e)</strong> The Parties acknowledge and agree that any Controlled Unclassified Information (CUI) exchanged or accessed in the course of this Agreement, whether oral, written, or electronic, shall be handled, protected, and secured in accordance with all applicable laws, regulations, and policies governing the handling of CUI. The receiving party agrees to protect the CUI from unauthorized access, disclosure, or use, and will implement appropriate and reasonable security measures in compliance with federal, state, and local laws, as well as any specific requirements outlined by the Disclosing Party. The receiving Party agrees that CUI disclosed under this Agreement shall be used solely for the purpose of the business relationship between the Parties and will not be used for any unauthorized or non-business-related purposes. Upon termination of this Agreement, or upon request of the Disclosing Party, the Receiving Party shall promptly return or take reasonable measures to destroy all copies of CUI, as instructed by the Disclosing Party.</p>\n\n<p><strong>f)</strong> In the event of a suspected or actual breach of CUI, the Receiving Party shall immediately notify the Disclosing Party and cooperate in any investigation or remedial actions necessary to address and mitigate any such breach. The obligations of this section shall survive the termination of this Agreement for as long as the information qualifies under CUI applicable laws and regulations.</p>\n\n<p><strong>g)</strong> Protection of confidentiality and other sensitive data under this Agreement must also adhere to the standard as provided by Department of Defense directive Operations Security (OPSEC) Program § 5205.02-M.</p>\n\n<p style=\"margin-left: 30px; font-style: italic;\">The Department of Defense policy, outlined in Department of Defense Manual (\"DoDM\") §5205.02-M mandates the establishment and maintenance of Operational Security (\"OPSEC\") programs to ensure national security-related missions and functions are protected. OPSEC is a risk management strategy designed to safeguard sensitive information and prevent unauthorized access or exploitation of information, communications, and data in the interest of the National Security of the United States.</p>\n\n<p style=\"margin-left: 30px; font-style: italic;\">Examples of OPSEC include avoiding sharing specific dates, locations, or casualty details to third parties, social media, or to anyone privately or in the public sphere; maintaining caution with regard to discussing unit specifics and capabilities. OPSEC involves a systematic approach that includes identifying critical information by evaluating potential adversaries and their capabilities to exploit vulnerabilities; vulnerability analysis by identifying weaknesses in security measures that could be exploited by adversaries; risk assessment by evaluating the likelihood and potential impact of vulnerabilities being exploited; and adherence to countermeasures by implementing measures to mitigate identified risks and protecting critical information.</p>\n\n<p style=\"margin-left: 30px; font-style: italic;\"><strong>OPSEC is a continuing process that requires ongoing assessment and adaptation to evolving threats and vulnerabilities. OPSEC also applies to unclassified information that could reveal sensitive details or information.</strong></p>\n\n<h2 style=\"margin-top: 30px; page-break-before: always;\">6. GENERAL PROVISIONS</h2>\n\n<p><strong>a. SEVERABILITY.</strong> If any term, provision, covenant or condition of this Agreement, or the application thereof to any person, place or circumstance, shall be held to be invalid, unenforceable or void, the remainder of this Agreement and such term, provision, covenant or condition as applied to other persons, places and circumstances shall remain in full force and effect.</p>\n\n<p><strong>b. RIGHTS CUMULATIVE.</strong> The rights and remedies provided by this Agreement are cumulative, and the exercise of any right or remedy by either party hereto (or by its successor), whether pursuant to this Agreement, to any other agreement, or to law, shall not preclude or waive its right to exercise any or all other rights and remedies.</p>\n\n<p>No failure or neglect of either party hereto in any instance to exercise any right, power, or privilege hereunder or under law shall constitute a waiver of any other right, power, or privilege or of the same right, power or privilege in any other instance. All waivers by either party hereto must be contained in a written instrument signed by the party to be charged and, in the case of the Company, by an officer of the Company or other person duly authorized by the Company.</p>\n\n<p><strong>c. REMEDY FOR BREACH.</strong> The parties hereto agree that, in the event of breach or threatened breach of any covenants of this Agreement, the damage or imminent damage to the other Party shall be inestimable, and that therefore any remedy at law or in damages shall be inadequate. Accordingly, the parties hereto agree that the aggrieved party shall be entitled to injunctive relief against the other Party in the event of any breach or threatened breach of this Agreement, in addition to any other relief (including damages) available to the Company under this Agreement or under law.</p>\n\n<p><strong>d. CHOICE OF LAW.</strong> Client consents to personal jurisdiction of the State and Federal courts located in the State of Florida, County of Manatee or closest thereof in connection with any controversy relating in any way to this Agreement or to any transaction. Client agrees to hold harmless Your Company Name in any litigation, arbitration or any other choses or claim of action the Client may commence against Lender, Investor, Funding Source or Guarantor, or any other subcontracted party of the Your Company Name.</p>\n\n<p>It is further agreed that any dispute, whether taking place in an international jurisdiction or in the USA shall be governed under the Laws of the United States of America and under the State and Federal courts named above.</p>\n\n<p><strong>e. NOTICES.</strong> Any notice, request, consent or approval required or permitted to be given under this Agreement or pursuant to law shall be sufficient if in writing, and if and when sent by certified or registered mail with postage prepaid and/or electronic mail, to Your Company Name\'s address (as noted above) or to the Company\'s principal office, as the case may be.</p>\n\n<p><strong>f. MISCELLANEOUS.</strong></p>\n<p style=\"margin-left: 30px;\">(a) Should this Agreement be transmitted by facsimile, email, or electronic signature, the document shall be considered as an original document, and if signed and transmitted separately each section becoming both legally binding and enforceable.</p>\n<p style=\"margin-left: 30px;\">(b) This Agreement may only be modified or changed in writing and signed by both parties.</p>\n<p style=\"margin-left: 30px;\">(c) If any person or provision of this Agreement or its application is held to be invalid, illegal, or unenforceable in any respect, the validity, legality, or enforceability of any of the other provisions and applications therein shall not in any way be affected or impaired.</p>\n',NULL,'1d7a74a4fd432b14c42f21b35e79395aa642fd177715a8959214976055305427','2026-03-02 16:53:17','sent','2025-12-02 16:54:05',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-12-02 21:53:17','2025-12-02 21:54:05'),
(17,24,'NDA-2025-00003','unilateral',1,'AeroVironment','','aerovironment@example.com','CEO','2025-12-04','2026-12-04',12,'\n<div style=\"text-align: center; margin-bottom: 30px;\">\n    <h1 style=\"font-size: 18pt; margin: 20px 0;\">NON-DISCLOSURE AGREEMENT</h1>\n</div>\n\n<p>This Agreement is dated as of the date of the last signature below (the \"Effective Date\") by and between <strong>Your Company Name</strong>, having its principal legal mailing address at: <strong>Your Company Address</strong></p>\n\n<p style=\"text-align: center; margin: 20px 0;\"><strong>AND</strong></p>\n\n<p>(individual/Company/LLC): <strong>{company_name}</strong>, with its principal address at: <strong>{contact_address}</strong>.</p>\n\n<p>The parties wish to assure the confidentiality of certain trade secrets, information, and other materials, which have been or may be disclosed by one party (\"Discloser\") to the other party (\"Recipient\") during the review and consideration of a possible business relationship (the \"Purpose\").</p>\n\n<h2 style=\"margin-top: 30px;\">1. NO JOINT VENTURE</h2>\n<p>The parties hereto agree that this Agreement is for the purposes of protecting confidential information disclosed in furtherance of the Purpose only. This Agreement is not a joint venture or other such business arrangement; and any agreement between the parties as to a joint business activities will be, or already is, set forth in other written agreements.</p>\n\n<h2 style=\"margin-top: 30px;\">2. NO LICENSES</h2>\n<p>No license to Recipient under any trademark, patent, copyright or any other intellectual property right is either granted or implied by the disclosure of Confidential Information to Recipient. None of the Confidential Information which may be disclosed to Recipient shall constitute any representation, warranty, assurance, guarantee or inducement by either party to the other of any kind including but not limited to representations, warranties, assurances, guarantees or inducements with respect to the non-infringement of trademarks, patents, copyrights, or any other intellectual property rights, or other rights of either party or of third parties.</p>\n\n<h2 style=\"margin-top: 30px;\">3. CONFIDENTIAL INFORMATION</h2>\n<p>\"Confidential Information\" shall mean any information, field technical guide, technical data, or know-how including, but not limited to, that which relates to a party\'s hardware, software, screens, specifications, designs, plans, site plans, site drawings, general drawings, data, prototypes, discoveries, research, developments, processes, procedures, and/or technical information and materials, in oral, demonstrative, written, electronic, graphic, or machine-readable form and any analyses, compilations, studies, or documents prepared by Recipient, its representatives, or employees, which summarize any such information of Discloser.</p>\n\n<p>This Agreement also encompasses 3rd Party members of contributions/information to Your Company Name, Your Company Name perspective DBA\'s and subordinate companies in design, engineering diagrams, unique business model, network(s) whether marked or unmarked confidential and any other originating content, as proprietary, and not to be disclosed outside of the recipient party or used in any form.</p>\n\n<h2 style=\"margin-top: 30px;\">4. EXCEPTIONS</h2>\n<p><strong>a)</strong> Notwithstanding anything to the contrary contained herein, Recipient shall have no obligation with respect to any Confidential Information of Discloser which, as evidenced by tangible records kept in the ordinary course of business: (i) is or becomes generally known to companies engaged in the same or similar business as the parties hereto on a nonconfidential basis, through no wrongful act of Recipient; (ii) is lawfully obtained by Recipient from a third party without any obligation by Recipient to maintain the information proprietary or confidential; (iii) is known by Recipient prior to disclosure hereunder without any obligation to keep it confidential and such information was not disclosed by Discloser under this Agreement; (iv) is independently developed by Recipient without reference to or use of the other\'s Confidential Information; or (v) is the subject of a written agreement whereby Discloser consents to the disclosure of such Confidential Information.</p>\n\n<p><strong>b)</strong> If Recipient or any of its representatives shall be under a legal obligation in any administrative or judicial circumstance to disclose any Confidential Information, Recipient shall give Discloser prompt notice thereof so that Discloser may seek a protective order and/or waive the duty of non-disclosure; provided that in the absence of such order or waiver, if Recipient or any such representative shall, in the opinion of its counsel, stand liable for contempt or be likely to suffer other censure or penalty for failure to disclose, disclosure pursuant to the order of such tribunal may be made Recipient or its representatives without liability hereunder.</p>\n\n<h2 style=\"margin-top: 30px; page-break-before: always;\">5. PROTECTION OF CONFIDENTIAL INFORMATION</h2>\n<p><strong>a)</strong> Recipient agrees not to disclose the Confidential Information of Discloser or to use Confidential Information for any purpose other than the Purpose specified in paragraph 1 above. Recipient agrees to protect the Confidential Information of Discloser from disclosure to anyone other than its directors, officers, and employees who have a business-related need to have access to such Confidential Information in connection with the purposes of this Agreement, and who have entered into the agreements with such party pursuant to which they are bound by the confidentiality provisions of this Agreement to the same extent that Recipient is bound. Recipient further agrees promptly to advise Discloser in writing of any unauthorized misappropriation, disclosure or use by any person of the Confidential Information of Discloser which may come to its attention and to take all steps reasonably requested by Discloser to limit, stop or otherwise remedy such misappropriation, disclosure or use.</p>\n\n<p><strong>b)</strong> Recipient will only make as many copies of Confidential Information as are necessary for its use under the terms hereof, and each such copy will be marked with the same proprietary notices that appear on the originals.</p>\n\n<p><strong>c)</strong> The rights and obligations of the parties under this Agreement expire <strong>FIVE (5) years</strong> after the Effective Date, provided that with respect to Confidential Information that constitutes a trade secret under applicable law, such rights and obligations will survive such expiration until, if ever, such Confidential Information loses its trade secret protection other than due to an act or omission of Recipient or its representatives.</p>\n\n<p><strong>d)</strong> The rights and obligations of the parties under this Agreement as to the confidence obligations of sensitive classified and unclassified information pertaining to national security shall continue forever and shall survive the expiration and/or termination of this Agreement.</p>\n\n<p><strong>e)</strong> The Parties acknowledge and agree that any Controlled Unclassified Information (CUI) exchanged or accessed in the course of this Agreement, whether oral, written, or electronic, shall be handled, protected, and secured in accordance with all applicable laws, regulations, and policies governing the handling of CUI. The receiving party agrees to protect the CUI from unauthorized access, disclosure, or use, and will implement appropriate and reasonable security measures in compliance with federal, state, and local laws, as well as any specific requirements outlined by the Disclosing Party. The receiving Party agrees that CUI disclosed under this Agreement shall be used solely for the purpose of the business relationship between the Parties and will not be used for any unauthorized or non-business-related purposes. Upon termination of this Agreement, or upon request of the Disclosing Party, the Receiving Party shall promptly return or take reasonable measures to destroy all copies of CUI, as instructed by the Disclosing Party.</p>\n\n<p><strong>f)</strong> In the event of a suspected or actual breach of CUI, the Receiving Party shall immediately notify the Disclosing Party and cooperate in any investigation or remedial actions necessary to address and mitigate any such breach. The obligations of this section shall survive the termination of this Agreement for as long as the information qualifies under CUI applicable laws and regulations.</p>\n\n<p><strong>g)</strong> Protection of confidentiality and other sensitive data under this Agreement must also adhere to the standard as provided by Department of Defense directive Operations Security (OPSEC) Program § 5205.02-M.</p>\n\n<p style=\"margin-left: 30px; font-style: italic;\">The Department of Defense policy, outlined in Department of Defense Manual (\"DoDM\") §5205.02-M mandates the establishment and maintenance of Operational Security (\"OPSEC\") programs to ensure national security-related missions and functions are protected. OPSEC is a risk management strategy designed to safeguard sensitive information and prevent unauthorized access or exploitation of information, communications, and data in the interest of the National Security of the United States.</p>\n\n<p style=\"margin-left: 30px; font-style: italic;\">Examples of OPSEC include avoiding sharing specific dates, locations, or casualty details to third parties, social media, or to anyone privately or in the public sphere; maintaining caution with regard to discussing unit specifics and capabilities. OPSEC involves a systematic approach that includes identifying critical information by evaluating potential adversaries and their capabilities to exploit vulnerabilities; vulnerability analysis by identifying weaknesses in security measures that could be exploited by adversaries; risk assessment by evaluating the likelihood and potential impact of vulnerabilities being exploited; and adherence to countermeasures by implementing measures to mitigate identified risks and protecting critical information.</p>\n\n<p style=\"margin-left: 30px; font-style: italic;\"><strong>OPSEC is a continuing process that requires ongoing assessment and adaptation to evolving threats and vulnerabilities. OPSEC also applies to unclassified information that could reveal sensitive details or information.</strong></p>\n\n<h2 style=\"margin-top: 30px; page-break-before: always;\">6. GENERAL PROVISIONS</h2>\n\n<p><strong>a. SEVERABILITY.</strong> If any term, provision, covenant or condition of this Agreement, or the application thereof to any person, place or circumstance, shall be held to be invalid, unenforceable or void, the remainder of this Agreement and such term, provision, covenant or condition as applied to other persons, places and circumstances shall remain in full force and effect.</p>\n\n<p><strong>b. RIGHTS CUMULATIVE.</strong> The rights and remedies provided by this Agreement are cumulative, and the exercise of any right or remedy by either party hereto (or by its successor), whether pursuant to this Agreement, to any other agreement, or to law, shall not preclude or waive its right to exercise any or all other rights and remedies.</p>\n\n<p>No failure or neglect of either party hereto in any instance to exercise any right, power, or privilege hereunder or under law shall constitute a waiver of any other right, power, or privilege or of the same right, power or privilege in any other instance. All waivers by either party hereto must be contained in a written instrument signed by the party to be charged and, in the case of the Company, by an officer of the Company or other person duly authorized by the Company.</p>\n\n<p><strong>c. REMEDY FOR BREACH.</strong> The parties hereto agree that, in the event of breach or threatened breach of any covenants of this Agreement, the damage or imminent damage to the other Party shall be inestimable, and that therefore any remedy at law or in damages shall be inadequate. Accordingly, the parties hereto agree that the aggrieved party shall be entitled to injunctive relief against the other Party in the event of any breach or threatened breach of this Agreement, in addition to any other relief (including damages) available to the Company under this Agreement or under law.</p>\n\n<p><strong>d. CHOICE OF LAW.</strong> Client consents to personal jurisdiction of the State and Federal courts located in the State of Florida, County of Manatee or closest thereof in connection with any controversy relating in any way to this Agreement or to any transaction. Client agrees to hold harmless Your Company Name in any litigation, arbitration or any other choses or claim of action the Client may commence against Lender, Investor, Funding Source or Guarantor, or any other subcontracted party of the Your Company Name.</p>\n\n<p>It is further agreed that any dispute, whether taking place in an international jurisdiction or in the USA shall be governed under the Laws of the United States of America and under the State and Federal courts named above.</p>\n\n<p><strong>e. NOTICES.</strong> Any notice, request, consent or approval required or permitted to be given under this Agreement or pursuant to law shall be sufficient if in writing, and if and when sent by certified or registered mail with postage prepaid and/or electronic mail, to Your Company Name\'s address (as noted above) or to the Company\'s principal office, as the case may be.</p>\n\n<p><strong>f. MISCELLANEOUS.</strong></p>\n<p style=\"margin-left: 30px;\">(a) Should this Agreement be transmitted by facsimile, email, or electronic signature, the document shall be considered as an original document, and if signed and transmitted separately each section becoming both legally binding and enforceable.</p>\n<p style=\"margin-left: 30px;\">(b) This Agreement may only be modified or changed in writing and signed by both parties.</p>\n<p style=\"margin-left: 30px;\">(c) If any person or provision of this Agreement or its application is held to be invalid, illegal, or unenforceable in any respect, the validity, legality, or enforceability of any of the other provisions and applications therein shall not in any way be affected or impaired.</p>\n',NULL,'3cd04a36315cb36c2523552bee8ffe5a01d60b3432ff21db384be0f125a62008','2026-03-04 18:25:51','draft',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-12-04 23:25:51','2025-12-04 23:25:51');
/*!40000 ALTER TABLE `ndas` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `network_monitor_logs`
--

DROP TABLE IF EXISTS `network_monitor_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `network_monitor_logs` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `timestamp` datetime NOT NULL,
  `url` varchar(1000) NOT NULL,
  `host` varchar(255) NOT NULL,
  `port` int(11) DEFAULT 80,
  `method` varchar(10) DEFAULT 'GET',
  `context` varchar(255) DEFAULT '',
  `is_local` tinyint(1) DEFAULT 1,
  `status` enum('attempted','success','blocked','failed') DEFAULT 'attempted',
  `request_data` text DEFAULT NULL,
  `response_data` text DEFAULT NULL,
  `user_id` int(10) unsigned DEFAULT NULL,
  `ip_address` varchar(45) DEFAULT NULL,
  `user_agent` varchar(500) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_timestamp` (`timestamp`),
  KEY `idx_host` (`host`),
  KEY `idx_status` (`status`),
  KEY `idx_is_local` (`is_local`),
  KEY `idx_user_id` (`user_id`),
  CONSTRAINT `network_monitor_logs_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=40 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `network_monitor_logs`
--

LOCK TABLES `network_monitor_logs` WRITE;
/*!40000 ALTER TABLE `network_monitor_logs` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `network_monitor_logs` VALUES
(1,'2025-11-19 09:49:46','http://localhost:11434/api/chat','localhost',11434,'POST','AI Chat',1,'success','{\"model\":\"llama3.2:3b\",\"endpoint\":\"\\/chat\",\"payload_size\":18305}','{\"status\":\"success\",\"response_size\":3527,\"tokens\":661}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(2,'2025-11-19 09:50:16','http://localhost:11434/api/chat','localhost',11434,'POST','AI Chat',1,'success','{\"model\":\"llama3.2:3b\",\"endpoint\":\"\\/chat\",\"payload_size\":18276}','{\"status\":\"success\",\"response_size\":1102,\"tokens\":174}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(3,'2025-11-19 09:50:34','http://localhost:11434/api/chat','localhost',11434,'POST','AI Chat',1,'success','{\"model\":\"llama3.2:3b\",\"endpoint\":\"\\/chat\",\"payload_size\":18229}','{\"status\":\"success\",\"response_size\":1583,\"tokens\":305}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(4,'2025-11-19 10:43:07','http://localhost:11434/api/chat','localhost',11434,'POST','AI Chat',1,'success','{\"model\":\"llama3.2:3b\",\"endpoint\":\"\\/chat\",\"payload_size\":18229}','{\"status\":\"success\",\"response_size\":1220,\"tokens\":230}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(5,'2025-11-19 10:45:11','http://localhost:11434/api/chat','localhost',11434,'POST','AI Chat',1,'success','{\"model\":\"llama3.2:3b\",\"endpoint\":\"\\/chat\",\"payload_size\":18370}','{\"status\":\"success\",\"response_size\":1713,\"tokens\":354}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(6,'2025-11-19 10:47:12','http://localhost:11434/api/chat','localhost',11434,'POST','AI Chat',1,'success','{\"model\":\"llama3.2:3b\",\"endpoint\":\"\\/chat\",\"payload_size\":18370}','{\"status\":\"success\",\"response_size\":1371,\"tokens\":286}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(7,'2025-11-19 10:47:53','http://localhost:11434/api/chat','localhost',11434,'POST','AI Chat',1,'success','{\"model\":\"llama3.2:3b\",\"endpoint\":\"\\/chat\",\"payload_size\":18410}','{\"status\":\"success\",\"response_size\":2999,\"tokens\":590}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(8,'2025-11-19 10:49:15','http://localhost:11434/api/chat','localhost',11434,'POST','AI Chat',1,'success','{\"model\":\"llama3.2:3b\",\"endpoint\":\"\\/chat\",\"payload_size\":18410}','{\"status\":\"success\",\"response_size\":3383,\"tokens\":662}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(9,'2025-11-19 10:49:46','http://localhost:11434/api/chat','localhost',11434,'POST','AI Chat',1,'success','{\"model\":\"llama3.2:3b\",\"endpoint\":\"\\/chat\",\"payload_size\":18372}','{\"status\":\"success\",\"response_size\":1447,\"tokens\":271}',NULL,'unknown','unknown'),
(10,'2025-11-19 10:56:58','http://localhost:11434/api/chat','localhost',11434,'POST','AI Chat',1,'success','{\"model\":\"llama3.2:3b\",\"endpoint\":\"\\/chat\",\"payload_size\":145}','{\"status\":\"success\",\"response_size\":1351,\"tokens\":213}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(11,'2025-11-19 10:58:44','http://localhost:11434/api/chat','localhost',11434,'POST','AI Chat',1,'success','{\"model\":\"llama3.2:3b\",\"endpoint\":\"\\/chat\",\"payload_size\":18842}','{\"status\":\"success\",\"response_size\":1570,\"tokens\":315}',NULL,'unknown','unknown'),
(12,'2025-11-19 10:59:49','http://localhost:11434/api/generate','localhost',11434,'POST','AI Generate',1,'success','{\"model\":\"llama3.2:3b\",\"endpoint\":\"\\/generate\",\"payload_size\":18371}','{\"status\":\"success\",\"response_size\":23417,\"tokens\":72}',NULL,'unknown','unknown'),
(13,'2025-11-19 11:00:28','http://localhost:11434/api/generate','localhost',11434,'POST','AI Generate',1,'success','{\"model\":\"llama3.2:3b\",\"endpoint\":\"\\/generate\",\"payload_size\":18405}','{\"status\":\"success\",\"response_size\":23835,\"tokens\":109}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(14,'2025-11-19 11:29:13','http://localhost:11434/api/generate','localhost',11434,'POST','AI Generate',1,'success','{\"model\":\"llama3.2:3b\",\"endpoint\":\"\\/generate\",\"payload_size\":18408}','{\"status\":\"success\",\"response_size\":24825,\"tokens\":234}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(15,'2025-11-19 11:29:18','http://localhost:11434/api/chat','localhost',11434,'POST','AI Chat',1,'success','{\"model\":\"llama3.2:3b\",\"endpoint\":\"\\/chat\",\"payload_size\":448}','{\"status\":\"success\",\"response_size\":1221,\"tokens\":195}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(16,'2025-11-19 11:44:43','google.com','unknown',80,'BLOCKED','Manual Test',0,'blocked','[]','External connection blocked by NetworkMonitor',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(17,'2025-11-19 11:44:43','google.com','unknown',80,'BLOCKED','Manual Test',0,'blocked','[]','External connection blocked by NetworkMonitor',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(18,'2025-11-19 11:44:43','google.com','unknown',80,'BLOCKED','Manual Test',0,'blocked','[]','External connection blocked by NetworkMonitor',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(19,'2025-11-19 12:55:18','http://localhost:11434/api/generate','localhost',11434,'POST','AI Generate',1,'success','{\"model\":\"llama3.1:8b\",\"endpoint\":\"\\/generate\",\"payload_size\":237}','{\"status\":\"success\",\"response_size\":760,\"tokens\":27}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(20,'2025-11-19 12:58:00','http://localhost:11434/api/generate','localhost',11434,'POST','AI Generate',1,'success','{\"model\":\"llama3.1:8b\",\"endpoint\":\"\\/generate\",\"payload_size\":8466}','{\"status\":\"success\",\"response_size\":10545,\"tokens\":9}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(21,'2025-11-19 12:59:07','http://localhost:11434/api/generate','localhost',11434,'POST','AI Generate',1,'success','{\"model\":\"llama3.1:8b\",\"endpoint\":\"\\/generate\",\"payload_size\":8456}','{\"status\":\"success\",\"response_size\":10607,\"tokens\":16}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(22,'2025-11-19 12:59:20','http://localhost:11434/api/chat','localhost',11434,'POST','AI Chat',1,'success','{\"model\":\"llama3.1:8b\",\"endpoint\":\"\\/chat\",\"payload_size\":432}','{\"status\":\"success\",\"response_size\":1284,\"tokens\":213}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(23,'2025-11-19 13:45:57','http://localhost:11434/api/generate','localhost',11434,'POST','AI Generate',1,'success','{\"model\":\"llama3.1:8b\",\"endpoint\":\"\\/generate\",\"payload_size\":966}','{\"status\":\"success\",\"response_size\":1663,\"tokens\":37}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(24,'2025-11-19 13:48:07','http://localhost:11434/api/generate','localhost',11434,'POST','AI Generate',1,'success','{\"model\":\"llama3.1:8b\",\"endpoint\":\"\\/generate\",\"payload_size\":5356}','{\"status\":\"success\",\"response_size\":6805,\"tokens\":14}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(25,'2025-11-19 13:57:37','http://localhost:11434/api/generate','localhost',11434,'POST','AI Generate',1,'success','{\"model\":\"llama3.1:8b\",\"endpoint\":\"\\/generate\",\"payload_size\":5356}','{\"status\":\"success\",\"response_size\":6976,\"tokens\":32}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(26,'2025-11-19 14:07:02','http://localhost:11434/api/generate','localhost',11434,'POST','AI Generate',1,'success','{\"model\":\"llama3.1:8b\",\"endpoint\":\"\\/generate\",\"payload_size\":5341}','{\"status\":\"success\",\"response_size\":6877,\"tokens\":24}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(27,'2025-11-19 14:07:46','http://localhost:11434/api/generate','localhost',11434,'POST','AI Generate',1,'success','{\"model\":\"llama3.1:8b\",\"endpoint\":\"\\/generate\",\"payload_size\":5341}','{\"status\":\"success\",\"response_size\":6818,\"tokens\":17}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(28,'2025-11-19 14:09:27','http://localhost:11434/api/generate','localhost',11434,'POST','AI Generate',1,'success','{\"model\":\"llama3.1:8b\",\"endpoint\":\"\\/generate\",\"payload_size\":5341}','{\"status\":\"success\",\"response_size\":6843,\"tokens\":20}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(29,'2025-11-19 14:09:43','http://localhost:11434/api/chat','localhost',11434,'POST','AI Chat',1,'success','{\"model\":\"llama3.1:8b\",\"endpoint\":\"\\/chat\",\"payload_size\":786}','{\"status\":\"success\",\"response_size\":1430,\"tokens\":279}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(30,'2025-11-19 14:26:33','http://localhost:11434/api/generate','localhost',11434,'POST','AI Generate',1,'success','{\"model\":\"llama3.1:8b\",\"endpoint\":\"\\/generate\",\"payload_size\":5348}','{\"status\":\"success\",\"response_size\":6836,\"tokens\":19}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(31,'2025-11-21 09:02:08','google.com','unknown',80,'BLOCKED','Manual Test',0,'blocked','[]','External connection blocked by NetworkMonitor',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(32,'2025-11-21 09:02:09','google.com','unknown',80,'BLOCKED','Manual Test',0,'blocked','[]','External connection blocked by NetworkMonitor',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(33,'2025-11-21 09:02:11','google.com','unknown',80,'BLOCKED','Manual Test',0,'blocked','[]','External connection blocked by NetworkMonitor',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(34,'2025-11-21 09:02:11','google.com','unknown',80,'BLOCKED','Manual Test',0,'blocked','[]','External connection blocked by NetworkMonitor',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(35,'2025-11-21 09:02:12','google.com','unknown',80,'BLOCKED','Manual Test',0,'blocked','[]','External connection blocked by NetworkMonitor',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(36,'2025-11-21 09:02:17','https://google.com','google.com',443,'BLOCKED','Manual Test',0,'blocked','[]','External connection blocked by NetworkMonitor',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(37,'2025-11-21 09:02:21','https://google.com','google.com',443,'BLOCKED','Manual Test',0,'blocked','[]','External connection blocked by NetworkMonitor',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(38,'2025-12-03 09:29:28','http://localhost:11434/api/chat','localhost',11434,'POST','AI Chat',1,'success','{\"model\":\"llama3.1:8b\",\"endpoint\":\"\\/chat\",\"payload_size\":115}','{\"status\":\"success\",\"response_size\":411,\"tokens\":23}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15'),
(39,'2025-12-04 09:50:43','http://localhost:11434/api/generate','localhost',11434,'POST','AI Generate',1,'success','{\"model\":\"llama3.1:8b\",\"endpoint\":\"\\/generate\",\"payload_size\":6457}','{\"status\":\"success\",\"response_size\":8113,\"tokens\":20}',1,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15');
/*!40000 ALTER TABLE `network_monitor_logs` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `non_conformance_reports`
--

DROP TABLE IF EXISTS `non_conformance_reports`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `non_conformance_reports` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `ncr_number` varchar(50) NOT NULL,
  `inspection_id` int(10) unsigned DEFAULT NULL,
  `work_order_id` int(10) unsigned DEFAULT NULL,
  `product_id` int(10) unsigned NOT NULL,
  `defect_type` varchar(100) NOT NULL,
  `description` text NOT NULL,
  `quantity_affected` int(11) DEFAULT 0,
  `severity` enum('minor','major','critical') DEFAULT 'minor',
  `root_cause` text DEFAULT NULL,
  `corrective_action` text DEFAULT NULL,
  `preventive_action` text DEFAULT NULL,
  `disposition` enum('rework','scrap','use_as_is','return_to_supplier') DEFAULT NULL,
  `status` enum('open','in_review','resolved','closed') DEFAULT 'open',
  `reported_by` int(10) unsigned NOT NULL,
  `reported_at` datetime DEFAULT current_timestamp(),
  `resolved_by` int(10) unsigned DEFAULT NULL,
  `resolved_at` datetime DEFAULT NULL,
  `closed_by` int(10) unsigned DEFAULT NULL,
  `closed_at` datetime DEFAULT NULL,
  `created_at` datetime DEFAULT current_timestamp(),
  `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `ncr_number` (`ncr_number`),
  KEY `idx_status` (`status`),
  KEY `idx_severity` (`severity`),
  KEY `idx_product` (`product_id`),
  KEY `idx_reported_at` (`reported_at`),
  KEY `inspection_id` (`inspection_id`),
  KEY `work_order_id` (`work_order_id`),
  KEY `reported_by` (`reported_by`),
  KEY `resolved_by` (`resolved_by`),
  KEY `closed_by` (`closed_by`),
  KEY `idx_ncr_status_severity` (`status`,`severity`),
  CONSTRAINT `non_conformance_reports_ibfk_1` FOREIGN KEY (`inspection_id`) REFERENCES `quality_inspections` (`id`) ON DELETE SET NULL,
  CONSTRAINT `non_conformance_reports_ibfk_2` FOREIGN KEY (`work_order_id`) REFERENCES `work_orders` (`id`) ON DELETE SET NULL,
  CONSTRAINT `non_conformance_reports_ibfk_3` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE,
  CONSTRAINT `non_conformance_reports_ibfk_4` FOREIGN KEY (`reported_by`) REFERENCES `users` (`id`),
  CONSTRAINT `non_conformance_reports_ibfk_5` FOREIGN KEY (`resolved_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `non_conformance_reports_ibfk_6` FOREIGN KEY (`closed_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `non_conformance_reports`
--

LOCK TABLES `non_conformance_reports` WRITE;
/*!40000 ALTER TABLE `non_conformance_reports` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `non_conformance_reports` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `notification_digest_queue`
--

DROP TABLE IF EXISTS `notification_digest_queue`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `notification_digest_queue` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `notification_id` int(10) unsigned NOT NULL,
  `digest_type` enum('hourly','daily','weekly') NOT NULL,
  `status` enum('pending','sent','failed') DEFAULT 'pending',
  `sent_at` timestamp NULL DEFAULT NULL,
  `error_message` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_user_digest` (`user_id`,`digest_type`,`status`),
  KEY `idx_status` (`status`,`created_at`),
  KEY `notification_id` (`notification_id`),
  CONSTRAINT `notification_digest_queue_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE,
  CONSTRAINT `notification_digest_queue_ibfk_2` FOREIGN KEY (`notification_id`) REFERENCES `notifications` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Queue for digest email notifications';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `notification_digest_queue`
--

LOCK TABLES `notification_digest_queue` WRITE;
/*!40000 ALTER TABLE `notification_digest_queue` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `notification_digest_queue` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `notification_preferences`
--

DROP TABLE IF EXISTS `notification_preferences`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `notification_preferences` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `notification_type` varchar(50) NOT NULL,
  `in_app_enabled` tinyint(1) DEFAULT 1 COMMENT 'Show in-app notifications',
  `email_enabled` tinyint(1) DEFAULT 1 COMMENT 'Send email notifications',
  `sms_enabled` tinyint(1) DEFAULT 0 COMMENT 'Send SMS notifications (future)',
  `frequency` enum('immediate','hourly','daily','weekly') DEFAULT 'immediate',
  `digest_time` time DEFAULT NULL COMMENT 'Preferred time for digest emails (e.g., 09:00:00)',
  `digest_day` enum('monday','tuesday','wednesday','thursday','friday','saturday','sunday') DEFAULT NULL COMMENT 'Day for weekly digest',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_user_type` (`user_id`,`notification_type`),
  KEY `idx_user_id` (`user_id`),
  KEY `idx_notification_type` (`notification_type`),
  CONSTRAINT `notification_preferences_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='User notification preferences';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `notification_preferences`
--

LOCK TABLES `notification_preferences` WRITE;
/*!40000 ALTER TABLE `notification_preferences` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `notification_preferences` VALUES
(1,1,'all',1,1,0,'immediate',NULL,NULL,'2025-11-26 14:13:26','2025-11-26 14:13:26'),
(2,2,'all',1,1,0,'immediate',NULL,NULL,'2025-11-26 14:13:26','2025-11-26 14:13:26'),
(3,3,'all',1,1,0,'immediate',NULL,NULL,'2025-11-26 14:13:26','2025-11-26 14:13:26'),
(4,4,'all',1,1,0,'immediate',NULL,NULL,'2025-11-26 14:13:26','2025-11-26 14:13:26'),
(5,5,'all',1,1,0,'immediate',NULL,NULL,'2025-11-26 14:13:26','2025-11-26 14:13:26'),
(6,6,'all',1,1,0,'immediate',NULL,NULL,'2025-11-26 14:13:26','2025-11-26 14:13:26'),
(7,7,'all',1,1,0,'immediate',NULL,NULL,'2025-11-26 14:13:26','2025-11-26 14:13:26'),
(8,8,'all',1,1,0,'immediate',NULL,NULL,'2025-11-26 14:13:26','2025-11-26 14:13:26'),
(9,21,'all',1,1,0,'immediate',NULL,NULL,'2025-11-26 14:13:26','2025-11-26 14:13:26');
/*!40000 ALTER TABLE `notification_preferences` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Temporary table structure for view `notification_stats_by_user`
--

DROP TABLE IF EXISTS `notification_stats_by_user`;
/*!50001 DROP VIEW IF EXISTS `notification_stats_by_user`*/;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8mb4;
/*!50001 CREATE VIEW `notification_stats_by_user` AS SELECT
 1 AS `user_id`,
  1 AS `user_name`,
  1 AS `total_notifications`,
  1 AS `unread_count`,
  1 AS `emails_sent`,
  1 AS `last_notification_at` */;
SET character_set_client = @saved_cs_client;

--
-- Table structure for table `notifications`
--

DROP TABLE IF EXISTS `notifications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `notifications` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `type` varchar(50) NOT NULL COMMENT 'message, mention, system, alert, etc',
  `title` varchar(255) NOT NULL,
  `message` text DEFAULT NULL,
  `link` varchar(500) DEFAULT NULL,
  `icon` varchar(50) DEFAULT 'bi-bell',
  `is_read` tinyint(1) DEFAULT 0,
  `email_sent` tinyint(1) DEFAULT 0 COMMENT 'Whether email notification was sent',
  `email_sent_at` timestamp NULL DEFAULT NULL COMMENT 'When email was sent',
  `mentioned_users` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Array of user IDs mentioned in notification' CHECK (json_valid(`mentioned_users`)),
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `read_at` timestamp NULL DEFAULT NULL,
  `metadata` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Additional data like channel_id, message_id, etc' CHECK (json_valid(`metadata`)),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_user_read` (`user_id`,`is_read`),
  KEY `idx_created` (`created_at` DESC),
  KEY `idx_email_sent` (`email_sent`,`created_at`),
  CONSTRAINT `notifications_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=45 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `notifications`
--

LOCK TABLES `notifications` WRITE;
/*!40000 ALTER TABLE `notifications` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `notifications` VALUES
(16,4,'file_share','Admin User shared a file with you','You now have Download permission to \"IMG_5218.JPG\"','/files/shared','bi-share',0,0,NULL,NULL,'2025-11-27 18:34:31',NULL,'{\"item_type\":\"file\",\"item_id\":\"8\",\"item_name\":\"IMG_5218.JPG\",\"permission\":\"download\",\"sharer_name\":\"Admin User\"}','2025-11-27 18:34:31'),
(17,4,'file_share','Admin User shared a file with you','You now have Download permission to \"archive_1764262879453.zip\"','/files/shared','bi-share',0,0,NULL,NULL,'2025-11-27 19:20:30',NULL,'{\"item_type\":\"file\",\"item_id\":\"9\",\"item_name\":\"archive_1764262879453.zip\",\"permission\":\"download\",\"sharer_name\":\"Admin User\"}','2025-11-27 19:20:30'),
(18,4,'file_share','Admin User shared a file with you','You now have Download permission to \"archive_1764262879453.zip\"','/files/shared','bi-share',0,0,NULL,NULL,'2025-11-27 19:30:41',NULL,'{\"item_type\":\"file\",\"item_id\":\"9\",\"item_name\":\"archive_1764262879453.zip\",\"permission\":\"download\",\"sharer_name\":\"Admin User\"}','2025-11-27 19:30:41'),
(19,4,'file_share','Admin User shared a file with you','You now have Download permission to \"IMG_5218.JPG\"','/files/shared','bi-share',0,0,NULL,NULL,'2025-11-27 19:32:39',NULL,'{\"item_type\":\"file\",\"item_id\":\"8\",\"item_name\":\"IMG_5218.JPG\",\"permission\":\"download\",\"sharer_name\":\"Admin User\"}','2025-11-27 19:32:39'),
(20,4,'file_share','Admin User shared a file with you','You now have Download permission to \"IMG_5218.JPG\"','/files/shared','bi-share',0,0,NULL,NULL,'2025-11-27 19:58:09',NULL,'{\"item_type\":\"file\",\"item_id\":\"8\",\"item_name\":\"IMG_5218.JPG\",\"permission\":\"download\",\"sharer_name\":\"Admin User\"}','2025-11-27 19:58:09'),
(21,4,'file_share','Admin User shared a file with you','You now have Download permission to \"IMG_5218.JPG\"','/files/shared','bi-share',0,0,NULL,NULL,'2025-11-27 20:22:35',NULL,'{\"item_type\":\"file\",\"item_id\":\"8\",\"item_name\":\"IMG_5218.JPG\",\"permission\":\"download\",\"sharer_name\":\"Admin User\"}','2025-11-27 20:22:35'),
(22,4,'calendar_event','Admin User invited you to a calendar event','<strong>Event:</strong> Test6<br><strong>Start:</strong> Nov 27, 2025 4:00 PM<br><strong>End:</strong> Nov 27, 2025 4:30 PM<br><strong>Location:</strong> Not specified<br>','http://localhost:8080/calendar','bi-calendar-event',0,0,NULL,NULL,'2025-11-27 20:53:37',NULL,NULL,'2025-11-27 20:53:37'),
(23,4,'calendar_event','Admin User invited you to a calendar event','<strong>Event:</strong> Test6<br><strong>Start:</strong> Nov 27, 2025 4:00 PM<br><strong>End:</strong> Nov 27, 2025 4:30 PM<br><strong>Location:</strong> Not specified<br>','http://localhost:8080/calendar','bi-calendar-event',0,0,NULL,NULL,'2025-11-27 20:53:40',NULL,NULL,'2025-11-27 20:53:40'),
(24,4,'calendar_event','Admin User invited you to a calendar event','<strong>Event:</strong> Test6<br><strong>Start:</strong> Nov 27, 2025 4:00 PM<br><strong>End:</strong> Nov 27, 2025 4:30 PM<br><strong>Location:</strong> Not specified<br>','http://localhost:8080/calendar','bi-calendar-event',0,0,NULL,NULL,'2025-11-27 20:53:46',NULL,NULL,'2025-11-27 20:53:46'),
(25,4,'calendar_event','Admin User invited you to a calendar event','<strong>Event:</strong> Test6<br><strong>Start:</strong> Nov 27, 2025 4:00 PM<br><strong>End:</strong> Nov 27, 2025 4:30 PM<br><strong>Location:</strong> Not specified<br>','http://localhost:8080/calendar','bi-calendar-event',0,0,NULL,NULL,'2025-11-27 20:53:49',NULL,NULL,'2025-11-27 20:53:49'),
(26,4,'calendar_event','Admin User invited you to a calendar event','Event: ricks mtg','http://localhost:8080/calendar','bi-calendar-event',0,0,NULL,NULL,'2025-11-27 20:57:37',NULL,NULL,'2025-11-27 20:57:37'),
(27,4,'calendar_event','Admin User invited you to a calendar event','Event: ricks mtg','http://localhost:8080/calendar','bi-calendar-event',0,0,NULL,NULL,'2025-11-27 20:57:40',NULL,NULL,'2025-11-27 20:57:40'),
(28,4,'calendar_event','Admin User invited you to a calendar event','Event: ricks mtg','http://localhost:8080/calendar','bi-calendar-event',0,0,NULL,NULL,'2025-11-27 20:57:42',NULL,NULL,'2025-11-27 20:57:42'),
(29,4,'calendar_event','Admin User invited you to a calendar event','Event: test7','http://localhost:8080/calendar','bi-calendar-event',0,0,NULL,NULL,'2025-11-27 20:58:28',NULL,NULL,'2025-11-27 20:58:28'),
(30,4,'calendar_event','Admin User invited you to a calendar event','Event: test7','http://localhost:8080/calendar','bi-calendar-event',0,0,NULL,NULL,'2025-11-27 20:59:40',NULL,NULL,'2025-11-27 20:59:40'),
(31,4,'calendar_event','Admin User invited you to a calendar event','Event: test','http://localhost:8080/calendar','bi-calendar-event',0,0,NULL,NULL,'2025-11-27 21:00:33',NULL,NULL,'2025-11-27 21:00:33'),
(32,4,'calendar_event','Admin User invited you to a calendar event','Event: test','http://localhost:8080/calendar','bi-calendar-event',0,0,NULL,NULL,'2025-11-27 21:00:56',NULL,NULL,'2025-11-27 21:00:56'),
(33,4,'calendar_event','Admin User invited you to a calendar event','Event: test','http://localhost:8080/calendar','bi-calendar-event',0,0,NULL,NULL,'2025-11-27 21:02:07',NULL,NULL,'2025-11-27 21:02:07'),
(34,4,'calendar_event','Admin User invited you to a calendar event','Event: tester','http://localhost:8080/calendar','bi-calendar-event',0,0,NULL,NULL,'2025-11-27 21:03:26',NULL,NULL,'2025-11-27 21:03:26'),
(35,4,'calendar_event','Admin User invited you to a calendar event','Event: tester','http://localhost:8080/calendar','bi-calendar-event',0,0,NULL,NULL,'2025-11-27 21:04:37',NULL,NULL,'2025-11-27 21:04:37'),
(36,4,'calendar_event','Admin User invited you to a calendar event','Event: Demo','http://localhost:8080/calendar','bi-calendar-event',0,0,NULL,NULL,'2025-12-04 18:07:29',NULL,NULL,'2025-12-04 18:07:29'),
(37,4,'calendar_event','Admin User updated a calendar event','Event: Demo','http://localhost:8080/calendar','bi-calendar-event',0,0,NULL,NULL,'2025-12-04 19:32:41',NULL,NULL,'2025-12-04 19:32:41'),
(38,5,'diagram_shared','Diagram Shared With You','Admin User shared a diagram \"Untitled Diagram\" with you','http://localhost:8080/diagrams/editor/6','bi-diagram-3',0,0,NULL,NULL,'2025-12-04 23:07:12',NULL,'{\"diagram_id\":\"6\",\"diagram_title\":\"Untitled Diagram\"}','2025-12-04 23:07:12'),
(39,4,'calendar_event','Admin User invited you to a calendar event','Event: Rick Mtg','http://localhost:8080/calendar','bi-calendar-event',0,0,NULL,NULL,'2025-12-04 23:15:38',NULL,NULL,'2025-12-04 23:15:38'),
(40,3,'calendar_event','Admin User invited you to a calendar event','Event: Rick Mtg','http://localhost:8080/calendar','bi-calendar-event',0,0,NULL,NULL,'2025-12-04 23:15:38',NULL,NULL,'2025-12-04 23:15:38'),
(41,5,'calendar_event','Admin User invited you to a calendar event','Event: Rick Mtg','http://localhost:8080/calendar','bi-calendar-event',0,0,NULL,NULL,'2025-12-04 23:15:38',NULL,NULL,'2025-12-04 23:15:38'),
(42,6,'calendar_event','Admin User invited you to a calendar event','Event: Rick Mtg','http://localhost:8080/calendar','bi-calendar-event',0,0,NULL,NULL,'2025-12-04 23:15:38',NULL,NULL,'2025-12-04 23:15:38'),
(43,7,'calendar_event','Admin User invited you to a calendar event','Event: Rick Mtg','http://localhost:8080/calendar','bi-calendar-event',0,0,NULL,NULL,'2025-12-04 23:15:39',NULL,NULL,'2025-12-04 23:15:39'),
(44,8,'calendar_event','Admin User invited you to a calendar event','Event: Rick Mtg','http://localhost:8080/calendar','bi-calendar-event',0,0,NULL,NULL,'2025-12-04 23:15:39',NULL,NULL,'2025-12-04 23:15:39');
/*!40000 ALTER TABLE `notifications` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `opportunity_assignments`
--

DROP TABLE IF EXISTS `opportunity_assignments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `opportunity_assignments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `opportunity_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `role` varchar(50) DEFAULT 'contributor' COMMENT 'owner, contributor, viewer',
  `assigned_at` timestamp NULL DEFAULT current_timestamp(),
  `assigned_by` int(10) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_assignment` (`opportunity_id`,`user_id`),
  KEY `assigned_by` (`assigned_by`),
  KEY `idx_opportunity_assignments_opportunity` (`opportunity_id`),
  KEY `idx_opportunity_assignments_user` (`user_id`),
  CONSTRAINT `opportunity_assignments_ibfk_1` FOREIGN KEY (`opportunity_id`) REFERENCES `crm_opportunities` (`id`) ON DELETE CASCADE,
  CONSTRAINT `opportunity_assignments_ibfk_2` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE,
  CONSTRAINT `opportunity_assignments_ibfk_3` FOREIGN KEY (`assigned_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `opportunity_assignments`
--

LOCK TABLES `opportunity_assignments` WRITE;
/*!40000 ALTER TABLE `opportunity_assignments` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `opportunity_assignments` VALUES
(1,24,5,'owner','2025-12-03 19:44:15',1),
(3,24,1,'contributor','2025-12-03 20:40:13',1);
/*!40000 ALTER TABLE `opportunity_assignments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `opportunity_competitors`
--

DROP TABLE IF EXISTS `opportunity_competitors`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `opportunity_competitors` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `opportunity_id` int(10) unsigned NOT NULL,
  `competitor_name` varchar(255) NOT NULL,
  `product_service` varchar(255) DEFAULT NULL COMMENT 'What product/service they are offering',
  `pricing` decimal(15,2) DEFAULT NULL COMMENT 'Their pricing',
  `strengths` text DEFAULT NULL COMMENT 'Competitor strengths',
  `weaknesses` text DEFAULT NULL COMMENT 'Competitor weaknesses',
  `notes` text DEFAULT NULL COMMENT 'Additional notes',
  `created_by` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_opportunity_id` (`opportunity_id`),
  KEY `idx_created_by` (`created_by`),
  CONSTRAINT `fk_opp_comp_opportunity` FOREIGN KEY (`opportunity_id`) REFERENCES `crm_opportunities` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_opp_comp_user` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `opportunity_competitors`
--

LOCK TABLES `opportunity_competitors` WRITE;
/*!40000 ALTER TABLE `opportunity_competitors` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `opportunity_competitors` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `opportunity_documents`
--

DROP TABLE IF EXISTS `opportunity_documents`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `opportunity_documents` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `opportunity_id` int(10) unsigned NOT NULL,
  `document_name` varchar(255) NOT NULL,
  `original_filename` varchar(255) NOT NULL,
  `file_path` varchar(500) NOT NULL,
  `file_size` bigint(20) NOT NULL COMMENT 'Size in bytes',
  `file_type` varchar(100) DEFAULT NULL COMMENT 'MIME type',
  `document_type` enum('proposal','contract','presentation','other') DEFAULT 'other',
  `description` text DEFAULT NULL,
  `uploaded_by` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_opportunity_id` (`opportunity_id`),
  KEY `idx_uploaded_by` (`uploaded_by`),
  CONSTRAINT `fk_opp_docs_opportunity` FOREIGN KEY (`opportunity_id`) REFERENCES `crm_opportunities` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_opp_docs_user` FOREIGN KEY (`uploaded_by`) REFERENCES `users` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `opportunity_documents`
--

LOCK TABLES `opportunity_documents` WRITE;
/*!40000 ALTER TABLE `opportunity_documents` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `opportunity_documents` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `opportunity_stage_history`
--

DROP TABLE IF EXISTS `opportunity_stage_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `opportunity_stage_history` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `opportunity_id` int(10) unsigned NOT NULL,
  `from_stage` enum('lead','qualified','proposal','negotiation','closed_won','closed_lost') DEFAULT NULL,
  `to_stage` enum('lead','qualified','proposal','negotiation','closed_won','closed_lost') NOT NULL,
  `changed_by` int(10) unsigned NOT NULL,
  `changed_at` timestamp NULL DEFAULT current_timestamp(),
  `duration_days` int(11) DEFAULT NULL COMMENT 'Days spent in previous stage',
  `notes` text DEFAULT NULL COMMENT 'Optional notes about the stage change',
  PRIMARY KEY (`id`),
  KEY `idx_opportunity_id` (`opportunity_id`),
  KEY `idx_changed_by` (`changed_by`),
  KEY `idx_changed_at` (`changed_at`),
  CONSTRAINT `fk_stage_hist_opportunity` FOREIGN KEY (`opportunity_id`) REFERENCES `crm_opportunities` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_stage_hist_user` FOREIGN KEY (`changed_by`) REFERENCES `users` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `opportunity_stage_history`
--

LOCK TABLES `opportunity_stage_history` WRITE;
/*!40000 ALTER TABLE `opportunity_stage_history` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `opportunity_stage_history` VALUES
(1,35,'proposal','negotiation',1,'2025-11-14 19:42:53',1,NULL),
(2,35,'negotiation','proposal',1,'2025-11-14 19:42:59',0,NULL),
(3,25,'proposal','qualified',1,'2025-11-24 13:25:17',10,NULL),
(4,25,'qualified','lead',1,'2025-11-24 13:25:26',0,NULL),
(5,26,'proposal','qualified',1,'2025-11-24 13:25:28',10,NULL),
(6,26,'qualified','lead',1,'2025-11-25 23:09:03',1,NULL),
(7,26,'lead','qualified',1,'2025-11-25 23:09:08',0,NULL),
(8,27,'proposal','qualified',1,'2025-11-26 00:15:41',12,NULL);
/*!40000 ALTER TABLE `opportunity_stage_history` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `opportunity_tasks`
--

DROP TABLE IF EXISTS `opportunity_tasks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `opportunity_tasks` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `opportunity_id` int(10) unsigned NOT NULL,
  `title` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `due_date` date DEFAULT NULL,
  `priority` enum('low','medium','high') DEFAULT 'medium',
  `status` enum('pending','completed','cancelled') DEFAULT 'pending',
  `assigned_to` int(10) unsigned DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `completed_at` timestamp NULL DEFAULT NULL,
  `completed_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_opportunity_id` (`opportunity_id`),
  KEY `idx_status` (`status`),
  KEY `idx_due_date` (`due_date`),
  KEY `idx_assigned_to` (`assigned_to`),
  CONSTRAINT `opportunity_tasks_ibfk_1` FOREIGN KEY (`opportunity_id`) REFERENCES `crm_opportunities` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `opportunity_tasks`
--

LOCK TABLES `opportunity_tasks` WRITE;
/*!40000 ALTER TABLE `opportunity_tasks` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `opportunity_tasks` VALUES
(1,23,'Test','',NULL,'medium','completed',1,1,'2025-11-13 16:49:12',1,'2025-11-13 16:48:57','2025-11-13 16:49:12');
/*!40000 ALTER TABLE `opportunity_tasks` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `page_actions`
--

DROP TABLE IF EXISTS `page_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `page_actions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `page_identifier` varchar(100) NOT NULL COMMENT 'e.g., quote_detail, customer_detail, invoice_detail',
  `action_name` varchar(100) DEFAULT NULL COMMENT 'Display name for the action (NULL for dividers)',
  `icon` varchar(50) DEFAULT NULL COMMENT 'Bootstrap icon class, e.g., bi-pen, bi-envelope',
  `action_type` enum('javascript','link','form_submit','modal','divider') NOT NULL DEFAULT 'link',
  `action_target` varchar(255) DEFAULT NULL COMMENT 'JS function name, route, or form ID depending on action_type',
  `action_method` varchar(10) DEFAULT NULL COMMENT 'For form_submit: GET, POST, etc.',
  `permission_required` varchar(100) DEFAULT NULL COMMENT 'Permission needed to see this action',
  `css_class` varchar(100) DEFAULT NULL COMMENT 'Additional CSS classes for styling',
  `display_order` int(11) NOT NULL DEFAULT 0 COMMENT 'Order in which actions appear',
  `group_name` varchar(50) DEFAULT NULL COMMENT 'Group actions together with dividers',
  `is_active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_page_identifier` (`page_identifier`),
  KEY `idx_is_active` (`is_active`),
  KEY `idx_display_order` (`display_order`)
) ENGINE=InnoDB AUTO_INCREMENT=300 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `page_actions`
--

LOCK TABLES `page_actions` WRITE;
/*!40000 ALTER TABLE `page_actions` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `page_actions` VALUES
(1,'quote_detail','Send for E-Signature','bi-pen','javascript','sendForSignature',NULL,'sales.edit',NULL,10,'signature',1,'2025-11-16 15:34:57','2025-11-16 15:34:57'),
(2,'quote_detail','Email Quote Link','bi-envelope','javascript','showEmailModal',NULL,NULL,NULL,20,'signature',1,'2025-11-16 15:34:57','2025-11-16 15:34:57'),
(3,'quote_detail','Copy Signature Link','bi-link-45deg','javascript','copySignatureLink',NULL,NULL,NULL,30,'signature',1,'2025-11-16 15:34:57','2025-11-16 15:34:57'),
(4,'quote_detail','Convert to Order','bi-arrow-right-circle','form_submit','convertForm',NULL,'sales.create',NULL,40,'order',1,'2025-11-16 15:34:57','2025-11-16 15:34:57'),
(5,'quote_detail',NULL,NULL,'divider',NULL,NULL,NULL,NULL,50,NULL,1,'2025-11-16 15:34:57','2025-11-16 15:34:57'),
(6,'quote_detail','Notes','bi-sticky','javascript','openNotes',NULL,NULL,NULL,60,'standard',1,'2025-11-16 15:34:57','2025-11-16 15:34:57'),
(7,'quote_detail','Print Quote','bi-printer','link','quotes/general/{id}/print',NULL,NULL,NULL,70,'standard',1,'2025-11-16 15:34:57','2025-11-16 15:34:57'),
(8,'quote_detail','Edit Quote','bi-pencil','link','quotes/general/{id}/edit',NULL,'sales.edit',NULL,80,'standard',1,'2025-11-16 15:34:57','2025-11-16 15:34:57'),
(9,'quote_detail',NULL,NULL,'divider',NULL,NULL,NULL,NULL,90,NULL,1,'2025-11-16 15:34:57','2025-11-16 15:34:57'),
(10,'quote_detail','Back','bi-arrow-left','link','quotes/general',NULL,NULL,NULL,100,'navigation',1,'2025-11-16 15:34:57','2025-11-16 15:54:16'),
(11,'invoice_detail','Notes','bi-sticky','javascript','openNotes',NULL,NULL,NULL,10,'standard',1,'2025-11-16 15:43:35','2025-11-16 15:43:35'),
(12,'invoice_detail','Print Invoice','bi-printer','link','invoices/{id}/print',NULL,NULL,NULL,20,'standard',1,'2025-11-16 15:43:35','2025-11-16 15:43:35'),
(13,'invoice_detail','Edit Invoice','bi-pencil','link','invoices/{id}/edit',NULL,'sales.edit',NULL,30,'standard',1,'2025-11-16 15:43:35','2025-11-16 15:43:35'),
(14,'invoice_detail',NULL,NULL,'divider',NULL,NULL,NULL,NULL,40,NULL,1,'2025-11-16 15:43:35','2025-11-16 15:43:35'),
(15,'invoice_detail','Back','bi-arrow-left','link','invoices',NULL,NULL,NULL,50,'navigation',1,'2025-11-16 15:43:35','2025-11-16 15:54:16'),
(16,'salesorder_detail','Notes','bi-sticky','javascript','openNotes',NULL,NULL,NULL,10,'standard',1,'2025-11-16 15:43:35','2025-11-16 15:43:35'),
(17,'salesorder_detail','Print Order','bi-printer','link','sales/orders/{id}/print',NULL,NULL,NULL,20,'standard',1,'2025-11-16 15:43:35','2025-11-16 15:43:35'),
(18,'salesorder_detail','Edit Order','bi-pencil','link','sales/orders/{id}/edit',NULL,'sales.edit',NULL,30,'standard',1,'2025-11-16 15:43:35','2025-11-16 15:43:35'),
(19,'salesorder_detail',NULL,NULL,'divider',NULL,NULL,NULL,NULL,40,NULL,1,'2025-11-16 15:43:35','2025-11-16 15:43:35'),
(20,'salesorder_detail','Back','bi-arrow-left','link','sales/orders',NULL,NULL,NULL,50,'navigation',1,'2025-11-16 15:43:35','2025-11-16 15:54:16'),
(21,'purchaseorder_detail','Print PO','bi-printer','javascript','window.print()',NULL,NULL,NULL,10,'standard',1,'2025-11-16 15:43:35','2025-11-16 15:43:35'),
(22,'purchaseorder_detail','Edit Order','bi-pencil','link','purchases/orders/{id}/edit',NULL,'procurement.edit',NULL,20,'standard',1,'2025-11-16 15:43:35','2025-11-16 15:43:35'),
(23,'purchaseorder_detail','Delete Order','bi-trash','form_submit','deletePOForm',NULL,'procurement.delete',NULL,30,'standard',1,'2025-11-16 15:43:35','2025-11-16 15:43:35'),
(24,'purchaseorder_detail',NULL,NULL,'divider',NULL,NULL,NULL,NULL,40,NULL,1,'2025-11-16 15:43:35','2025-11-16 15:43:35'),
(25,'purchaseorder_detail','Back','bi-arrow-left','link','purchases/orders',NULL,NULL,NULL,50,'navigation',1,'2025-11-16 15:43:35','2025-11-16 15:54:16'),
(26,'customer_detail','Edit Customer','bi-pencil','link','customers/{id}/edit',NULL,'crm.edit',NULL,10,'standard',1,'2025-11-16 15:43:35','2025-11-16 15:43:35'),
(27,'customer_detail','Delete Customer','bi-trash','javascript','confirmDelete',NULL,'crm.delete',NULL,20,'standard',1,'2025-11-16 15:43:35','2025-11-16 15:43:35'),
(28,'customer_detail',NULL,NULL,'divider',NULL,NULL,NULL,NULL,30,NULL,1,'2025-11-16 15:43:35','2025-11-16 15:43:35'),
(29,'customer_detail','Back','bi-arrow-left','link','customers',NULL,NULL,NULL,40,'navigation',1,'2025-11-16 15:43:35','2025-11-16 15:54:16'),
(30,'product_detail','Edit Product','bi-pencil','link','products/{id}/edit',NULL,'inventory.edit',NULL,10,'standard',1,'2025-11-16 15:43:35','2025-11-16 15:43:35'),
(31,'product_detail',NULL,NULL,'divider',NULL,NULL,NULL,NULL,20,NULL,1,'2025-11-16 15:43:35','2025-11-16 15:43:35'),
(32,'product_detail','Back','bi-arrow-left','link','products',NULL,NULL,NULL,30,'navigation',1,'2025-11-16 15:43:35','2025-11-16 15:54:16'),
(33,'workorder_detail','Notes','bi bi-chat-left-text','modal','notesModal',NULL,NULL,'btn-outline-primary',10,'main',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(34,'workorder_detail','Print WO','bi bi-printer','javascript','window.print()',NULL,NULL,'btn-outline-theme',20,'main',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(35,'workorder_detail','Start Work Order','fas fa-play','javascript','changeStatus(\'in_progress\')',NULL,'manufacturing.manage','btn-outline-success',30,'main',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(36,'workorder_detail','Mark Complete','fas fa-check','javascript','changeStatus(\'completed\')',NULL,'manufacturing.manage','btn-outline-success',40,'main',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(37,'workorder_detail','Cancel','fas fa-times','javascript','changeStatus(\'cancelled\')',NULL,'manufacturing.manage','btn-outline-danger',50,'main',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(38,'workorder_detail',NULL,NULL,'divider',NULL,NULL,NULL,NULL,55,'main',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(39,'workorder_detail','Open in Shop Floor','fas fa-industry','link','manufacturing/shopfloor/workorder/{id}',NULL,'manufacturing.view','btn-outline-info',60,'main',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(40,'workorder_detail','Back','fas fa-arrow-left','link','manufacturing/workorders',NULL,NULL,'btn-outline-secondary',100,'back',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(41,'bom_detail','Notes','bi bi-chat-left-text','modal','notesModal',NULL,NULL,'btn-outline-primary',10,'main',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(42,'bom_detail','Print BOM','bi bi-printer','javascript','window.print()',NULL,NULL,'btn-outline-theme',20,'main',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(43,'bom_detail','Back','bi bi-arrow-left','link','manufacturing/boms',NULL,NULL,'btn-outline-theme',100,'back',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(44,'movement_detail','Notes','bi bi-chat-left-text','modal','notesModal',NULL,NULL,'btn-outline-primary',10,'main',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(45,'movement_detail','View Stock Levels','fas fa-boxes','link','inventory/stock-levels?product_id={product_id}',NULL,NULL,'btn-outline-primary',20,'main',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(46,'movement_detail','Product Movement History','fas fa-history','link','inventory/movements?product_id={product_id}',NULL,NULL,'btn-outline-secondary',30,'main',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(47,'movement_detail','Location Movements','fas fa-warehouse','link','inventory/movements?location_id={location_id}',NULL,NULL,'btn-outline-info',40,'main',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(48,'movement_detail','Record New Movement','fas fa-plus','link','inventory/movements/create',NULL,'inventory.manage','btn-outline-success',50,'main',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(49,'movement_detail','Back','fas fa-arrow-left','link','inventory/movements',NULL,NULL,'btn-cancel',100,'back',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(50,'employee_detail','Notes','bi bi-chat-left-text','modal','notesModal',NULL,NULL,'btn-outline-primary',10,'main',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(51,'employee_detail','Edit','bi bi-pencil','link','employees/{id}/edit',NULL,'hr.edit','btn-outline-warning',20,'main',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(52,'employee_detail','Back','bi bi-arrow-left','link','employees',NULL,NULL,'btn-outline-secondary',100,'back',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(53,'opportunity_detail','Notes','bi bi-chat-left-text','modal','notesModal',NULL,NULL,'btn-outline-primary',10,'main',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(54,'opportunity_detail','Edit','bi bi-pencil','link','crm/opportunities/{id}/edit',NULL,'crm.edit','btn-outline-theme',20,'main',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(55,'opportunity_detail','Send Email','bi bi-envelope','modal','emailModal',NULL,NULL,'btn-outline-primary',30,'main',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(56,'opportunity_detail','Log Received Email','bi bi-envelope-check','modal','logEmailModal',NULL,NULL,'btn-outline-secondary',40,'main',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(57,'opportunity_detail','Clone','bi bi-files','link','crm/opportunities/{id}/clone',NULL,'crm.create','btn-outline-secondary',50,'main',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(58,'opportunity_detail','Back','bi bi-arrow-left','link','crm/opportunities',NULL,NULL,'btn-outline-secondary',100,'back',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(59,'ticket_detail','Notes','bi bi-chat-left-text','modal','notesModal',NULL,NULL,'btn-outline-primary',10,'main',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(60,'ticket_detail','Edit','bi bi-pencil','link','crm/support/{id}/edit',NULL,'crm.edit','btn-outline-theme',20,'main',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(61,'ticket_detail','Back','bi bi-arrow-left','link','crm/support',NULL,NULL,'btn-outline-secondary',100,'back',1,'2025-11-16 16:04:37','2025-11-16 16:04:37'),
(62,'project_detail','Notes','bi bi-chat-left-text','modal','notesModal',NULL,NULL,'btn-outline-primary',10,'main',1,'2025-11-16 16:20:48','2025-11-16 16:20:48'),
(63,'project_detail','Edit','bi bi-pencil','link','projects/{id}/edit',NULL,'projects.edit','btn-save',20,'main',1,'2025-11-16 16:20:48','2025-11-16 16:20:48'),
(64,'project_detail','Delete','bi bi-trash','form_submit','deleteForm','POST','projects.delete','btn-outline-danger',30,'main',1,'2025-11-16 16:20:48','2025-11-16 16:20:48'),
(65,'project_detail','Back','bi bi-arrow-left','link','projects',NULL,NULL,'btn-outline-secondary',100,'back',1,'2025-11-16 16:20:48','2025-11-16 16:20:48'),
(66,'helpdesk_detail','Notes','bi bi-chat-left-text','modal','notesModal',NULL,NULL,'btn-outline-primary',10,'main',1,'2025-11-16 16:20:48','2025-11-16 16:20:48'),
(67,'helpdesk_detail','Edit','bi bi-pencil','link','helpdesk/tickets/{id}/edit',NULL,'helpdesk.edit','btn-outline-warning',20,'main',1,'2025-11-16 16:20:48','2025-11-16 16:20:48'),
(68,'helpdesk_detail','Change Status','bi bi-arrow-repeat','javascript','showStatusModal()',NULL,'helpdesk.manage','btn-outline-info',30,'main',1,'2025-11-16 16:20:48','2025-11-16 16:20:48'),
(69,'helpdesk_detail','Back','bi bi-arrow-left','link','helpdesk/tickets',NULL,NULL,'btn-outline-secondary',100,'back',1,'2025-11-16 16:20:48','2025-11-16 16:20:48'),
(70,'asset_detail','Notes','bi bi-chat-left-text','modal','notesModal',NULL,NULL,'btn-outline-primary',10,'main',1,'2025-11-16 16:20:48','2025-11-16 16:20:48'),
(71,'asset_detail','Edit','bi bi-pencil','link','accounting/assets/{id}/edit',NULL,'accounting.edit','btn-outline-warning',20,'main',1,'2025-11-16 16:20:48','2025-11-16 16:20:48'),
(72,'asset_detail','Depreciation Schedule','bi bi-calendar3','link','accounting/depreciation/{id}/schedule',NULL,'accounting.view','btn-outline-theme',30,'main',1,'2025-11-16 16:20:48','2025-11-16 16:20:48'),
(73,'asset_detail','Back','bi bi-arrow-left','link','accounting/assets',NULL,NULL,'btn-outline-secondary',100,'back',1,'2025-11-16 16:20:48','2025-11-16 16:20:48'),
(74,'deliverynote_detail','Notes','bi bi-chat-left-text','modal','notesModal',NULL,NULL,'btn-outline-primary',10,'main',1,'2025-11-16 16:20:48','2025-11-16 16:20:48'),
(75,'deliverynote_detail','Print','bi bi-printer','javascript','window.print()',NULL,NULL,'btn-outline-secondary',20,'main',1,'2025-11-16 16:20:48','2025-11-16 16:20:48'),
(76,'deliverynote_detail','Edit','bi bi-pencil','link','sales/delivery_notes/{id}/edit',NULL,'sales.edit','btn-outline-warning',30,'main',1,'2025-11-16 16:20:48','2025-11-16 16:20:48'),
(77,'deliverynote_detail','Delete','bi bi-trash','form_submit','deleteForm','POST','sales.delete','btn-outline-danger',40,'main',1,'2025-11-16 16:20:48','2025-11-16 16:20:48'),
(78,'deliverynote_detail','Back','bi bi-arrow-left','link','sales/delivery_notes',NULL,NULL,'btn-outline-secondary',100,'back',1,'2025-11-16 16:20:48','2025-11-16 16:20:48'),
(79,'creditnote_detail','Notes','bi bi-chat-left-text','modal','notesModal',NULL,NULL,'btn-outline-primary',10,'main',1,'2025-11-16 16:34:53','2025-11-16 16:34:53'),
(80,'creditnote_detail','Print Credit Note','bi bi-printer','javascript','window.print()',NULL,NULL,'btn-outline-secondary',20,'main',1,'2025-11-16 16:34:53','2025-11-16 16:34:53'),
(81,'creditnote_detail','Edit','bi bi-pencil','link','creditnotes/{id}/edit',NULL,'sales.edit','btn-outline-warning',30,'main',1,'2025-11-16 16:34:53','2025-11-16 16:34:53'),
(82,'creditnote_detail','Back','bi bi-arrow-left','link','creditnotes',NULL,NULL,'btn-outline-secondary',100,'back',1,'2025-11-16 16:34:53','2025-11-16 16:34:53'),
(83,'debitnote_detail','Notes','bi bi-chat-left-text','modal','notesModal',NULL,NULL,'btn-outline-primary',10,'main',1,'2025-11-16 16:34:53','2025-11-16 16:34:53'),
(84,'debitnote_detail','Edit','bi bi-pencil','link','purchases/debit-notes/{id}/edit',NULL,'purchases.edit','btn-primary',20,'main',1,'2025-11-16 16:34:53','2025-11-16 16:34:53'),
(85,'debitnote_detail','Delete','bi bi-trash','form_submit','deleteForm','POST','purchases.delete','btn-outline-danger',30,'main',1,'2025-11-16 16:34:53','2025-11-16 16:34:53'),
(86,'debitnote_detail','Back','bi bi-arrow-left','link','purchases/debit-notes',NULL,NULL,'btn-outline-secondary',100,'back',1,'2025-11-16 16:34:53','2025-11-16 16:34:53'),
(87,'purchasebill_detail','Notes','bi bi-chat-left-text','modal','notesModal',NULL,NULL,'btn-outline-primary',10,'main',1,'2025-11-16 16:34:53','2025-11-16 16:34:53'),
(88,'purchasebill_detail','Edit','bi bi-pencil','link','purchases/bills/{id}/edit',NULL,'purchases.edit','btn-primary',20,'main',1,'2025-11-16 16:34:53','2025-11-16 16:34:53'),
(89,'purchasebill_detail','Delete','bi bi-trash','form_submit','deleteForm','POST','purchases.delete','btn-outline-danger',30,'main',1,'2025-11-16 16:34:53','2025-11-16 16:34:53'),
(90,'purchasebill_detail','Back','bi bi-arrow-left','link','purchases/bills',NULL,NULL,'btn-outline-secondary',100,'back',1,'2025-11-16 16:34:53','2025-11-16 16:34:53'),
(91,'goodsreceipt_detail','Notes','bi bi-chat-left-text','modal','notesModal',NULL,NULL,'btn-outline-primary',10,'main',1,'2025-11-16 16:34:53','2025-11-16 16:34:53'),
(92,'goodsreceipt_detail','Print GRN','bi bi-printer','javascript','window.print()',NULL,NULL,'btn-outline-theme',20,'main',1,'2025-11-16 16:34:53','2025-11-16 16:34:53'),
(93,'goodsreceipt_detail','Delete Receipt','bi bi-trash','form_submit','deleteForm','POST','procurement.delete','btn-outline-danger',30,'main',1,'2025-11-16 16:34:53','2025-11-16 16:34:53'),
(94,'goodsreceipt_detail','Back','bi bi-arrow-left','link','purchases/receiving',NULL,NULL,'btn-default',100,'back',1,'2025-11-16 16:34:53','2025-11-16 16:34:53'),
(95,'lots_index','Add Lot/Serial','bi-plus-lg','link','inventory/lots/create',NULL,'inventory.create','btn-theme',10,'primary',1,'2025-11-16 17:56:06','2025-11-16 17:56:06'),
(96,'lots_index',NULL,NULL,'divider',NULL,NULL,NULL,NULL,20,NULL,1,'2025-11-16 17:56:06','2025-11-16 17:56:06'),
(97,'lots_index','Traceability','bi-diagram-3','link','inventory/lots/traceability',NULL,NULL,'btn-outline-theme',30,'utility',1,'2025-11-16 17:56:06','2025-11-16 17:56:06'),
(98,'lots_index','Expiration Dates','bi-calendar-x','link','inventory/lots/expiration',NULL,NULL,'btn-outline-warning',40,'utility',1,'2025-11-16 17:56:06','2025-11-16 17:56:06'),
(99,'lots_index',NULL,NULL,'divider',NULL,NULL,NULL,NULL,50,NULL,1,'2025-11-16 17:56:06','2025-11-16 17:56:06'),
(100,'lots_index','Back','bi-arrow-left','link','inventory',NULL,NULL,NULL,60,'navigation',1,'2025-11-16 17:56:06','2025-11-16 17:56:06'),
(101,'quotes_index','Create General Quote','bi bi-plus-lg','link','quotes/general/create',NULL,'sales.create','btn-create',10,'primary',1,'2025-11-16 18:06:13','2025-11-20 13:34:27'),
(102,'quotes_index','Create Battery Quote','bi-battery-charging','link','quotes/battery/create',NULL,'sales.create','btn-create',20,'primary',1,'2025-11-16 18:06:13','2025-11-16 18:06:13'),
(105,'quotes_index',NULL,NULL,'divider',NULL,NULL,NULL,NULL,50,NULL,0,'2025-11-16 18:06:13','2025-11-26 02:21:47'),
(106,'quotes_index','Back','bi-arrow-left','link','sales/dashboard',NULL,NULL,NULL,60,'navigation',0,'2025-11-16 18:06:13','2025-11-26 02:21:50'),
(107,'quotes_index','Export CSV','bi-download','javascript','exportQuotes',NULL,NULL,NULL,30,'utility',1,'2025-11-16 18:09:07','2025-11-16 18:09:07'),
(108,'expense_detail','Approve','bi-check-lg','form_submit','accounting/expenses/{id}/approve','POST',NULL,'btn-success',10,'actions',1,'2025-11-16 18:28:39','2025-11-16 18:28:39'),
(109,'expense_detail','Reject','bi-x-lg','modal','#rejectModal',NULL,NULL,'btn-danger',20,'actions',1,'2025-11-16 18:28:39','2025-11-16 18:28:39'),
(110,'expense_detail',NULL,NULL,'divider',NULL,NULL,NULL,NULL,30,'actions',1,'2025-11-16 18:28:39','2025-11-16 18:28:39'),
(111,'expense_detail','Back','bi-arrow-left','link','accounting/expenses',NULL,NULL,NULL,40,'navigation',1,'2025-11-16 18:28:39','2025-11-16 18:28:39'),
(112,'return_detail','Print','bi-printer','javascript','window.print()',NULL,NULL,NULL,10,'actions',1,'2025-11-16 18:28:39','2025-11-16 18:28:39'),
(113,'return_detail','Edit','bi-pencil','link','sales/returns/{id}/edit',NULL,'sales.edit','btn-edit',20,'actions',1,'2025-11-16 18:28:39','2025-11-16 18:28:39'),
(114,'return_detail','Approve','bi-check-circle','form_submit','sales/returns/{id}/approve','POST','sales.approve','btn-success',30,'actions',1,'2025-11-16 18:28:39','2025-11-16 18:28:39'),
(115,'return_detail','Reject','bi-x-circle','form_submit','sales/returns/{id}/reject','POST','sales.approve','btn-danger',40,'actions',1,'2025-11-16 18:28:39','2025-11-16 18:28:39'),
(116,'return_detail','Complete','bi-check-circle-fill','form_submit','sales/returns/{id}/complete','POST','sales.edit','btn-success',50,'actions',1,'2025-11-16 18:28:39','2025-11-16 18:28:39'),
(117,'return_detail',NULL,NULL,'divider',NULL,NULL,NULL,NULL,60,'actions',1,'2025-11-16 18:28:39','2025-11-16 18:28:39'),
(118,'return_detail','Back','bi-arrow-left','link','sales/returns',NULL,NULL,NULL,70,'navigation',1,'2025-11-16 18:28:39','2025-11-16 18:28:39'),
(119,'camera_audit_detail','Verify','bi-check-circle','form_submit','camera-audit/verify/{id}','POST','camera_audit.verify','btn-success',10,'actions',1,'2025-11-16 18:28:39','2025-11-16 18:28:39'),
(120,'camera_audit_detail','Delete','bi-trash','form_submit','camera-audit/delete/{id}','POST','camera_audit.delete','btn-delete',20,'actions',1,'2025-11-16 18:28:39','2025-11-16 18:28:39'),
(121,'camera_audit_detail',NULL,NULL,'divider',NULL,NULL,NULL,NULL,30,'actions',1,'2025-11-16 18:28:39','2025-11-16 18:28:39'),
(122,'camera_audit_detail','Back','bi-arrow-left','link','camera-audit',NULL,NULL,NULL,40,'navigation',1,'2025-11-16 18:28:39','2025-11-16 18:28:39'),
(123,'pipedrive_import','Run All Phases','fas fa-play','javascript','importAll(false)',NULL,NULL,'btn-success',10,'actions',1,'2025-11-16 18:28:39','2025-11-16 18:28:39'),
(124,'pipedrive_import','Dry Run All','fas fa-check-circle','javascript','importAll(true)',NULL,NULL,NULL,20,'actions',1,'2025-11-16 18:28:39','2025-11-16 18:28:39'),
(125,'pipedrive_import',NULL,NULL,'divider',NULL,NULL,NULL,NULL,30,'actions',1,'2025-11-16 18:28:39','2025-11-16 18:28:39'),
(126,'pipedrive_import','Back','bi-arrow-left','link','pipedrive',NULL,NULL,NULL,40,'navigation',1,'2025-11-16 18:28:39','2025-11-16 18:28:39'),
(127,'application_detail','Edit','bi-pencil','link','hr/recruitment/applications/{id}/edit',NULL,'hr.edit',NULL,10,'actions',1,'2025-11-16 18:28:39','2025-11-16 18:37:09'),
(128,'application_detail','Delete','bi-trash','javascript','deleteApplication({id})',NULL,'hr.delete',NULL,20,'actions',1,'2025-11-16 18:28:39','2025-11-16 18:37:09'),
(129,'application_detail',NULL,NULL,'divider',NULL,NULL,NULL,NULL,30,'actions',1,'2025-11-16 18:28:39','2025-11-16 18:28:39'),
(130,'application_detail','Back','bi-arrow-left','link','hr/recruitment/applications',NULL,NULL,NULL,40,'navigation',1,'2025-11-16 18:28:39','2025-11-16 18:28:39'),
(131,'interview_detail','Edit','bi-pencil','link','hr/recruitment/interviews/{id}/edit',NULL,NULL,NULL,10,NULL,1,'2025-11-16 18:46:12','2025-11-16 18:46:12'),
(132,'interview_detail','Delete','bi-trash','form_submit','hr/recruitment/interviews/{id}/delete',NULL,NULL,NULL,20,NULL,1,'2025-11-16 18:46:12','2025-11-16 18:46:12'),
(133,'interview_detail',NULL,NULL,'divider',NULL,NULL,NULL,NULL,30,NULL,1,'2025-11-16 18:46:12','2025-11-16 18:46:12'),
(134,'interview_detail','View Application','bi-file-earmark','link','hr/recruitment/applications/{application_id}',NULL,NULL,NULL,40,NULL,1,'2025-11-16 18:46:12','2025-11-16 18:46:12'),
(135,'interview_detail','View Position','bi-briefcase','link','hr/recruitment/positions/{position_id}',NULL,NULL,NULL,50,NULL,1,'2025-11-16 18:46:12','2025-11-16 18:46:12'),
(136,'interview_detail',NULL,NULL,'divider',NULL,NULL,NULL,NULL,60,NULL,1,'2025-11-16 18:46:12','2025-11-16 18:46:12'),
(137,'interview_detail','Back','bi-arrow-left','link','hr/recruitment/interviews',NULL,NULL,NULL,70,NULL,1,'2025-11-16 18:46:12','2025-11-16 18:46:12'),
(138,'assessment_detail','Edit','bi-pencil','link','hr/recruitment/assessments/{id}/edit',NULL,NULL,NULL,10,NULL,1,'2025-11-16 18:55:26','2025-11-16 18:55:26'),
(139,'assessment_detail','Delete','bi-trash','form_submit','hr/recruitment/assessments/{id}/delete',NULL,NULL,NULL,20,NULL,1,'2025-11-16 18:55:26','2025-11-16 18:55:26'),
(140,'assessment_detail',NULL,NULL,'divider',NULL,NULL,NULL,NULL,30,NULL,1,'2025-11-16 18:55:26','2025-11-16 18:55:26'),
(141,'assessment_detail','View Application','bi-file-earmark','link','hr/recruitment/applications/{application_id}',NULL,NULL,NULL,40,NULL,1,'2025-11-16 18:55:26','2025-11-16 18:55:26'),
(142,'assessment_detail','View Position','bi-briefcase','link','hr/recruitment/positions/{position_id}',NULL,NULL,NULL,50,NULL,1,'2025-11-16 18:55:26','2025-11-16 18:55:26'),
(143,'assessment_detail',NULL,NULL,'divider',NULL,NULL,NULL,NULL,60,NULL,1,'2025-11-16 18:55:26','2025-11-16 18:55:26'),
(144,'assessment_detail','Back','bi-arrow-left','link','hr/recruitment/assessments',NULL,NULL,NULL,70,NULL,1,'2025-11-16 18:55:26','2025-11-16 18:55:26'),
(145,'offer_detail','Edit','bi-pencil','link','hr/recruitment/offers/{id}/edit',NULL,NULL,NULL,10,NULL,1,'2025-11-16 19:00:39','2025-11-16 19:00:39'),
(146,'offer_detail','Print Offer Letter','bi-printer','link','hr/recruitment/offers/{id}/print',NULL,NULL,NULL,15,NULL,1,'2025-11-16 19:00:39','2025-11-16 19:00:39'),
(147,'offer_detail','Delete','bi-trash','form_submit','hr/recruitment/offers/{id}/delete',NULL,NULL,NULL,20,NULL,1,'2025-11-16 19:00:39','2025-11-16 19:00:39'),
(148,'offer_detail',NULL,NULL,'divider',NULL,NULL,NULL,NULL,30,NULL,1,'2025-11-16 19:00:39','2025-11-16 19:00:39'),
(149,'offer_detail','View Application','bi-file-earmark','link','hr/recruitment/applications/{application_id}',NULL,NULL,NULL,40,NULL,1,'2025-11-16 19:00:39','2025-11-16 19:00:39'),
(150,'offer_detail','View Position','bi-briefcase','link','hr/recruitment/positions/{position_id}',NULL,NULL,NULL,50,NULL,1,'2025-11-16 19:00:39','2025-11-16 19:00:39'),
(151,'offer_detail',NULL,NULL,'divider',NULL,NULL,NULL,NULL,60,NULL,1,'2025-11-16 19:00:39','2025-11-16 19:00:39'),
(152,'offer_detail','Back','bi-arrow-left','link','hr/recruitment/offers',NULL,NULL,NULL,70,NULL,1,'2025-11-16 19:00:39','2025-11-16 19:00:39'),
(153,'document_view','Download','bi-download','link','documents/download/{id}',NULL,NULL,'btn-create',10,'actions',1,'2025-11-16 19:09:22','2025-11-16 19:09:22'),
(154,'document_view','Delete','bi-trash','javascript','deleteDocument()',NULL,NULL,'btn-outline-danger',20,'actions',1,'2025-11-16 19:09:22','2025-11-16 19:09:22'),
(155,'document_view',NULL,NULL,'divider',NULL,NULL,NULL,NULL,30,'actions',1,'2025-11-16 19:09:22','2025-11-16 19:09:22'),
(156,'document_view','Back','bi-arrow-left','link','documents',NULL,NULL,NULL,40,'navigation',1,'2025-11-16 19:09:22','2025-11-16 19:09:22'),
(157,'crm_document_detail','Download','bi-download','link','crm/documents/{id}/download',NULL,NULL,'btn-create',10,'actions',1,'2025-11-16 19:09:22','2025-11-16 19:09:22'),
(158,'crm_document_detail','Edit','bi-pencil','link','crm/documents/{id}/edit',NULL,NULL,'btn-outline-theme',20,'actions',1,'2025-11-16 19:09:22','2025-11-16 19:09:22'),
(159,'crm_document_detail',NULL,NULL,'divider',NULL,NULL,NULL,NULL,30,'actions',1,'2025-11-16 19:09:22','2025-11-16 19:09:22'),
(160,'crm_document_detail','Back','bi-arrow-left','link','crm/documents',NULL,NULL,NULL,40,'navigation',1,'2025-11-16 19:09:22','2025-11-16 19:09:22'),
(161,'recurring_template_detail','Execute Now','bi-play-fill','javascript','executeTemplate()',NULL,'recurring_templates.execute','btn-success',10,'actions',1,'2025-11-16 19:09:22','2025-11-16 19:09:22'),
(162,'recurring_template_detail','Edit','bi-pencil','link','recurring/{id}/edit',NULL,'recurring_templates.edit','btn-primary',20,'actions',1,'2025-11-16 19:09:22','2025-11-16 19:09:22'),
(163,'recurring_template_detail',NULL,NULL,'divider',NULL,NULL,NULL,NULL,30,'actions',1,'2025-11-16 19:09:22','2025-11-16 19:09:22'),
(164,'recurring_template_detail','Back','bi-arrow-left','link','recurring',NULL,NULL,NULL,40,'navigation',1,'2025-11-16 19:09:22','2025-11-16 19:09:22'),
(165,'project_board','List View','bi-list-ul','link','projects/{id}/list',NULL,NULL,NULL,10,'actions',1,'2025-11-16 20:29:08','2025-11-16 20:29:08'),
(166,'project_board','Financials','bi-cash-stack','link','projects/{id}/financials',NULL,NULL,NULL,20,'actions',1,'2025-11-16 20:29:08','2025-11-16 20:29:08'),
(167,'project_board','Edit','bi-pencil','link','projects/{id}/edit',NULL,NULL,NULL,30,'actions',1,'2025-11-16 20:29:08','2025-11-16 20:29:08'),
(168,'project_board','Delete','bi-trash','javascript','deleteProject({id})',NULL,NULL,'btn-outline-danger',40,'actions',1,'2025-11-16 20:29:08','2025-11-16 20:29:08'),
(169,'project_board',NULL,NULL,'divider',NULL,NULL,NULL,NULL,50,'actions',1,'2025-11-16 20:29:08','2025-11-16 20:29:08'),
(170,'project_board','Back','bi-arrow-left','link','projects',NULL,NULL,NULL,60,'navigation',1,'2025-11-16 20:29:08','2025-11-16 20:31:37'),
(171,'project_list','Board View','bi-kanban','link','projects/{id}',NULL,NULL,NULL,10,'actions',1,'2025-11-16 20:29:08','2025-11-16 20:29:08'),
(172,'project_list','Financials','bi-cash-stack','link','projects/{id}/financials',NULL,NULL,NULL,20,'actions',1,'2025-11-16 20:29:08','2025-11-16 20:29:08'),
(173,'project_list','Export CSV','bi-file-earmark-spreadsheet','link','projects/{id}/export',NULL,NULL,NULL,30,'actions',1,'2025-11-16 20:29:08','2025-11-16 20:29:08'),
(174,'project_list','Edit','bi-pencil','link','projects/{id}/edit',NULL,NULL,NULL,40,'actions',1,'2025-11-16 20:29:08','2025-11-16 20:29:08'),
(175,'project_list',NULL,NULL,'divider',NULL,NULL,NULL,NULL,50,'actions',1,'2025-11-16 20:29:08','2025-11-16 20:29:08'),
(176,'project_list','Back','bi-arrow-left','link','projects',NULL,NULL,NULL,60,'navigation',1,'2025-11-16 20:29:08','2025-11-16 20:31:37'),
(177,'nda_detail','Preview','bi-eye','link','ndas/{id}/preview',NULL,'ndas.view',NULL,10,'view',1,'2025-11-16 22:55:50','2025-11-16 22:55:50'),
(178,'nda_detail','Edit','bi-pencil','link','ndas/{id}/edit',NULL,'ndas.edit',NULL,20,'edit',1,'2025-11-16 22:55:50','2025-11-16 22:55:50'),
(179,'nda_detail','Send for Signature','bi-send','modal','sendEmailModal',NULL,'ndas.send',NULL,30,'send',1,'2025-11-16 22:55:50','2025-11-16 22:55:50'),
(180,'nda_detail',NULL,NULL,'divider',NULL,NULL,NULL,NULL,35,NULL,1,'2025-11-16 22:55:50','2025-11-16 22:55:50'),
(181,'nda_detail','Delete','bi-trash','form_submit','deleteForm',NULL,'ndas.delete',NULL,40,'delete',1,'2025-11-16 22:55:50','2025-11-16 22:55:50'),
(182,'nda_detail','Counter-Sign','bi-pen','link','ndas/{id}/countersign',NULL,'ndas.countersign','btn-success',15,NULL,1,'2025-11-16 23:44:17','2025-11-16 23:47:47'),
(183,'nda_detail','Email NDA','bi-envelope','modal','emailNDAModal',NULL,'ndas.view','btn-primary',20,NULL,1,'2025-11-16 23:52:27','2025-11-16 23:52:27'),
(184,'journal_entries_index','Import CSV','bi bi-file-earmark-arrow-up','link','accounting/journal/import',NULL,'accounting.create',NULL,10,'actions',1,'2025-11-17 17:29:12','2025-11-17 17:29:12'),
(185,'journal_entries_index','New Entry','bi bi-plus-lg','link','accounting/journal/create',NULL,'accounting.create',NULL,20,'actions',1,'2025-11-17 17:29:12','2025-11-20 13:34:27'),
(186,'journal_entries_index','Back','bi bi-arrow-left','link','accounting/dashboard',NULL,NULL,NULL,30,'navigation',1,'2025-11-17 17:29:12','2025-11-17 17:29:12'),
(231,'product_forecast_index','Command Center','fas fa-tachometer-alt','link','product-forecast/command-center',NULL,NULL,NULL,10,'actions',1,'2025-11-20 13:26:58','2025-11-20 13:26:58'),
(232,'product_forecast_index','Generate','fas fa-calculator','link','product-forecast/generate',NULL,NULL,NULL,20,'actions',1,'2025-11-20 13:26:58','2025-11-20 13:26:58'),
(233,'product_forecast_index','Pro Forma','fas fa-chart-line','link','product-forecast/proforma',NULL,NULL,NULL,30,'actions',1,'2025-11-20 13:26:58','2025-11-20 13:26:58'),
(234,'product_forecast_index','Back','bi bi-arrow-left','link','assumptions',NULL,NULL,NULL,40,'navigation',1,'2025-11-20 13:26:58','2025-11-20 13:26:58'),
(235,'product_forecast_generate','Command Center','fas fa-tachometer-alt','link','product-forecast/command-center',NULL,NULL,NULL,10,'actions',1,'2025-11-20 13:26:58','2025-11-20 13:26:58'),
(236,'product_forecast_generate','Configure','fas fa-cog','link','product-forecast',NULL,NULL,NULL,20,'actions',1,'2025-11-20 13:26:58','2025-11-20 13:26:58'),
(237,'product_forecast_generate','Pro Forma','fas fa-chart-line','link','product-forecast/proforma',NULL,NULL,NULL,30,'actions',1,'2025-11-20 13:26:58','2025-11-20 13:26:58'),
(238,'product_forecast_generate','Back','bi bi-arrow-left','link','product-forecast',NULL,NULL,NULL,40,'navigation',1,'2025-11-20 13:26:58','2025-11-20 13:26:58'),
(239,'product_forecast_proforma','Configure','fas fa-cog','link','product-forecast',NULL,NULL,NULL,10,'actions',1,'2025-11-20 13:26:58','2025-11-20 13:26:58'),
(240,'product_forecast_proforma','Variance','fas fa-chart-bar','link','product-forecast/variance?set_id={set_id}&start_date={start_date}&end_date={end_date}',NULL,NULL,NULL,20,'actions',1,'2025-11-20 13:26:58','2025-11-20 13:26:58'),
(241,'product_forecast_proforma','Export Excel','fas fa-file-excel','link','product-forecast/export-excel?set_id={set_id}&start_date={start_date}&end_date={end_date}&period_type={period_type}',NULL,NULL,NULL,30,'actions',1,'2025-11-20 13:26:58','2025-11-20 13:26:58'),
(242,'product_forecast_proforma','Sensitivity','fas fa-sliders-h','link','product-forecast/sensitivity?set_id={set_id}',NULL,NULL,NULL,40,'actions',1,'2025-11-20 13:26:58','2025-11-20 13:26:58'),
(243,'product_forecast_proforma','Compare','fas fa-exchange-alt','link','product-forecast/compare',NULL,NULL,NULL,50,'actions',1,'2025-11-20 13:26:58','2025-11-20 13:26:58'),
(244,'product_forecast_proforma','Back','bi bi-arrow-left','link','assumptions',NULL,NULL,NULL,60,'navigation',1,'2025-11-20 13:26:58','2025-11-20 13:26:58'),
(245,'product_forecast_sensitivity','Command Center','fas fa-tachometer-alt','link','product-forecast/command-center?set_id={set_id}',NULL,NULL,NULL,10,'actions',1,'2025-11-20 13:26:58','2025-11-20 13:26:58'),
(246,'product_forecast_sensitivity','Pro Forma','fas fa-chart-line','link','product-forecast/proforma?set_id={set_id}',NULL,NULL,NULL,20,'actions',1,'2025-11-20 13:26:58','2025-11-20 13:26:58'),
(247,'product_forecast_sensitivity','Variance','fas fa-chart-bar','link','product-forecast/variance?set_id={set_id}',NULL,NULL,NULL,30,'actions',1,'2025-11-20 13:26:58','2025-11-20 13:26:58'),
(248,'product_forecast_sensitivity','Back','bi bi-arrow-left','link','assumptions',NULL,NULL,NULL,40,'navigation',1,'2025-11-20 13:26:58','2025-11-20 13:26:58'),
(249,'product_forecast_variance','Command Center','fas fa-tachometer-alt','link','product-forecast/command-center?set_id={set_id}',NULL,NULL,NULL,10,'actions',1,'2025-11-20 13:26:58','2025-11-20 13:26:58'),
(250,'product_forecast_variance','Pro Forma','fas fa-chart-line','link','product-forecast/proforma?set_id={set_id}',NULL,NULL,NULL,20,'actions',1,'2025-11-20 13:26:58','2025-11-20 13:26:58'),
(251,'product_forecast_variance','Sensitivity','fas fa-sliders-h','link','product-forecast/sensitivity?set_id={set_id}',NULL,NULL,NULL,30,'actions',1,'2025-11-20 13:26:58','2025-11-20 13:26:58'),
(252,'product_forecast_variance','Back','bi bi-arrow-left','link','assumptions',NULL,NULL,NULL,40,'navigation',1,'2025-11-20 13:26:58','2025-11-20 13:26:58'),
(253,'mrp_index','Run MRP Calculation','bi bi-calculator','form_submit','mrpCalculateForm',NULL,NULL,NULL,1,'actions',1,'2025-11-20 21:08:46','2025-11-20 21:09:42'),
(254,'mrp_index','Safety Stock','bi bi-building','link','manufacturing/mrp/safetyStock',NULL,NULL,NULL,2,'actions',1,'2025-11-20 21:08:46','2025-11-20 21:08:46'),
(255,'mrp_index','Requisitions','bi bi-receipt','link','manufacturing/mrp/requisitions',NULL,NULL,NULL,3,'actions',1,'2025-11-20 21:08:46','2025-11-20 21:08:46'),
(256,'mrp_index','Back','bi bi-arrow-left','link','manufacturing/dashboard',NULL,NULL,NULL,4,'navigation',0,'2025-11-20 21:08:46','2025-11-26 02:11:45'),
(257,'shopfloor_index','Refresh','bi bi-arrow-repeat','javascript','refreshDashboard()',NULL,NULL,NULL,1,'actions',1,'2025-11-20 21:19:25','2025-11-20 21:19:25'),
(258,'shopfloor_index','All Work Orders','bi bi-clipboard-check','link','manufacturing/workorders',NULL,NULL,NULL,2,'actions',1,'2025-11-20 21:19:25','2025-11-20 21:19:25'),
(259,'shopfloor_index','Back','bi bi-arrow-left','link','manufacturing',NULL,NULL,NULL,3,'navigation',0,'2025-11-20 21:19:25','2025-11-26 02:20:11'),
(260,'crm_document_detail','Delete','bi-trash','form_submit','deleteDocumentForm','POST',NULL,'btn-delete',25,'actions',1,'2025-11-21 03:32:23','2025-11-21 03:33:16'),
(261,'crm_document_detail','Preview','bi-file-earmark-text','modal','documentPreviewModal',NULL,NULL,'btn-outline-theme',5,'actions',1,'2025-11-21 03:46:56','2025-11-21 03:46:56'),
(262,'agreements_index','Create Agreement','fas fa-plus','link','/agreements/create',NULL,NULL,NULL,1,'actions',1,'2025-11-25 23:30:52','2025-11-25 23:30:52'),
(263,'agreements_index','Export CSV','fas fa-download','link','/agreements/export',NULL,NULL,NULL,2,'actions',1,'2025-11-25 23:30:52','2025-11-25 23:30:52'),
(264,'agreements_index','View Trash','fas fa-trash','link','/agreements/trash',NULL,NULL,NULL,3,'actions',1,'2025-11-25 23:30:52','2025-11-25 23:30:52'),
(265,'agreements_index','Back','bi bi-arrow-left','link','/dashboard','GET','','btn-outline-theme',10,'navigation',0,'2025-11-25 23:30:52','2025-11-26 02:10:21'),
(266,'agreements_show','Edit','fas fa-edit','link','/agreements/{id}/edit',NULL,NULL,NULL,1,'actions',1,'2025-11-25 23:30:52','2025-11-25 23:30:52'),
(267,'agreements_show','Print','fas fa-print','link','/agreements/{id}/print',NULL,NULL,NULL,2,'actions',1,'2025-11-25 23:30:52','2025-11-25 23:30:52'),
(268,'agreements_show','Send for Signature','fas fa-paper-plane','modal','#sendSignatureModal',NULL,NULL,NULL,3,'actions',1,'2025-11-25 23:30:52','2025-11-25 23:30:52'),
(269,'agreements_show','Convert to Order','fas fa-exchange-alt','form_submit','/agreements/{id}/convert-order',NULL,NULL,NULL,4,'actions',1,'2025-11-25 23:30:52','2025-11-25 23:30:52'),
(270,'agreements_show','Delete','fas fa-trash','form_submit','/agreements/{id}/delete',NULL,NULL,NULL,5,'actions',1,'2025-11-25 23:30:52','2025-11-25 23:30:52'),
(271,'agreements_show','Back','bi bi-arrow-left','link','/agreements',NULL,NULL,NULL,10,'navigation',1,'2025-11-25 23:30:52','2025-11-25 23:30:52'),
(272,'diagrams_index','New Diagram','fas fa-plus','link','/diagrams/create',NULL,NULL,NULL,1,'actions',1,'2025-12-02 03:48:20','2025-12-02 03:48:20'),
(273,'diagrams_index','Templates','fas fa-clone','link','/diagrams/templates',NULL,NULL,NULL,2,'actions',1,'2025-12-02 03:48:20','2025-12-02 03:48:20'),
(274,'diagrams_index','Import','fas fa-file-import','javascript','importDiagram()',NULL,NULL,NULL,3,'actions',1,'2025-12-02 03:48:20','2025-12-02 03:48:20'),
(276,'diagrams_editor','Export PNG','fas fa-image','javascript','exportPNG()',NULL,NULL,NULL,2,'actions',1,'2025-12-02 03:48:20','2025-12-02 03:48:20'),
(277,'diagrams_editor','Export SVG','fas fa-file-code','javascript','exportSVG()',NULL,NULL,NULL,3,'actions',1,'2025-12-02 03:48:20','2025-12-02 03:48:20'),
(278,'diagrams_editor','Share','fas fa-share-alt','javascript','shareDiagram()',NULL,NULL,NULL,4,'actions',1,'2025-12-02 03:48:20','2025-12-02 03:48:20'),
(279,'diagrams_editor','Save as Template','fas fa-clone','javascript','saveAsTemplate()',NULL,NULL,NULL,5,'actions',1,'2025-12-02 03:48:20','2025-12-02 03:48:20'),
(280,'diagrams_editor','Back','bi bi-arrow-left me-1','link','/diagrams',NULL,NULL,NULL,10,'navigation',1,'2025-12-02 03:48:20','2025-12-02 03:48:20'),
(299,'product_detail','Delete Product','bi bi-trash','form_submit','products/{id}/delete',NULL,'inventory.delete',NULL,15,'actions',1,'2025-12-04 22:30:06','2025-12-04 22:30:06');
/*!40000 ALTER TABLE `page_actions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `password_reset_requests`
--

DROP TABLE IF EXISTS `password_reset_requests`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `password_reset_requests` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned DEFAULT NULL,
  `email` varchar(255) NOT NULL,
  `token_hash` varchar(255) NOT NULL,
  `ip_address` varchar(45) DEFAULT NULL,
  `user_agent` text DEFAULT NULL,
  `requested_at` timestamp NULL DEFAULT current_timestamp(),
  `expires_at` datetime NOT NULL,
  `used_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_user_id` (`user_id`),
  KEY `idx_email` (`email`),
  KEY `idx_expires` (`expires_at`),
  CONSTRAINT `password_reset_requests_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `password_reset_requests`
--

LOCK TABLES `password_reset_requests` WRITE;
/*!40000 ALTER TABLE `password_reset_requests` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `password_reset_requests` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `payment_batches`
--

DROP TABLE IF EXISTS `payment_batches`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `payment_batches` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `batch_number` varchar(50) NOT NULL,
  `batch_date` date NOT NULL,
  `batch_name` varchar(200) DEFAULT NULL,
  `payment_method` enum('check','ach','wire') NOT NULL,
  `bank_account_id` int(10) unsigned DEFAULT NULL,
  `total_amount` decimal(15,2) DEFAULT 0.00,
  `payment_count` int(11) DEFAULT 0,
  `status` enum('draft','processed','cancelled') DEFAULT 'draft',
  `processed_at` timestamp NULL DEFAULT NULL,
  `processed_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `created_by` int(10) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `batch_number` (`batch_number`),
  KEY `bank_account_id` (`bank_account_id`),
  KEY `created_by` (`created_by`),
  KEY `processed_by` (`processed_by`),
  KEY `idx_batch_date` (`batch_date`),
  KEY `idx_status` (`status`),
  CONSTRAINT `payment_batches_ibfk_1` FOREIGN KEY (`bank_account_id`) REFERENCES `bank_accounts` (`id`),
  CONSTRAINT `payment_batches_ibfk_2` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `payment_batches_ibfk_3` FOREIGN KEY (`processed_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `payment_batches`
--

LOCK TABLES `payment_batches` WRITE;
/*!40000 ALTER TABLE `payment_batches` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `payment_batches` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `payment_terms`
--

DROP TABLE IF EXISTS `payment_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `payment_terms` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `term_name` varchar(50) NOT NULL COMMENT 'Display name (e.g., Net 30)',
  `term_code` varchar(20) NOT NULL COMMENT 'Short code (e.g., NET30)',
  `net_days` int(11) NOT NULL DEFAULT 30 COMMENT 'Payment due in days',
  `discount_percentage` decimal(5,2) DEFAULT 0.00 COMMENT 'Early payment discount %',
  `discount_days` int(11) DEFAULT 0 COMMENT 'Days to qualify for discount',
  `late_fee_percentage` decimal(5,2) DEFAULT 0.00 COMMENT 'Late payment fee %',
  `late_fee_grace_days` int(11) DEFAULT 0 COMMENT 'Grace period before late fees',
  `is_default` tinyint(1) DEFAULT 0 COMMENT 'Default payment term',
  `is_active` tinyint(1) DEFAULT 1,
  `description` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `term_code` (`term_code`),
  UNIQUE KEY `unique_term_code` (`term_code`),
  KEY `idx_active` (`is_active`),
  KEY `idx_default` (`is_default`),
  KEY `idx_payment_net_days` (`net_days`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Standard payment terms for invoices and bills';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `payment_terms`
--

LOCK TABLES `payment_terms` WRITE;
/*!40000 ALTER TABLE `payment_terms` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `payment_terms` VALUES
(1,'Due on Receipt','DUE_ON_RECEIPT',0,0.00,0,0.00,0,0,1,'Payment due immediately upon receipt','2025-11-01 12:32:09','2025-11-01 12:32:09'),
(2,'Net 15','NET15',15,0.00,0,0.00,0,0,1,'Payment due within 15 days','2025-11-01 12:32:09','2025-11-01 12:32:09'),
(3,'Net 30','NET30',30,0.00,0,0.00,0,1,1,'Payment due within 30 days','2025-11-01 12:32:09','2025-11-01 12:32:09'),
(4,'Net 45','NET45',45,0.00,0,0.00,0,0,1,'Payment due within 45 days','2025-11-01 12:32:09','2025-11-01 12:32:09'),
(5,'Net 60','NET60',60,0.00,0,0.00,0,0,1,'Payment due within 60 days','2025-11-01 12:32:09','2025-11-01 12:32:09'),
(6,'Net 90','NET90',90,0.00,0,0.00,0,0,1,'Payment due within 90 days','2025-11-01 12:32:09','2025-11-01 12:32:09'),
(7,'2/10 Net 30','2_10_NET30',30,2.00,10,0.00,0,0,1,'2% discount if paid within 10 days, net 30','2025-11-01 12:32:09','2025-11-01 12:32:09');
/*!40000 ALTER TABLE `payment_terms` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `payments`
--

DROP TABLE IF EXISTS `payments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `payments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `payment_number` varchar(50) NOT NULL,
  `invoice_id` int(10) unsigned NOT NULL,
  `customer_id` int(10) unsigned NOT NULL,
  `payment_date` date NOT NULL,
  `amount` decimal(15,2) NOT NULL,
  `payment_method` enum('cash','check','credit_card','bank_transfer','other') NOT NULL,
  `reference` varchar(100) DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `payment_number` (`payment_number`),
  KEY `invoice_id` (`invoice_id`),
  KEY `customer_id` (`customer_id`),
  KEY `created_by` (`created_by`),
  KEY `idx_payments_deleted_at` (`deleted_at`),
  CONSTRAINT `payments_ibfk_1` FOREIGN KEY (`invoice_id`) REFERENCES `invoices` (`id`),
  CONSTRAINT `payments_ibfk_2` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`),
  CONSTRAINT `payments_ibfk_3` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `payments`
--

LOCK TABLES `payments` WRITE;
/*!40000 ALTER TABLE `payments` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `payments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `payroll`
--

DROP TABLE IF EXISTS `payroll`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `payroll` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `employee_id` int(10) unsigned NOT NULL,
  `pay_period_start` date NOT NULL,
  `pay_period_end` date NOT NULL,
  `pay_date` date NOT NULL,
  `basic_salary` decimal(15,2) NOT NULL,
  `allowances` decimal(15,2) DEFAULT 0.00,
  `deductions` decimal(15,2) DEFAULT 0.00,
  `net_pay` decimal(15,2) NOT NULL,
  `status` enum('draft','processed','paid') DEFAULT 'draft',
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `employee_id` (`employee_id`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `payroll_ibfk_1` FOREIGN KEY (`employee_id`) REFERENCES `employees` (`id`) ON DELETE CASCADE,
  CONSTRAINT `payroll_ibfk_2` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `payroll`
--

LOCK TABLES `payroll` WRITE;
/*!40000 ALTER TABLE `payroll` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `payroll` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `performance_reviews`
--

DROP TABLE IF EXISTS `performance_reviews`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `performance_reviews` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `employee_id` int(10) unsigned NOT NULL,
  `review_period_start` date NOT NULL,
  `review_period_end` date NOT NULL,
  `review_date` date DEFAULT NULL,
  `reviewer_id` int(10) unsigned DEFAULT NULL,
  `review_type` enum('probation','quarterly','annual','project','other') DEFAULT 'annual',
  `overall_rating` decimal(3,2) DEFAULT NULL COMMENT 'Rating out of 5.00',
  `performance_rating` decimal(3,2) DEFAULT NULL,
  `attendance_rating` decimal(3,2) DEFAULT NULL,
  `teamwork_rating` decimal(3,2) DEFAULT NULL,
  `communication_rating` decimal(3,2) DEFAULT NULL,
  `strengths` text DEFAULT NULL,
  `areas_for_improvement` text DEFAULT NULL,
  `goals` text DEFAULT NULL,
  `achievements` text DEFAULT NULL,
  `comments` text DEFAULT NULL,
  `employee_comments` text DEFAULT NULL,
  `status` enum('scheduled','in-progress','completed','acknowledged') DEFAULT 'scheduled',
  `acknowledged_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_employee` (`employee_id`),
  KEY `idx_review_date` (`review_date`),
  KEY `idx_status` (`status`),
  CONSTRAINT `performance_reviews_ibfk_1` FOREIGN KEY (`employee_id`) REFERENCES `employees` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `performance_reviews`
--

LOCK TABLES `performance_reviews` WRITE;
/*!40000 ALTER TABLE `performance_reviews` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `performance_reviews` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `permission_groups`
--

DROP TABLE IF EXISTS `permission_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `permission_groups` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL COMMENT 'Display name of the group',
  `parent_id` int(10) unsigned DEFAULT NULL COMMENT 'Parent group for hierarchy',
  `display_order` int(11) DEFAULT 0 COMMENT 'Order within parent group',
  `icon` varchar(50) DEFAULT NULL COMMENT 'Icon class (e.g., bi-grid-3x3-gap)',
  `color` varchar(20) DEFAULT NULL COMMENT 'Color for visual distinction (e.g., success, danger, primary)',
  `description` text DEFAULT NULL COMMENT 'Description of this permission group',
  `is_system` tinyint(1) DEFAULT 0 COMMENT 'System groups cannot be deleted',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_parent` (`parent_id`),
  KEY `idx_order` (`parent_id`,`display_order`),
  CONSTRAINT `permission_groups_ibfk_1` FOREIGN KEY (`parent_id`) REFERENCES `permission_groups` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Hierarchical grouping of permissions for better organization';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `permission_groups`
--

LOCK TABLES `permission_groups` WRITE;
/*!40000 ALTER TABLE `permission_groups` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `permission_groups` VALUES
(1,'App Grid (Quick Access)',NULL,0,'bi-grid-3x3-gap-fill','success','Essential quick-access items for all users',1,'2025-11-24 18:37:49','2025-11-28 23:18:59'),
(2,'Departments',NULL,1,'bi-building','primary','Core business department modules',1,'2025-11-24 18:37:49','2025-11-28 23:18:48'),
(3,'Tools',NULL,3,'bi-tools','info','Productivity and utility tools',1,'2025-11-24 18:37:49','2025-11-24 18:37:49'),
(4,'Administration',NULL,4,'bi-shield-lock-fill','danger','System administration and settings',1,'2025-11-24 18:37:49','2025-11-24 18:37:49'),
(5,'Accounting',2,1,'bi-calculator',NULL,'Financial accounting, invoicing, and reporting',1,'2025-11-24 18:37:49','2025-11-24 18:37:49'),
(6,'CRM',2,2,'bi-people',NULL,'Customer relationship management and sales',1,'2025-11-24 18:37:49','2025-11-24 18:37:49'),
(7,'HR',2,3,'bi-person-badge',NULL,'Human resources and employee management',1,'2025-11-24 18:37:49','2025-11-24 18:37:49'),
(8,'Inventory',2,4,'bi-box-seam',NULL,'Inventory and stock management',1,'2025-11-24 18:37:49','2025-11-24 18:37:49'),
(9,'Manufacturing',2,5,'bi-gear-wide-connected',NULL,'Manufacturing and production',1,'2025-11-24 18:37:49','2025-11-24 18:37:49'),
(10,'Purchases',2,6,'bi-cart',NULL,'Procurement and supplier management',1,'2025-11-24 18:37:49','2025-11-24 18:37:49'),
(11,'Sales',2,7,'bi-graph-up',NULL,'Sales orders and fulfillment',1,'2025-11-24 18:37:49','2025-11-24 18:37:49'),
(12,'Documents',3,1,'bi-file-earmark-text',NULL,'Document management and storage',1,'2025-11-24 18:37:49','2025-11-24 18:37:49'),
(13,'Help Desk',3,2,'bi-headset',NULL,'Support ticketing system',1,'2025-11-24 18:37:49','2025-11-24 18:37:49'),
(14,'Projects',3,3,'bi-kanban',NULL,'Project management',1,'2025-11-24 18:37:49','2025-11-24 18:37:49'),
(15,'Reports',3,4,'bi-bar-chart',NULL,'Reporting and analytics',1,'2025-11-24 18:37:49','2025-11-24 18:37:49'),
(16,'Settings & System',4,1,'bi-gear',NULL,'System configuration and settings',1,'2025-11-24 18:37:49','2025-11-24 18:37:49'),
(17,'Security',4,2,'bi-shield-check',NULL,'User, role, and permission management',1,'2025-11-24 18:37:49','2025-11-24 18:37:49'),
(18,'Announcements',4,3,'bi-megaphone',NULL,'System announcements',1,'2025-11-24 18:37:49','2025-11-24 18:37:49'),
(19,'Forecasting',NULL,2,'','','Financial forecasting and planning',0,'2025-11-28 22:58:33','2025-11-28 23:18:38');
/*!40000 ALTER TABLE `permission_groups` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `permissions`
--

DROP TABLE IF EXISTS `permissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `permissions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL,
  `module` varchar(50) NOT NULL,
  `group_id` int(10) unsigned DEFAULT NULL COMMENT 'Permission group this belongs to',
  `description` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `name` (`name`),
  KEY `idx_group` (`group_id`),
  CONSTRAINT `permissions_ibfk_1` FOREIGN KEY (`group_id`) REFERENCES `permission_groups` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=1489 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `permissions`
--

LOCK TABLES `permissions` WRITE;
/*!40000 ALTER TABLE `permissions` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `permissions` VALUES
(1,'users.view','users',4,'View users','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(2,'users.create','users',4,'Create users','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(3,'users.edit','users',4,'Edit users','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(4,'users.delete','users',4,'Delete users','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(5,'crm.view','crm',6,'View CRM (customers, contacts, opportunities)','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(6,'crm.create','crm',6,'Create CRM records (customers, contacts, opportunities)','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(7,'crm.edit','crm',6,'Edit CRM records (customers, contacts, opportunities)','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(8,'crm.delete','crm',6,'Delete CRM records (customers, contacts, opportunities)','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(9,'inventory.view','inventory',8,'View inventory','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(10,'inventory.create','inventory',8,'Create products','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(11,'inventory.edit','inventory',8,'Edit products','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(12,'inventory.delete','inventory',8,'Delete products','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(13,'inventory.adjust','inventory',8,'Adjust inventory levels','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(14,'sales.view','sales',11,'View sales orders','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(15,'sales.create','sales',11,'Create sales orders','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(16,'sales.edit','sales',11,'Edit sales orders','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(17,'sales.delete','sales',11,'Delete sales orders','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(18,'invoices.view','sales',5,'View invoices','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(19,'invoices.create','sales',5,'Create invoices','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(20,'invoices.edit','sales',5,'Edit invoices','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(21,'invoices.delete','sales',5,'Delete invoices','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(22,'payments.view','sales',5,'View payments','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(23,'payments.create','sales',5,'Create payments','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(24,'purchases.view','purchases',10,'View purchase orders','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(25,'purchases.create','purchases',10,'Create purchase orders','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(26,'purchases.edit','purchases',10,'Edit purchase orders','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(27,'purchases.delete','purchases',10,'Delete purchase orders','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(28,'suppliers.view','purchases',10,'View suppliers','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(29,'suppliers.create','purchases',10,'Create suppliers','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(30,'suppliers.edit','purchases',10,'Edit suppliers','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(31,'suppliers.delete','purchases',10,'Delete suppliers','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(32,'accounting.view','accounting',5,'View accounting records','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(33,'accounting.create','accounting',5,'Create journal entries','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(34,'accounting.edit','accounting',5,'Edit journal entries','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(35,'accounting.post','accounting',5,'Post journal entries','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(36,'hr.view','hr',7,'View employees','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(37,'hr.create','hr',7,'Create employees','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(38,'hr.edit','hr',7,'Edit employees','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(39,'hr.delete','hr',7,'Delete employees','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(40,'payroll.view','hr',7,'View payroll','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(41,'payroll.create','hr',7,'Create payroll','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(42,'payroll.process','hr',7,'Process payroll','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(43,'manufacturing.view','manufacturing',9,'View BOMs and work orders','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(44,'manufacturing.create','manufacturing',9,'Create BOMs and work orders','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(45,'manufacturing.edit','manufacturing',9,'Edit BOMs and work orders','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(46,'manufacturing.delete','manufacturing',9,'Delete BOMs and work orders','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(47,'reports.view','reports',15,'View reports','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(48,'reports.export','reports',15,'Export reports','2025-10-26 14:24:24','2025-11-28 22:59:52'),
(49,'settings.view','settings',16,'View settings','2025-11-01 15:39:52','2025-11-28 22:59:52'),
(50,'settings.edit','settings',16,'Edit settings','2025-11-01 15:39:52','2025-11-28 22:59:52'),
(51,'purchasing.view','purchases',10,'View purchasing','2025-11-01 16:40:54','2025-11-28 23:03:01'),
(52,'purchasing.create','purchases',10,'Create purchasing','2025-11-01 16:40:54','2025-11-28 23:03:01'),
(53,'purchasing.edit','purchases',10,'Edit purchasing','2025-11-01 16:40:54','2025-11-28 23:03:01'),
(54,'purchasing.delete','purchases',10,'Delete purchasing','2025-11-01 16:40:54','2025-11-28 23:03:01'),
(55,'roles.view','roles',4,'View roles','2025-11-01 16:40:54','2025-11-28 22:59:52'),
(56,'roles.create','roles',4,'Create roles','2025-11-01 16:40:54','2025-11-28 22:59:52'),
(57,'roles.edit','roles',4,'Edit roles','2025-11-01 16:40:54','2025-11-28 22:59:52'),
(58,'roles.delete','roles',4,'Delete roles','2025-11-01 16:40:54','2025-11-28 22:59:52'),
(69,'accounting.delete','accounting',5,'Delete accounting entries','2025-11-03 14:26:17','2025-11-28 22:59:52'),
(70,'accounting.approve','accounting',5,'Approve accounting transactions','2025-11-03 14:26:17','2025-11-28 22:59:52'),
(71,'inventory.manage','inventory',8,'Manage inventory','2025-11-03 14:26:17','2025-11-28 22:59:52'),
(72,'manufacturing.approve','manufacturing',9,'Approve manufacturing operations','2025-11-03 14:26:17','2025-11-28 22:59:52'),
(73,'procurement.view','procurement',10,'View procurement','2025-11-03 14:26:17','2025-11-28 22:59:52'),
(74,'procurement.create','procurement',10,'Create procurement','2025-11-03 14:26:17','2025-11-28 22:59:52'),
(75,'procurement.edit','procurement',10,'Edit procurement','2025-11-03 14:26:17','2025-11-28 22:59:52'),
(76,'procurement.delete','procurement',10,'Delete procurement','2025-11-03 14:26:17','2025-11-28 22:59:52'),
(77,'admin','admin',4,'Full system access','2025-11-03 14:26:17','2025-11-28 23:03:13'),
(78,'dashboard.view','',3,'View dashboard','2025-11-11 11:15:46','2025-11-28 23:02:18'),
(79,'projects.view','',14,'View projects','2025-11-11 11:15:46','2025-11-28 22:59:52'),
(80,'helpdesk.view','',3,'View help desk module','2025-11-11 11:15:46','2025-11-28 22:59:52'),
(81,'documents.view','',12,'View documents','2025-11-11 11:15:46','2025-11-28 22:59:52'),
(82,'messaging.view','',3,'View messaging module','2025-11-11 11:15:46','2025-11-28 23:02:18'),
(83,'calendar.view','',1,'View calendar','2025-11-11 11:15:46','2025-11-28 22:59:52'),
(84,'marketing.view','',4,'View marketing module','2025-11-11 11:15:46','2025-11-28 23:03:01'),
(85,'analytics.view','',15,'View analytics','2025-11-11 11:15:46','2025-11-28 22:59:52'),
(87,'accounts.view','accounting',5,'View chart of accounts','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(88,'accounts.create','accounting',5,'Create accounts','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(89,'accounts.edit','accounting',5,'Edit accounts','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(90,'accounts.delete','accounting',5,'Delete accounts','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(91,'journal.view','accounting',5,'View journal entries','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(92,'journal.create','accounting',5,'Create journal entries','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(93,'journal.edit','accounting',5,'Edit journal entries','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(94,'journal.delete','accounting',5,'Delete journal entries','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(95,'journal.post','accounting',5,'Post journal entries','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(96,'bank_accounts.view','accounting',5,'View bank accounts','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(97,'bank_accounts.create','accounting',5,'Create bank accounts','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(98,'bank_accounts.edit','accounting',5,'Edit bank accounts','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(99,'reconciliation.view','accounting',5,'View bank reconciliation','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(100,'reconciliation.create','accounting',5,'Perform bank reconciliation','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(101,'fixed_assets.view','accounting',5,'View fixed assets','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(102,'fixed_assets.create','accounting',5,'Create fixed assets','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(103,'fixed_assets.edit','accounting',5,'Edit fixed assets','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(104,'fixed_assets.delete','accounting',5,'Delete fixed assets','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(105,'budgets.view','accounting',5,'View budgets','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(106,'budgets.create','accounting',5,'Create budgets','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(107,'budgets.edit','accounting',5,'Edit budgets','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(108,'period_closing.view','accounting',5,'View period closing','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(109,'period_closing.execute','accounting',5,'Execute period closing','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(110,'tax_filing.view','accounting',5,'View tax filing','2025-11-11 12:32:35','2025-11-28 23:02:18'),
(111,'tax_filing.create','accounting',5,'Create tax filings','2025-11-11 12:32:35','2025-11-28 23:02:18'),
(112,'proforma.view','accounting',5,'View pro forma statements','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(113,'proforma.create','accounting',5,'Create pro forma statements','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(114,'customers.view','crm',6,'View customers','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(115,'customers.create','crm',6,'Create customers','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(116,'customers.edit','crm',6,'Edit customers','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(117,'customers.delete','crm',6,'Delete customers','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(118,'customers.export','crm',6,'Export customer data','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(119,'clients.view','crm',6,'View clients','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(120,'clients.create','crm',6,'Create clients','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(121,'clients.edit','crm',6,'Edit clients','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(122,'clients.delete','crm',6,'Delete clients','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(123,'contacts.view','crm',6,'View contacts','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(124,'contacts.create','crm',6,'Create contacts','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(125,'contacts.edit','crm',6,'Edit contacts','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(126,'contacts.delete','crm',6,'Delete contacts','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(127,'opportunities.view','crm',6,'View opportunities','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(128,'opportunities.create','crm',6,'Create opportunities','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(129,'opportunities.edit','crm',6,'Edit opportunities','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(130,'opportunities.delete','crm',6,'Delete opportunities','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(131,'activities.view','crm',6,'View CRM activities','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(132,'activities.create','crm',6,'Create CRM activities','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(133,'activities.edit','crm',6,'Edit CRM activities','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(134,'employees.view','hr',7,'View employees','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(135,'employees.create','hr',7,'Create employees','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(136,'employees.edit','hr',7,'Edit employees','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(137,'employees.delete','hr',7,'Delete employees','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(138,'applications.view','hr',7,'View job applications','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(139,'applications.create','hr',7,'Create job applications','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(140,'applications.edit','hr',7,'Edit job applications','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(141,'interviews.view','hr',7,'View interviews','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(142,'interviews.create','hr',7,'Schedule interviews','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(143,'interviews.edit','hr',7,'Edit interviews','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(144,'assessments.view','hr',7,'View assessments','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(145,'assessments.create','hr',7,'Create assessments','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(146,'offers.view','hr',7,'View job offers','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(147,'offers.create','hr',7,'Create job offers','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(148,'offers.approve','hr',7,'Approve job offers','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(149,'timeoff.view','hr',7,'View time off requests','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(150,'timeoff.create','hr',7,'Create time off requests','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(151,'timeoff.approve','hr',7,'Approve time off requests','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(152,'timeoff.delete','hr',7,'Delete time off requests','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(153,'timesheets.view','hr',7,'View timesheets','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(154,'timesheets.create','hr',7,'Create timesheets','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(155,'timesheets.approve','hr',7,'Approve timesheets','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(156,'attendance.view','hr',7,'View attendance','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(157,'attendance.create','hr',7,'Record attendance','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(158,'training.view','hr',7,'View training records','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(159,'training.create','hr',7,'Create training records','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(160,'training.edit','hr',7,'Edit training records','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(161,'reviews.view','hr',7,'View performance reviews','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(162,'reviews.create','hr',7,'Create performance reviews','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(163,'reviews.edit','hr',7,'Edit performance reviews','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(164,'contracts.view','hr',7,'View employee contracts','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(165,'contracts.create','hr',7,'Create employee contracts','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(166,'contracts.edit','hr',7,'Edit employee contracts','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(167,'separations.view','hr',7,'View employee separations','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(168,'separations.create','hr',7,'Create employee separations','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(169,'products.view','inventory',8,'View products','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(170,'products.create','inventory',8,'Create products','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(171,'products.edit','inventory',8,'Edit products','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(172,'products.delete','inventory',8,'Delete products','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(173,'products.export','inventory',8,'Export product data','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(174,'categories.view','inventory',8,'View product categories','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(175,'categories.create','inventory',8,'Create product categories','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(176,'categories.edit','inventory',8,'Edit product categories','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(177,'categories.delete','inventory',8,'Delete product categories','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(178,'stock_movements.view','inventory',8,'View stock movements','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(179,'stock_movements.create','inventory',8,'Create stock movements','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(180,'stock_adjustments.create','inventory',8,'Create stock adjustments','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(181,'transfers.view','inventory',8,'View stock transfers','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(182,'transfers.create','inventory',8,'Create stock transfers','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(183,'transfers.approve','inventory',8,'Approve stock transfers','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(184,'lots.view','inventory',8,'View lot/serial numbers','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(185,'lots.create','inventory',8,'Create lot/serial numbers','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(186,'lots.edit','inventory',8,'Edit lot/serial numbers','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(187,'workorders.view','manufacturing',9,'View work orders','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(188,'workorders.create','manufacturing',9,'Create work orders','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(189,'workorders.edit','manufacturing',9,'Edit work orders','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(190,'workorders.delete','manufacturing',9,'Delete work orders','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(191,'workorders.release','manufacturing',9,'Release work orders','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(192,'workorders.complete','manufacturing',9,'Complete work orders','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(193,'boms.view','manufacturing',9,'View bills of materials','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(194,'boms.create','manufacturing',9,'Create bills of materials','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(195,'boms.edit','manufacturing',9,'Edit bills of materials','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(196,'boms.delete','manufacturing',9,'Delete bills of materials','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(197,'equipment.view','manufacturing',9,'View equipment','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(198,'equipment.create','manufacturing',9,'Create equipment','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(199,'equipment.edit','manufacturing',9,'Edit equipment','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(200,'equipment.maintenance','manufacturing',9,'Perform equipment maintenance','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(201,'capacity.view','manufacturing',9,'View capacity planning','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(202,'capacity.edit','manufacturing',9,'Edit capacity planning','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(203,'quality.view','manufacturing',9,'View quality control','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(204,'quality.create','manufacturing',9,'Create quality inspections','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(205,'quality.approve','manufacturing',9,'Approve quality inspections','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(206,'mrp.view','manufacturing',9,'View MRP','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(207,'mrp.run','manufacturing',9,'Run MRP calculations','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(208,'quotes.view','sales',11,'View quotes','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(209,'quotes.create','sales',11,'Create quotes','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(210,'quotes.edit','sales',11,'Edit quotes','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(211,'quotes.delete','sales',11,'Delete quotes','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(212,'quotes.approve','sales',11,'Approve quotes','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(213,'quotes.convert','sales',11,'Convert quotes to orders','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(214,'orders.view','sales',11,'View sales orders','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(215,'orders.create','sales',11,'Create sales orders','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(216,'orders.edit','sales',11,'Edit sales orders','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(217,'orders.delete','sales',11,'Delete sales orders','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(218,'orders.approve','sales',11,'Approve sales orders','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(219,'delivery_notes.view','sales',11,'View delivery notes','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(220,'delivery_notes.create','sales',11,'Create delivery notes','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(221,'returns.view','sales',11,'View sales returns','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(222,'returns.create','sales',11,'Create sales returns','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(223,'returns.approve','sales',11,'Approve sales returns','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(224,'pricing_rules.view','sales',11,'View pricing rules','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(225,'pricing_rules.create','sales',11,'Create pricing rules','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(226,'pricing_rules.edit','sales',11,'Edit pricing rules','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(227,'promotions.view','sales',11,'View promotions','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(228,'promotions.create','sales',11,'Create promotions','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(229,'promotions.edit','sales',11,'Edit promotions','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(230,'purchase_orders.view','purchases',10,'View purchase orders','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(231,'purchase_orders.create','purchases',10,'Create purchase orders','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(232,'purchase_orders.edit','purchases',10,'Edit purchase orders','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(233,'purchase_orders.delete','purchases',10,'Delete purchase orders','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(234,'purchase_orders.approve','purchases',10,'Approve purchase orders','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(235,'goods_receipts.view','purchases',10,'View goods receipts','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(236,'goods_receipts.create','purchases',10,'Create goods receipts','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(237,'bills.view','purchases',5,'View supplier bills','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(238,'bills.create','purchases',5,'Create supplier bills','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(239,'bills.approve','purchases',5,'Approve supplier bills','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(240,'supplier_payments.view','purchases',10,'View supplier payments','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(241,'supplier_payments.create','purchases',10,'Create supplier payments','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(242,'tickets.view','helpdesk',3,'View support tickets','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(243,'tickets.create','helpdesk',3,'Create support tickets','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(244,'tickets.edit','helpdesk',3,'Edit support tickets','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(245,'tickets.assign','helpdesk',3,'Assign support tickets','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(246,'tickets.close','helpdesk',3,'Close support tickets','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(247,'projects.create','projects',14,'Create projects','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(248,'projects.edit','projects',14,'Edit projects','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(249,'projects.delete','projects',14,'Delete projects','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(250,'documents.upload','documents',12,'Upload documents','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(251,'documents.edit','documents',12,'Edit documents','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(252,'documents.delete','documents',12,'Delete documents','2025-11-11 12:32:35','2025-11-28 22:59:52'),
(253,'campaigns.view','marketing',6,'View email campaigns','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(254,'campaigns.create','marketing',6,'Create email campaigns','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(255,'campaigns.edit','marketing',6,'Edit email campaigns','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(256,'campaigns.send','marketing',6,'Send email campaigns','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(257,'lists.view','marketing',4,'View mailing lists','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(258,'lists.create','marketing',4,'Create mailing lists','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(259,'templates.view','marketing',4,'View email templates','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(260,'templates.create','marketing',4,'Create email templates','2025-11-11 12:32:35','2025-11-28 23:03:01'),
(267,'positions.view','hr',7,'View job positions','2025-11-11 12:46:12','2025-11-28 23:03:01'),
(268,'positions.create','hr',7,'Create job positions','2025-11-11 12:46:12','2025-11-28 23:03:01'),
(269,'positions.edit','hr',7,'Edit job positions','2025-11-11 12:46:12','2025-11-28 23:03:01'),
(270,'positions.delete','hr',7,'Delete job positions','2025-11-11 12:46:12','2025-11-28 23:03:01'),
(271,'audit_logs.view','system',5,'View audit logs and system activity','2025-11-11 16:59:36','2025-11-28 23:03:01'),
(272,'forecasting.view','accounting',19,'View financial forecasts and scenarios','2025-11-11 17:41:34','2025-11-28 22:59:52'),
(273,'forecasting.create','accounting',19,'Create financial forecasts and scenarios','2025-11-11 17:41:34','2025-11-28 22:59:52'),
(274,'forecasting.edit','accounting',19,'Edit financial forecasts and scenarios','2025-11-11 17:41:34','2025-11-28 22:59:52'),
(275,'forecasting.delete','accounting',19,'Delete financial forecasts and scenarios','2025-11-11 17:41:34','2025-11-28 22:59:52'),
(276,'forecasting.approve','accounting',19,'Approve and finalize forecasts','2025-11-11 17:41:34','2025-11-28 22:59:52'),
(287,'camera_audit.view','inventory',3,'View camera audit logs and images','2025-11-13 21:23:05','2025-11-28 22:59:52'),
(288,'camera_audit.capture','inventory',3,'Capture images and create audit logs','2025-11-13 21:23:05','2025-11-28 22:59:52'),
(289,'camera_audit.verify','inventory',3,'Verify and approve audit images','2025-11-13 21:23:05','2025-11-28 22:59:52'),
(290,'camera_audit.annotate','inventory',3,'Add annotations to audit images','2025-11-13 21:23:05','2025-11-28 22:59:52'),
(291,'camera_audit.delete','inventory',3,'Delete camera audit logs','2025-11-13 21:23:05','2025-11-28 22:59:52'),
(292,'camera_audit.stations','inventory',3,'Manage camera stations','2025-11-13 21:23:05','2025-11-28 22:59:52'),
(293,'camera_audit.export','inventory',3,'Export camera audit data','2025-11-13 21:23:05','2025-11-28 22:59:52'),
(294,'mfa.manage_own','security',17,'Manage own MFA settings','2025-11-15 17:46:36','2025-11-28 22:59:52'),
(295,'mfa.admin_override','security',17,'Admin: Override MFA for any user','2025-11-15 17:46:36','2025-11-28 22:59:52'),
(296,'security.view_audit','security',17,'View security audit logs','2025-11-15 17:46:36','2025-11-28 22:59:52'),
(297,'tax_jurisdictions.view','tax',5,'View tax jurisdictions','2025-11-15 18:08:20','2025-11-28 23:03:01'),
(298,'tax_jurisdictions.create','tax',5,'Create tax jurisdictions','2025-11-15 18:08:20','2025-11-28 23:03:01'),
(299,'tax_jurisdictions.edit','tax',5,'Edit tax jurisdictions','2025-11-15 18:08:20','2025-11-28 23:03:01'),
(300,'tax_jurisdictions.delete','tax',5,'Delete tax jurisdictions','2025-11-15 18:08:20','2025-11-28 23:03:01'),
(301,'tax_payments.view','tax',5,'View tax payments','2025-11-15 18:08:20','2025-11-28 23:03:01'),
(302,'tax_payments.create','tax',5,'Create tax payments','2025-11-15 18:08:20','2025-11-28 23:03:01'),
(303,'tax_payments.edit','tax',5,'Edit tax payments','2025-11-15 18:08:20','2025-11-28 23:03:01'),
(304,'tax_payments.file','tax',5,'File tax returns','2025-11-15 18:08:20','2025-11-28 23:03:01'),
(305,'tax_exemptions.view','tax',5,'View tax exemptions','2025-11-15 18:08:20','2025-11-28 23:03:01'),
(306,'tax_exemptions.manage','tax',5,'Manage tax exemptions','2025-11-15 18:08:20','2025-11-28 23:03:01'),
(307,'tax_reports.view','tax',5,'View tax reports','2025-11-15 18:08:20','2025-11-28 23:03:01'),
(308,'1099_contractors.view','1099',5,'View 1099 contractors','2025-11-15 18:20:32','2025-11-28 22:59:52'),
(309,'1099_contractors.manage','1099',5,'Manage 1099 contractor designations','2025-11-15 18:20:32','2025-11-28 22:59:52'),
(310,'1099_payments.view','1099',5,'View 1099 reportable payments','2025-11-15 18:20:32','2025-11-28 23:03:01'),
(311,'1099_payments.manage','1099',5,'Manage 1099 payment classifications','2025-11-15 18:20:32','2025-11-28 23:03:01'),
(312,'1099_reports.view','1099',5,'View 1099 reports','2025-11-15 18:20:32','2025-11-28 23:03:01'),
(313,'1099_filings.prepare','1099',5,'Prepare 1099 forms','2025-11-15 18:20:32','2025-11-28 23:03:01'),
(314,'1099_filings.file','1099',5,'File 1099 forms','2025-11-15 18:20:32','2025-11-28 23:03:01'),
(315,'bank_import.view','bank_import',5,'View bank imports','2025-11-15 18:27:16','2025-11-28 22:59:52'),
(316,'bank_import.create','bank_import',5,'Import bank transactions','2025-11-15 18:27:16','2025-11-28 22:59:52'),
(317,'bank_import.categorize','bank_import',5,'Categorize imported transactions','2025-11-15 18:27:16','2025-11-28 22:59:52'),
(318,'bank_import.rules','bank_import',5,'Manage categorization rules','2025-11-15 18:27:16','2025-11-28 22:59:52'),
(323,'audit_trail.view','audit',5,'View audit trail','2025-11-15 18:28:26','2025-11-28 23:03:01'),
(324,'audit_trail.export','audit',5,'Export audit trail','2025-11-15 18:28:26','2025-11-28 23:03:01'),
(325,'accounting.customer_payments.view','accounting',5,'View customer payments','2025-11-15 19:50:26','2025-11-28 22:59:52'),
(326,'accounting.customer_payments.create','accounting',5,'Create customer payments','2025-11-15 19:50:26','2025-11-28 22:59:52'),
(327,'accounting.customer_payments.edit','accounting',5,'Edit customer payments','2025-11-15 19:50:26','2025-11-28 22:59:52'),
(328,'accounting.customer_payments.delete','accounting',5,'Delete customer payments','2025-11-15 19:50:26','2025-11-28 22:59:52'),
(329,'accounting.vendor_payments.view','accounting',5,'View vendor payments','2025-11-15 19:50:26','2025-11-28 22:59:52'),
(330,'accounting.vendor_payments.create','accounting',5,'Create vendor payments','2025-11-15 19:50:26','2025-11-28 22:59:52'),
(331,'accounting.vendor_payments.edit','accounting',5,'Edit vendor payments','2025-11-15 19:50:26','2025-11-28 22:59:52'),
(332,'accounting.vendor_payments.delete','accounting',5,'Delete vendor payments','2025-11-15 19:50:26','2025-11-28 22:59:52'),
(333,'accounting.vendor_payments.void','accounting',5,'Void vendor payments','2025-11-15 19:50:26','2025-11-28 22:59:52'),
(334,'accounting.vendor_payments.print_checks','accounting',5,'Print vendor payment checks','2025-11-15 19:50:26','2025-11-28 22:59:52'),
(345,'recurring_templates.view','recurring',5,'View Recurring Templates','2025-11-15 20:42:50','2025-11-28 23:02:18'),
(346,'recurring_templates.create','recurring',5,'Create Recurring Templates','2025-11-15 20:42:50','2025-11-28 23:02:18'),
(347,'recurring_templates.edit','recurring',5,'Edit Recurring Templates','2025-11-15 20:42:50','2025-11-28 23:02:18'),
(348,'recurring_templates.delete','recurring',5,'Delete Recurring Templates','2025-11-15 20:42:50','2025-11-28 23:02:18'),
(349,'recurring_templates.activate','recurring',5,'Activate/Deactivate Templates','2025-11-15 20:42:50','2025-11-28 23:02:18'),
(350,'recurring_templates.execute','recurring',5,'Manually Execute Templates','2025-11-15 20:42:50','2025-11-28 23:02:18'),
(357,'credit_notes.apply','credit_notes',5,'Apply Credit Notes to Invoices','2025-11-15 21:26:02','2025-11-28 23:03:01'),
(358,'credit_notes.reverse','credit_notes',5,'Reverse Credit Note Applications','2025-11-15 21:26:02','2025-11-28 23:03:01'),
(359,'credit_notes.view_balances','credit_notes',5,'View Customer Credit Balances','2025-11-15 21:26:02','2025-11-28 23:03:01'),
(360,'credit_notes.auto_apply','credit_notes',5,'Auto-apply Credit Notes','2025-11-15 21:26:02','2025-11-28 23:03:01'),
(361,'statements.generate','statements',5,'Generate Customer Statements','2025-11-15 21:36:53','2025-11-28 23:03:01'),
(362,'statements.view_history','statements',5,'View Statement History','2025-11-15 21:36:53','2025-11-28 23:03:01'),
(363,'statements.email','statements',5,'Email Statements to Customers','2025-11-15 21:36:53','2025-11-28 23:03:01'),
(364,'statements.bulk_generate','statements',5,'Generate Bulk Statements','2025-11-15 21:36:53','2025-11-28 23:03:01'),
(365,'quotes.send_for_signature','sales',11,'Send quote for customer e-signature','2025-11-16 11:39:56','2025-11-28 22:59:52'),
(366,'quotes.view_signatures','sales',11,'View quote signature history','2025-11-16 11:39:56','2025-11-28 22:59:52'),
(367,'quotes.convert_to_sales_order','sales',11,'Convert accepted quotes to sales orders','2025-11-16 11:39:56','2025-11-28 22:59:52'),
(368,'quotes.resend_signature_request','sales',11,'Resend signature request to customer','2025-11-16 11:39:56','2025-11-28 22:59:52'),
(369,'ndas.view','crm',6,'View NDAs','2025-11-16 11:44:05','2025-11-28 23:02:18'),
(370,'ndas.create','crm',6,'Create NDAs','2025-11-16 11:44:05','2025-11-28 23:02:18'),
(371,'ndas.edit','crm',6,'Edit draft NDAs','2025-11-16 11:44:05','2025-11-28 23:02:18'),
(372,'ndas.delete','crm',6,'Delete NDAs','2025-11-16 11:44:05','2025-11-28 23:02:18'),
(373,'ndas.send','crm',6,'Send NDAs for signature','2025-11-16 11:44:05','2025-11-28 23:02:18'),
(374,'ndas.view_signatures','crm',6,'View NDA signatures','2025-11-16 11:44:05','2025-11-28 23:02:18'),
(375,'nda_templates.manage','crm',6,'Manage NDA templates','2025-11-16 11:44:05','2025-11-28 23:03:01'),
(376,'ndas.countersign','crm',6,'Counter-sign NDAs on behalf of company','2025-11-16 23:21:54','2025-11-28 23:02:18'),
(377,'system.backup','system',4,'Manage system backups and Git operations','2025-11-17 11:19:40','2025-11-28 23:03:01'),
(378,'salesorders.view','',11,'View SALES','2025-11-17 12:41:32','2025-11-28 22:59:52'),
(379,'announcements.view','',18,'View Announcements','2025-11-17 12:41:32','2025-11-28 22:59:52'),
(380,'audit-logs.view','',4,'View Audit Log','2025-11-17 12:41:32','2025-11-28 22:59:52'),
(381,'automation.view','automation',4,'View Templates','2025-11-17 12:41:32','2025-11-28 23:03:01'),
(382,'backup.view','',4,'View System Backup','2025-11-17 12:41:32','2025-11-28 22:59:52'),
(383,'creditnotes.view','',5,'View Credit Notes','2025-11-17 12:41:32','2025-11-28 22:59:52'),
(384,'data_access.view','',4,'View Specific Data Roles','2025-11-17 12:41:32','2025-11-28 22:59:52'),
(385,'email-marketing.view','',3,'View Email Marketing','2025-11-17 12:41:32','2025-11-28 22:59:52'),
(387,'financial-proforma.view','',19,'View Forecasting','2025-11-17 12:41:49','2025-11-28 22:59:52'),
(389,'forecaster.view','',19,'View Financial Forecaster','2025-11-17 12:42:02','2025-11-28 22:59:52'),
(390,'locations.view','',8,'View Locations','2025-11-17 12:42:02','2025-11-28 22:59:52'),
(391,'menus.view','',4,'View Menu Management','2025-11-17 12:42:02','2025-11-28 22:59:52'),
(392,'quickbooks.view','',4,'View QuickBooks Integration','2025-11-17 12:42:02','2025-11-28 22:59:52'),
(393,'shipments.view','',11,'View Shipments','2025-11-17 12:42:02','2025-11-28 22:59:52'),
(398,'network_monitor.view','security',3,'View network monitoring dashboard','2025-11-19 14:34:33','2025-11-28 22:59:52'),
(399,'network_monitor.manage','security',3,'Manage network monitor settings','2025-11-19 14:34:33','2025-11-28 22:59:52'),
(400,'forecasting.manage_assumptions','Forecasting',19,'Manage forecast assumptions and variables','2025-11-19 16:40:14','2025-11-28 22:59:52'),
(401,'forecasting.view_actuals','Forecasting',19,'View actual vs forecast variance','2025-11-19 16:40:14','2025-11-28 22:59:52'),
(402,'forecasting.update_daily','Forecasting',19,'Quick daily update of key variables','2025-11-19 16:40:14','2025-11-28 22:59:52'),
(403,'forecasting.manage_products','Forecasting',19,'Manage product-level forecasting configuration','2025-11-19 17:53:07','2025-11-28 22:59:52'),
(404,'forecasting.view_proforma','Forecasting',19,'View consolidated pro forma reports','2025-11-19 17:53:07','2025-11-28 22:59:52'),
(405,'forecasting.generate_projections','Forecasting',19,'Generate financial projections','2025-11-19 17:53:07','2025-11-28 22:59:52'),
(406,'product_forecast.view','forecasting',19,'View Product Line Forecasting and Variance Analysis','2025-11-19 19:08:28','2025-11-28 22:59:52'),
(407,'files.manage','system',3,'Manage all files and folders','2025-11-21 14:37:34','2025-11-28 22:59:52'),
(408,'files.upload','system',3,'Upload files','2025-11-21 14:37:34','2025-11-28 22:59:52'),
(409,'files.delete','system',3,'Delete files and folders','2025-11-21 14:37:34','2025-11-28 22:59:52'),
(410,'crm.documents','crm',6,'Access CRM Documents','2025-11-21 14:37:34','2025-12-02 13:56:09'),
(411,'customers.documents','crm',6,'Access customer documents','2025-11-21 14:37:34','2025-11-28 22:59:52'),
(412,'bank_import.edit','bank_import',5,'Edit Bank Import','2025-11-24 18:47:03','2025-11-28 22:59:52'),
(413,'bank_import.import','bank_import',5,'Import Bank Import','2025-11-24 18:47:03','2025-11-28 22:59:52'),
(414,'bank_import.delete','bank_import',5,'Delete Bank Import','2025-11-24 18:47:03','2025-11-28 22:59:52'),
(415,'bank_import.manage_rules','bank_import',5,'Manage Rules Bank Import','2025-11-24 18:47:03','2025-11-28 22:59:52'),
(416,'1099_contractors.view_payments','1099_contractors',5,'View Payments 1099 Contractors','2025-11-24 18:47:03','2025-11-28 22:59:52'),
(417,'1099_contractors.generate_reports','1099_contractors',5,'Generate Reports 1099 Contractors','2025-11-24 18:47:03','2025-11-28 22:59:52'),
(418,'1099_contractors.export','1099_contractors',5,'Export 1099 Contractors','2025-11-24 18:47:03','2025-11-28 22:59:52'),
(419,'permissions.manage','permissions',4,'Manage Permissions','2025-11-24 18:47:03','2025-11-28 22:59:52'),
(420,'admin.settings','admin',4,'Settings Admin','2025-11-24 18:47:03','2025-11-28 22:59:52'),
(421,'procurement.approve','procurement',10,'Approve Procurement','2025-11-24 18:47:03','2025-11-28 22:59:52'),
(422,'admin.system_scripts','admin',4,'Execute System Scripts','2025-11-24 19:09:27','2025-11-28 22:59:52'),
(423,'sales.agreements.view','sales',11,'View agreements','2025-11-25 23:30:52','2025-11-28 22:59:52'),
(424,'sales.agreements.create','sales',11,'Create agreements','2025-11-25 23:30:52','2025-11-28 22:59:52'),
(425,'sales.agreements.edit','sales',11,'Edit agreements','2025-11-25 23:30:52','2025-11-28 22:59:52'),
(426,'sales.agreements.delete','sales',11,'Delete agreements','2025-11-25 23:30:52','2025-11-28 22:59:52'),
(427,'sales.agreements.send','sales',11,'Send agreements for signature','2025-11-25 23:30:52','2025-11-28 22:59:52'),
(428,'admin.agreement_templates','admin',4,'Manage agreement templates','2025-11-25 23:30:52','2025-11-28 22:59:52'),
(429,'agreements.view','',11,'View Agreements','2025-11-26 12:07:17','2025-11-28 22:59:52'),
(430,'ai-test.view','',3,'View AI Testing','2025-11-26 12:07:17','2025-11-28 22:59:52'),
(431,'assumptions.view','',19,'View Daily Update','2025-11-26 12:07:17','2025-11-28 22:59:52'),
(432,'companies.view','',6,'View Companies','2025-11-26 12:07:17','2025-11-28 22:59:52'),
(433,'documentation.view','',4,'View Documentation','2025-11-26 12:07:17','2025-11-28 22:59:52'),
(434,'product-forecast.view','',19,'View Product Configs','2025-11-26 12:07:17','2025-11-28 22:59:52'),
(435,'calendar.create','calendar',1,'Create Calendar','2025-11-28 13:23:58','2025-11-28 22:59:52'),
(436,'calendar.edit','calendar',1,'Edit Calendar','2025-11-28 13:23:58','2025-11-28 22:59:52'),
(437,'calendar.delete','calendar',1,'Delete Calendar','2025-11-28 13:23:58','2025-11-28 22:59:52'),
(438,'reports.create','reports',15,'Create Reports','2025-11-28 13:23:58','2025-11-28 22:59:52'),
(439,'reports.edit','reports',15,'Edit Reports','2025-11-28 13:23:58','2025-11-28 22:59:52'),
(440,'reports.delete','reports',15,'Delete Reports','2025-11-28 13:23:58','2025-11-28 22:59:52'),
(441,'dashboard.edit','dashboard',3,'Edit Dashboard','2025-11-28 13:23:58','2025-11-28 23:02:18'),
(442,'documents.create','documents',12,'Create Documents','2025-11-28 13:23:58','2025-11-28 22:59:52'),
(443,'system.files.delete','system',4,'System Files Delete','2025-11-28 13:23:58','2025-11-28 23:03:01'),
(444,'messaging.create','messaging',3,'Create Messaging','2025-11-28 13:23:58','2025-11-28 23:02:18'),
(445,'messaging.edit','messaging',3,'Edit Messaging','2025-11-28 13:23:58','2025-11-28 23:02:18'),
(446,'messaging.delete','messaging',3,'Delete Messaging','2025-11-28 13:23:58','2025-11-28 23:02:18'),
(447,'admin.create','admin',4,'Create Admin','2025-11-28 13:23:58','2025-11-28 22:59:52'),
(448,'profile.edit','profile',3,'Edit Profile','2025-11-28 13:23:58','2025-11-28 22:59:52'),
(449,'system.edit','system',4,'Edit System','2025-11-28 13:23:58','2025-11-28 23:03:01'),
(450,'admin.edit','admin',4,'Edit Admin','2025-11-28 13:23:58','2025-11-28 22:59:52'),
(451,'admin.delete','admin',4,'Delete Admin','2025-11-28 13:23:58','2025-11-28 22:59:52'),
(452,'sales.approve','sales',11,'Approve Sales','2025-11-28 13:23:58','2025-11-28 22:59:52'),
(453,'tickets.delete','tickets',3,'Delete Tickets','2025-11-28 13:23:58','2025-11-28 22:59:52'),
(454,'api.view','api',4,'View Api','2025-11-28 14:31:09','2025-11-28 22:59:52'),
(455,'documentation.export','documentation',4,'Export Documentation','2025-11-28 14:31:09','2025-11-28 22:59:52'),
(456,'email.view','email',3,'View Email','2025-11-28 14:31:09','2025-11-28 23:02:18'),
(457,'machine_data.view','machine_data',9,'View Machine Data','2025-11-28 14:31:09','2025-11-28 22:59:52'),
(458,'nda.view','nda',6,'View Nda','2025-11-28 14:31:09','2025-11-28 22:59:52'),
(460,'notifications.delete','notifications',3,'Delete Notifications','2025-11-28 14:31:09','2025-11-28 22:59:52'),
(461,'notifications.view','notifications',3,'View Notifications','2025-11-28 14:31:09','2025-11-28 22:59:52'),
(462,'pipedrive_import.view','pipedrive_import',4,'View Pipedrive Import','2025-11-28 14:31:09','2025-11-28 22:59:52'),
(463,'pricing_rule.view','pricing_rule',11,'View Pricing Rule','2025-11-28 14:31:09','2025-11-28 22:59:52'),
(464,'pro_forma.view','pro_forma',19,'View Pro Forma','2025-11-28 14:31:09','2025-11-28 22:59:52'),
(465,'promotion.view','promotion',11,'View Promotion','2025-11-28 14:31:09','2025-11-28 22:59:52'),
(466,'quote.view','quote',11,'View Quote','2025-11-28 14:31:09','2025-11-28 22:59:52'),
(467,'return.view','return',11,'View Return','2025-11-28 14:31:09','2025-11-28 22:59:52'),
(468,'security.approve','security',17,'Approve Security','2025-11-28 14:31:09','2025-11-28 22:59:52'),
(469,'security.view','security',17,'View Security','2025-11-28 14:31:09','2025-11-28 22:59:52'),
(470,'employees.directory','',7,'View employee directory','2025-11-28 14:52:55','2025-11-28 22:59:52'),
(471,'account.view','accounting',5,'View Account','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(472,'account.create','accounting',5,'Create Account','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(473,'accounting.dashboard','accounting',5,'Dashboard Accounting','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(474,'accounting.ledger','accounting',5,'Ledger Accounting','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(475,'accounting.balanceSheet','accounting',5,'BalanceSheet Accounting','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(476,'accounting.incomeStatement','accounting',5,'IncomeStatement Accounting','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(477,'accounting.cashFlow','accounting',5,'CashFlow Accounting','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(478,'accounting.trialBalance','accounting',5,'TrialBalance Accounting','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(479,'accounting.aging','accounting',5,'Aging Accounting','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(480,'accounting.apAgingDetail','accounting',5,'ApAgingDetail Accounting','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(481,'accounting.arAgingDetail','accounting',5,'ArAgingDetail Accounting','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(482,'accounting.cashFlowStatement','accounting',5,'CashFlowStatement Accounting','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(483,'accounting.paymentTermsList','accounting',5,'PaymentTermsList Accounting','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(484,'accounting.reportPackage','accounting',5,'ReportPackage Accounting','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(485,'action_menu_editor.view','',4,'View Action Menu Editor','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(486,'action_menu_editor.viewPage','',4,'ViewPage Action Menu Editor','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(487,'action_menu_editor.create','',4,'Create Action Menu Editor','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(488,'action_menu_editor.edit','',4,'Edit Action Menu Editor','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(489,'action_menu_editor.delete','',4,'Delete Action Menu Editor','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(490,'action_menu_editor.reorder','',4,'Reorder Action Menu Editor','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(491,'action_menu_editor.duplicate','',4,'Duplicate Action Menu Editor','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(492,'activity.create','crm',6,'Create Activity','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(493,'activity.edit','crm',6,'Edit Activity','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(494,'activity.delete','crm',6,'Delete Activity','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(495,'agreement.view','',11,'View Agreement','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(496,'agreement.create','',11,'Create Agreement','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(497,'agreement.edit','',11,'Edit Agreement','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(498,'agreement.delete','',11,'Delete Agreement','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(499,'agreement.print','',11,'Print Agreement','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(500,'agreement.export','',11,'Export Agreement','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(501,'agreement.sendForSignature','',11,'SendForSignature Agreement','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(502,'agreement.sendAgreementEmail','',11,'SendAgreementEmail Agreement','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(503,'agreement.convertToSalesOrder','',11,'ConvertToSalesOrder Agreement','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(504,'agreement.convertFromQuote','',11,'ConvertFromQuote Agreement','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(505,'agreement_template.view','',11,'View Agreement Template','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(506,'agreement_template.create','',11,'Create Agreement Template','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(507,'agreement_template.edit','',11,'Edit Agreement Template','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(508,'agreement_template.delete','',11,'Delete Agreement Template','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(509,'agreement_template.setDefault','',11,'SetDefault Agreement Template','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(510,'agreement_template.duplicate','',11,'Duplicate Agreement Template','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(511,'analytics.dashboard','',15,'Dashboard Analytics','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(512,'analytics.productionReports','',15,'ProductionReports Analytics','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(513,'analytics.oeeReports','',15,'OeeReports Analytics','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(514,'announcement.view','',18,'View Announcement','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(515,'announcement.create','',18,'Create Announcement','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(516,'announcement.edit','',18,'Edit Announcement','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(517,'announcement.delete','',18,'Delete Announcement','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(518,'api.usersList','',4,'UsersList Api','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(519,'api.allUsers','',4,'AllUsers Api','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(520,'application.view','hr',7,'View Application','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(521,'application.create','hr',7,'Create Application','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(522,'application.edit','hr',7,'Edit Application','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(523,'application.delete','hr',7,'Delete Application','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(524,'approvals.dashboard','',17,'Dashboard Approvals','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(525,'assessment.view','hr',7,'View Assessment','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(526,'assessment.create','hr',7,'Create Assessment','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(527,'assessment.edit','hr',7,'Edit Assessment','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(528,'assessment.delete','hr',7,'Delete Assessment','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(529,'assumptions.quickUpdate','',19,'QuickUpdate Assumptions','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(530,'assumptions.syncActuals','',19,'SyncActuals Assumptions','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(531,'assumptions.sets','',19,'Sets Assumptions','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(532,'assumptions.createSet','',19,'CreateSet Assumptions','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(533,'assumptions.edit','',19,'Edit Assumptions','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(534,'assumptions.updateSetInfo','',19,'UpdateSetInfo Assumptions','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(535,'assumptions.clone','',19,'Clone Assumptions','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(536,'assumptions.variance','',19,'Variance Assumptions','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(537,'audit_log.view','audit',5,'View Audit Log','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(538,'bom.view','manufacturing',9,'View Bom','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(539,'bom.create','manufacturing',9,'Create Bom','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(540,'bom.addComponent','manufacturing',9,'AddComponent Bom','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(541,'bom.removeComponent','manufacturing',9,'RemoveComponent Bom','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(542,'bom.lowStockReport','manufacturing',9,'LowStockReport Bom','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(543,'bom.materialRequirements','manufacturing',9,'MaterialRequirements Bom','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(544,'backup.triggerDatabaseBackup','admin',4,'TriggerDatabaseBackup Backup','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(545,'backup.triggerGitPush','admin',4,'TriggerGitPush Backup','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(546,'backup.triggerFullBackup','admin',4,'TriggerFullBackup Backup','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(547,'backup.getHistory','admin',4,'GetHistory Backup','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(548,'backup.getStats','admin',4,'GetStats Backup','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(549,'backup.showDetails','admin',4,'ShowDetails Backup','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(550,'bank_account.view','accounting',5,'View Bank Account','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(551,'bank_account.create','accounting',5,'Create Bank Account','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(552,'bank_account.edit','accounting',5,'Edit Bank Account','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(553,'bank_account.delete','accounting',5,'Delete Bank Account','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(554,'bank_import.processUpload','accounting',5,'ProcessUpload Bank Import','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(555,'bank_import.review','accounting',5,'Review Bank Import','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(556,'bank_import.createRule','accounting',5,'CreateRule Bank Import','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(557,'bank_import.deleteRule','accounting',5,'DeleteRule Bank Import','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(558,'bank_reconciliation.view','accounting',5,'View Bank Reconciliation','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(559,'bank_reconciliation.start','accounting',5,'Start Bank Reconciliation','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(560,'bank_reconciliation.create','accounting',5,'Create Bank Reconciliation','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(561,'bank_reconciliation.toggleTransaction','accounting',5,'ToggleTransaction Bank Reconciliation','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(562,'bank_reconciliation.complete','accounting',5,'Complete Bank Reconciliation','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(563,'battery_quote.view','crm',11,'View Battery Quote','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(564,'battery_quote.create','crm',11,'Create Battery Quote','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(565,'battery_quote.edit','crm',11,'Edit Battery Quote','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(566,'battery_quote.delete','crm',11,'Delete Battery Quote','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(567,'battery_quote.convertToSalesOrder','crm',11,'ConvertToSalesOrder Battery Quote','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(568,'budget.view','accounting',5,'View Budget','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(569,'budget.create','accounting',5,'Create Budget','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(570,'budget.edit','accounting',5,'Edit Budget','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(571,'budget.delete','accounting',5,'Delete Budget','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(572,'business_line.view','',4,'View Business Line','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(573,'business_line.create','',4,'Create Business Line','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(574,'business_line.edit','',4,'Edit Business Line','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(575,'business_line.delete','',4,'Delete Business Line','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(576,'crm.dashboard','',6,'Dashboard Crm','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(577,'crm.activities','',6,'Activities Crm','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(578,'crm.contacts','',6,'Access Contacts','2025-11-28 22:01:12','2025-12-02 13:56:09'),
(579,'crm.opportunities','',6,'Access Opportunities','2025-11-28 22:01:12','2025-12-02 13:56:09'),
(580,'crm.support','',6,'Access Customer Support','2025-11-28 22:01:12','2025-12-02 13:56:09'),
(581,'crm.reports','',6,'Access CRM Reports','2025-11-28 22:01:12','2025-12-02 13:56:09'),
(582,'calendar.getEvents','crm',1,'GetEvents Calendar','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(583,'camera_audit.viewAuditLog','',3,'ViewAuditLog Camera Audit','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(584,'camera_audit.statistics','',3,'Statistics Camera Audit','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(585,'capacity.availability','',9,'Availability Capacity','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(586,'capacity.feasibility','',9,'Feasibility Capacity','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(587,'capacity.machineStatus','',9,'MachineStatus Capacity','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(588,'capacity.getEquipmentLinesByBusinessLine','',9,'GetEquipmentLinesByBusinessLine Capacity','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(589,'capacity.analytics','',9,'Analytics Capacity','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(590,'capacity.getMachineStatusData','',9,'GetMachineStatusData Capacity','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(591,'category.view','inventory',8,'View Category','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(592,'category.create','inventory',8,'Create Category','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(593,'category.edit','inventory',8,'Edit Category','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(594,'category.delete','inventory',8,'Delete Category','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(595,'client.view','crm',6,'View Client','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(596,'client.create','crm',6,'Create Client','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(597,'client.edit','crm',6,'Edit Client','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(598,'client.delete','crm',6,'Delete Client','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(599,'client.addContact','crm',6,'AddContact Client','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(600,'client.updateContact','crm',6,'UpdateContact Client','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(601,'client.deleteContact','crm',6,'DeleteContact Client','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(602,'company.view','',6,'View Company','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(603,'company.create','',6,'Create Company','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(604,'company.edit','',6,'Edit Company','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(605,'company.delete','',6,'Delete Company','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(606,'company.quickAdd','',6,'QuickAdd Company','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(607,'company.uploadDocument','',6,'UploadDocument Company','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(608,'company.downloadDocument','',6,'DownloadDocument Company','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(609,'company.deleteDocument','',6,'DeleteDocument Company','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(610,'company.export','',6,'Export Company','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(611,'contact.create','crm',6,'Create Contact','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(612,'contact.edit','crm',6,'Edit Contact','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(613,'contact.delete','crm',6,'Delete Contact','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(614,'contract.view','hr',7,'View Contract','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(615,'contract.create','hr',7,'Create Contract','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(616,'contract.edit','hr',7,'Edit Contract','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(617,'contract.delete','hr',7,'Delete Contract','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(618,'costing.production','',5,'Production Costing','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(619,'costing.productionDetail','',5,'ProductionDetail Costing','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(620,'costing.jobs','',5,'Jobs Costing','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(621,'costing.jobDetail','',5,'JobDetail Costing','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(622,'credit_note.view','',5,'View Credit Note','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(623,'credit_note.create','',5,'Create Credit Note','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(624,'credit_note.delete','',5,'Delete Credit Note','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(625,'currency.listCurrencies','',5,'ListCurrencies Currency','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(626,'currency.editCurrency','',5,'EditCurrency Currency','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(627,'currency.deleteCurrency','',5,'DeleteCurrency Currency','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(628,'currency.toggleActive','',5,'ToggleActive Currency','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(629,'currency.rates','',5,'Rates Currency','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(630,'currency.saveRate','',5,'SaveRate Currency','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(631,'currency.deleteRate','',5,'DeleteRate Currency','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(632,'currency.revaluation','',5,'Revaluation Currency','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(633,'currency.postRevaluation','',5,'PostRevaluation Currency','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(634,'currency.getRate','',5,'GetRate Currency','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(635,'currency.convertAmount','',5,'ConvertAmount Currency','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(636,'currency.importLiveRates','',5,'ImportLiveRates Currency','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(637,'custom_reports.view','',15,'View Custom Reports','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(638,'custom_reports.builder','',15,'Builder Custom Reports','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(639,'custom_reports.my','',15,'My Custom Reports','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(640,'custom_reports.shared','',15,'Shared Custom Reports','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(641,'custom_reports.scheduled','',15,'Scheduled Custom Reports','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(642,'custom_reports.create','',15,'Create Custom Reports','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(643,'custom_reports.run','',15,'Run Custom Reports','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(644,'custom_reports.edit','',15,'Edit Custom Reports','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(645,'custom_reports.delete','',15,'Delete Custom Reports','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(646,'customer_payment.view','crm',11,'View Customer Payment','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(647,'customer_payment.create','crm',11,'Create Customer Payment','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(648,'customer_payment.customerInvoices','crm',11,'CustomerInvoices Customer Payment','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(649,'dashboard.customize','',3,'Customize Dashboard','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(650,'dashboard.removeWidget','',3,'RemoveWidget Dashboard','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(651,'dashboard.updateLayout','',3,'UpdateLayout Dashboard','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(652,'data_access.edit','',4,'Edit Data Access','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(653,'data_access.assign','',4,'Assign Data Access','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(654,'data_access.delete','',4,'Delete Data Access','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(655,'data_access.updateRules','',4,'UpdateRules Data Access','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(656,'debit_note.view','',5,'View Debit Note','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(657,'debit_note.create','',5,'Create Debit Note','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(658,'debit_note.edit','',5,'Edit Debit Note','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(659,'debit_note.delete','',5,'Delete Debit Note','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(660,'delivery_note.view','sales',11,'View Delivery Note','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(661,'delivery_note.create','sales',11,'Create Delivery Note','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(662,'depreciation.view','accounting',5,'View Depreciation','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(663,'depreciation.schedule','accounting',5,'Schedule Depreciation','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(664,'depreciation.generate','accounting',5,'Generate Depreciation','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(665,'depreciation.post','accounting',5,'Post Depreciation','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(666,'depreciation.reverse','accounting',5,'Reverse Depreciation','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(667,'depreciation.delete','accounting',5,'Delete Depreciation','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(668,'document.create','documents',12,'Create Document','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(669,'document.view','documents',12,'View Document','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(670,'document.edit','documents',12,'Edit Document','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(671,'document.delete','documents',12,'Delete Document','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(672,'document.viewFile','documents',12,'ViewFile Document','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(673,'document.download','documents',12,'Download Document','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(674,'documentation.search','documents',4,'Search Documentation','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(675,'documentation.download','documents',4,'Download Documentation','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(676,'documentation.refreshCoverage','documents',4,'RefreshCoverage Documentation','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(677,'documents.all','documents',12,'All Documents','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(678,'documents.my','documents',12,'My Documents','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(679,'documents.shared','documents',12,'Shared Documents','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(680,'documents.viewDocument','documents',12,'ViewDocument Documents','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(681,'documents.download','documents',12,'Download Documents','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(682,'documents.folders','documents',12,'Folders Documents','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(683,'email.folder','',3,'Folder Email','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(684,'email.viewEmail','',3,'ViewEmail Email','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(685,'email.viewThread','',3,'ViewThread Email','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(686,'email.compose','',3,'Compose Email','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(687,'email.send','',3,'Send Email','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(688,'email.saveDraft','',3,'SaveDraft Email','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(689,'email.search','',3,'Search Email','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(690,'email.markRead','',3,'MarkRead Email','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(691,'email.toggleStar','',3,'ToggleStar Email','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(692,'email.bulkAction','',3,'BulkAction Email','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(693,'email.delete','',3,'Delete Email','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(694,'email.emptyTrash','',3,'EmptyTrash Email','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(695,'email.downloadAttachment','',3,'DownloadAttachment Email','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(696,'email.settings','',3,'Settings Email','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(697,'email.updateSettings','',3,'UpdateSettings Email','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(698,'email.generateSignature','',3,'GenerateSignature Email','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(699,'email.testImapConnection','',3,'TestImapConnection Email','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(700,'email.searchRecipients','',3,'SearchRecipients Email','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(701,'email_template.view','',3,'View Email Template','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(702,'email_template.create','',3,'Create Email Template','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(703,'email_template.edit','',3,'Edit Email Template','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(704,'email_template.delete','',3,'Delete Email Template','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(705,'email_template.duplicate','',3,'Duplicate Email Template','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(706,'email_template.preview','',3,'Preview Email Template','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(707,'email_webhook.receive','',3,'Receive Email Webhook','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(708,'email_webhook.test','',3,'Test Email Webhook','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(709,'employee.view','hr',7,'View Employee','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(710,'employee.create','hr',7,'Create Employee','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(711,'employee.edit','hr',7,'Edit Employee','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(712,'employee.delete','hr',7,'Delete Employee','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(713,'employee.directory','hr',7,'Directory Employee','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(714,'equipment.delete','manufacturing',9,'Delete Equipment','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(715,'equipment_line.view','manufacturing',9,'View Equipment Line','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(716,'equipment_line.create','manufacturing',9,'Create Equipment Line','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(717,'equipment_line.edit','manufacturing',9,'Edit Equipment Line','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(718,'equipment_line.delete','manufacturing',9,'Delete Equipment Line','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(719,'equipment_type.view','manufacturing',9,'View Equipment Type','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(720,'equipment_type.create','manufacturing',9,'Create Equipment Type','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(721,'equipment_type.edit','manufacturing',9,'Edit Equipment Type','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(722,'equipment_type.delete','manufacturing',9,'Delete Equipment Type','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(723,'expense.view','accounting',5,'View Expense','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(724,'expense.create','accounting',5,'Create Expense','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(725,'expense.approve','accounting',5,'Approve Expense','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(726,'expense.reject','accounting',5,'Reject Expense','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(727,'expense.delete','accounting',5,'Delete Expense','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(728,'file_manager.view','files',3,'View File Manager','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(729,'file_manager.browse','files',3,'Browse File Manager','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(730,'file_manager.tree','files',3,'Tree File Manager','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(731,'file_manager.download','files',3,'Download File Manager','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(732,'file_manager.viewFile','files',3,'ViewFile File Manager','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(733,'file_manager.deleteFile','files',3,'DeleteFile File Manager','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(734,'file_manager.deleteFolder','files',3,'DeleteFolder File Manager','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(735,'file_manager.search','files',3,'Search File Manager','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(736,'file_manager.getShares','files',3,'GetShares File Manager','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(737,'file_manager.removeShare','files',3,'RemoveShare File Manager','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(738,'file_manager.searchUsers','files',3,'SearchUsers File Manager','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(739,'file_manager.shared','files',3,'Shared File Manager','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(740,'financial_planner.view','',19,'View Financial Planner','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(741,'financial_planner.location','',19,'Location Financial Planner','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(742,'financial_planner.createForecast','',19,'CreateForecast Financial Planner','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(743,'financial_planner.compare','',19,'Compare Financial Planner','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(744,'financial_planner.editForecast','',19,'EditForecast Financial Planner','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(745,'financial_planner.updateForecast','',19,'UpdateForecast Financial Planner','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(746,'financial_planner.getHistoricalData','',19,'GetHistoricalData Financial Planner','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(747,'financial_planner.regeneratePeriods','',19,'RegeneratePeriods Financial Planner','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(748,'financial_planner.exportExcel','',19,'ExportExcel Financial Planner','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(749,'financial_pro_forma.view','',19,'View Financial Pro Forma','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(750,'financial_pro_forma.assumptions','',19,'Assumptions Financial Pro Forma','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(751,'financial_pro_forma.exportExcel','',19,'ExportExcel Financial Pro Forma','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(752,'fixed_asset.view','accounting',5,'View Fixed Asset','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(753,'fixed_asset.create','accounting',5,'Create Fixed Asset','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(754,'fixed_asset.edit','accounting',5,'Edit Fixed Asset','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(755,'fixed_asset.delete','accounting',5,'Delete Fixed Asset','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(756,'forecaster.storeForecast','',19,'StoreForecast Forecaster','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(757,'forecaster.showForecast','',19,'ShowForecast Forecaster','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(758,'forecaster.editForecast','',19,'EditForecast Forecaster','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(759,'forecaster.updateForecast','',19,'UpdateForecast Forecaster','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(760,'forecaster.deleteForecast','',19,'DeleteForecast Forecaster','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(761,'forecaster.storeScenario','',19,'StoreScenario Forecaster','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(762,'forecaster.showScenario','',19,'ShowScenario Forecaster','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(763,'forecaster.editScenario','',19,'EditScenario Forecaster','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(764,'forecaster.updateScenario','',19,'UpdateScenario Forecaster','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(765,'forecaster.deleteScenario','',19,'DeleteScenario Forecaster','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(766,'forecaster.compare','',19,'Compare Forecaster','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(767,'forecaster.storeFinancing','',19,'StoreFinancing Forecaster','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(768,'forecaster.editFinancing','',19,'EditFinancing Forecaster','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(769,'forecaster.updateFinancing','',19,'UpdateFinancing Forecaster','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(770,'forecaster.deleteFinancing','',19,'DeleteFinancing Forecaster','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(771,'forecaster.storeInvestment','',19,'StoreInvestment Forecaster','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(772,'forecaster.editInvestment','',19,'EditInvestment Forecaster','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(773,'forecaster.updateInvestment','',19,'UpdateInvestment Forecaster','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(774,'forecaster.deleteInvestment','',19,'DeleteInvestment Forecaster','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(775,'forecaster.editPeriods','',19,'EditPeriods Forecaster','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(776,'forecaster.updatePeriods','',19,'UpdatePeriods Forecaster','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(777,'forecaster.showProFormaImport','',19,'ShowProFormaImport Forecaster','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(778,'forecaster.executeProFormaImport','',19,'ExecuteProFormaImport Forecaster','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(779,'forecaster.calculateMetrics','',19,'CalculateMetrics Forecaster','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(780,'form1099.summary','',5,'Summary Form1099','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(781,'form1099.contractorDetail','',5,'ContractorDetail Form1099','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(782,'form1099.generate','',5,'Generate Form1099','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(783,'form1099.exportCSV','',5,'ExportCSV Form1099','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(784,'goods_receipt.view','purchases',10,'View Goods Receipt','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(785,'goods_receipt.create','purchases',10,'Create Goods Receipt','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(786,'goods_receipt.getPOItemsAjax','purchases',10,'GetPOItemsAjax Goods Receipt','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(787,'goods_receipt.delete','purchases',10,'Delete Goods Receipt','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(788,'hr.dashboard','',7,'Dashboard Hr','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(789,'help_desk.dashboard','helpdesk',13,'Dashboard Help Desk','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(790,'help_desk.tickets','helpdesk',13,'Tickets Help Desk','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(791,'help_desk.myTickets','helpdesk',13,'MyTickets Help Desk','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(792,'help_desk.create','helpdesk',13,'Create Help Desk','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(793,'help_desk.view','helpdesk',13,'View Help Desk','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(794,'help_desk.addComment','helpdesk',13,'AddComment Help Desk','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(795,'help_desk.updateStatus','helpdesk',13,'UpdateStatus Help Desk','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(796,'help_desk.knowledgeBase','helpdesk',13,'KnowledgeBase Help Desk','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(797,'help_desk.sla','helpdesk',13,'Sla Help Desk','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(798,'help_desk.reports','helpdesk',13,'Reports Help Desk','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(799,'help_desk.chat','helpdesk',13,'Chat Help Desk','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(800,'help_desk.chatGetSessions','helpdesk',13,'ChatGetSessions Help Desk','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(801,'help_desk.chatGetMessages','helpdesk',13,'ChatGetMessages Help Desk','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(802,'help_desk.chatSendMessage','helpdesk',13,'ChatSendMessage Help Desk','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(803,'internal_note_api.create','',4,'Create Internal Note Api','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(804,'internal_note_api.togglePin','',4,'TogglePin Internal Note Api','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(805,'internal_note_api.delete','',4,'Delete Internal Note Api','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(806,'interview.view','hr',7,'View Interview','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(807,'interview.create','hr',7,'Create Interview','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(808,'interview.edit','hr',7,'Edit Interview','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(809,'interview.delete','hr',7,'Delete Interview','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(810,'inventory.dashboard','',8,'Dashboard Inventory','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(811,'inventory.stockLevels','',8,'StockLevels Inventory','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(812,'inventory.productStock','',8,'ProductStock Inventory','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(813,'invoice.view','accounting',5,'View Invoice','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(814,'invoice.create','accounting',5,'Create Invoice','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(815,'invoice.edit','accounting',5,'Edit Invoice','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(816,'invoice.print','accounting',5,'Print Invoice','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(817,'invoice.delete','accounting',5,'Delete Invoice','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(818,'issue.view','',3,'View Issue','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(819,'issue.create','',3,'Create Issue','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(820,'issue.edit','',3,'Edit Issue','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(821,'issue.delete','',3,'Delete Issue','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(822,'job_position.view','hr',7,'View Job Position','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(823,'job_position.create','hr',7,'Create Job Position','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(824,'job_position.edit','hr',7,'Edit Job Position','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(825,'job_position.delete','hr',7,'Delete Job Position','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(826,'journal_entry.view','accounting',5,'View Journal Entry','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(827,'journal_entry.create','accounting',5,'Create Journal Entry','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(828,'journal_entry.showImport','accounting',5,'ShowImport Journal Entry','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(829,'journal_entry.processImport','accounting',5,'ProcessImport Journal Entry','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(830,'journal_entry.processBankRegisterImport','accounting',5,'ProcessBankRegisterImport Journal Entry','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(831,'journal_entry.bulkPost','accounting',5,'BulkPost Journal Entry','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(832,'journal_entry.bulkVoid','accounting',5,'BulkVoid Journal Entry','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(833,'journal_entry.bulkDelete','accounting',5,'BulkDelete Journal Entry','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(834,'journal_entry.delete','accounting',5,'Delete Journal Entry','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(835,'location.view','',8,'View Location','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(836,'location.create','',8,'Create Location','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(837,'location.edit','',8,'Edit Location','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(838,'location.delete','',8,'Delete Location','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(839,'lot_serial.view','inventory',8,'View Lot Serial','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(840,'lot_serial.traceability','inventory',8,'Traceability Lot Serial','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(841,'lot_serial.expiration','inventory',8,'Expiration Lot Serial','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(842,'mfa.verifyForm','',17,'VerifyForm Mfa','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(843,'mfa.verify','',17,'Verify Mfa','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(844,'mfa.resendOTP','',17,'ResendOTP Mfa','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(845,'mfa.setupForm','',17,'SetupForm Mfa','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(846,'mfa.setup','',17,'Setup Mfa','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(847,'mfa.showBackupCodes','',17,'ShowBackupCodes Mfa','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(848,'mfa.regenerateBackupCodes','',17,'RegenerateBackupCodes Mfa','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(849,'mfa.disable','',17,'Disable Mfa','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(850,'mrp.materialDetail','manufacturing',9,'MaterialDetail Mrp','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(851,'mrp.safetyStock','manufacturing',9,'SafetyStock Mrp','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(852,'mrp.updateSafetyStock','manufacturing',9,'UpdateSafetyStock Mrp','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(853,'mrp.requisitions','manufacturing',9,'Requisitions Mrp','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(854,'mrp.approveRequisition','manufacturing',9,'ApproveRequisition Mrp','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(855,'mrp.shortageReport','manufacturing',9,'ShortageReport Mrp','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(856,'machine_data.getStatus','',9,'GetStatus Machine Data','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(857,'machine_data.health','',9,'Health Machine Data','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(858,'maintenance.schedules','manufacturing',9,'Schedules Maintenance','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(859,'maintenance.workOrders','manufacturing',9,'WorkOrders Maintenance','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(860,'maintenance.downtime','manufacturing',9,'Downtime Maintenance','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(861,'manufacturing.dashboard','',9,'Dashboard Manufacturing','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(862,'menu.view','',4,'View Menu','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(863,'menu.create','',4,'Create Menu','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(864,'menu.edit','',4,'Edit Menu','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(865,'menu.delete','',4,'Delete Menu','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(866,'menu.roleAccess','',4,'RoleAccess Menu','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(867,'menu.updateRoleAccess','',4,'UpdateRoleAccess Menu','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(868,'menu.updateOrder','',4,'UpdateOrder Menu','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(869,'menu.quickUpdate','',4,'QuickUpdate Menu','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(870,'messaging.channel','messaging',3,'Channel Messaging','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(871,'messaging.sendMessage','messaging',3,'SendMessage Messaging','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(872,'messaging.getChannelMembers','messaging',3,'GetChannelMembers Messaging','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(873,'messaging.getNewMessages','messaging',3,'GetNewMessages Messaging','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(874,'messaging.updateStatus','messaging',3,'UpdateStatus Messaging','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(875,'messaging.directMessage','messaging',3,'DirectMessage Messaging','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(876,'messaging.getThread','messaging',3,'GetThread Messaging','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(877,'messaging.search','messaging',3,'Search Messaging','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(878,'messaging.getUnreadCount','messaging',3,'GetUnreadCount Messaging','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(879,'messaging.getOnlineUsers','messaging',3,'GetOnlineUsers Messaging','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(880,'messaging.removeMember','messaging',3,'RemoveMember Messaging','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(881,'messaging.deleteChannel','messaging',3,'DeleteChannel Messaging','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(882,'nda.create','crm',6,'Create Nda','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(883,'nda.generateFromTemplate','crm',6,'GenerateFromTemplate Nda','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(884,'nda.edit','crm',6,'Edit Nda','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(885,'nda.delete','crm',6,'Delete Nda','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(886,'nda.sendForSignature','crm',6,'SendForSignature Nda','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(887,'nda.sendNDAEmail','crm',6,'SendNDAEmail Nda','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(888,'nda.publicSign','crm',6,'PublicSign Nda','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(889,'nda.signNDA','crm',6,'SignNDA Nda','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(890,'nda.declineNDA','crm',6,'DeclineNDA Nda','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(891,'nda.checkStatus','crm',6,'CheckStatus Nda','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(892,'nda.preview','crm',6,'Preview Nda','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(893,'nda.counterSign','crm',6,'CounterSign Nda','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(894,'nda.submitCounterSignature','crm',6,'SubmitCounterSignature Nda','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(895,'nda.emailNDA','crm',6,'EmailNDA Nda','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(896,'ndatemplate.view','crm',6,'View Ndatemplate','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(897,'ndatemplate.edit','crm',6,'Edit Ndatemplate','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(898,'network_monitor.status','',3,'Status Network Monitor','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(899,'network_monitor.logs','',3,'Logs Network Monitor','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(900,'network_monitor.statistics','',3,'Statistics Network Monitor','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(901,'network_monitor.feed','',3,'Feed Network Monitor','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(902,'network_monitor.logDetail','',3,'LogDetail Network Monitor','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(923,'notification.getUnread','',3,'GetUnread Notification','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(924,'notification.view','',3,'View Notification','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(925,'notification.markAsRead','',3,'MarkAsRead Notification','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(926,'notification.markAllAsRead','',3,'MarkAllAsRead Notification','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(927,'notification.delete','',3,'Delete Notification','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(928,'offer.view','hr',7,'View Offer','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(929,'offer.create','hr',7,'Create Offer','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(930,'offer.edit','hr',7,'Edit Offer','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(931,'offer.delete','hr',7,'Delete Offer','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(932,'offer.printLetter','hr',7,'PrintLetter Offer','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(933,'opportunity.pipeline','crm',6,'Pipeline Opportunity','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(934,'opportunity.create','crm',6,'Create Opportunity','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(935,'opportunity.view','crm',6,'View Opportunity','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(936,'opportunity.edit','crm',6,'Edit Opportunity','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(937,'opportunity.delete','crm',6,'Delete Opportunity','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(938,'opportunity.updateTaskStatus','crm',6,'UpdateTaskStatus Opportunity','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(939,'opportunity.updateStage','crm',6,'UpdateStage Opportunity','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(940,'opportunity.sendEmail','crm',6,'SendEmail Opportunity','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(941,'opportunity.downloadDocument','crm',6,'DownloadDocument Opportunity','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(942,'opportunity.deleteDocument','crm',6,'DeleteDocument Opportunity','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(943,'opportunity.deleteCompetitor','crm',6,'DeleteCompetitor Opportunity','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(944,'opportunity.saveCloseReason','crm',6,'SaveCloseReason Opportunity','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(945,'opportunity.clone','crm',6,'Clone Opportunity','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(946,'payment.view','',5,'View Payment','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(947,'payment.create','',5,'Create Payment','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(948,'payment.customerInvoices','',5,'CustomerInvoices Payment','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(949,'payment.delete','',5,'Delete Payment','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(950,'payroll.dashboard','hr',7,'Dashboard Payroll','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(951,'period_closing.close','',5,'Close Period Closing','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(952,'period_closing.reopen','',5,'Reopen Period Closing','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(953,'period_closing.checkPrerequisites','',5,'CheckPrerequisites Period Closing','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(954,'permission_group.view','admin',4,'View Permission Group','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(955,'permission_group.create','admin',4,'Create Permission Group','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(956,'permission_group.edit','admin',4,'Edit Permission Group','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(957,'permission_group.delete','admin',4,'Delete Permission Group','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(958,'pipedrive_import.importOrganizations','',4,'ImportOrganizations Pipedrive Import','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(959,'pipedrive_import.importDeals','',4,'ImportDeals Pipedrive Import','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(960,'pipedrive_import.importLeads','',4,'ImportLeads Pipedrive Import','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(961,'pipedrive_import.importNotes','',4,'ImportNotes Pipedrive Import','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(962,'pipedrive_import.importFiles','',4,'ImportFiles Pipedrive Import','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(963,'pipedrive_import.importAll','',4,'ImportAll Pipedrive Import','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(964,'pipedrive_import.viewLog','',4,'ViewLog Pipedrive Import','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(965,'pipedrive_import.getStats','',4,'GetStats Pipedrive Import','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(966,'position.view','hr',7,'View Position','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(967,'position.create','hr',7,'Create Position','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(968,'position.edit','hr',7,'Edit Position','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(969,'position.delete','hr',7,'Delete Position','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(970,'position.toggleActive','hr',7,'ToggleActive Position','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(971,'pricing_rule.create','sales',11,'Create Pricing Rule','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(972,'pricing_rule.edit','sales',11,'Edit Pricing Rule','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(973,'pricing_rule.delete','sales',11,'Delete Pricing Rule','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(974,'pricing_rule.toggle','sales',11,'Toggle Pricing Rule','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(975,'pricing_rule.calculatePrice','sales',11,'CalculatePrice Pricing Rule','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(976,'pro_forma.location','',19,'Location Pro Forma','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(977,'pro_forma.compare','',19,'Compare Pro Forma','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(978,'pro_forma.export','',19,'Export Pro Forma','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(979,'pro_forma.exportExcel','',19,'ExportExcel Pro Forma','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(980,'pro_forma.calculate','',19,'Calculate Pro Forma','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(981,'product.view','inventory',8,'View Product','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(982,'product.create','inventory',8,'Create Product','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(983,'product.edit','inventory',8,'Edit Product','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(984,'product.delete','inventory',8,'Delete Product','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(985,'product_forecast.gettingStarted','inventory',19,'GettingStarted Product Forecast','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(986,'product_forecast.autoConfig','inventory',19,'AutoConfig Product Forecast','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(987,'product_forecast.updateConfig','inventory',19,'UpdateConfig Product Forecast','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(988,'product_forecast.generate','inventory',19,'Generate Product Forecast','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(989,'product_forecast.proforma','inventory',19,'Proforma Product Forecast','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(990,'product_forecast.sensitivity','inventory',19,'Sensitivity Product Forecast','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(991,'product_forecast.compare','inventory',19,'Compare Product Forecast','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(992,'product_forecast.exportExcel','inventory',19,'ExportExcel Product Forecast','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(993,'product_forecast.variance','inventory',19,'Variance Product Forecast','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(994,'product_forecast.commandCenter','inventory',19,'CommandCenter Product Forecast','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(995,'profile.view','',3,'View Profile','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(996,'profile.updateSettings','',3,'UpdateSettings Profile','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(997,'profile.uploadAvatar','',3,'UploadAvatar Profile','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(998,'profile.changePassword','',3,'ChangePassword Profile','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(999,'profile.createCustomMenu','',3,'CreateCustomMenu Profile','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1000,'profile.deleteCustomMenu','',3,'DeleteCustomMenu Profile','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1001,'projects.dashboard','projects',14,'Dashboard Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1002,'projects.myTasks','projects',14,'MyTasks Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1003,'projects.listView','projects',14,'ListView Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1004,'projects.exportTasks','projects',14,'ExportTasks Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1005,'projects.createTask','projects',14,'CreateTask Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1006,'projects.updateTask','projects',14,'UpdateTask Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1007,'projects.moveTask','projects',14,'MoveTask Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1008,'projects.deleteTask','projects',14,'DeleteTask Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1009,'projects.getTask','projects',14,'GetTask Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1010,'projects.addComment','projects',14,'AddComment Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1011,'projects.assignUser','projects',14,'AssignUser Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1012,'projects.unassignUser','projects',14,'UnassignUser Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1013,'projects.addChecklistItem','projects',14,'AddChecklistItem Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1014,'projects.toggleChecklistItem','projects',14,'ToggleChecklistItem Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1015,'projects.addTeamMember','projects',14,'AddTeamMember Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1016,'projects.updateTeamMemberRole','projects',14,'UpdateTeamMemberRole Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1017,'projects.removeTeamMember','projects',14,'RemoveTeamMember Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1018,'projects.addTeamGroup','projects',14,'AddTeamGroup Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1019,'projects.removeTeamGroup','projects',14,'RemoveTeamGroup Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1020,'projects.assignGroupToTask','projects',14,'AssignGroupToTask Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1021,'projects.unassignGroupFromTask','projects',14,'UnassignGroupFromTask Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1022,'projects.financials','projects',14,'Financials Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1023,'projects.exportFinancials','projects',14,'ExportFinancials Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1024,'projects.createTransaction','projects',14,'CreateTransaction Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1025,'projects.storeTransaction','projects',14,'StoreTransaction Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1026,'projects.editTransaction','projects',14,'EditTransaction Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1027,'projects.updateTransaction','projects',14,'UpdateTransaction Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1028,'projects.linkTransactionToTask','projects',14,'LinkTransactionToTask Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1029,'projects.deleteTransaction','projects',14,'DeleteTransaction Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1030,'projects.migrateTransactions','projects',14,'MigrateTransactions Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1031,'projects.processMigration','projects',14,'ProcessMigration Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1032,'projects.gantt','projects',14,'Gantt Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1033,'projects.calculateCriticalPath','projects',14,'CalculateCriticalPath Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1034,'projects.updateTaskDates','projects',14,'UpdateTaskDates Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1035,'projects.addTaskDependency','projects',14,'AddTaskDependency Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1036,'projects.removeTaskDependency','projects',14,'RemoveTaskDependency Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1037,'projects.resources','projects',14,'Resources Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1038,'projects.resourceDayDetails','projects',14,'ResourceDayDetails Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1039,'projects.autoAllocateResources','projects',14,'AutoAllocateResources Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1040,'projects.getTaskComments','projects',14,'GetTaskComments Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1041,'projects.addTaskComment','projects',14,'AddTaskComment Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1042,'projects.exportGanttPDF','projects',14,'ExportGanttPDF Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1043,'projects.exportGanttExcel','projects',14,'ExportGanttExcel Projects','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1044,'promotion.create','sales',11,'Create Promotion','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1045,'promotion.edit','sales',11,'Edit Promotion','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1046,'promotion.delete','sales',11,'Delete Promotion','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1047,'promotion.validateCode','sales',11,'ValidateCode Promotion','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1048,'promotion.applyPromotion','sales',11,'ApplyPromotion Promotion','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1049,'purchase_bill.view','',5,'View Purchase Bill','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1050,'purchase_bill.create','',5,'Create Purchase Bill','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1051,'purchase_bill.edit','',5,'Edit Purchase Bill','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1052,'purchase_bill.delete','',5,'Delete Purchase Bill','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1053,'purchase_order.view','purchases',10,'View Purchase Order','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1054,'purchase_order.create','purchases',10,'Create Purchase Order','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1055,'purchase_order.edit','purchases',10,'Edit Purchase Order','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1056,'purchase_order.delete','purchases',10,'Delete Purchase Order','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1057,'purchase_payment.view','',5,'View Purchase Payment','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1058,'purchase_payment.create','',5,'Create Purchase Payment','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1059,'purchase_payment.delete','',5,'Delete Purchase Payment','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1060,'purchase_requisition.view','',10,'View Purchase Requisition','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1061,'purchase_requisition.create','',10,'Create Purchase Requisition','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1062,'purchase_requisition.edit','',10,'Edit Purchase Requisition','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1063,'purchase_requisition.delete','',10,'Delete Purchase Requisition','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1064,'purchase_requisition.approve','',10,'Approve Purchase Requisition','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1065,'purchase_requisition.reject','',10,'Reject Purchase Requisition','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1066,'purchase_return.view','sales',10,'View Purchase Return','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1067,'purchase_return.create','sales',10,'Create Purchase Return','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1068,'purchase_return.edit','sales',10,'Edit Purchase Return','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1069,'purchase_return.delete','sales',10,'Delete Purchase Return','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1070,'purchases.dashboard','',10,'Dashboard Purchases','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1071,'quality.inspections','manufacturing',9,'Inspections Quality','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1072,'quality.storeInspection','manufacturing',9,'StoreInspection Quality','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1073,'quality.inspection','manufacturing',9,'Inspection Quality','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1074,'quality.recordInspectionResult','manufacturing',9,'RecordInspectionResult Quality','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1075,'quality.ncr','manufacturing',9,'Ncr Quality','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1076,'quality.storeNCR','manufacturing',9,'StoreNCR Quality','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1077,'quality.ncrDetail','manufacturing',9,'NcrDetail Quality','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1078,'quality.updateNCR','manufacturing',9,'UpdateNCR Quality','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1079,'quality.metrics','manufacturing',9,'Metrics Quality','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1080,'quality.templates','manufacturing',9,'Templates Quality','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1081,'quality.storeTemplate','manufacturing',9,'StoreTemplate Quality','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1082,'quality.generateCoA','manufacturing',9,'GenerateCoA Quality','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1083,'quick_books.view','',4,'View Quick Books','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1084,'quick_books.connect','',4,'Connect Quick Books','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1085,'quick_books.callback','',4,'Callback Quick Books','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1086,'quick_books.disconnect','',4,'Disconnect Quick Books','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1087,'quick_books.accountMapping','',4,'AccountMapping Quick Books','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1088,'quick_books.saveMapping','',4,'SaveMapping Quick Books','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1089,'quick_books.deleteMapping','',4,'DeleteMapping Quick Books','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1090,'quick_books.syncQueue','',4,'SyncQueue Quick Books','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1091,'quick_books.processQueue','',4,'ProcessQueue Quick Books','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1092,'quick_books.retryFailed','',4,'RetryFailed Quick Books','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1093,'quick_books.syncAllEmployees','',4,'SyncAllEmployees Quick Books','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1094,'quick_books.syncLogs','',4,'SyncLogs Quick Books','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1095,'quick_books.settings','',4,'Settings Quick Books','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1096,'quick_books.saveSettings','',4,'SaveSettings Quick Books','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1097,'quote.create','crm',11,'Create Quote','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1098,'quote.edit','crm',11,'Edit Quote','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1099,'quote.delete','crm',11,'Delete Quote','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1100,'quote.print','crm',11,'Print Quote','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1101,'quote.convertToSalesOrder','crm',11,'ConvertToSalesOrder Quote','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1102,'quote.export','crm',11,'Export Quote','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1103,'quote.sendForSignature','crm',11,'SendForSignature Quote','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1104,'quote.sendQuoteEmail','crm',11,'SendQuoteEmail Quote','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1105,'quote.acceptQuote','crm',11,'AcceptQuote Quote','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1106,'quote.declineQuote','crm',11,'DeclineQuote Quote','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1107,'quote_template.view','crm',11,'View Quote Template','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1108,'quote_template.create','crm',11,'Create Quote Template','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1109,'quote_template.edit','crm',11,'Edit Quote Template','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1110,'quote_template.delete','crm',11,'Delete Quote Template','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1111,'quote_template.setDefault','crm',11,'SetDefault Quote Template','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1112,'quote_template.getTemplate','crm',11,'GetTemplate Quote Template','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1113,'rfq.view','purchases',10,'View Rfq','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1114,'rfq.create','purchases',10,'Create Rfq','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1115,'rfq.edit','purchases',10,'Edit Rfq','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1116,'rfq.delete','purchases',10,'Delete Rfq','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1117,'recruitment.view','hr',7,'View Recruitment','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1118,'recurring_transaction.view','',5,'View Recurring Transaction','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1119,'recurring_transaction.create','',5,'Create Recurring Transaction','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1120,'recurring_transaction.edit','',5,'Edit Recurring Transaction','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1121,'recurring_transaction.delete','',5,'Delete Recurring Transaction','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1122,'recurring_transaction.toggleActive','',5,'ToggleActive Recurring Transaction','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1123,'recurring_transaction.execute','',5,'Execute Recurring Transaction','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1124,'recurring_transaction.getDue','',5,'GetDue Recurring Transaction','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1125,'recurring_transaction.executeDue','',5,'ExecuteDue Recurring Transaction','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1126,'reports.sales','',15,'Sales Reports','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1127,'reports.inventory','',15,'Inventory Reports','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1128,'reports.financial','',15,'Financial Reports','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1129,'reports.hr','',15,'Hr Reports','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1130,'reports.customers','',15,'Customers Reports','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1131,'reports.purchases','',15,'Purchases Reports','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1132,'return.create','sales',11,'Create Return','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1133,'return.edit','sales',11,'Edit Return','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1134,'return.approve','sales',11,'Approve Return','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1135,'return.reject','sales',11,'Reject Return','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1136,'return.complete','sales',11,'Complete Return','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1137,'review.view','hr',7,'View Review','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1138,'review.create','hr',7,'Create Review','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1139,'review.edit','hr',7,'Edit Review','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1140,'review.delete','hr',7,'Delete Review','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1141,'role.view','admin',4,'View Role','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1142,'role.create','admin',4,'Create Role','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1143,'role.edit','admin',4,'Edit Role','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1144,'role.delete','admin',4,'Delete Role','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1145,'role.report','admin',4,'Report Role','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1146,'role.printRole','admin',4,'PrintRole Role','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1147,'sales.dashboard','',11,'Dashboard Sales','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1148,'sales_order.view','sales',11,'View Sales Order','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1149,'sales_order.create','sales',11,'Create Sales Order','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1150,'sales_order.edit','sales',11,'Edit Sales Order','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1151,'sales_order.print','sales',11,'Print Sales Order','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1152,'sales_order.delete','sales',11,'Delete Sales Order','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1153,'sales_report.view','',11,'View Sales Report','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1154,'sales_report.getSummary','',11,'GetSummary Sales Report','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1155,'sales_report.getTopProducts','',11,'GetTopProducts Sales Report','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1156,'sales_report.getTopCustomers','',11,'GetTopCustomers Sales Report','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1157,'sales_report.getByStatus','',11,'GetByStatus Sales Report','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1158,'sales_report.getByChannel','',11,'GetByChannel Sales Report','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1159,'sales_report.getInvoiceAnalytics','',11,'GetInvoiceAnalytics Sales Report','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1160,'sales_report.getPaymentAnalytics','',11,'GetPaymentAnalytics Sales Report','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1161,'sales_report.getCategoryPerformance','',11,'GetCategoryPerformance Sales Report','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1162,'sales_report.getSalesGrowth','',11,'GetSalesGrowth Sales Report','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1163,'sales_report.getQuoteConversion','',11,'GetQuoteConversion Sales Report','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1164,'sales_report.exportReport','',11,'ExportReport Sales Report','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1165,'scheduling.view','',9,'View Scheduling','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1166,'scheduling.deleteAssignment','',9,'DeleteAssignment Scheduling','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1167,'scheduling.getSchedulingData','',9,'GetSchedulingData Scheduling','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1168,'scheduling.getConflicts','',9,'GetConflicts Scheduling','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1169,'scheduling.calendar','',9,'Calendar Scheduling','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1170,'scheduling.getCalendarEvents','',9,'GetCalendarEvents Scheduling','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1171,'search.searchCustomers','',3,'SearchCustomers Search','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1172,'separation.view','hr',7,'View Separation','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1173,'separation.create','hr',7,'Create Separation','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1174,'separation.edit','hr',7,'Edit Separation','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1175,'separation.delete','hr',7,'Delete Separation','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1176,'settings.updateCompany','admin',16,'UpdateCompany Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1177,'settings.updateDropdown','admin',16,'UpdateDropdown Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1178,'settings.addDropdownOption','admin',16,'AddDropdownOption Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1179,'settings.removeDropdownOption','admin',16,'RemoveDropdownOption Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1180,'settings.initializeDefaults','admin',16,'InitializeDefaults Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1181,'settings.updateGlobalFacilities','admin',16,'UpdateGlobalFacilities Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1182,'settings.updateGlobalPayroll','admin',16,'UpdateGlobalPayroll Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1183,'settings.updateGlobalBusinessParameters','admin',16,'UpdateGlobalBusinessParameters Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1184,'settings.termsConditionsCreate','admin',16,'TermsConditionsCreate Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1185,'settings.termsConditionsStore','admin',16,'TermsConditionsStore Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1186,'settings.termsConditionsEdit','admin',16,'TermsConditionsEdit Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1187,'settings.termsConditionsUpdate','admin',16,'TermsConditionsUpdate Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1188,'settings.termsConditionsDelete','admin',16,'TermsConditionsDelete Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1189,'settings.company','admin',16,'Company Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1190,'settings.email','admin',16,'Email Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1191,'settings.updateEmail','admin',16,'UpdateEmail Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1192,'settings.createSignatureTemplate','admin',16,'CreateSignatureTemplate Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1193,'settings.storeSignatureTemplate','admin',16,'StoreSignatureTemplate Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1194,'settings.editSignatureTemplate','admin',16,'EditSignatureTemplate Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1195,'settings.updateSignatureTemplate','admin',16,'UpdateSignatureTemplate Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1196,'settings.deleteSignatureTemplate','admin',16,'DeleteSignatureTemplate Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1197,'settings.setDefaultTemplate','admin',16,'SetDefaultTemplate Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1198,'settings.assignTemplateToRole','admin',16,'AssignTemplateToRole Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1199,'settings.assignTemplateToUser','admin',16,'AssignTemplateToUser Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1200,'settings.createAlias','admin',16,'CreateAlias Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1201,'settings.updateAlias','admin',16,'UpdateAlias Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1202,'settings.deleteAlias','admin',16,'DeleteAlias Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1203,'settings.addRecipient','admin',16,'AddRecipient Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1204,'settings.removeRecipient','admin',16,'RemoveRecipient Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1205,'settings.getAliasRecipients','admin',16,'GetAliasRecipients Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1206,'settings.businessParameters','admin',16,'BusinessParameters Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1207,'settings.editBusinessParameters','admin',16,'EditBusinessParameters Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1208,'settings.updateBusinessParameters','admin',16,'UpdateBusinessParameters Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1209,'settings.facilities','admin',16,'Facilities Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1210,'settings.editFacility','admin',16,'EditFacility Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1211,'settings.updateFacility','admin',16,'UpdateFacility Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1212,'settings.payroll','admin',16,'Payroll Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1213,'settings.editPayroll','admin',16,'EditPayroll Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1214,'settings.updatePayroll','admin',16,'UpdatePayroll Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1215,'settings.dropdownsSales','admin',16,'DropdownsSales Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1216,'settings.dropdownsOperations','admin',16,'DropdownsOperations Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1217,'settings.tax','admin',16,'Tax Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1218,'settings.updateTax','admin',16,'UpdateTax Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1219,'settings.fiscalYear','admin',16,'FiscalYear Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1220,'settings.updateFiscalYear','admin',16,'UpdateFiscalYear Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1221,'settings.costAllocation','admin',16,'CostAllocation Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1222,'settings.storeCostAllocation','admin',16,'StoreCostAllocation Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1223,'settings.updateCostAllocation','admin',16,'UpdateCostAllocation Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1224,'settings.deleteCostAllocation','admin',16,'DeleteCostAllocation Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1225,'settings.paymentTerms','admin',16,'PaymentTerms Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1226,'settings.storePaymentTerm','admin',16,'StorePaymentTerm Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1227,'settings.updatePaymentTerm','admin',16,'UpdatePaymentTerm Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1228,'settings.deletePaymentTerm','admin',16,'DeletePaymentTerm Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1229,'settings.setDefaultPaymentTerm','admin',16,'SetDefaultPaymentTerm Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1230,'settings.ppeParameters','admin',16,'PpeParameters Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1231,'settings.storePpeParameter','admin',16,'StorePpeParameter Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1232,'settings.updatePpeParameter','admin',16,'UpdatePpeParameter Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1233,'settings.deletePpeParameter','admin',16,'DeletePpeParameter Settings','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1234,'shipment.view','sales',11,'View Shipment','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1235,'shipment.create','sales',11,'Create Shipment','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1236,'shipment.updateStatus','sales',11,'UpdateStatus Shipment','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1237,'shipment.delete','sales',11,'Delete Shipment','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1238,'shop_floor.view','manufacturing',9,'View Shop Floor','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1239,'shop_floor.workOrder','manufacturing',9,'WorkOrder Shop Floor','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1240,'shop_floor.recordOutput','manufacturing',9,'RecordOutput Shop Floor','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1241,'shop_floor.recordMaterialConsumption','manufacturing',9,'RecordMaterialConsumption Shop Floor','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1242,'shop_floor.recordQualityCheck','manufacturing',9,'RecordQualityCheck Shop Floor','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1243,'stock_movement.view','inventory',8,'View Stock Movement','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1244,'stock_movement.create','inventory',8,'Create Stock Movement','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1245,'supplier.view','purchases',10,'View Supplier','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1246,'supplier.create','purchases',10,'Create Supplier','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1247,'supplier.edit','purchases',10,'Edit Supplier','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1248,'supplier.delete','purchases',10,'Delete Supplier','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1249,'supplier.quickAdd','purchases',10,'QuickAdd Supplier','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1250,'support.create','crm',6,'Create Support','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1251,'support.view','crm',6,'View Support','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1252,'support.edit','crm',6,'Edit Support','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1253,'support.delete','crm',6,'Delete Support','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1254,'support.downloadAttachment','crm',6,'DownloadAttachment Support','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1255,'support.deleteAttachment','crm',6,'DeleteAttachment Support','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1256,'system_scripts.view','',4,'View System Scripts','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1257,'system_scripts.execute','',4,'Execute System Scripts','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1258,'system_scripts.history','',4,'History System Scripts','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1259,'tax_filing.edit','accounting',5,'Edit Tax Filing','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1260,'tax_filing.file','accounting',5,'File Tax Filing','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1261,'tax_filing.markPaid','accounting',5,'MarkPaid Tax Filing','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1262,'tax_filing.delete','accounting',5,'Delete Tax Filing','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1263,'tax_jurisdiction.view','accounting',5,'View Tax Jurisdiction','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1264,'tax_jurisdiction.create','accounting',5,'Create Tax Jurisdiction','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1265,'tax_jurisdiction.edit','accounting',5,'Edit Tax Jurisdiction','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1266,'tax_jurisdiction.delete','accounting',5,'Delete Tax Jurisdiction','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1267,'tax_jurisdiction.deactivate','accounting',5,'Deactivate Tax Jurisdiction','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1268,'tax_jurisdiction.getCitiesByState','accounting',5,'GetCitiesByState Tax Jurisdiction','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1269,'tax_jurisdiction.calculateCustomerTax','accounting',5,'CalculateCustomerTax Tax Jurisdiction','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1270,'tax_payment.view','accounting',5,'View Tax Payment','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1271,'tax_payment.create','accounting',5,'Create Tax Payment','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1272,'tax_payment.edit','accounting',5,'Edit Tax Payment','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1273,'tax_payment.delete','accounting',5,'Delete Tax Payment','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1274,'tax_payment.file','accounting',5,'File Tax Payment','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1275,'tax_payment.markPaid','accounting',5,'MarkPaid Tax Payment','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1276,'tax_payment.liabilityReport','accounting',5,'LiabilityReport Tax Payment','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1277,'terms_conditions.view','',11,'View Terms Conditions','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1278,'terms_conditions.create','',11,'Create Terms Conditions','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1279,'terms_conditions.edit','',11,'Edit Terms Conditions','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1280,'terms_conditions.delete','',11,'Delete Terms Conditions','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1281,'terms_conditions.getByType','',11,'GetByType Terms Conditions','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1282,'training.delete','hr',7,'Delete Training','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1283,'transfer.view','inventory',8,'View Transfer','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1284,'transfer.create','inventory',8,'Create Transfer','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1285,'transfer.ship','inventory',8,'Ship Transfer','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1286,'user.view','admin',4,'View User','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1287,'user.create','admin',4,'Create User','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1288,'user.edit','admin',4,'Edit User','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1289,'user.delete','admin',4,'Delete User','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1290,'user_group.view','admin',4,'View User Group','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1291,'user_group.create','admin',4,'Create User Group','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1292,'user_group.edit','admin',4,'Edit User Group','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1293,'user_group.delete','admin',4,'Delete User Group','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1294,'user_group.removeMember','admin',4,'RemoveMember User Group','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1295,'user_group.removeUse','admin',4,'RemoveUse User Group','2025-11-28 22:01:12','2025-11-28 23:02:18'),
(1296,'vendor_payment.view','',5,'View Vendor Payment','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1297,'vendor_payment.create','',5,'Create Vendor Payment','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1298,'vendor_payment.edit','',5,'Edit Vendor Payment','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1299,'vendor_payment.delete','',5,'Delete Vendor Payment','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1300,'vendor_payment.void','',5,'Void Vendor Payment','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1301,'vendor_payment.post','',5,'Post Vendor Payment','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1302,'vendor_payment.printCheck','',5,'PrintCheck Vendor Payment','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1303,'vendor_payment.getUnpaidBills','',5,'GetUnpaidBills Vendor Payment','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1304,'vendor_payment.getNextCheckNumber','',5,'GetNextCheckNumber Vendor Payment','2025-11-28 22:01:12','2025-11-28 22:59:52'),
(1305,'warehouse.view','inventory',8,'View Warehouse','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1306,'warehouse.create','inventory',8,'Create Warehouse','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1307,'warehouse.edit','inventory',8,'Edit Warehouse','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1308,'warehouse.delete','inventory',8,'Delete Warehouse','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1309,'work_order.view','manufacturing',9,'View Work Order','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1310,'work_order.create','manufacturing',9,'Create Work Order','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1311,'work_order.delete','manufacturing',9,'Delete Work Order','2025-11-28 22:01:12','2025-11-28 23:03:01'),
(1312,'aitest.view','',3,'View Aitest','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1313,'aitest.chat','',3,'Chat Aitest','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1314,'aitest.generate','',3,'Generate Aitest','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1315,'aitest.extract','',3,'Extract Aitest','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1316,'aitest.sentiment','',3,'Sentiment Aitest','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1317,'aitest.suggest','',3,'Suggest Aitest','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1318,'aitest.schema','',3,'Schema Aitest','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1319,'aitest.dataAnalysis','',3,'DataAnalysis Aitest','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1320,'bank_import.upload','accounting',5,'Upload Bank Import','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1321,'bank_import.categorizeTransaction','accounting',5,'CategorizeTransaction Bank Import','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1322,'bank_import.applyRules','accounting',5,'ApplyRules Bank Import','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1323,'bank_import.toggleRule','accounting',5,'ToggleRule Bank Import','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1324,'camera_audit.editStation','',3,'EditStation Camera Audit','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1325,'contact_api.getByCompany','crm',4,'GetByCompany Contact Api','2025-11-28 22:08:47','2025-11-28 23:03:01'),
(1326,'currency.createCurrency','',5,'CreateCurrency Currency','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1327,'currency.createRevaluation','',5,'CreateRevaluation Currency','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1328,'dashboard.addWidget','',3,'AddWidget Dashboard','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1329,'dashboard.toggleWidget','',3,'ToggleWidget Dashboard','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1330,'dashboard.refreshWidget','',3,'RefreshWidget Dashboard','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1331,'email_template.toggleActive','',3,'ToggleActive Email Template','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1332,'file_manager.upload','files',3,'Upload File Manager','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1333,'file_manager.createFolder','files',3,'CreateFolder File Manager','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1334,'file_manager.rename','files',3,'Rename File Manager','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1335,'file_manager.move','files',3,'Move File Manager','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1336,'file_manager.moveFolder','files',3,'MoveFolder File Manager','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1337,'file_manager.compress','files',3,'Compress File Manager','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1338,'file_manager.extract','files',3,'Extract File Manager','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1339,'file_manager.shareFile','files',3,'ShareFile File Manager','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1340,'file_manager.shareFolder','files',3,'ShareFolder File Manager','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1341,'financial_pro_forma.generate','',19,'Generate Financial Pro Forma','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1342,'financial_pro_forma.compare','',19,'Compare Financial Pro Forma','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1343,'forecaster.createForecast','',19,'CreateForecast Forecaster','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1344,'forecaster.createScenario','',19,'CreateScenario Forecaster','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1345,'forecaster.createFinancing','',19,'CreateFinancing Forecaster','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1346,'forecaster.createInvestment','',19,'CreateInvestment Forecaster','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1347,'help_desk.chatAssignSession','helpdesk',13,'ChatAssignSession Help Desk','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1348,'help_desk.chatEndSession','helpdesk',13,'ChatEndSession Help Desk','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1349,'help_desk.chatCreateSession','helpdesk',13,'ChatCreateSession Help Desk','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1350,'internal_note_api.view','',4,'View Internal Note Api','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1351,'mrp.calculate','manufacturing',9,'Calculate Mrp','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1352,'mrp.generateRequisitions','manufacturing',9,'GenerateRequisitions Mrp','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1353,'mrp.autoCalculateSafetyStock','manufacturing',9,'AutoCalculateSafetyStock Mrp','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1354,'mrp.convertToPO','manufacturing',9,'ConvertToPO Mrp','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1355,'machine_data.updateProduction','',9,'UpdateProduction Machine Data','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1356,'machine_data.updateUtilization','',9,'UpdateUtilization Machine Data','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1357,'machine_data.batchUpdate','',9,'BatchUpdate Machine Data','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1358,'maintenance.createSchedule','manufacturing',9,'CreateSchedule Maintenance','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1359,'maintenance.storeSchedule','manufacturing',9,'StoreSchedule Maintenance','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1360,'maintenance.createWorkOrder','manufacturing',9,'CreateWorkOrder Maintenance','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1361,'maintenance.storeWorkOrder','manufacturing',9,'StoreWorkOrder Maintenance','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1362,'maintenance.createDowntime','manufacturing',9,'CreateDowntime Maintenance','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1363,'maintenance.storeDowntime','manufacturing',9,'StoreDowntime Maintenance','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1364,'messaging.createChannel','messaging',3,'CreateChannel Messaging','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1365,'messaging.addMember','messaging',3,'AddMember Messaging','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1366,'messaging.uploadFile','messaging',3,'UploadFile Messaging','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1367,'messaging.addReaction','messaging',3,'AddReaction Messaging','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1368,'messaging.leaveChannel','messaging',3,'LeaveChannel Messaging','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1369,'ndatemplate.toggle','crm',6,'Toggle Ndatemplate','2025-11-28 22:08:47','2025-11-28 23:03:01'),
(1370,'network_monitor.clearLogs','',3,'ClearLogs Network Monitor','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1371,'network_monitor.addAllowedHost','',3,'AddAllowedHost Network Monitor','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1376,'opportunity.addTask','crm',6,'AddTask Opportunity','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1377,'opportunity.logReceivedEmail','crm',6,'LogReceivedEmail Opportunity','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1378,'opportunity.uploadDocument','crm',6,'UploadDocument Opportunity','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1379,'opportunity.addCompetitor','crm',6,'AddCompetitor Opportunity','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1380,'opportunity.assign','crm',6,'Assign Opportunity','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1381,'period_closing.processClose','',5,'ProcessClose Period Closing','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1382,'permission_group.assignPermissions','admin',4,'AssignPermissions Permission Group','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1383,'permission_group.reorder','admin',4,'Reorder Permission Group','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1384,'quality.createInspection','manufacturing',9,'CreateInspection Quality','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1385,'quality.completeInspection','manufacturing',9,'CompleteInspection Quality','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1386,'quality.createNCR','manufacturing',9,'CreateNCR Quality','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1387,'quality.createTemplate','manufacturing',9,'CreateTemplate Quality','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1388,'scheduling.autoSchedule','',9,'AutoSchedule Scheduling','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1389,'scheduling.rescheduleAssignment','',9,'RescheduleAssignment Scheduling','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1390,'scheduling.createAssignment','',9,'CreateAssignment Scheduling','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1391,'search.search','',3,'Search Search','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1392,'shop_floor.startProduction','manufacturing',9,'StartProduction Shop Floor','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1393,'shop_floor.pauseProduction','manufacturing',9,'PauseProduction Shop Floor','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1394,'shop_floor.completeProduction','manufacturing',9,'CompleteProduction Shop Floor','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1395,'support.addResponse','crm',6,'AddResponse Support','2025-11-28 22:08:47','2025-11-28 22:59:52'),
(1396,'tax_payment.calculatePeriodTax','accounting',5,'CalculatePeriodTax Tax Payment','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1397,'transfer.receive','inventory',8,'Receive Transfer','2025-11-28 22:08:47','2025-11-28 23:03:01'),
(1398,'transfer.cancel','inventory',8,'Cancel Transfer','2025-11-28 22:08:47','2025-11-28 23:03:01'),
(1399,'user_group.addMember','admin',4,'AddMember User Group','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1400,'user_group.addUse','admin',4,'AddUse User Group','2025-11-28 22:08:47','2025-11-28 23:02:18'),
(1401,'hr.applications','hr',NULL,'View and manage job applications','2025-11-30 01:08:58','2025-11-30 01:08:58'),
(1402,'hr.interviews','hr',NULL,'View and manage interviews','2025-11-30 01:08:58','2025-11-30 01:08:58'),
(1403,'hr.assessments','hr',NULL,'View and manage assessments','2025-11-30 01:08:58','2025-11-30 01:08:58'),
(1404,'hr.offers','hr',NULL,'View and manage job offers','2025-11-30 01:08:58','2025-11-30 01:08:58'),
(1405,'hr.contracts','hr',NULL,'View and manage employee contracts','2025-11-30 01:08:58','2025-11-30 01:08:58'),
(1406,'hr.training','hr',NULL,'View and manage training programs','2025-11-30 01:08:58','2025-11-30 01:08:58'),
(1407,'hr.performance_reviews','hr',NULL,'View and manage performance reviews','2025-11-30 01:08:58','2025-11-30 01:08:58'),
(1408,'hr.issues__challenges','hr',NULL,'View and manage employee issues and challenges','2025-11-30 01:08:58','2025-11-30 01:08:58'),
(1409,'hr.separations','hr',NULL,'View and manage employee separations','2025-11-30 01:08:58','2025-11-30 01:08:58'),
(1410,'accounting.assets','accounting',NULL,'View Fixed Assets','2025-12-02 03:35:40','2025-12-02 03:35:40'),
(1411,'accounting.depreciation','accounting',NULL,'View Depreciation','2025-12-02 03:35:40','2025-12-02 03:35:40'),
(1412,'accounting.period','accounting',NULL,'View Period Closing','2025-12-02 03:35:40','2025-12-02 03:35:40'),
(1413,'accounting.bank_accounts','accounting',NULL,'View Bank Accounts','2025-12-02 03:35:40','2025-12-02 03:35:40'),
(1414,'accounting.reconciliation','accounting',NULL,'View Bank Reconciliation','2025-12-02 03:35:40','2025-12-02 03:35:40'),
(1415,'accounting.accounts','accounting',NULL,'View Chart of Accounts','2025-12-02 03:35:40','2025-12-02 03:35:40'),
(1416,'accounting.journal','accounting',NULL,'View Journal Entries','2025-12-02 03:35:40','2025-12-02 03:35:40'),
(1417,'accounting.currencies','accounting',NULL,'View Currencies','2025-12-02 03:35:40','2025-12-02 03:35:40'),
(1418,'accounting.exchange_rates','accounting',NULL,'View Exchange Rates','2025-12-02 03:35:40','2025-12-02 03:35:40'),
(1419,'diagrams.view','diagrams',NULL,'View diagrams','2025-12-02 03:44:08','2025-12-02 03:44:08'),
(1420,'diagrams.create','diagrams',NULL,'Create new diagrams','2025-12-02 03:44:08','2025-12-02 03:44:08'),
(1421,'diagrams.edit','diagrams',NULL,'Edit diagrams','2025-12-02 03:44:08','2025-12-02 03:44:08'),
(1422,'diagrams.delete','diagrams',NULL,'Delete diagrams','2025-12-02 03:44:08','2025-12-02 03:44:08'),
(1423,'diagrams.share','diagrams',NULL,'Share diagrams with other users','2025-12-02 03:44:08','2025-12-02 03:44:08'),
(1424,'diagrams.export','diagrams',NULL,'Export diagrams to PNG/SVG','2025-12-02 03:44:08','2025-12-02 03:44:08'),
(1449,'manufacturing.capacity_planning','manufacturing',NULL,'Access Capacity Planning','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1450,'manufacturing.planning_materials','manufacturing',NULL,'Access Planning & Materials','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1451,'manufacturing.production','manufacturing',NULL,'Access Production','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1452,'manufacturing.resources','manufacturing',NULL,'Access Resources','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1453,'manufacturing.quality_control','manufacturing',NULL,'Access Quality Control','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1454,'manufacturing.maintenance','manufacturing',NULL,'Access Maintenance','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1455,'manufacturing.costing','manufacturing',NULL,'Access Costing','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1456,'manufacturing.reports','manufacturing',NULL,'Access Manufacturing Reports','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1457,'accounting.operations','accounting',NULL,'Access Accounting Operations','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1458,'accounting.reports','accounting',NULL,'Access Accounting Reports','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1459,'accounting.assets_compliance','accounting',NULL,'Access Assets/Compliance','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1460,'accounting.banking_cash','accounting',NULL,'Access Banking/Cash','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1461,'accounting.multicurrency','accounting',NULL,'Access Multi-Currency','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1462,'inventory.product_management','inventory',NULL,'Access Product Management','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1463,'inventory.stock_management','inventory',NULL,'Access Stock Management','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1464,'inventory.tracking','inventory',NULL,'Access Lot/Serial Tracking','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1465,'inventory.locations','inventory',NULL,'Access Warehouse Locations','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1466,'inventory.reports','inventory',NULL,'Access Inventory Reports','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1467,'sales.orders','sales',NULL,'Access Sales Orders','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1468,'sales.fulfillment','sales',NULL,'Access Fulfillment (Shipments/Delivery)','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1469,'sales.configuration','sales',NULL,'Access Sales Configuration','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1470,'sales.reports','sales',NULL,'Access Sales Reports','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1471,'purchases.orders','purchases',NULL,'Access Purchase Orders','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1472,'purchases.suppliers','purchases',NULL,'Access Supplier Management','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1473,'purchases.receiving','purchases',NULL,'Access Goods Receipt','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1474,'purchases.reports','purchases',NULL,'Access Purchase Reports','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1475,'hr.employees','hr',NULL,'Access Employee Management','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1476,'hr.recruitment','hr',NULL,'Access Recruitment','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1477,'hr.development','hr',NULL,'Access Training & Development','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1478,'hr.payroll','hr',NULL,'Access Payroll','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1479,'hr.time_attendance','hr',NULL,'Access Time & Attendance','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1480,'hr.reports','hr',NULL,'Access HR Reports','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1481,'crm.sales_process','crm',NULL,'Access Sales Process (Quotes/Orders)','2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1487,'purchases.procurement_process','purchases',NULL,'Access Procurement Process','2025-12-02 13:59:43','2025-12-02 13:59:43'),
(1488,'purchases.payments_documents','purchases',NULL,'Access Payments & Documents','2025-12-02 13:59:43','2025-12-02 13:59:43');
/*!40000 ALTER TABLE `permissions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Temporary table structure for view `popular_searches_30d`
--

DROP TABLE IF EXISTS `popular_searches_30d`;
/*!50001 DROP VIEW IF EXISTS `popular_searches_30d`*/;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8mb4;
/*!50001 CREATE VIEW `popular_searches_30d` AS SELECT
 1 AS `query`,
  1 AS `category`,
  1 AS `search_count`,
  1 AS `avg_results`,
  1 AS `avg_execution_time_ms`,
  1 AS `last_searched_at` */;
SET character_set_client = @saved_cs_client;

--
-- Table structure for table `positions`
--

DROP TABLE IF EXISTS `positions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `positions` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(100) NOT NULL,
  `department` varchar(100) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `level` varchar(50) DEFAULT NULL COMMENT 'Entry, Junior, Mid, Senior, Lead, Manager, Director, Executive',
  `reports_to_position_id` int(11) DEFAULT NULL,
  `is_active` tinyint(1) DEFAULT 1,
  `role_id` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_title` (`title`),
  KEY `idx_department` (`department`),
  KEY `idx_is_active` (`is_active`),
  KEY `reports_to_position_id` (`reports_to_position_id`),
  CONSTRAINT `positions_ibfk_1` FOREIGN KEY (`reports_to_position_id`) REFERENCES `positions` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=118 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `positions`
--

LOCK TABLES `positions` WRITE;
/*!40000 ALTER TABLE `positions` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `positions` VALUES
(1,'Chief Executive Officer','Executive','CEO - Top executive position','Executive',NULL,1,108,'2025-11-08 17:16:14','2025-11-15 12:03:34'),
(2,'Chief Financial Officer','Finance','CFO - Financial oversight','Executive',1,1,110,'2025-11-08 17:16:14','2025-11-15 12:03:34'),
(3,'Chief Operating Officer','Operations','COO - Operations oversight','Executive',1,1,112,'2025-11-08 17:16:14','2025-11-15 12:03:34'),
(4,'Chief Technology Officer','IT','CTO - Technology oversight','Executive',1,1,111,'2025-11-08 17:16:14','2025-11-15 12:03:34'),
(5,'VP of Sales','Sales','Sales leadership','Executive',1,1,76,'2025-11-08 17:16:14','2025-11-15 12:03:34'),
(6,'VP of Human Resources','HR','HR leadership','Executive',1,1,116,'2025-11-08 17:16:14','2025-11-15 12:03:34'),
(7,'VP of Manufacturing','Manufacturing','Manufacturing leadership','Executive',3,1,88,'2025-11-08 17:16:14','2025-11-15 12:03:34'),
(8,'VP of Finance','Finance','Finance leadership','Executive',2,1,110,'2025-11-08 17:16:14','2025-11-15 12:03:34'),
(9,'Director of Accounting','Finance','Accounting operations director','Director',8,1,121,'2025-11-08 17:16:14','2025-11-15 12:03:34'),
(10,'Director of Financial Planning','Finance','FP&A director','Director',8,1,87,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(11,'Director of Sales Operations','Sales','Sales operations director','Director',5,1,76,'2025-11-08 17:16:14','2025-11-15 12:14:48'),
(12,'Director of Customer Success','Sales','Customer success director','Director',5,1,80,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(13,'Director of Manufacturing','Manufacturing','Manufacturing operations director','Director',7,1,81,'2025-11-08 17:16:14','2025-11-15 12:03:34'),
(14,'Director of Supply Chain','Operations','Supply chain director','Director',3,1,87,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(15,'Director of Quality Assurance','Manufacturing','Quality director','Director',7,1,87,'2025-11-08 17:16:14','2025-11-15 12:03:34'),
(16,'Director of HR Operations','HR','HR operations director','Director',6,1,116,'2025-11-08 17:16:14','2025-11-15 12:03:34'),
(17,'Director of Talent Acquisition','HR','Recruitment director','Director',6,1,97,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(18,'Director of IT','IT','IT infrastructure director','Director',4,1,101,'2025-11-08 17:16:14','2025-11-15 12:03:34'),
(19,'Accounting Manager','Finance','Manages accounting team','Manager',9,1,121,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(28,'Quality Control Manager','Manufacturing','QC team manager','Manager',15,1,92,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(31,'Inventory Control Manager','Operations','Inventory management','Manager',14,1,87,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(33,'Recruiting Manager','HR','Recruitment team manager','Manager',17,1,97,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(36,'Accounting Supervisor','Finance','Supervises accounting staff','Lead',19,1,121,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(37,'AP Supervisor','Finance','Supervises AP staff','Lead',NULL,1,70,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(38,'AR Supervisor','Finance','Supervises AR staff','Lead',NULL,1,72,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(39,'Sales Team Lead - East','Sales','East team lead','Lead',NULL,1,78,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(40,'Sales Team Lead - West','Sales','West team lead','Lead',NULL,1,78,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(41,'Sales Team Lead - Central','Sales','Central team lead','Lead',NULL,1,78,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(42,'Customer Service Lead','Sales','CS team lead','Lead',NULL,1,79,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(44,'Quality Inspector Lead','Manufacturing','QC lead','Lead',28,1,93,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(46,'Shipping Supervisor','Operations','Shipping supervisor','Lead',NULL,1,82,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(47,'Receiving Supervisor','Operations','Receiving supervisor','Lead',NULL,1,82,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(48,'Purchasing Agent Lead','Operations','Lead buyer','Lead',NULL,1,85,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(49,'HR Coordinator Lead','HR','HR team lead','Lead',NULL,1,96,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(50,'Recruiter Lead','HR','Recruitment team lead','Lead',33,1,97,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(51,'IT Support Lead','IT','IT support lead','Lead',NULL,1,101,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(55,'AP Clerk','Finance','Accounts payable clerk','Mid',37,1,70,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(56,'AR Clerk','Finance','Accounts receivable clerk','Mid',38,1,72,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(57,'Payroll Specialist','Finance','Payroll processing','Mid',NULL,1,99,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(58,'Senior Sales Representative','Sales','Senior sales position','Senior',NULL,1,77,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(71,'HR Assistant','HR','HR support','Entry',50,1,96,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(74,'Systems Administrator','IT','System administration','Senior',NULL,1,100,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(75,'Database Administrator','IT','Database management','Senior',NULL,1,100,'2025-11-08 17:16:14','2025-11-15 12:03:48'),
(77,'Senior Software Engineer','Engineering',NULL,'Senior',NULL,1,126,'2025-11-10 17:33:43','2025-11-15 12:03:48'),
(80,'Senior Product Manager','Product',NULL,'Senior',NULL,1,127,'2025-11-10 17:33:43','2025-11-15 12:03:48'),
(91,'Customer Support Specialist','Support',NULL,'Mid',NULL,1,80,'2025-11-10 17:33:43','2025-11-15 12:03:48'),
(92,'Customer Support Manager','Support',NULL,'Manager',NULL,1,79,'2025-11-10 17:33:43','2025-11-15 12:03:48'),
(110,'President','Battery & Energy Technologies','','Director',4,1,130,'2025-11-15 00:03:04','2025-11-15 12:17:39'),
(111,'Director of Operations','Operations','','Director',1,1,81,'2025-11-15 00:23:53','2025-11-15 12:03:34'),
(112,'Administrator','Admin',NULL,'Executive',NULL,1,1,'2025-11-15 11:49:26','2025-11-15 11:49:26'),
(114,'VP of Production','Manufacturing','','Executive',1,1,131,'2025-11-15 12:35:43','2025-11-15 12:36:55'),
(115,'VP of Business Development','Business Development',NULL,'Executive',NULL,1,132,'2025-11-15 12:35:43','2025-11-15 12:35:43'),
(116,'VP of Autonomous Systems','Autonomous Systems',NULL,'Executive',NULL,1,133,'2025-11-15 12:35:43','2025-11-15 12:35:43'),
(117,'President, Batteries & Tech',NULL,NULL,'Executive',NULL,1,NULL,'2025-11-15 18:23:48','2025-11-15 18:23:48');
/*!40000 ALTER TABLE `positions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `ppe_parameters`
--

DROP TABLE IF EXISTS `ppe_parameters`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `ppe_parameters` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `location_id` int(11) NOT NULL,
  `asset_type` enum('tangible','intangible') NOT NULL DEFAULT 'tangible',
  `asset_category` varchar(100) NOT NULL,
  `useful_life_years` decimal(10,1) NOT NULL DEFAULT 10.0,
  `maintenance_capex_pct` decimal(5,2) NOT NULL DEFAULT 0.00,
  `replacement_period_years` decimal(10,1) NOT NULL DEFAULT 10.0,
  `capitalization_threshold_pct` decimal(5,2) NOT NULL DEFAULT 15.00,
  `is_active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `created_by` int(11) DEFAULT NULL,
  `updated_by` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_location_category` (`location_id`,`asset_category`),
  KEY `idx_location` (`location_id`),
  KEY `idx_active` (`is_active`),
  KEY `idx_asset_type` (`asset_type`)
) ENGINE=InnoDB AUTO_INCREMENT=42 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ppe_parameters`
--

LOCK TABLES `ppe_parameters` WRITE;
/*!40000 ALTER TABLE `ppe_parameters` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `ppe_parameters` VALUES
(1,3,'tangible','Land / Property',20.0,6.20,10.0,15.00,1,'2025-11-01 12:53:08','2025-11-01 12:53:08',NULL,NULL),
(2,2,'tangible','Land / Property',20.0,6.20,10.0,15.00,1,'2025-11-01 12:53:08','2025-11-01 12:53:08',NULL,NULL),
(3,3,'tangible','Plant / Building',15.0,6.20,10.0,15.00,1,'2025-11-01 12:53:08','2025-11-01 12:53:08',NULL,NULL),
(4,2,'tangible','Plant / Building',15.0,6.20,10.0,15.00,1,'2025-11-01 12:53:08','2025-11-01 12:53:08',NULL,NULL),
(5,3,'tangible','Manufacturing Equipment',15.0,2.00,10.0,15.00,1,'2025-11-01 12:53:08','2025-11-01 12:53:08',NULL,NULL),
(6,2,'tangible','Manufacturing Equipment',15.0,2.00,10.0,15.00,1,'2025-11-01 12:53:08','2025-11-01 12:53:08',NULL,NULL),
(7,3,'tangible','Tooling Machinery',15.0,2.00,10.0,15.00,1,'2025-11-01 12:53:08','2025-11-01 12:53:08',NULL,NULL),
(8,2,'tangible','Tooling Machinery',15.0,2.00,10.0,15.00,1,'2025-11-01 12:53:08','2025-11-01 12:53:08',NULL,NULL),
(9,3,'tangible','Office Furniture',10.0,6.20,10.0,15.00,1,'2025-11-01 12:53:08','2025-11-01 12:53:08',NULL,NULL),
(10,2,'tangible','Office Furniture',10.0,6.20,10.0,15.00,1,'2025-11-01 12:53:08','2025-11-01 12:53:08',NULL,NULL),
(11,3,'tangible','Office Fixtures',10.0,6.20,10.0,15.00,1,'2025-11-01 12:53:08','2025-11-01 12:53:08',NULL,NULL),
(12,2,'tangible','Office Fixtures',10.0,6.20,10.0,15.00,1,'2025-11-01 12:53:08','2025-11-01 12:53:08',NULL,NULL),
(13,3,'tangible','Vehicles',10.0,6.20,10.0,15.00,1,'2025-11-01 12:53:08','2025-11-01 12:53:08',NULL,NULL),
(14,2,'tangible','Vehicles',10.0,6.20,10.0,15.00,1,'2025-11-01 12:53:08','2025-11-01 12:53:08',NULL,NULL),
(15,3,'tangible','IT Equipment',5.0,6.20,10.0,15.00,1,'2025-11-01 12:53:08','2025-11-01 12:53:08',NULL,NULL),
(16,2,'tangible','IT Equipment',5.0,6.20,10.0,15.00,1,'2025-11-01 12:53:08','2025-11-01 12:53:08',NULL,NULL),
(17,3,'tangible','Construction Fees & Expenses',5.0,0.00,0.0,0.00,1,'2025-11-01 12:53:08','2025-11-01 12:53:08',NULL,NULL),
(18,2,'tangible','Construction Fees & Expenses',5.0,0.00,0.0,0.00,1,'2025-11-01 12:53:08','2025-11-01 12:53:08',NULL,NULL),
(19,3,'tangible','Battery Module Assembly Equipment',10.0,5.00,7.0,0.00,1,'2025-11-01 12:53:08','2025-11-01 12:53:08',NULL,NULL),
(20,2,'tangible','Battery Module Assembly Equipment',10.0,5.00,7.0,0.00,1,'2025-11-01 12:53:08','2025-11-01 12:53:08',NULL,NULL),
(21,3,'tangible','Battery Module T&A Equipment',12.0,2.00,10.0,0.00,1,'2025-11-01 12:53:08','2025-11-01 12:53:08',NULL,NULL),
(22,2,'tangible','Battery Module T&A Equipment',12.0,2.00,10.0,0.00,1,'2025-11-01 12:53:08','2025-11-01 12:53:08',NULL,NULL),
(23,3,'tangible','Physical Security',10.0,6.20,10.0,15.00,1,'2025-11-01 12:53:08','2025-11-01 12:53:08',NULL,NULL),
(24,2,'tangible','Physical Security',10.0,6.20,10.0,15.00,1,'2025-11-01 12:53:08','2025-11-01 12:53:08',NULL,NULL),
(25,3,'intangible','Software Licenses',3.0,0.00,3.0,0.00,1,'2025-11-01 12:57:23','2025-11-01 14:30:09',NULL,NULL),
(26,2,'intangible','Software Licenses',3.0,0.00,3.0,0.00,1,'2025-11-01 12:57:23','2025-11-01 14:30:09',NULL,NULL),
(27,3,'intangible','Patents',17.0,0.00,20.0,0.00,1,'2025-11-01 12:57:23','2025-11-01 14:30:09',NULL,NULL),
(28,2,'intangible','Patents',17.0,0.00,20.0,0.00,1,'2025-11-01 12:57:23','2025-11-01 14:30:09',NULL,NULL),
(29,3,'intangible','Trademarks',10.0,0.00,10.0,0.00,1,'2025-11-01 12:57:23','2025-11-01 14:30:09',NULL,NULL),
(30,2,'intangible','Trademarks',10.0,0.00,10.0,0.00,1,'2025-11-01 12:57:23','2025-11-01 14:30:09',NULL,NULL),
(31,3,'intangible','Customer Relationships',15.0,0.00,0.0,0.00,1,'2025-11-01 12:57:23','2025-11-01 14:30:09',NULL,NULL),
(32,2,'intangible','Customer Relationships',15.0,0.00,0.0,0.00,1,'2025-11-01 12:57:23','2025-11-01 14:30:09',NULL,NULL),
(33,3,'intangible','Non-Compete Agreements',5.0,0.00,0.0,0.00,1,'2025-11-01 12:57:23','2025-11-01 14:30:09',NULL,NULL),
(34,2,'intangible','Non-Compete Agreements',5.0,0.00,0.0,0.00,1,'2025-11-01 12:57:23','2025-11-01 14:30:09',NULL,NULL),
(35,3,'intangible','Technology / IP Rights',10.0,0.00,15.0,0.00,1,'2025-11-01 12:57:23','2025-11-01 14:30:09',NULL,NULL),
(36,2,'intangible','Technology / IP Rights',10.0,0.00,15.0,0.00,1,'2025-11-01 12:57:23','2025-11-01 14:30:09',NULL,NULL),
(37,3,'intangible','Website & Domain Names',5.0,0.00,5.0,0.00,1,'2025-11-01 12:57:23','2025-11-01 14:30:09',NULL,NULL),
(38,2,'intangible','Website & Domain Names',5.0,0.00,5.0,0.00,1,'2025-11-01 12:57:23','2025-11-01 14:30:09',NULL,NULL),
(39,3,'intangible','Proprietary Processes',10.0,0.00,0.0,0.00,1,'2025-11-01 12:57:23','2025-11-01 14:30:09',NULL,NULL),
(40,2,'intangible','Proprietary Processes',10.0,0.00,0.0,0.00,1,'2025-11-01 12:57:23','2025-11-01 14:30:09',NULL,NULL);
/*!40000 ALTER TABLE `ppe_parameters` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `pricing_rules`
--

DROP TABLE IF EXISTS `pricing_rules`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `pricing_rules` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `rule_name` varchar(100) NOT NULL,
  `rule_type` enum('customer_specific','volume_discount','product_bundle','tiered_pricing') NOT NULL,
  `customer_id` int(10) unsigned DEFAULT NULL,
  `product_id` int(10) unsigned DEFAULT NULL,
  `min_quantity` decimal(10,2) DEFAULT 0.00,
  `max_quantity` decimal(10,2) DEFAULT NULL,
  `discount_type` enum('percentage','fixed_amount','fixed_price') NOT NULL,
  `discount_value` decimal(10,2) NOT NULL,
  `priority` int(11) DEFAULT 0,
  `valid_from` date DEFAULT NULL,
  `valid_to` date DEFAULT NULL,
  `is_active` tinyint(1) DEFAULT 1,
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `created_by` (`created_by`),
  KEY `idx_customer` (`customer_id`),
  KEY `idx_product` (`product_id`),
  KEY `idx_active` (`is_active`),
  KEY `idx_dates` (`valid_from`,`valid_to`),
  CONSTRAINT `pricing_rules_ibfk_1` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE,
  CONSTRAINT `pricing_rules_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE,
  CONSTRAINT `pricing_rules_ibfk_3` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pricing_rules`
--

LOCK TABLES `pricing_rules` WRITE;
/*!40000 ALTER TABLE `pricing_rules` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `pricing_rules` VALUES
(1,'test','customer_specific',NULL,NULL,NULL,NULL,'percentage',5.00,0,NULL,NULL,1,NULL,1,'2025-10-31 01:12:38','2025-10-31 01:12:38'),
(2,'','customer_specific',NULL,NULL,NULL,NULL,'',0.00,0,NULL,NULL,1,NULL,1,'2025-10-31 01:17:39','2025-10-31 01:19:42');
/*!40000 ALTER TABLE `pricing_rules` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `product_categories`
--

DROP TABLE IF EXISTS `product_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `product_categories` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL,
  `parent_id` int(10) unsigned DEFAULT NULL,
  `description` text DEFAULT NULL,
  `is_active` tinyint(1) DEFAULT 1,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `parent_id` (`parent_id`),
  KEY `idx_product_categories_deleted_at` (`deleted_at`),
  CONSTRAINT `product_categories_ibfk_1` FOREIGN KEY (`parent_id`) REFERENCES `product_categories` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_categories`
--

LOCK TABLES `product_categories` WRITE;
/*!40000 ALTER TABLE `product_categories` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `product_categories` VALUES
(1,'Electronics',NULL,'Electronic devices and components',1,'2025-10-26 14:24:24','2025-12-05 11:23:06',NULL),
(2,'Office Supplies',NULL,'Office equipment and supplies',1,'2025-10-26 14:24:24','2025-10-29 19:06:46',NULL),
(4,'Finished Goods',NULL,'Completed products ready for sale',1,'2025-10-26 14:24:24','2025-10-29 19:06:46',NULL),
(7,'Work in Progress',NULL,'Items currently in production',1,'2025-10-29 19:03:12','2025-10-29 19:06:46',NULL),
(8,'Components',NULL,'Parts and components used in assembly',1,'2025-10-29 19:03:12','2025-10-29 19:06:46',NULL),
(9,'Packaging Materials',NULL,'Materials used for packaging',1,'2025-10-29 19:03:12','2025-10-29 19:06:46',NULL),
(10,'Battery Modules',NULL,'',1,'2025-10-29 19:07:08','2025-10-29 19:07:08',NULL),
(12,'Hardware',NULL,'Mechanical and hardware components',1,'2025-11-04 19:45:22','2025-11-04 19:45:22',NULL),
(13,'Software',NULL,'Software products and licenses',1,'2025-11-04 19:45:22','2025-11-04 19:45:22',NULL),
(14,'Services',NULL,'Professional services',1,'2025-11-04 19:45:22','2025-11-04 19:45:22',NULL),
(15,'Raw Materials',NULL,'Basic manufacturing materials',1,'2025-11-04 19:45:22','2025-11-04 19:45:22',NULL),
(17,'Hardware',NULL,'Mechanical and hardware components',1,'2025-11-04 19:46:54','2025-11-04 19:46:54',NULL);
/*!40000 ALTER TABLE `product_categories` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `product_forecast_config`
--

DROP TABLE IF EXISTS `product_forecast_config`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `product_forecast_config` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `product_id` int(10) unsigned NOT NULL,
  `assumption_set_id` int(11) NOT NULL COMMENT 'Which assumption set drives this product',
  `revenue_growth_rate` decimal(5,2) DEFAULT NULL COMMENT 'Override global growth rate for this product',
  `gross_margin_pct` decimal(5,2) DEFAULT NULL COMMENT 'Target gross margin %',
  `price_increase_pct` decimal(5,2) DEFAULT NULL COMMENT 'Annual price increase %',
  `volume_growth_pct` decimal(5,2) DEFAULT NULL COMMENT 'Unit volume growth %',
  `launch_date` date DEFAULT NULL COMMENT 'When product launches (for new products)',
  `discontinue_date` date DEFAULT NULL COMMENT 'When product is discontinued',
  `lifecycle_stage` enum('development','launch','growth','maturity','decline') DEFAULT 'maturity',
  `production_hours_per_unit` decimal(8,4) DEFAULT NULL COMMENT 'How long to make one unit',
  `production_rate_per_hour` decimal(10,2) DEFAULT NULL COMMENT 'Units per hour production rate',
  `equipment_labor_cost_per_unit` decimal(10,4) DEFAULT NULL COMMENT 'Labor cost per unit based on equipment',
  `equipment_energy_cost_per_unit` decimal(10,4) DEFAULT NULL COMMENT 'Energy cost per unit',
  `equipment_operating_cost_per_unit` decimal(10,4) DEFAULT NULL COMMENT 'Total equipment operating cost per unit',
  `capacity_constraint_flag` tinyint(1) DEFAULT 0 COMMENT 'Flag if capacity is a constraint for growth',
  `machines_required` decimal(6,2) DEFAULT 1.00 COMMENT 'Number of machines needed for forecast volume',
  `capital_investment_required` decimal(15,2) DEFAULT 0.00 COMMENT 'Capital needed for additional equipment',
  `primary_equipment_line_id` int(10) unsigned DEFAULT NULL COMMENT 'Which equipment line produces this',
  `primary_equipment_id` int(10) unsigned DEFAULT NULL COMMENT 'Primary equipment for this product',
  `location_id` int(10) unsigned DEFAULT NULL COMMENT 'Primary production location',
  `jan_factor` decimal(4,2) DEFAULT 1.00,
  `feb_factor` decimal(4,2) DEFAULT 1.00,
  `mar_factor` decimal(4,2) DEFAULT 1.00,
  `apr_factor` decimal(4,2) DEFAULT 1.00,
  `may_factor` decimal(4,2) DEFAULT 1.00,
  `jun_factor` decimal(4,2) DEFAULT 1.00,
  `jul_factor` decimal(4,2) DEFAULT 1.00,
  `aug_factor` decimal(4,2) DEFAULT 1.00,
  `sep_factor` decimal(4,2) DEFAULT 1.00,
  `oct_factor` decimal(4,2) DEFAULT 1.00,
  `nov_factor` decimal(4,2) DEFAULT 1.00,
  `dec_factor` decimal(4,2) DEFAULT 1.00,
  `is_active` tinyint(1) DEFAULT 1,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `uk_product_set` (`product_id`,`assumption_set_id`),
  KEY `idx_product` (`product_id`),
  KEY `idx_assumption_set` (`assumption_set_id`),
  KEY `idx_equipment` (`primary_equipment_line_id`),
  KEY `idx_location` (`location_id`),
  KEY `idx_lifecycle` (`lifecycle_stage`),
  KEY `idx_config_equipment` (`primary_equipment_id`),
  CONSTRAINT `fk_product_forecast_equipment` FOREIGN KEY (`primary_equipment_id`) REFERENCES `equipment` (`id`) ON DELETE SET NULL,
  CONSTRAINT `product_forecast_config_ibfk_1` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE,
  CONSTRAINT `product_forecast_config_ibfk_2` FOREIGN KEY (`assumption_set_id`) REFERENCES `forecast_assumption_sets` (`id`) ON DELETE CASCADE,
  CONSTRAINT `product_forecast_config_ibfk_3` FOREIGN KEY (`primary_equipment_line_id`) REFERENCES `equipment_lines` (`id`) ON DELETE SET NULL,
  CONSTRAINT `product_forecast_config_ibfk_4` FOREIGN KEY (`location_id`) REFERENCES `locations` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_forecast_config`
--

LOCK TABLES `product_forecast_config` WRITE;
/*!40000 ALTER TABLE `product_forecast_config` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `product_forecast_config` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `product_line_projections`
--

DROP TABLE IF EXISTS `product_line_projections`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `product_line_projections` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `assumption_set_id` int(11) NOT NULL,
  `product_id` int(10) unsigned NOT NULL,
  `location_id` int(10) unsigned DEFAULT NULL,
  `projection_date` date NOT NULL COMMENT 'First day of period',
  `period_type` enum('monthly','quarterly','annual') DEFAULT 'monthly',
  `projected_units` decimal(15,2) NOT NULL DEFAULT 0.00,
  `avg_unit_price` decimal(15,2) NOT NULL DEFAULT 0.00,
  `revenue` decimal(15,2) NOT NULL DEFAULT 0.00,
  `unit_cost` decimal(15,2) NOT NULL DEFAULT 0.00,
  `total_cogs` decimal(15,2) NOT NULL DEFAULT 0.00,
  `gross_profit` decimal(15,2) NOT NULL DEFAULT 0.00,
  `gross_margin_pct` decimal(5,2) NOT NULL DEFAULT 0.00,
  `required_production_hours` decimal(12,2) DEFAULT NULL,
  `available_capacity_hours` decimal(12,2) DEFAULT NULL,
  `capacity_utilization_pct` decimal(5,2) DEFAULT NULL,
  `capacity_constrained` tinyint(1) DEFAULT 0 COMMENT 'Could not meet demand due to capacity',
  `allocated_fixed_costs` decimal(15,2) DEFAULT 0.00 COMMENT 'Share of location fixed costs',
  `allocated_overhead` decimal(15,2) DEFAULT 0.00 COMMENT 'Manufacturing overhead allocation',
  `generated_at` timestamp NULL DEFAULT current_timestamp(),
  `calculation_notes` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `uk_set_product_date` (`assumption_set_id`,`product_id`,`projection_date`,`period_type`),
  KEY `idx_set` (`assumption_set_id`),
  KEY `idx_product` (`product_id`),
  KEY `idx_location` (`location_id`),
  KEY `idx_date` (`projection_date`),
  KEY `idx_period_type` (`period_type`),
  CONSTRAINT `product_line_projections_ibfk_1` FOREIGN KEY (`assumption_set_id`) REFERENCES `forecast_assumption_sets` (`id`) ON DELETE CASCADE,
  CONSTRAINT `product_line_projections_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE,
  CONSTRAINT `product_line_projections_ibfk_3` FOREIGN KEY (`location_id`) REFERENCES `locations` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_line_projections`
--

LOCK TABLES `product_line_projections` WRITE;
/*!40000 ALTER TABLE `product_line_projections` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `product_line_projections` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `product_tax_categories`
--

DROP TABLE IF EXISTS `product_tax_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `product_tax_categories` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `category_code` varchar(50) NOT NULL,
  `category_name` varchar(200) NOT NULL,
  `description` text DEFAULT NULL,
  `is_taxable` tinyint(1) DEFAULT 1,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `category_code` (`category_code`),
  KEY `idx_code` (`category_code`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_tax_categories`
--

LOCK TABLES `product_tax_categories` WRITE;
/*!40000 ALTER TABLE `product_tax_categories` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `product_tax_categories` VALUES
(1,'STANDARD','Standard Taxable Goods','Normal taxable products and services',1,'2025-11-15 18:08:20','2025-11-15 18:08:20'),
(2,'EXEMPT','Tax Exempt','Non-taxable items (e.g., prescription drugs, groceries in some states)',0,'2025-11-15 18:08:20','2025-11-15 18:08:20'),
(3,'REDUCED','Reduced Rate','Items with reduced tax rate (e.g., food, clothing in some states)',1,'2025-11-15 18:08:20','2025-11-15 18:08:20'),
(4,'DIGITAL','Digital Goods','Software, downloads, streaming services',1,'2025-11-15 18:08:20','2025-11-15 18:08:20'),
(5,'SERVICES','Services','Professional and personal services',1,'2025-11-15 18:08:20','2025-11-15 18:08:20'),
(6,'SHIPPING','Shipping & Handling','Freight and delivery charges',1,'2025-11-15 18:08:20','2025-11-15 18:08:20');
/*!40000 ALTER TABLE `product_tax_categories` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `product_tax_rules`
--

DROP TABLE IF EXISTS `product_tax_rules`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `product_tax_rules` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `tax_category_id` int(10) unsigned NOT NULL,
  `jurisdiction_id` int(10) unsigned NOT NULL,
  `is_taxable` tinyint(1) DEFAULT 1,
  `override_rate` decimal(8,5) DEFAULT NULL COMMENT 'Custom rate for this category in this jurisdiction',
  `effective_date` date NOT NULL,
  `expiration_date` date DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_rule` (`tax_category_id`,`jurisdiction_id`,`effective_date`),
  KEY `idx_category` (`tax_category_id`),
  KEY `idx_jurisdiction` (`jurisdiction_id`),
  CONSTRAINT `product_tax_rules_ibfk_1` FOREIGN KEY (`tax_category_id`) REFERENCES `product_tax_categories` (`id`) ON DELETE CASCADE,
  CONSTRAINT `product_tax_rules_ibfk_2` FOREIGN KEY (`jurisdiction_id`) REFERENCES `tax_jurisdictions` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_tax_rules`
--

LOCK TABLES `product_tax_rules` WRITE;
/*!40000 ALTER TABLE `product_tax_rules` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `product_tax_rules` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `products`
--

DROP TABLE IF EXISTS `products`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `products` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `category_id` int(10) unsigned DEFAULT NULL,
  `sku` varchar(100) NOT NULL,
  `name` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `product_type` enum('goods','service','digital','raw_material','finished_goods') DEFAULT 'goods',
  `unit_of_measure` varchar(50) DEFAULT NULL,
  `cost_price` decimal(15,2) DEFAULT 0.00,
  `selling_price` decimal(15,2) DEFAULT 0.00,
  `tax_rate` decimal(5,2) DEFAULT 0.00,
  `reorder_level` int(11) DEFAULT 0,
  `safety_stock` decimal(15,3) DEFAULT 0.000,
  `reorder_point` decimal(15,3) DEFAULT 0.000,
  `lead_time_days` int(11) DEFAULT 7,
  `min_order_quantity` decimal(15,3) DEFAULT 1.000,
  `preferred_supplier_id` int(10) unsigned DEFAULT NULL,
  `requires_inspection` tinyint(1) DEFAULT 0,
  `inspection_template_id` int(10) unsigned DEFAULT NULL,
  `reorder_quantity` int(11) DEFAULT 0,
  `image` varchar(255) DEFAULT NULL,
  `barcode` varchar(100) DEFAULT NULL,
  `status` enum('active','inactive','discontinued') DEFAULT 'active',
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  `tax_category_id` int(10) unsigned DEFAULT NULL COMMENT 'Tax category for this product',
  PRIMARY KEY (`id`),
  UNIQUE KEY `sku` (`sku`),
  KEY `category_id` (`category_id`),
  KEY `products_ibfk_created_by` (`created_by`),
  KEY `fk_products_preferred_supplier` (`preferred_supplier_id`),
  KEY `fk_products_inspection_template` (`inspection_template_id`),
  KEY `idx_tax_category` (`tax_category_id`),
  KEY `idx_deleted_at` (`deleted_at`),
  KEY `idx_search_active` (`status`,`name`),
  FULLTEXT KEY `ft_product_search` (`name`,`description`,`sku`,`barcode`),
  CONSTRAINT `fk_products_inspection_template` FOREIGN KEY (`inspection_template_id`) REFERENCES `inspection_templates` (`id`) ON DELETE SET NULL,
  CONSTRAINT `fk_products_preferred_supplier` FOREIGN KEY (`preferred_supplier_id`) REFERENCES `suppliers` (`id`) ON DELETE SET NULL,
  CONSTRAINT `products_ibfk_1` FOREIGN KEY (`category_id`) REFERENCES `product_categories` (`id`) ON DELETE SET NULL,
  CONSTRAINT `products_ibfk_created_by` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=101 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `products`
--

LOCK TABLES `products` WRITE;
/*!40000 ALTER TABLE `products` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `products` VALUES
(70,10,'BATT-PACK-001','16 KwH Battery','','finished_goods','',0.00,0.00,0.00,0,0.000,0.000,7,1.000,NULL,0,NULL,0,NULL,'','active',NULL,'2025-12-04 20:30:05','2025-12-05 10:47:48',NULL,NULL),
(71,10,'BATT-LIFEPO4-314AH','LiFePO4 battery cell,3.2V 314ah,REPT','LiFePO4 battery cell, 3.2V 314ah, REPT brand','goods',NULL,60.00,75.00,0.00,0,0.000,0.000,7,1.000,NULL,0,NULL,0,NULL,NULL,'active',NULL,'2025-12-04 22:26:53','2025-12-04 22:26:53',NULL,NULL),
(72,8,'BATT-BMS-001','BMS','Battery Management System','goods',NULL,127.00,160.00,0.00,0,0.000,0.000,7,1.000,NULL,0,NULL,0,NULL,NULL,'active',NULL,'2025-12-04 22:26:53','2025-12-04 22:26:53',NULL,NULL),
(73,8,'BATT-SHELL-001','Shell box','Battery shell box enclosure','goods',NULL,200.00,250.00,0.00,0,0.000,0.000,7,1.000,NULL,0,NULL,0,NULL,NULL,'active',NULL,'2025-12-04 22:26:53','2025-12-04 22:26:53',NULL,NULL),
(74,8,'BATT-SPACER-001','Spacers/brackets','Spacers and mounting brackets','goods',NULL,45.00,60.00,0.00,0,0.000,0.000,7,1.000,NULL,0,NULL,0,NULL,NULL,'active',NULL,'2025-12-04 22:26:53','2025-12-04 22:26:53',NULL,NULL),
(75,8,'BATT-INSUL-001','Insulating materials','Insulating materials for battery cells','goods',NULL,75.00,95.00,0.00,0,0.000,0.000,7,1.000,NULL,0,NULL,0,NULL,NULL,'active',NULL,'2025-12-04 22:26:53','2025-12-04 22:26:53',NULL,NULL),
(76,8,'BATT-BUSBAR-001','Busbars/connecting pieces','Busbars and connecting pieces','goods',NULL,85.00,110.00,0.00,0,0.000,0.000,7,1.000,NULL,0,NULL,0,NULL,NULL,'active',NULL,'2025-12-04 22:26:53','2025-12-04 22:26:53',NULL,NULL),
(77,8,'BATT-WIRE-001','Wiring harnesses','Wiring harnesses for battery connections','goods',NULL,20.00,30.00,0.00,0,0.000,0.000,7,1.000,NULL,0,NULL,0,NULL,NULL,'active',NULL,'2025-12-04 22:26:53','2025-12-04 22:26:53',NULL,NULL),
(78,8,'BATT-FUSE-001','Fuse & Fuse holder','Fuse and fuse holder assembly','goods',NULL,12.00,18.00,0.00,0,0.000,0.000,7,1.000,NULL,0,NULL,0,NULL,NULL,'active',NULL,'2025-12-04 22:26:53','2025-12-04 22:26:53',NULL,NULL),
(79,8,'BATT-CONN-001','Connector(Ports)','Battery connector ports','goods',NULL,12.00,18.00,0.00,0,0.000,0.000,7,1.000,NULL,0,NULL,0,NULL,NULL,'active',NULL,'2025-12-04 22:26:53','2025-12-04 22:26:53',NULL,NULL),
(80,1,'BATT-DISP-001','Display/touch screen','Display and touch screen interface','goods','',27.00,40.00,0.00,0,0.000,0.000,7,1.000,NULL,0,NULL,0,NULL,'','active',NULL,'2025-12-04 22:26:53','2025-12-05 11:25:15',NULL,NULL),
(81,8,'BATT-LED-001','LED light','LED indicator light','goods',NULL,5.00,10.00,0.00,0,0.000,0.000,7,1.000,NULL,0,NULL,0,NULL,NULL,'active',NULL,'2025-12-04 22:26:53','2025-12-04 22:26:53',NULL,NULL),
(82,8,'BATT-BREAK-001','Breaker','Circuit breaker','goods',NULL,15.00,25.00,0.00,0,0.000,0.000,7,1.000,NULL,0,NULL,0,NULL,NULL,'active',NULL,'2025-12-04 22:26:53','2025-12-04 22:26:53',NULL,NULL),
(83,8,'BATT-COOL-001','Cooling system','Battery cooling system','goods',NULL,57.00,80.00,0.00,0,0.000,0.000,7,1.000,NULL,0,NULL,0,NULL,NULL,'active',NULL,'2025-12-04 22:26:53','2025-12-04 22:26:53',NULL,NULL),
(84,8,'BATT-BOLT-001','Fastening Bolts and Nuts','Fastening bolts and nuts hardware','goods',NULL,0.40,0.60,0.00,0,0.000,0.000,7,1.000,NULL,0,NULL,0,NULL,NULL,'active',NULL,'2025-12-04 22:26:53','2025-12-04 22:26:53',NULL,NULL),
(85,8,'BATT-SWITCH-001','Switch','Power switch','goods',NULL,5.00,10.00,0.00,0,0.000,0.000,7,1.000,NULL,0,NULL,0,NULL,NULL,'active',NULL,'2025-12-04 22:26:53','2025-12-04 22:26:53',NULL,NULL);
/*!40000 ALTER TABLE `products` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `project_activity_log`
--

DROP TABLE IF EXISTS `project_activity_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `project_activity_log` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `project_id` int(10) unsigned NOT NULL,
  `task_id` int(10) unsigned DEFAULT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `activity_type` varchar(50) NOT NULL COMMENT 'created, updated, moved, commented, etc.',
  `description` text DEFAULT NULL,
  `metadata` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Additional context data' CHECK (json_valid(`metadata`)),
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_project` (`project_id`),
  KEY `idx_task` (`task_id`),
  KEY `idx_user` (`user_id`),
  KEY `idx_created` (`created_at`)
) ENGINE=InnoDB AUTO_INCREMENT=86 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci COMMENT='Project and task activity timeline';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `project_activity_log`
--

LOCK TABLES `project_activity_log` WRITE;
/*!40000 ALTER TABLE `project_activity_log` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `project_activity_log` VALUES
(19,3,NULL,1,'created','Battery Production Line Setup project created with 66 tasks across 8 phases',NULL,'2025-11-14 19:29:43'),
(20,3,16,1,'task_moved','Moved task \'Internet Installation\' to In Progress',NULL,'2025-11-14 20:51:11'),
(21,3,2,1,'task_moved','Moved task \'Facility Walkthrough\' to In Progress',NULL,'2025-11-14 20:51:26'),
(22,3,2,1,'task_moved','Moved task \'Facility Walkthrough\' to Review',NULL,'2025-11-14 20:52:11'),
(23,3,2,1,'task_moved','Moved task \'Facility Walkthrough\' to Testing',NULL,'2025-11-14 20:52:15'),
(24,3,2,8,'task_moved','Moved task \'Facility Walkthrough\' to Review',NULL,'2025-11-14 22:11:13'),
(25,4,NULL,1,'updated','Project updated',NULL,'2025-11-15 13:50:15'),
(26,4,68,1,'task_moved','Moved task \'Review and Sign Facility Lease Agreement\' to In Progress',NULL,'2025-11-15 13:53:27'),
(27,4,70,1,'task_moved','Moved task \'Setup Business Insurance Coverage\' to To Do',NULL,'2025-11-15 13:53:43'),
(28,4,69,1,'task_moved','Moved task \'Obtain Business Permits and Licenses\' to To Do',NULL,'2025-11-15 13:53:48'),
(29,4,90,1,'task_moved','Moved task \'Establish Banking Relationships\' to To Do',NULL,'2025-11-15 13:54:20'),
(30,4,69,1,'task_moved','Moved task \'Obtain Business Permits and Licenses\' to In Progress',NULL,'2025-11-15 13:54:37'),
(31,4,90,1,'task_moved','Moved task \'Establish Banking Relationships\' to In Progress',NULL,'2025-11-15 13:54:42'),
(32,4,73,1,'task_moved','Moved task \'Setup Utilities and Internet\' to In Progress',NULL,'2025-11-15 13:54:52'),
(33,4,76,1,'task_moved','Moved task \'Setup Office Furniture and IT Equipment\' to In Progress',NULL,'2025-11-15 13:55:02'),
(34,4,88,1,'task_moved','Moved task \'Setup Accounting and Payroll Systems\' to In Progress',NULL,'2025-11-15 13:55:17'),
(35,4,70,1,'task_moved','Moved task \'Setup Business Insurance Coverage\' to In Progress',NULL,'2025-11-15 13:59:05'),
(36,4,89,1,'task_moved','Moved task \'Create Budget and Financial Projections\' to To Do',NULL,'2025-11-15 13:59:39'),
(37,4,81,1,'task_moved','Moved task \'Setup Inventory Management System\' to To Do',NULL,'2025-11-15 13:59:48'),
(38,4,86,1,'task_moved','Moved task \'Setup Receiving and Shipping Procedures\' to To Do',NULL,'2025-11-15 13:59:56'),
(39,4,79,1,'task_moved','Moved task \'Develop Standard Operating Procedures (SOPs)\' to To Do',NULL,'2025-11-15 14:00:11'),
(40,3,NULL,1,'team_member_added','Team member added',NULL,'2025-11-15 14:47:16'),
(41,3,NULL,1,'team_member_added','Team member added',NULL,'2025-11-15 14:47:22'),
(42,3,NULL,1,'team_member_added','Team member added',NULL,'2025-11-15 14:47:29'),
(43,4,NULL,1,'team_member_added','Team member added',NULL,'2025-11-15 15:20:36'),
(44,4,NULL,1,'team_member_added','Team member added',NULL,'2025-11-15 15:20:41'),
(45,4,NULL,1,'updated','Project updated',NULL,'2025-11-15 15:42:37'),
(46,4,68,1,'task_moved','Moved task \'Review and Sign Facility Lease Agreement\' to Review',NULL,'2025-11-15 15:44:35'),
(47,4,68,1,'task_moved','Moved task \'Review and Sign Facility Lease Agreement\' to In Progress',NULL,'2025-11-15 16:39:29'),
(48,3,13,1,'task_updated','Updated task: HVAC Installation',NULL,'2025-11-16 11:56:30'),
(49,3,2,1,'task_updated','Updated task: Facility Walkthrough',NULL,'2025-11-16 12:02:20'),
(50,3,2,1,'task_updated','Updated task: Facility Walkthrough',NULL,'2025-11-16 12:02:22'),
(51,3,2,1,'task_updated','Updated task: Facility Walkthrough',NULL,'2025-11-16 12:10:01'),
(52,3,2,1,'task_updated','Updated task: Facility Walkthrough',NULL,'2025-11-16 12:10:03'),
(53,3,2,1,'task_updated','Updated task: Facility Walkthrough',NULL,'2025-11-16 12:11:26'),
(54,3,2,1,'task_updated','Updated task: Facility Walkthrough',NULL,'2025-11-16 12:11:29'),
(55,3,2,1,'task_updated','Updated task: Facility Walkthrough',NULL,'2025-11-16 12:12:37'),
(56,3,2,1,'task_updated','Updated task: Facility Walkthrough',NULL,'2025-11-16 12:12:45'),
(57,3,2,1,'task_updated','Updated task: Facility Walkthrough',NULL,'2025-11-16 12:45:27'),
(58,3,2,1,'task_updated','Updated task: Facility Walkthrough',NULL,'2025-11-16 12:46:54'),
(59,3,2,1,'task_updated','Updated task: Facility Walkthrough',NULL,'2025-11-16 13:06:07'),
(60,3,2,1,'task_updated','Updated task: Facility Walkthrough',NULL,'2025-11-16 13:06:10'),
(61,3,2,1,'task_updated','Updated task: Facility Walkthrough',NULL,'2025-11-16 13:06:13'),
(62,3,2,1,'task_updated','Updated task: Facility Walkthrough',NULL,'2025-11-16 13:07:37'),
(63,3,2,1,'task_updated','Updated task: Facility Walkthrough',NULL,'2025-11-16 13:07:41'),
(64,3,3,1,'task_updated','Updated task: Mark Equipment Positions',NULL,'2025-11-16 13:25:26'),
(65,3,3,1,'task_updated','Updated task: Mark Equipment Positions',NULL,'2025-11-16 13:25:33'),
(66,3,3,1,'task_updated','Updated task: Mark Equipment Positions',NULL,'2025-11-16 13:25:33'),
(67,3,4,1,'task_updated','Updated task: Mark Workflow Zones',NULL,'2025-11-16 13:25:35'),
(68,3,4,1,'task_updated','Updated task: Mark Workflow Zones',NULL,'2025-11-16 13:25:35'),
(69,3,2,1,'task_updated','Updated task: Facility Walkthrough',NULL,'2025-11-16 13:25:37'),
(70,3,2,1,'task_updated','Updated task: Facility Walkthrough',NULL,'2025-11-16 13:25:37'),
(71,3,5,1,'task_updated','Updated task: Mark Safety Aisles',NULL,'2025-11-16 13:25:38'),
(72,3,5,1,'task_updated','Updated task: Mark Safety Aisles',NULL,'2025-11-16 13:25:38'),
(73,3,6,1,'task_updated','Updated task: Determine Offices',NULL,'2025-11-16 13:25:40'),
(74,3,6,1,'task_updated','Updated task: Determine Offices',NULL,'2025-11-16 13:25:40'),
(75,3,6,1,'task_updated','Updated task: Determine Offices',NULL,'2025-11-16 13:25:41'),
(76,3,6,1,'task_updated','Updated task: Determine Offices',NULL,'2025-11-16 13:25:41'),
(77,3,7,1,'task_updated','Updated task: Determine Network Closet',NULL,'2025-11-16 13:25:42'),
(78,3,7,1,'task_updated','Updated task: Determine Network Closet',NULL,'2025-11-16 13:25:42'),
(79,3,8,1,'task_updated','Updated task: Power Assessment',NULL,'2025-11-16 13:25:44'),
(80,3,8,1,'task_updated','Updated task: Power Assessment',NULL,'2025-11-16 13:25:44'),
(81,3,9,1,'task_updated','Updated task: Power Drops Installation',NULL,'2025-11-16 13:25:45'),
(82,3,9,1,'task_updated','Updated task: Power Drops Installation',NULL,'2025-11-16 13:25:45'),
(83,3,26,1,'task_updated','Updated task: Dockside Inspection',NULL,'2025-11-19 18:22:05'),
(84,3,26,1,'task_moved','Moved task \'Dockside Inspection\' to To Do',NULL,'2025-11-24 13:26:33'),
(85,4,76,1,'task_moved','Moved task \'Setup Office Furniture and IT Equipment\' to Review',NULL,'2025-12-04 23:10:07');
/*!40000 ALTER TABLE `project_activity_log` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `project_attachments`
--

DROP TABLE IF EXISTS `project_attachments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `project_attachments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `project_id` int(10) unsigned NOT NULL,
  `task_id` int(10) unsigned DEFAULT NULL,
  `file_name` varchar(255) NOT NULL,
  `file_path` varchar(500) NOT NULL,
  `file_size` int(11) DEFAULT NULL,
  `uploaded_by` int(10) unsigned NOT NULL,
  `uploaded_at` timestamp NULL DEFAULT current_timestamp(),
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `uploaded_by` (`uploaded_by`),
  KEY `idx_project` (`project_id`),
  KEY `idx_task` (`task_id`),
  CONSTRAINT `project_attachments_ibfk_1` FOREIGN KEY (`project_id`) REFERENCES `projects` (`id`) ON DELETE CASCADE,
  CONSTRAINT `project_attachments_ibfk_2` FOREIGN KEY (`task_id`) REFERENCES `project_tasks` (`id`) ON DELETE CASCADE,
  CONSTRAINT `project_attachments_ibfk_3` FOREIGN KEY (`uploaded_by`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `project_attachments`
--

LOCK TABLES `project_attachments` WRITE;
/*!40000 ALTER TABLE `project_attachments` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `project_attachments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `project_baselines`
--

DROP TABLE IF EXISTS `project_baselines`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `project_baselines` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `project_id` int(10) unsigned NOT NULL,
  `baseline_name` varchar(255) NOT NULL,
  `baseline_date` date NOT NULL,
  `snapshot_data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL COMMENT 'Stores task dates, durations, and dependencies at baseline time' CHECK (json_valid(`snapshot_data`)),
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `created_by` (`created_by`),
  KEY `idx_project_baseline` (`project_id`,`baseline_date`),
  CONSTRAINT `project_baselines_ibfk_1` FOREIGN KEY (`project_id`) REFERENCES `projects` (`id`) ON DELETE CASCADE,
  CONSTRAINT `project_baselines_ibfk_2` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `project_baselines`
--

LOCK TABLES `project_baselines` WRITE;
/*!40000 ALTER TABLE `project_baselines` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `project_baselines` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `project_budget_categories`
--

DROP TABLE IF EXISTS `project_budget_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `project_budget_categories` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `project_id` int(10) unsigned NOT NULL,
  `category_name` varchar(100) NOT NULL,
  `budgeted_amount` decimal(15,2) DEFAULT 0.00,
  `committed_amount` decimal(15,2) DEFAULT 0.00 COMMENT 'POs issued but not paid',
  `actual_amount` decimal(15,2) DEFAULT 0.00 COMMENT 'Actually spent',
  `notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_project_category` (`project_id`,`category_name`),
  KEY `idx_project_category` (`project_id`),
  CONSTRAINT `project_budget_categories_ibfk_1` FOREIGN KEY (`project_id`) REFERENCES `projects` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `project_budget_categories`
--

LOCK TABLES `project_budget_categories` WRITE;
/*!40000 ALTER TABLE `project_budget_categories` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `project_budget_categories` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `project_cash_flow_forecast`
--

DROP TABLE IF EXISTS `project_cash_flow_forecast`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `project_cash_flow_forecast` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `project_id` int(10) unsigned NOT NULL,
  `forecast_date` date NOT NULL,
  `expected_revenue` decimal(15,2) DEFAULT 0.00,
  `expected_expenses` decimal(15,2) DEFAULT 0.00,
  `forecasted_balance` decimal(15,2) DEFAULT 0.00,
  `actual_revenue` decimal(15,2) DEFAULT 0.00,
  `actual_expenses` decimal(15,2) DEFAULT 0.00,
  `actual_balance` decimal(15,2) DEFAULT 0.00,
  `variance` decimal(15,2) DEFAULT 0.00 COMMENT 'Difference between forecast and actual',
  `notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_project_forecast_date` (`project_id`,`forecast_date`),
  KEY `idx_project_forecast_date` (`project_id`,`forecast_date`),
  CONSTRAINT `project_cash_flow_forecast_ibfk_1` FOREIGN KEY (`project_id`) REFERENCES `projects` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `project_cash_flow_forecast`
--

LOCK TABLES `project_cash_flow_forecast` WRITE;
/*!40000 ALTER TABLE `project_cash_flow_forecast` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `project_cash_flow_forecast` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `project_documents`
--

DROP TABLE IF EXISTS `project_documents`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `project_documents` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `project_id` int(10) unsigned NOT NULL,
  `document_id` int(10) unsigned NOT NULL,
  `document_type` enum('contract','invoice','po','receipt','report','other') DEFAULT 'other',
  `linked_transaction_id` int(10) unsigned DEFAULT NULL COMMENT 'Link to specific financial transaction',
  `notes` varchar(500) DEFAULT NULL,
  `linked_by` int(10) unsigned DEFAULT NULL,
  `linked_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_project_document` (`project_id`,`document_id`),
  KEY `document_id` (`document_id`),
  KEY `linked_transaction_id` (`linked_transaction_id`),
  KEY `linked_by` (`linked_by`),
  KEY `idx_project_docs` (`project_id`),
  KEY `idx_doc_type` (`project_id`,`document_type`),
  CONSTRAINT `project_documents_ibfk_1` FOREIGN KEY (`project_id`) REFERENCES `projects` (`id`) ON DELETE CASCADE,
  CONSTRAINT `project_documents_ibfk_2` FOREIGN KEY (`document_id`) REFERENCES `documents` (`id`) ON DELETE CASCADE,
  CONSTRAINT `project_documents_ibfk_3` FOREIGN KEY (`linked_transaction_id`) REFERENCES `project_financial_transactions` (`id`) ON DELETE SET NULL,
  CONSTRAINT `project_documents_ibfk_4` FOREIGN KEY (`linked_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `project_documents`
--

LOCK TABLES `project_documents` WRITE;
/*!40000 ALTER TABLE `project_documents` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `project_documents` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `project_financial_transactions`
--

DROP TABLE IF EXISTS `project_financial_transactions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `project_financial_transactions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `project_id` int(10) unsigned NOT NULL,
  `transaction_date` date NOT NULL,
  `description` varchar(500) NOT NULL,
  `category` varchar(100) DEFAULT NULL COMMENT 'Expense/Revenue category (e.g., Construction, Shipping, Payroll)',
  `amount` decimal(15,2) NOT NULL DEFAULT 0.00,
  `transaction_type` enum('revenue','expense') NOT NULL,
  `status` enum('planned','committed','paid') DEFAULT 'planned',
  `journal_entry_id` int(10) unsigned DEFAULT NULL COMMENT 'Link to actual JE when paid',
  `account_id` int(10) unsigned DEFAULT NULL COMMENT 'Chart of accounts reference',
  `document_id` int(10) unsigned DEFAULT NULL COMMENT 'Supporting document (invoice, PO, etc)',
  `reference_type` varchar(50) DEFAULT NULL COMMENT 'Type of reference (PO, Invoice, Contract, etc)',
  `reference_id` int(10) unsigned DEFAULT NULL COMMENT 'ID of referenced record',
  `assigned_to` int(10) unsigned DEFAULT NULL COMMENT 'User responsible',
  `due_date` date DEFAULT NULL COMMENT 'When payment is due',
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `journal_entry_id` (`journal_entry_id`),
  KEY `account_id` (`account_id`),
  KEY `document_id` (`document_id`),
  KEY `assigned_to` (`assigned_to`),
  KEY `created_by` (`created_by`),
  KEY `idx_project_trans_date` (`project_id`,`transaction_date`),
  KEY `idx_project_trans_category` (`project_id`,`category`),
  KEY `idx_project_trans_type` (`project_id`,`transaction_type`),
  KEY `idx_project_trans_status` (`status`),
  KEY `idx_reference` (`reference_type`,`reference_id`),
  CONSTRAINT `project_financial_transactions_ibfk_1` FOREIGN KEY (`project_id`) REFERENCES `projects` (`id`) ON DELETE CASCADE,
  CONSTRAINT `project_financial_transactions_ibfk_2` FOREIGN KEY (`journal_entry_id`) REFERENCES `journal_entries` (`id`) ON DELETE SET NULL,
  CONSTRAINT `project_financial_transactions_ibfk_3` FOREIGN KEY (`account_id`) REFERENCES `chart_of_accounts` (`id`) ON DELETE SET NULL,
  CONSTRAINT `project_financial_transactions_ibfk_4` FOREIGN KEY (`document_id`) REFERENCES `documents` (`id`) ON DELETE SET NULL,
  CONSTRAINT `project_financial_transactions_ibfk_5` FOREIGN KEY (`assigned_to`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `project_financial_transactions_ibfk_6` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=44 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `project_financial_transactions`
--

LOCK TABLES `project_financial_transactions` WRITE;
/*!40000 ALTER TABLE `project_financial_transactions` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `project_financial_transactions` VALUES
(1,3,'2025-11-30','CLIMATE FIRST BANK','Financing',1225000.00,'revenue','paid',NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-30','Initial loan funding',1,'2025-11-14 19:57:45','2025-11-14 20:00:48'),
(2,3,'2025-11-25','AR Advance','Accounts Receivable',200384.00,'revenue','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-25','Accounts receivable advance payment',1,'2025-11-14 19:57:45','2025-11-14 20:00:48'),
(3,3,'2025-12-16','PO Advance','Purchase Orders',700000.00,'revenue','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-12-16','Purchase order advance',1,'2025-11-14 19:57:45','2025-11-14 20:00:48'),
(4,3,'2025-12-15','Rent Owed Sept - Dec 2025','Landlord',375905.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-12-15','Assigned: Brian and Nathan',1,'2025-11-14 19:57:45','2025-11-14 20:00:48'),
(5,4,'2025-10-15','Utilities (estimate)','Utilities',20000.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-10-15','Assigned: KD',1,'2025-11-14 19:57:45','2025-11-15 13:49:46'),
(6,3,'2025-11-30','Shenzhen Cleva Power Co.,Ltd','PO Final Payments',6118.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-30','Assigned: KD',1,'2025-11-14 19:57:45','2025-11-14 20:00:48'),
(7,3,'2025-11-30','Shenzhen SunFiD New Energy Co., Ltd.','PO Final Payments',59879.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-30','Assigned: KD',1,'2025-11-14 19:57:45','2025-11-14 20:00:48'),
(8,3,'2025-11-30','FINAL PAYMENT For Large Cylindrical','EQ Factory',342126.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-30','Assigned: Nathan and KD',1,'2025-11-14 19:57:45','2025-11-14 20:00:48'),
(9,3,'2025-11-30','Repower Aging Testing cabinets 60v200A (qty 5) 30% down','EQ Factory',30000.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-30','Assigned: Nathan',1,'2025-11-14 19:57:45','2025-11-14 20:00:48'),
(10,3,'2025-12-30','Repower Aging Testing cabinets 60v200A (qty 5) 70% remaining owed','EQ Factory',70000.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-12-30','Assigned: Nathan and JB',1,'2025-11-14 19:57:45','2025-11-14 20:00:48'),
(11,4,'2025-11-15','AMEX CC 23003 - B (Outstanding balance: $15,437.64)','Credit Cards',1500.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-15','Payment Plan - Assigned: KD',1,'2025-11-14 19:57:45','2025-11-15 13:49:46'),
(12,4,'2025-11-15','AMEX CC 14007 - P (Outstanding balance: $7,654.17)','Credit Cards',1500.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-15','Payment Plan - Assigned: KD',1,'2025-11-14 19:57:45','2025-11-15 13:49:46'),
(13,4,'2025-09-18','Loan Packaging Fee','Transaction Fees',2500.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-09-18','CFB - Assigned: KD',1,'2025-11-14 19:57:45','2025-11-15 13:49:46'),
(14,4,'2025-09-18','Equity Injection','Transaction Fees',7500.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-09-18','CFB - Assigned: KD',1,'2025-11-14 19:57:45','2025-11-15 13:49:46'),
(15,3,'2026-02-01','Repower - Shipping','Shipping',3000.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2026-02-01','Assigned: Nathan',1,'2025-11-14 19:57:45','2025-11-14 20:00:48'),
(16,3,'2026-02-01','Repower - 301 Tariffs','301 Tariffs',2500.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2026-02-01','Assigned: Nathan',1,'2025-11-14 19:57:45','2025-11-14 20:00:48'),
(17,3,'2025-11-30','Section 301 Tariffs on Shipment - With 301 Exclusion','301 Tariffs',21783.00,'expense','committed',NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-30','301 Exclusion Applied / Allianz Trade - Assigned: Nathan',1,'2025-11-14 19:57:45','2025-11-14 20:00:48'),
(18,3,'2025-11-30','Cargo Brokers - Container Shipping Charges','Shipping',70840.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-30','Assigned: Nathan',1,'2025-11-14 19:57:45','2025-11-14 20:00:48'),
(19,3,'2025-11-30','Cosco Vietnam Storage Charges Through 12/1','Port Charges',22897.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-30','Sent Demurrage Dispute - Assigned: Nathan',1,'2025-11-14 19:57:45','2025-11-14 20:00:48'),
(20,3,'2025-11-30','Cosco Southampton Storage Charges Through 12/1','Port Charges',10854.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-30','Sent Demurrage Dispute - Assigned: Nathan',1,'2025-11-14 19:57:45','2025-11-14 20:00:48'),
(21,3,'2025-11-30','Floor Painting 1/3 Deposit - Suite 3 Only','Construction',26212.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-30','Original: $78,635 - Construction Team',1,'2025-11-14 19:57:45','2025-11-14 20:00:48'),
(22,3,'2025-12-15','Floor Painting remaining 2/3 Owed - Suite 3 Only','Construction',17474.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-12-15','Original: $52,423 - Construction Team',1,'2025-11-14 19:57:45','2025-11-14 20:00:48'),
(23,3,'2025-11-30','Transformers w/ electrical','Construction',46080.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-30','2/5 Transformers with Electrical - Construction Team',1,'2025-11-14 19:57:45','2025-11-14 20:00:48'),
(24,3,'2025-11-30','Compressed Air & Nitrogen','Construction',40500.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-30','2/5 Compressed Air & Nitrogen - Construction Team',1,'2025-11-14 19:57:45','2025-11-14 20:00:48'),
(25,3,'2025-11-30','Building Binding Policy','Insurance',34833.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-30','Assigned: JB, Nathan, Paxton',1,'2025-11-14 19:57:45','2025-11-14 20:00:48'),
(26,4,'2025-10-15','General Liability - 10/1/2025','Insurance',933.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-10-15','Assigned: JB, Nathan, Paxton',1,'2025-11-14 19:57:45','2025-11-15 13:49:46'),
(27,4,'2025-11-15','General Liability - 11/1/2025','Insurance',933.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-15','Assigned: JB, Nathan, Paxton',1,'2025-11-14 19:57:45','2025-11-15 13:49:46'),
(28,4,'2025-12-15','General Liability - 12/1/2025','Insurance',933.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-12-15','Assigned: JB, Nathan, Paxton',1,'2025-11-14 19:57:45','2025-11-15 13:49:46'),
(29,3,'2025-11-30','Perimeter Fencing','Security',69951.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-30','Assigned: Tony, Jordan, Tanner',1,'2025-11-14 19:57:45','2025-11-14 20:00:48'),
(30,3,'2025-11-30','Phase 1 Security','Security',85886.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-30','Applied Cost Savings - Assigned: Tony, Tanner, John Kennerly',1,'2025-11-14 19:57:45','2025-11-14 20:00:48'),
(31,3,'2026-02-01','Section 301 Tariffs on Shipment - Large Cylindrical','301 Tariffs',8553.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2026-02-01','Assigned: Nathan',1,'2025-11-14 19:57:45','2025-11-14 20:00:48'),
(32,3,'2026-02-01','Container Shipping - Large Cylindrical','Shipping',20660.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2026-02-01','Assigned: Nathan',1,'2025-11-14 19:57:45','2025-11-14 20:00:48'),
(33,4,'2026-01-31','R.R. Simmons (Final Payment #5/5)','Professional Services',15052.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2026-01-31','Related to 5201 Property litigation',1,'2025-11-14 19:57:45','2025-11-15 13:49:46'),
(34,4,'2026-01-31','LDD Blueline Invoice 50570','Professional Services',12500.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2026-01-31','Related to 5201 Property litigation',1,'2025-11-14 19:57:45','2025-11-15 13:49:46'),
(35,4,'2026-01-31','LDD Blueline Invoice 50452','Professional Services',9250.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2026-01-31','Related to 5201 Property litigation',1,'2025-11-14 19:57:45','2025-11-15 13:49:46'),
(36,4,'2025-09-19','Carlton Fields (Legal)','Professional Services',66311.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-09-19','Related to 5201 Property litigation',1,'2025-11-14 19:57:45','2025-11-15 13:49:46'),
(37,4,'2025-11-30','BayFront Capital (JDCA Reimbursement)','Transaction Fees',6000.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-30',NULL,1,'2025-11-14 19:57:45','2025-11-15 13:49:46'),
(38,4,'2025-10-01','Mavrix1 Payroll Estimate','Payroll',50552.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-10-01',NULL,1,'2025-11-14 19:57:45','2025-11-15 13:49:46'),
(39,4,'2025-10-01','Mavrix 1 Worker\'s Comp','Payroll',740.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-10-01',NULL,1,'2025-11-14 19:57:45','2025-11-15 13:49:46'),
(40,4,'2025-10-01','LBC Payroll Estimate','Payroll',38682.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-10-01',NULL,1,'2025-11-14 19:57:45','2025-11-15 13:49:46'),
(41,4,'2025-10-01','LBC Worker\'s Comp','Payroll',518.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-10-01',NULL,1,'2025-11-14 19:57:45','2025-11-15 13:49:46'),
(42,3,'2025-11-30','Sol Ark Prep Order','Equipment',5000.00,'expense','planned',NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-30',NULL,1,'2025-11-14 19:57:45','2025-11-14 20:00:48');
/*!40000 ALTER TABLE `project_financial_transactions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `project_milestones`
--

DROP TABLE IF EXISTS `project_milestones`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `project_milestones` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `project_id` int(10) unsigned NOT NULL,
  `name` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `due_date` date NOT NULL,
  `completed_at` datetime DEFAULT NULL,
  `status` enum('pending','completed') DEFAULT 'pending',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_project` (`project_id`),
  CONSTRAINT `project_milestones_ibfk_1` FOREIGN KEY (`project_id`) REFERENCES `projects` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `project_milestones`
--

LOCK TABLES `project_milestones` WRITE;
/*!40000 ALTER TABLE `project_milestones` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `project_milestones` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `project_stages`
--

DROP TABLE IF EXISTS `project_stages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `project_stages` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `project_id` int(10) unsigned DEFAULT NULL COMMENT 'NULL = default template stage',
  `stage_name` varchar(100) NOT NULL,
  `stage_order` int(11) NOT NULL DEFAULT 0,
  `color` varchar(7) DEFAULT '#6c757d' COMMENT 'Hex color for stage',
  `wip_limit` int(11) DEFAULT NULL COMMENT 'Work-in-progress limit (optional)',
  `is_default` tinyint(1) DEFAULT 0 COMMENT 'Used as template for new projects',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_project` (`project_id`),
  KEY `idx_order` (`project_id`,`stage_order`),
  KEY `idx_default` (`is_default`)
) ENGINE=InnoDB AUTO_INCREMENT=32 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci COMMENT='Kanban stages/columns for projects';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `project_stages`
--

LOCK TABLES `project_stages` WRITE;
/*!40000 ALTER TABLE `project_stages` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `project_stages` VALUES
(1,NULL,'Backlog',1,'#6c757d',NULL,1,'2025-11-14 16:15:55'),
(2,NULL,'To Do',2,'#0dcaf0',NULL,1,'2025-11-14 16:15:55'),
(3,NULL,'In Progress',3,'#ffc107',NULL,1,'2025-11-14 16:15:55'),
(4,NULL,'Review',4,'#0d6efd',NULL,1,'2025-11-14 16:15:55'),
(5,NULL,'Testing',5,'#fd7e14',NULL,1,'2025-11-14 16:15:55'),
(6,NULL,'Done',6,'#198754',NULL,1,'2025-11-14 16:15:55'),
(19,3,'Backlog',1,'#6c757d',NULL,0,'2025-11-14 19:31:19'),
(20,3,'To Do',2,'#0dcaf0',NULL,0,'2025-11-14 19:31:19'),
(21,3,'In Progress',3,'#ffc107',NULL,0,'2025-11-14 19:31:19'),
(22,3,'Review',4,'#0d6efd',NULL,0,'2025-11-14 19:31:19'),
(23,3,'Testing',5,'#fd7e14',NULL,0,'2025-11-14 19:31:19'),
(24,3,'Done',6,'#198754',NULL,0,'2025-11-14 19:31:19'),
(26,4,'Backlog',1,'#6c757d',NULL,0,'2025-11-15 13:52:30'),
(27,4,'To Do',2,'#0dcaf0',NULL,0,'2025-11-15 13:52:30'),
(28,4,'In Progress',3,'#ffc107',NULL,0,'2025-11-15 13:52:30'),
(29,4,'Review',4,'#0d6efd',NULL,0,'2025-11-15 13:52:30'),
(30,4,'Testing',5,'#9b59b6',NULL,0,'2025-11-15 13:52:30'),
(31,4,'Done',6,'#198754',NULL,0,'2025-11-15 13:52:30');
/*!40000 ALTER TABLE `project_stages` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `project_task_assignments`
--

DROP TABLE IF EXISTS `project_task_assignments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `project_task_assignments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `task_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `role` enum('owner','contributor','reviewer') DEFAULT 'contributor',
  `assigned_by` int(10) unsigned DEFAULT NULL,
  `assigned_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_task_user` (`task_id`,`user_id`),
  KEY `idx_task` (`task_id`),
  KEY `idx_user` (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci COMMENT='Task user assignments';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `project_task_assignments`
--

LOCK TABLES `project_task_assignments` WRITE;
/*!40000 ALTER TABLE `project_task_assignments` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `project_task_assignments` VALUES
(1,16,1,'contributor',1,'2025-11-14 23:13:59'),
(2,71,1,'contributor',1,'2025-11-15 15:43:45'),
(3,71,8,'contributor',1,'2025-12-03 20:25:09'),
(4,71,7,'reviewer',1,'2025-12-03 20:25:25'),
(5,92,4,'contributor',1,'2025-12-03 20:27:41'),
(6,92,7,'contributor',1,'2025-12-03 20:31:27'),
(7,76,7,'contributor',1,'2025-12-03 22:12:49'),
(8,76,5,'contributor',1,'2025-12-03 22:12:56');
/*!40000 ALTER TABLE `project_task_assignments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `project_task_attachments`
--

DROP TABLE IF EXISTS `project_task_attachments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `project_task_attachments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `task_id` int(10) unsigned NOT NULL,
  `filename` varchar(255) NOT NULL,
  `file_path` varchar(500) NOT NULL,
  `file_size` int(11) DEFAULT NULL,
  `file_type` varchar(100) DEFAULT NULL,
  `uploaded_by` int(10) unsigned DEFAULT NULL,
  `uploaded_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_task` (`task_id`),
  KEY `idx_uploaded_by` (`uploaded_by`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci COMMENT='Task file attachments';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `project_task_attachments`
--

LOCK TABLES `project_task_attachments` WRITE;
/*!40000 ALTER TABLE `project_task_attachments` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `project_task_attachments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `project_task_checklist`
--

DROP TABLE IF EXISTS `project_task_checklist`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `project_task_checklist` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `task_id` int(10) unsigned NOT NULL,
  `item_text` varchar(255) NOT NULL,
  `is_completed` tinyint(1) DEFAULT 0,
  `sort_order` int(11) DEFAULT 0,
  `completed_by` int(10) unsigned DEFAULT NULL,
  `completed_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_task` (`task_id`),
  KEY `idx_sort` (`task_id`,`sort_order`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci COMMENT='Task checklist items';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `project_task_checklist`
--

LOCK TABLES `project_task_checklist` WRITE;
/*!40000 ALTER TABLE `project_task_checklist` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `project_task_checklist` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `project_task_comments`
--

DROP TABLE IF EXISTS `project_task_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `project_task_comments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `task_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `comment_text` text NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_task` (`task_id`),
  KEY `idx_user` (`user_id`),
  KEY `idx_created` (`created_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci COMMENT='Task comments/discussion';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `project_task_comments`
--

LOCK TABLES `project_task_comments` WRITE;
/*!40000 ALTER TABLE `project_task_comments` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `project_task_comments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `project_task_dependencies`
--

DROP TABLE IF EXISTS `project_task_dependencies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `project_task_dependencies` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `task_id` int(10) unsigned NOT NULL COMMENT 'The dependent task',
  `depends_on_task_id` int(10) unsigned NOT NULL COMMENT 'The prerequisite task',
  `dependency_type` enum('finish-to-start','start-to-start','finish-to-finish','start-to-finish') DEFAULT 'finish-to-start',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `lag_days` int(11) DEFAULT 0 COMMENT 'Lag time in days (can be negative for lead time)',
  `notes` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_dependency` (`task_id`,`depends_on_task_id`),
  KEY `idx_task` (`task_id`),
  KEY `idx_depends_on` (`depends_on_task_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci COMMENT='Task dependencies for Gantt charts';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `project_task_dependencies`
--

LOCK TABLES `project_task_dependencies` WRITE;
/*!40000 ALTER TABLE `project_task_dependencies` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `project_task_dependencies` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Temporary table structure for view `project_task_financials`
--

DROP TABLE IF EXISTS `project_task_financials`;
/*!50001 DROP VIEW IF EXISTS `project_task_financials`*/;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8mb4;
/*!50001 CREATE VIEW `project_task_financials` AS SELECT
 1 AS `task_id`,
  1 AS `project_id`,
  1 AS `task_title`,
  1 AS `estimated_cost`,
  1 AS `actual_cost`,
  1 AS `estimated_hours`,
  1 AS `actual_hours`,
  1 AS `transaction_id`,
  1 AS `transaction_date`,
  1 AS `transaction_description`,
  1 AS `transaction_amount`,
  1 AS `transaction_type`,
  1 AS `transaction_status`,
  1 AS `category`,
  1 AS `assigned_to_name` */;
SET character_set_client = @saved_cs_client;

--
-- Table structure for table `project_task_group_assignments`
--

DROP TABLE IF EXISTS `project_task_group_assignments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `project_task_group_assignments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `task_id` int(10) unsigned NOT NULL,
  `group_id` int(10) unsigned NOT NULL,
  `role` enum('owner','contributor','reviewer') DEFAULT 'contributor',
  `assigned_by` int(10) unsigned NOT NULL,
  `assigned_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_task_group` (`task_id`,`group_id`),
  KEY `assigned_by` (`assigned_by`),
  KEY `idx_task` (`task_id`),
  KEY `idx_group` (`group_id`),
  CONSTRAINT `project_task_group_assignments_ibfk_1` FOREIGN KEY (`task_id`) REFERENCES `project_tasks` (`id`) ON DELETE CASCADE,
  CONSTRAINT `project_task_group_assignments_ibfk_2` FOREIGN KEY (`group_id`) REFERENCES `user_groups` (`id`) ON DELETE CASCADE,
  CONSTRAINT `project_task_group_assignments_ibfk_3` FOREIGN KEY (`assigned_by`) REFERENCES `users` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='User groups assigned to project tasks';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `project_task_group_assignments`
--

LOCK TABLES `project_task_group_assignments` WRITE;
/*!40000 ALTER TABLE `project_task_group_assignments` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `project_task_group_assignments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `project_tasks`
--

DROP TABLE IF EXISTS `project_tasks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `project_tasks` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `task_number` varchar(20) DEFAULT NULL,
  `project_id` int(10) unsigned NOT NULL,
  `stage_id` int(10) unsigned DEFAULT NULL,
  `sort_order` int(11) DEFAULT 0,
  `parent_task_id` int(10) unsigned DEFAULT NULL,
  `title` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `assigned_to` int(10) unsigned DEFAULT NULL,
  `start_date` date DEFAULT NULL,
  `due_date` date DEFAULT NULL,
  `completed_at` datetime DEFAULT NULL,
  `estimated_hours` decimal(8,2) DEFAULT NULL,
  `duration_days` int(11) DEFAULT 1,
  `actual_hours` decimal(8,2) DEFAULT 0.00,
  `status` enum('pending','in_progress','completed','cancelled') DEFAULT 'pending',
  `priority` enum('low','medium','high','critical') DEFAULT 'medium',
  `progress_percent` int(11) DEFAULT 0,
  `is_milestone` tinyint(1) DEFAULT 0,
  `critical_path` tinyint(1) DEFAULT 0,
  `created_by` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  `estimated_cost` decimal(15,2) DEFAULT NULL COMMENT 'Estimated cost for this task',
  `actual_cost` decimal(15,2) DEFAULT 0.00 COMMENT 'Actual cost spent on this task',
  PRIMARY KEY (`id`),
  KEY `parent_task_id` (`parent_task_id`),
  KEY `created_by` (`created_by`),
  KEY `idx_project` (`project_id`),
  KEY `idx_assigned` (`assigned_to`),
  KEY `idx_status` (`status`),
  KEY `idx_stage` (`stage_id`),
  KEY `idx_task_number` (`task_number`),
  KEY `idx_project_dates` (`project_id`,`start_date`,`due_date`),
  KEY `idx_critical_path` (`project_id`,`critical_path`),
  KEY `idx_deleted_at` (`deleted_at`),
  CONSTRAINT `project_tasks_ibfk_1` FOREIGN KEY (`project_id`) REFERENCES `projects` (`id`) ON DELETE CASCADE,
  CONSTRAINT `project_tasks_ibfk_2` FOREIGN KEY (`parent_task_id`) REFERENCES `project_tasks` (`id`) ON DELETE CASCADE,
  CONSTRAINT `project_tasks_ibfk_3` FOREIGN KEY (`assigned_to`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `project_tasks_ibfk_4` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=99 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `project_tasks`
--

LOCK TABLES `project_tasks` WRITE;
/*!40000 ALTER TABLE `project_tasks` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `project_tasks` VALUES
(2,'1.0',3,22,1,NULL,'Facility Walkthrough','Determine placement of equipment, materials and supplies',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:46:54',NULL,NULL,0.00),
(3,'1.1',3,20,NULL,NULL,'Mark Equipment Positions','Specific to the section',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-21 17:01:26',NULL,NULL,0.00),
(4,'1.2',3,20,NULL,NULL,'Mark Workflow Zones','Define workflow areas',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','medium',0,0,0,1,'2025-11-14 19:29:43','2025-11-17 15:36:12',NULL,NULL,0.00),
(5,'1.3',3,20,4,NULL,'Mark Safety Aisles','Define safety corridors',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(6,'1.4',3,20,5,NULL,'Determine Offices','Plan office locations',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','low',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(7,'1.5',3,20,6,NULL,'Determine Network Closet','Plan IT infrastructure room',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','medium',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(8,'1.6.0',3,20,7,NULL,'Power Assessment','Determine needs for Battery lines, Motors, R&D and other',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','critical',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(9,'1.6.1',3,20,8,NULL,'Power Drops Installation','Determine quantity, type, location - Install and test',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','critical',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(10,'1.6.2',3,20,9,NULL,'Lighting Installation','Determine quantity, type, location - Install and test',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(11,'1.6.3',3,20,10,NULL,'Physical Security','Determine and assess all locks, deadbolts and doors - Install and test',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(12,'1.6.4',3,20,11,NULL,'Compressed Air System','Determine needs and locations - Install and test',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(13,'1.6.5',3,20,12,NULL,'HVAC Installation','Determine needs and locations - Install and test',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(14,'1.6.6',3,20,13,NULL,'Floor Leveling','Install and test floor leveling',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(15,'1.6.7',3,20,14,NULL,'ESD Flooring','Install and test ESD flooring',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(16,'1.6.8',3,21,1,NULL,'Internet Installation','Determine location - Install and test',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','medium',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(17,'1.6.9',3,20,16,NULL,'IT Cabling & Management','Order and receive equipment - Install and test',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','medium',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(18,'1.6.10',3,20,17,NULL,'Access Badging & Cameras','Set up cameras, door locks and sensors - Install and test',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','medium',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(19,'1.6.11',3,20,18,NULL,'Infrastructure Validation','Conduct security assessment and testing of all infrastructure',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(20,'1.7.0',3,20,19,NULL,'Fire Suppression System','Install and test fire suppression',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','critical',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(21,'1.7.1',3,20,20,NULL,'Fire Extinguishers','Install and test extinguishers',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(22,'1.7.2',3,20,21,NULL,'Lockout/Tagout Stations','Install and test LOTO stations',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','critical',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(23,'1.8.0',3,20,22,NULL,'Rigging Crew Booking','Book rigging crew for equipment move',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(24,'1.8.1',3,20,23,NULL,'Unloading Equipment Ready','Prepare unloading equipment and area',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(25,'1.8.2',3,20,24,NULL,'Origination Station Inspection','Verify crates vs. packing list, check for damage',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','medium',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(26,'2.0',3,20,25,NULL,'Dockside Inspection','Verify crates vs. packing list, check for damage',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-24 13:26:33',NULL,NULL,0.00),
(27,'2.1',3,19,26,NULL,'Staging & Storage','Move crates to staging, climate-control sensitive items',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(28,'2.2',3,19,27,NULL,'Uncrating','Open under OEM supervision, check parts',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(29,'2.3',3,19,28,NULL,'Documentation','Serial number logging, asset tagging',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','medium',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(30,'3.0',3,19,29,NULL,'Floor Prep','Clean & mark permanent equipment positions',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(31,'3.1',3,19,30,NULL,'Move Equipment Into Place','Rigging equipment, orient workflow properly',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(32,'3.2',3,19,31,NULL,'Level & Anchor Equipment','Precision leveling, anti-vibration pads',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(33,'3.3',3,19,32,NULL,'Verify Clearances','Access gaps, fire lanes, safety zones',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','medium',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(34,'4.0',3,19,33,NULL,'Electrical Connections','Connect electrical power to equipment',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','critical',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(35,'4.1',3,19,34,NULL,'Compressed Air Hookup','Connect lines, regulators, dryers',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(36,'4.2',3,19,35,NULL,'Process Gases Hookup','Hook up nitrogen/argon, leak test',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(37,'4.3',3,19,36,NULL,'Ventilation Hookup','Connect exhaust ducts, airflow testing',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(38,'4.4',3,19,37,NULL,'IT/Network Connections','Connect PLCs, testers to MES/ERP',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','medium',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(39,'5.0',3,19,38,NULL,'OEM Inspection','Verify hookups, interlocks, safety checks',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','critical',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(40,'5.1',3,19,39,NULL,'Power-Up Sequence','Energize one machine at a time, diagnostics',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','critical',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(41,'5.2',3,19,40,NULL,'Equipment Calibration','Welders, cyclers, testers with reference standards',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(42,'5.3',3,19,41,NULL,'Software Integration','Load firmware, connect MES',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(43,'5.4',3,19,42,NULL,'Functional Checks','Verify conveyors, jigs, alarms, sensors',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(44,'6.0',3,19,43,NULL,'Dry Runs','Run dummy packs, mechanical only',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(45,'6.1',3,19,44,NULL,'Workflow Balancing','Adjust cycle times, fixtures',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(46,'6.2',3,19,45,NULL,'QA Checkpoints Setup','Set IR, weld pull test, pack voltage stations',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(47,'6.3',3,19,46,NULL,'Safety Validation','E-stops, fume extraction, fire suppression',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','critical',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(48,'7.0',3,19,47,NULL,'Pilot Batch Production','Run small volume with real cells',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(49,'7.1',3,19,48,NULL,'Operator Training','OEM trainer certification',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(50,'7.2',3,19,49,NULL,'Maintenance Training','Preventive maintenance, lockout/tagout',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(51,'7.3',3,19,50,NULL,'Documentation Finalization','SOPs finalized, calibration records filed',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','medium',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(52,'8.0',3,19,51,NULL,'Controlled Production','Scale to 20–30% capacity, track OEE',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(53,'8.1',3,19,52,NULL,'OEM Support Period','2 weeks onsite stabilization',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','medium',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(54,'8.2',3,19,53,NULL,'Full Capacity Ramp','Ramp to 100% planned throughput',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(55,'8.3',3,19,54,NULL,'Project Handover','Acceptance sign-off, ownership transfer',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(56,'9.0',3,19,55,NULL,'Pass Requirements to HR','Define hiring requirements for production line workers',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(57,'9.1',3,19,56,NULL,'Identify Candidates','Recruit and screen candidates',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','medium',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(58,'9.2',3,19,57,NULL,'Conduct Interviews','Interview and select candidates',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','medium',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(59,'9.3',3,19,58,NULL,'On-board Selected Hires','Complete onboarding process',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','medium',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(60,'10.0',3,19,59,NULL,'Ensure Attendance','Ensure employees show up on time for training',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','medium',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(61,'10.1',3,19,60,NULL,'Conduct Knowledge Checks','Test employee understanding',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(62,'10.2',3,19,61,NULL,'Identify Key Personnel','Identify lead operators and trainers',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','medium',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(63,'10.3',3,19,62,NULL,'Plan for Retraining','Plan retraining schedule as required',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','low',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(64,'11.0',3,19,63,NULL,'Mock Order Manufacturing','Give employees a small mock order to manufacture',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(65,'11.1',3,19,64,NULL,'Verify Equipment Operation','Verify line workers can operate and run equipment',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(66,'11.2',3,19,65,NULL,'Check SOP Adherence','Check for adherence to SOPs',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(67,'11.3',3,19,66,NULL,'Verify Product Quality','Verify quality of products',NULL,'2025-11-16','2025-11-17',NULL,NULL,1,0.00,'pending','high',0,0,0,1,'2025-11-14 19:29:43','2025-11-16 12:05:29',NULL,NULL,0.00),
(68,NULL,4,28,7,NULL,'Review and Sign Facility Lease Agreement','Negotiate terms, review lease agreement with legal counsel, and execute lease for the new facility',NULL,'2025-11-16','2025-11-17',NULL,8.00,1,0.00,'pending','high',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(69,NULL,4,28,NULL,NULL,'Obtain Business Permits and Licenses','Research and obtain all required local, state, and federal permits (occupancy, fire safety, manufacturing licenses)',NULL,'2025-11-16','2025-11-18',NULL,16.00,2,0.00,'pending','high',0,0,0,1,'2025-11-15 13:52:30','2025-12-05 17:44:53',NULL,NULL,0.00),
(70,NULL,4,28,6,NULL,'Setup Business Insurance Coverage','General liability, property insurance, workers compensation, and equipment insurance',NULL,'2025-11-16','2025-11-17',NULL,8.00,1,0.00,'pending','high',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(71,NULL,4,27,NULL,NULL,'Conduct Facility Walk-through and Assessment','Document current condition, identify needed repairs, plan layout for operations',NULL,'2025-11-16','2025-11-17',NULL,4.00,1,0.00,'pending','high',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(72,NULL,4,27,0,NULL,'Install Security System','Access control, cameras, alarm system for facility security',NULL,'2025-11-16','2025-11-19',NULL,24.00,3,0.00,'pending','high',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(73,NULL,4,28,4,NULL,'Setup Utilities and Internet','Establish electricity, water, gas, high-speed internet, and phone lines',NULL,'2025-11-16','2025-11-18',NULL,12.00,2,0.00,'pending','critical',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(74,NULL,4,27,0,NULL,'Plan and Mark Floor Layout','Design production areas, storage, office space, loading dock, and safety zones',NULL,'2025-11-16','2025-11-17',NULL,8.00,1,0.00,'pending','medium',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(75,NULL,4,27,0,NULL,'Install Production Equipment','Setup manufacturing/assembly equipment based on facility plan',NULL,'2025-11-16','2025-11-21',NULL,40.00,5,0.00,'pending','critical',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(76,NULL,4,29,1,NULL,'Setup Office Furniture and IT Equipment','Desks, chairs, computers, printers, network equipment',NULL,'2025-11-16','2025-11-18',NULL,16.00,2,0.00,'pending','medium',0,0,0,1,'2025-11-15 13:52:30','2025-12-04 23:10:07',NULL,NULL,0.00),
(77,NULL,4,27,0,NULL,'Install Safety Equipment and Signage','Fire extinguishers, first aid stations, emergency exits, safety signage',NULL,'2025-11-16','2025-11-17',NULL,8.00,1,0.00,'pending','high',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(78,NULL,4,27,0,NULL,'Setup Inventory Storage Systems','Shelving, pallet racks, bins, and inventory management setup',NULL,'2025-11-16','2025-11-19',NULL,24.00,3,0.00,'pending','medium',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(79,NULL,4,27,4,NULL,'Develop Standard Operating Procedures (SOPs)','Document processes for production, quality control, safety, and operations',NULL,'2025-11-16','2025-11-20',NULL,32.00,4,0.00,'pending','high',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(80,NULL,4,26,0,NULL,'Create Quality Control Processes','Define inspection procedures, testing protocols, and quality standards',NULL,'2025-11-16','2025-11-18',NULL,16.00,2,0.00,'pending','high',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(81,NULL,4,27,2,NULL,'Setup Inventory Management System','Implement inventory tracking, receiving procedures, and stock management',NULL,'2025-11-16','2025-11-18',NULL,16.00,2,0.00,'pending','medium',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(82,NULL,4,26,0,NULL,'Recruit and Hire Initial Team','Production staff, operations manager, quality control, administrative support',NULL,'2025-11-16','2025-11-26',NULL,80.00,10,0.00,'pending','critical',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(83,NULL,4,26,0,NULL,'Develop Employee Onboarding Program','Training materials, safety procedures, company policies, and handbook',NULL,'2025-11-16','2025-11-19',NULL,24.00,3,0.00,'pending','high',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(84,NULL,4,26,0,NULL,'Conduct Safety Training Sessions','OSHA compliance training, equipment safety, emergency procedures',NULL,'2025-11-16','2025-11-18',NULL,16.00,2,0.00,'pending','critical',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(85,NULL,4,26,0,NULL,'Identify and Qualify Suppliers','Source raw materials, components, and supplies; establish vendor relationships',NULL,'2025-11-16','2025-11-20',NULL,32.00,4,0.00,'pending','high',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(86,NULL,4,27,3,NULL,'Setup Receiving and Shipping Procedures','Loading dock operations, receiving inspection, shipping logistics',NULL,'2025-11-16','2025-11-18',NULL,16.00,2,0.00,'pending','medium',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(87,NULL,4,26,0,NULL,'Establish Vendor Accounts and Payment Terms','Negotiate terms with suppliers, setup accounts payable processes',NULL,'2025-11-16','2025-11-18',NULL,12.00,2,0.00,'pending','medium',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(88,NULL,4,28,5,NULL,'Setup Accounting and Payroll Systems','Configure accounting software, establish chart of accounts, payroll setup',NULL,'2025-11-16','2025-11-18',NULL,16.00,2,0.00,'pending','high',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(89,NULL,4,27,1,NULL,'Create Budget and Financial Projections','Operating budget, cash flow projections, financial planning for first year',NULL,'2025-11-16','2025-11-19',NULL,24.00,3,0.00,'pending','high',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(90,NULL,4,28,3,NULL,'Establish Banking Relationships','Business checking/savings accounts, credit lines, payment processing',NULL,'2025-11-16','2025-11-17',NULL,8.00,1,0.00,'pending','high',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(91,NULL,4,26,0,NULL,'Develop Brand Identity and Marketing Materials','Logo, business cards, brochures, website, social media presence',NULL,'2025-11-16','2025-11-21',NULL,40.00,5,0.00,'pending','medium',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(92,NULL,4,26,NULL,NULL,'Identify and Contact Initial Customers','Target customer list, sales outreach, pilot customer identification',NULL,'2025-11-16','2025-11-20',NULL,32.00,4,0.00,'pending','high',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(93,NULL,4,26,0,NULL,'Create Product Pricing Strategy','Cost analysis, competitive pricing, margin calculations',NULL,'2025-11-16','2025-11-18',NULL,16.00,2,0.00,'pending','high',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(94,NULL,4,26,0,NULL,'Setup Environmental Compliance Program','Waste disposal, recycling, environmental permits and reporting',NULL,'2025-11-16','2025-11-18',NULL,16.00,2,0.00,'pending','medium',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(95,NULL,4,26,0,NULL,'Establish Quality Certifications Plan','ISO, industry-specific certifications, quality management system',NULL,'2025-11-16','2025-11-19',NULL,24.00,3,0.00,'pending','medium',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(96,NULL,4,26,0,NULL,'Conduct Facility Dry Run / Test Production','Test all systems, production trial run, identify and fix issues',NULL,'2025-11-16','2025-11-21',NULL,40.00,5,0.00,'pending','critical',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(97,NULL,4,26,0,NULL,'Plan Grand Opening / Launch Event','Invite stakeholders, customers, press for facility launch event',NULL,'2025-11-16','2025-11-19',NULL,24.00,3,0.00,'pending','low',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00),
(98,NULL,4,26,0,NULL,'Finalize Emergency Response Plan','Fire, medical emergency, natural disaster, evacuation procedures',NULL,'2025-11-16','2025-11-18',NULL,12.00,2,0.00,'pending','high',0,0,0,1,'2025-11-15 13:52:30','2025-11-16 12:05:29',NULL,NULL,0.00);
/*!40000 ALTER TABLE `project_tasks` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `project_team_groups`
--

DROP TABLE IF EXISTS `project_team_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `project_team_groups` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `project_id` int(10) unsigned NOT NULL,
  `group_id` int(10) unsigned NOT NULL,
  `role` varchar(100) DEFAULT NULL COMMENT 'Group role on project',
  `added_by` int(10) unsigned NOT NULL,
  `added_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_project_group` (`project_id`,`group_id`),
  KEY `added_by` (`added_by`),
  KEY `idx_project` (`project_id`),
  KEY `idx_group` (`group_id`),
  CONSTRAINT `project_team_groups_ibfk_1` FOREIGN KEY (`project_id`) REFERENCES `projects` (`id`) ON DELETE CASCADE,
  CONSTRAINT `project_team_groups_ibfk_2` FOREIGN KEY (`group_id`) REFERENCES `user_groups` (`id`) ON DELETE CASCADE,
  CONSTRAINT `project_team_groups_ibfk_3` FOREIGN KEY (`added_by`) REFERENCES `users` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='User groups assigned to project teams';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `project_team_groups`
--

LOCK TABLES `project_team_groups` WRITE;
/*!40000 ALTER TABLE `project_team_groups` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `project_team_groups` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `project_team_members`
--

DROP TABLE IF EXISTS `project_team_members`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `project_team_members` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `project_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `role` varchar(100) DEFAULT NULL COMMENT 'Developer, Designer, Tester, etc.',
  `joined_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_project_user` (`project_id`,`user_id`),
  KEY `idx_project` (`project_id`),
  KEY `idx_user` (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci COMMENT='Project team member assignments';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `project_team_members`
--

LOCK TABLES `project_team_members` WRITE;
/*!40000 ALTER TABLE `project_team_members` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `project_team_members` VALUES
(1,3,1,'','2025-11-15 14:47:16'),
(2,3,8,'','2025-11-15 14:47:22'),
(3,3,7,'','2025-11-15 14:47:29'),
(4,4,8,'','2025-11-15 15:20:36'),
(5,4,7,'','2025-11-15 15:20:41');
/*!40000 ALTER TABLE `project_team_members` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `projects`
--

DROP TABLE IF EXISTS `projects`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `projects` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `code` varchar(50) NOT NULL,
  `description` text DEFAULT NULL,
  `customer_id` int(10) unsigned DEFAULT NULL,
  `department_id` int(10) unsigned DEFAULT NULL,
  `project_manager_id` int(10) unsigned DEFAULT NULL,
  `start_date` date DEFAULT NULL,
  `end_date` date DEFAULT NULL,
  `estimated_hours` decimal(10,2) DEFAULT NULL,
  `actual_hours` decimal(10,2) DEFAULT 0.00,
  `budget` decimal(15,2) DEFAULT NULL,
  `actual_cost` decimal(15,2) DEFAULT 0.00,
  `status` enum('planning','in_progress','on_hold','completed','cancelled') DEFAULT 'planning',
  `priority` enum('low','medium','high','critical') DEFAULT 'medium',
  `progress_percent` int(11) DEFAULT 0,
  `color` varchar(7) DEFAULT NULL COMMENT 'Hex color for project identification',
  `tags` varchar(255) DEFAULT NULL COMMENT 'Comma-separated project tags',
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  `budget_amount` decimal(15,2) DEFAULT 0.00 COMMENT 'Total project budget',
  `actual_revenue` decimal(15,2) DEFAULT 0.00 COMMENT 'Actual revenue received',
  `actual_expenses` decimal(15,2) DEFAULT 0.00 COMMENT 'Actual expenses incurred',
  `cash_balance` decimal(15,2) DEFAULT 0.00 COMMENT 'Current cash position for project',
  `revenue_account_id` int(10) unsigned DEFAULT NULL COMMENT 'Default revenue account for this project',
  `expense_account_id` int(10) unsigned DEFAULT NULL COMMENT 'Default expense account for this project',
  `financial_status` enum('healthy','warning','critical') DEFAULT 'healthy' COMMENT 'Financial health indicator',
  PRIMARY KEY (`id`),
  UNIQUE KEY `code` (`code`),
  KEY `created_by` (`created_by`),
  KEY `idx_customer` (`customer_id`),
  KEY `idx_manager` (`project_manager_id`),
  KEY `idx_status` (`status`),
  KEY `idx_department` (`department_id`),
  KEY `fk_project_revenue_account` (`revenue_account_id`),
  KEY `fk_project_expense_account` (`expense_account_id`),
  KEY `idx_deleted_at` (`deleted_at`),
  CONSTRAINT `fk_project_expense_account` FOREIGN KEY (`expense_account_id`) REFERENCES `chart_of_accounts` (`id`) ON DELETE SET NULL,
  CONSTRAINT `fk_project_revenue_account` FOREIGN KEY (`revenue_account_id`) REFERENCES `chart_of_accounts` (`id`) ON DELETE SET NULL,
  CONSTRAINT `projects_ibfk_1` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE SET NULL,
  CONSTRAINT `projects_ibfk_2` FOREIGN KEY (`project_manager_id`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `projects_ibfk_3` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `projects`
--

LOCK TABLES `projects` WRITE;
/*!40000 ALTER TABLE `projects` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `projects` VALUES
(3,'Battery Production Line Setup','BATT-2025','Complete installation and commissioning of battery production line including facility preparation, equipment installation, utilities hookup, commissioning, and ramp-up to full production capacity.',NULL,13,NULL,NULL,NULL,NULL,0.00,NULL,0.00,'planning','high',0,NULL,NULL,NULL,1,'2025-11-14 19:29:43','2025-11-14 20:00:48',NULL,1225000.00,1225000.00,0.00,1225000.00,NULL,NULL,'healthy'),
(4,'Original Startup Project','GEN-OPS','General business operations and miscellaneous expenses',NULL,1,1,NULL,NULL,NULL,0.00,NULL,0.00,'planning','medium',0,NULL,NULL,'',1,'2025-11-15 13:44:46','2025-11-15 15:42:37',NULL,0.00,0.00,0.00,0.00,NULL,NULL,'healthy');
/*!40000 ALTER TABLE `projects` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `promotion_usage`
--

DROP TABLE IF EXISTS `promotion_usage`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `promotion_usage` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `promotion_id` int(10) unsigned NOT NULL,
  `customer_id` int(10) unsigned DEFAULT NULL,
  `order_id` int(10) unsigned DEFAULT NULL,
  `discount_amount` decimal(10,2) NOT NULL,
  `used_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_promotion` (`promotion_id`),
  KEY `idx_customer` (`customer_id`),
  KEY `idx_order` (`order_id`),
  CONSTRAINT `promotion_usage_ibfk_1` FOREIGN KEY (`promotion_id`) REFERENCES `promotions` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `promotion_usage`
--

LOCK TABLES `promotion_usage` WRITE;
/*!40000 ALTER TABLE `promotion_usage` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `promotion_usage` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `promotions`
--

DROP TABLE IF EXISTS `promotions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `promotions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `promo_code` varchar(50) DEFAULT NULL,
  `promotion_type` enum('order_discount','product_discount','free_shipping','bogo') NOT NULL,
  `discount_type` enum('percentage','fixed') NOT NULL,
  `discount_value` decimal(10,2) NOT NULL,
  `min_purchase` decimal(10,2) DEFAULT NULL,
  `max_discount` decimal(10,2) DEFAULT NULL,
  `start_date` date DEFAULT NULL,
  `end_date` date DEFAULT NULL,
  `usage_limit` int(11) DEFAULT NULL,
  `per_customer_limit` int(11) DEFAULT NULL,
  `applies_to` enum('all','specific_products','specific_categories','specific_customers') DEFAULT 'all',
  `target_ids` text DEFAULT NULL COMMENT 'JSON array of product/category/customer IDs',
  `priority` int(11) NOT NULL DEFAULT 0,
  `status` enum('active','inactive','expired') NOT NULL DEFAULT 'active',
  `terms` text DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_promo_code` (`promo_code`),
  KEY `idx_promo_code` (`promo_code`),
  KEY `idx_status` (`status`),
  KEY `idx_dates` (`start_date`,`end_date`),
  KEY `idx_promotion_type` (`promotion_type`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `promotions`
--

LOCK TABLES `promotions` WRITE;
/*!40000 ALTER TABLE `promotions` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `promotions` VALUES
(1,'test','','','free_shipping','fixed',5.00,0.00,0.00,'0000-00-00','0000-00-00',0,0,'all',NULL,0,'active','test info','2025-10-31 01:36:21','2025-10-31 01:44:36'),
(3,'test2','',NULL,'order_discount','percentage',5.00,0.00,0.00,'0000-00-00','0000-00-00',0,0,'all',NULL,0,'active','','2025-10-31 01:39:04','2025-10-31 01:39:04');
/*!40000 ALTER TABLE `promotions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `purchase_bill_items`
--

DROP TABLE IF EXISTS `purchase_bill_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `purchase_bill_items` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `bill_id` int(11) NOT NULL,
  `product_id` int(11) DEFAULT NULL,
  `description` text NOT NULL,
  `quantity` decimal(10,2) NOT NULL,
  `unit_price` decimal(10,2) NOT NULL,
  `tax_rate` decimal(5,2) DEFAULT 0.00,
  `discount_percent` decimal(5,2) DEFAULT 0.00,
  `line_total` decimal(15,2) NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `bill_id` (`bill_id`),
  CONSTRAINT `purchase_bill_items_ibfk_1` FOREIGN KEY (`bill_id`) REFERENCES `purchase_bills` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `purchase_bill_items`
--

LOCK TABLES `purchase_bill_items` WRITE;
/*!40000 ALTER TABLE `purchase_bill_items` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `purchase_bill_items` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `purchase_bills`
--

DROP TABLE IF EXISTS `purchase_bills`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `purchase_bills` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `bill_number` varchar(50) NOT NULL,
  `supplier_id` int(10) unsigned NOT NULL,
  `purchase_order_id` int(11) DEFAULT NULL,
  `bill_date` date NOT NULL,
  `due_date` date DEFAULT NULL,
  `subtotal` decimal(15,2) NOT NULL DEFAULT 0.00,
  `tax_amount` decimal(15,2) DEFAULT 0.00,
  `discount_amount` decimal(15,2) DEFAULT 0.00,
  `total_amount` decimal(15,2) NOT NULL DEFAULT 0.00,
  `paid_amount` decimal(15,2) DEFAULT 0.00,
  `balance` decimal(15,2) GENERATED ALWAYS AS (`total_amount` - `paid_amount`) STORED,
  `status` enum('draft','submitted','approved','paid','partial','overdue','cancelled') DEFAULT 'draft',
  `payment_terms` varchar(100) DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `created_by` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `bill_number` (`bill_number`),
  KEY `idx_supplier` (`supplier_id`),
  KEY `idx_status` (`status`),
  KEY `idx_bill_date` (`bill_date`),
  KEY `idx_balance` (`balance`),
  KEY `idx_status_balance` (`status`,`balance`),
  CONSTRAINT `purchase_bills_ibfk_1` FOREIGN KEY (`supplier_id`) REFERENCES `suppliers` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `purchase_bills`
--

LOCK TABLES `purchase_bills` WRITE;
/*!40000 ALTER TABLE `purchase_bills` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `purchase_bills` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `purchase_order_items`
--

DROP TABLE IF EXISTS `purchase_order_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `purchase_order_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `po_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned NOT NULL,
  `quantity` int(11) NOT NULL,
  `received_quantity` int(11) DEFAULT 0,
  `unit_price` decimal(15,2) NOT NULL,
  `tax_rate` decimal(5,2) DEFAULT 0.00,
  `line_total` decimal(15,2) NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `po_id` (`po_id`),
  KEY `product_id` (`product_id`),
  CONSTRAINT `purchase_order_items_ibfk_1` FOREIGN KEY (`po_id`) REFERENCES `purchase_orders` (`id`) ON DELETE CASCADE,
  CONSTRAINT `purchase_order_items_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `purchase_order_items`
--

LOCK TABLES `purchase_order_items` WRITE;
/*!40000 ALTER TABLE `purchase_order_items` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `purchase_order_items` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `purchase_orders`
--

DROP TABLE IF EXISTS `purchase_orders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `purchase_orders` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `po_number` varchar(50) NOT NULL,
  `supplier_id` int(10) unsigned NOT NULL,
  `order_date` date NOT NULL,
  `expected_delivery` date DEFAULT NULL,
  `status` enum('draft','sent','confirmed','received','cancelled') DEFAULT 'draft',
  `subtotal` decimal(15,2) DEFAULT 0.00,
  `tax_amount` decimal(15,2) DEFAULT 0.00,
  `shipping_cost` decimal(15,2) DEFAULT 0.00,
  `total_amount` decimal(15,2) DEFAULT 0.00,
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `po_number` (`po_number`),
  KEY `supplier_id` (`supplier_id`),
  KEY `created_by` (`created_by`),
  KEY `idx_deleted_at` (`deleted_at`),
  CONSTRAINT `purchase_orders_ibfk_1` FOREIGN KEY (`supplier_id`) REFERENCES `suppliers` (`id`),
  CONSTRAINT `purchase_orders_ibfk_2` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `purchase_orders`
--

LOCK TABLES `purchase_orders` WRITE;
/*!40000 ALTER TABLE `purchase_orders` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `purchase_orders` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `purchase_payments`
--

DROP TABLE IF EXISTS `purchase_payments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `purchase_payments` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `payment_number` varchar(50) NOT NULL,
  `supplier_id` int(10) unsigned NOT NULL,
  `bill_id` int(11) DEFAULT NULL,
  `payment_date` date NOT NULL,
  `amount` decimal(15,2) NOT NULL,
  `payment_method` enum('cash','check','bank_transfer','credit_card','other') DEFAULT 'bank_transfer',
  `reference_number` varchar(100) DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `created_by` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `payment_number` (`payment_number`),
  KEY `idx_supplier` (`supplier_id`),
  KEY `idx_payment_date` (`payment_date`),
  CONSTRAINT `purchase_payments_ibfk_1` FOREIGN KEY (`supplier_id`) REFERENCES `suppliers` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `purchase_payments`
--

LOCK TABLES `purchase_payments` WRITE;
/*!40000 ALTER TABLE `purchase_payments` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `purchase_payments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `purchase_requisition_items`
--

DROP TABLE IF EXISTS `purchase_requisition_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `purchase_requisition_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `pr_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned DEFAULT NULL,
  `description` text NOT NULL,
  `quantity` int(11) NOT NULL,
  `estimated_price` decimal(15,2) DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `pr_id` (`pr_id`),
  KEY `product_id` (`product_id`),
  CONSTRAINT `purchase_requisition_items_ibfk_1` FOREIGN KEY (`pr_id`) REFERENCES `purchase_requisitions` (`id`) ON DELETE CASCADE,
  CONSTRAINT `purchase_requisition_items_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `purchase_requisition_items`
--

LOCK TABLES `purchase_requisition_items` WRITE;
/*!40000 ALTER TABLE `purchase_requisition_items` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `purchase_requisition_items` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `purchase_requisitions`
--

DROP TABLE IF EXISTS `purchase_requisitions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `purchase_requisitions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `requisition_number` varchar(50) NOT NULL,
  `product_id` int(10) unsigned NOT NULL,
  `quantity` decimal(15,3) NOT NULL,
  `required_by_date` date DEFAULT NULL,
  `priority` enum('low','normal','high','urgent') DEFAULT 'normal',
  `status` enum('pending','approved','rejected','converted','cancelled') DEFAULT 'pending',
  `notes` text DEFAULT NULL,
  `requested_by` int(10) unsigned NOT NULL,
  `approved_by` int(10) unsigned DEFAULT NULL,
  `approved_at` datetime DEFAULT NULL,
  `rejected_by` int(10) unsigned DEFAULT NULL,
  `rejection_reason` text DEFAULT NULL,
  `purchase_order_id` int(10) unsigned DEFAULT NULL,
  `created_at` datetime DEFAULT current_timestamp(),
  `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `requisition_number` (`requisition_number`),
  KEY `idx_product` (`product_id`),
  KEY `idx_status` (`status`),
  KEY `idx_priority` (`priority`),
  KEY `idx_required_by` (`required_by_date`),
  KEY `requested_by` (`requested_by`),
  KEY `approved_by` (`approved_by`),
  KEY `rejected_by` (`rejected_by`),
  KEY `purchase_order_id` (`purchase_order_id`),
  KEY `idx_requisitions_status_priority` (`status`,`priority`),
  CONSTRAINT `purchase_requisitions_ibfk_1` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE,
  CONSTRAINT `purchase_requisitions_ibfk_2` FOREIGN KEY (`requested_by`) REFERENCES `users` (`id`),
  CONSTRAINT `purchase_requisitions_ibfk_3` FOREIGN KEY (`approved_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `purchase_requisitions_ibfk_4` FOREIGN KEY (`rejected_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `purchase_requisitions_ibfk_5` FOREIGN KEY (`purchase_order_id`) REFERENCES `purchase_orders` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `purchase_requisitions`
--

LOCK TABLES `purchase_requisitions` WRITE;
/*!40000 ALTER TABLE `purchase_requisitions` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `purchase_requisitions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `purchase_return_items`
--

DROP TABLE IF EXISTS `purchase_return_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `purchase_return_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `return_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned NOT NULL,
  `quantity` int(11) NOT NULL,
  `unit_price` decimal(15,2) NOT NULL,
  `line_total` decimal(15,2) NOT NULL,
  `reason` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `return_id` (`return_id`),
  KEY `product_id` (`product_id`),
  CONSTRAINT `purchase_return_items_ibfk_1` FOREIGN KEY (`return_id`) REFERENCES `purchase_returns` (`id`) ON DELETE CASCADE,
  CONSTRAINT `purchase_return_items_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `purchase_return_items`
--

LOCK TABLES `purchase_return_items` WRITE;
/*!40000 ALTER TABLE `purchase_return_items` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `purchase_return_items` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `purchase_returns`
--

DROP TABLE IF EXISTS `purchase_returns`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `purchase_returns` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `return_number` varchar(50) NOT NULL,
  `supplier_id` int(10) unsigned NOT NULL,
  `po_id` int(10) unsigned DEFAULT NULL,
  `grn_id` int(10) unsigned DEFAULT NULL,
  `return_date` date NOT NULL,
  `reason` text DEFAULT NULL,
  `status` enum('draft','pending','approved','shipped','completed','cancelled') DEFAULT 'draft',
  `total_amount` decimal(15,2) DEFAULT 0.00,
  `refund_amount` decimal(15,2) DEFAULT 0.00,
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `return_number` (`return_number`),
  KEY `supplier_id` (`supplier_id`),
  KEY `po_id` (`po_id`),
  KEY `grn_id` (`grn_id`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `purchase_returns_ibfk_1` FOREIGN KEY (`supplier_id`) REFERENCES `suppliers` (`id`),
  CONSTRAINT `purchase_returns_ibfk_2` FOREIGN KEY (`po_id`) REFERENCES `purchase_orders` (`id`) ON DELETE SET NULL,
  CONSTRAINT `purchase_returns_ibfk_3` FOREIGN KEY (`grn_id`) REFERENCES `goods_receipts` (`id`) ON DELETE SET NULL,
  CONSTRAINT `purchase_returns_ibfk_4` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `purchase_returns`
--

LOCK TABLES `purchase_returns` WRITE;
/*!40000 ALTER TABLE `purchase_returns` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `purchase_returns` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `qb_account_mappings`
--

DROP TABLE IF EXISTS `qb_account_mappings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `qb_account_mappings` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `erp_account_type` varchar(100) NOT NULL COMMENT 'payroll_expense, tax_liability, etc.',
  `erp_account_id` int(11) DEFAULT NULL COMMENT 'Account ID in local chart of accounts',
  `erp_account_name` varchar(255) DEFAULT NULL,
  `qb_account_id` varchar(255) NOT NULL COMMENT 'QuickBooks Account ID',
  `qb_account_name` varchar(255) DEFAULT NULL,
  `qb_account_type` varchar(100) DEFAULT NULL COMMENT 'Expense, Other Current Liability, etc.',
  `is_active` tinyint(1) DEFAULT 1,
  `sync_direction` enum('bidirectional','to_qb','from_qb') DEFAULT 'to_qb',
  `notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_mapping` (`erp_account_type`,`erp_account_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `qb_account_mappings`
--

LOCK TABLES `qb_account_mappings` WRITE;
/*!40000 ALTER TABLE `qb_account_mappings` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `qb_account_mappings` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `qb_connections`
--

DROP TABLE IF EXISTS `qb_connections`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `qb_connections` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` int(11) DEFAULT NULL,
  `realm_id` varchar(255) NOT NULL COMMENT 'QuickBooks Company ID',
  `access_token` text NOT NULL,
  `refresh_token` text NOT NULL,
  `token_expires_at` datetime NOT NULL,
  `refresh_token_expires_at` datetime NOT NULL,
  `is_active` tinyint(1) DEFAULT 1,
  `environment` enum('sandbox','production') DEFAULT 'production',
  `last_sync_at` datetime DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_realm` (`realm_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `qb_connections`
--

LOCK TABLES `qb_connections` WRITE;
/*!40000 ALTER TABLE `qb_connections` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `qb_connections` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `qb_entity_links`
--

DROP TABLE IF EXISTS `qb_entity_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `qb_entity_links` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `entity_type` varchar(50) NOT NULL COMMENT 'employee, vendor, customer, etc.',
  `local_id` int(11) NOT NULL COMMENT 'ID in local database',
  `qb_id` varchar(255) NOT NULL COMMENT 'QuickBooks entity ID',
  `qb_sync_token` varchar(255) DEFAULT NULL COMMENT 'For optimistic locking',
  `last_synced_at` datetime DEFAULT NULL,
  `sync_status` enum('synced','pending','conflict') DEFAULT 'synced',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_local_entity` (`entity_type`,`local_id`),
  UNIQUE KEY `unique_qb_entity` (`entity_type`,`qb_id`),
  KEY `idx_sync_status` (`sync_status`,`last_synced_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `qb_entity_links`
--

LOCK TABLES `qb_entity_links` WRITE;
/*!40000 ALTER TABLE `qb_entity_links` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `qb_entity_links` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `qb_settings`
--

DROP TABLE IF EXISTS `qb_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `qb_settings` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `setting_key` varchar(100) NOT NULL,
  `setting_value` text DEFAULT NULL,
  `setting_type` varchar(50) DEFAULT 'string' COMMENT 'string, json, boolean, integer',
  `description` text DEFAULT NULL,
  `is_encrypted` tinyint(1) DEFAULT 0,
  `updated_by` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `setting_key` (`setting_key`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `qb_settings`
--

LOCK TABLES `qb_settings` WRITE;
/*!40000 ALTER TABLE `qb_settings` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `qb_settings` VALUES
(1,'auto_sync_enabled','false','boolean','Enable automatic sync of payroll data',0,NULL,'2025-10-27 11:33:34','2025-10-27 11:33:34'),
(2,'sync_frequency_minutes','60','integer','How often to sync data (in minutes)',0,NULL,'2025-10-27 11:33:34','2025-10-27 11:33:34'),
(3,'sync_employees','true','boolean','Sync employee records',0,NULL,'2025-10-27 11:33:34','2025-10-27 11:33:34'),
(4,'sync_payroll_entries','true','boolean','Sync payroll journal entries',0,NULL,'2025-10-27 11:33:34','2025-10-27 11:33:34'),
(5,'sync_taxes','true','boolean','Sync tax liabilities',0,NULL,'2025-10-27 11:33:34','2025-10-27 11:33:34'),
(6,'default_payroll_account','','string','Default QB account for payroll expenses',0,NULL,'2025-10-27 11:33:34','2025-10-27 11:33:34'),
(7,'default_tax_liability_account','','string','Default QB account for tax liabilities',0,NULL,'2025-10-27 11:33:34','2025-10-27 11:33:34'),
(8,'retry_failed_syncs','true','boolean','Automatically retry failed syncs',0,NULL,'2025-10-27 11:33:34','2025-10-27 11:33:34'),
(9,'notify_on_sync_errors','true','boolean','Send notifications when sync fails',0,NULL,'2025-10-27 11:33:34','2025-10-27 11:33:34');
/*!40000 ALTER TABLE `qb_settings` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `qb_sync_logs`
--

DROP TABLE IF EXISTS `qb_sync_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `qb_sync_logs` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `sync_queue_id` int(11) DEFAULT NULL,
  `entity_type` varchar(50) DEFAULT NULL,
  `entity_id` int(11) DEFAULT NULL,
  `qb_id` varchar(255) DEFAULT NULL,
  `operation` varchar(20) DEFAULT NULL,
  `direction` enum('to_qb','from_qb') DEFAULT NULL,
  `status` enum('success','failure','partial') DEFAULT NULL,
  `request_payload` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`request_payload`)),
  `response_payload` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`response_payload`)),
  `error_details` text DEFAULT NULL,
  `execution_time_ms` int(11) DEFAULT NULL COMMENT 'Time taken in milliseconds',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_entity` (`entity_type`,`entity_id`),
  KEY `idx_status` (`status`,`created_at`),
  KEY `idx_queue` (`sync_queue_id`),
  CONSTRAINT `qb_sync_logs_ibfk_1` FOREIGN KEY (`sync_queue_id`) REFERENCES `qb_sync_queue` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `qb_sync_logs`
--

LOCK TABLES `qb_sync_logs` WRITE;
/*!40000 ALTER TABLE `qb_sync_logs` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `qb_sync_logs` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `qb_sync_queue`
--

DROP TABLE IF EXISTS `qb_sync_queue`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `qb_sync_queue` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `entity_type` varchar(50) NOT NULL COMMENT 'employee, journal_entry, account, etc.',
  `entity_id` int(11) NOT NULL COMMENT 'ID in local database',
  `operation` varchar(20) NOT NULL COMMENT 'create, update, delete',
  `direction` enum('to_qb','from_qb') DEFAULT 'to_qb',
  `qb_id` varchar(255) DEFAULT NULL COMMENT 'QuickBooks entity ID',
  `payload` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Data to sync' CHECK (json_valid(`payload`)),
  `status` enum('pending','processing','completed','failed') DEFAULT 'pending',
  `priority` int(11) DEFAULT 5 COMMENT 'Lower number = higher priority',
  `attempts` int(11) DEFAULT 0,
  `max_attempts` int(11) DEFAULT 3,
  `error_message` text DEFAULT NULL,
  `scheduled_at` datetime DEFAULT current_timestamp(),
  `processed_at` datetime DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_status` (`status`),
  KEY `idx_entity` (`entity_type`,`entity_id`),
  KEY `idx_scheduled` (`scheduled_at`,`status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `qb_sync_queue`
--

LOCK TABLES `qb_sync_queue` WRITE;
/*!40000 ALTER TABLE `qb_sync_queue` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `qb_sync_queue` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `qualification_assessments`
--

DROP TABLE IF EXISTS `qualification_assessments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `qualification_assessments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `application_id` int(10) unsigned NOT NULL,
  `assessment_type` enum('technical','skills','personality','aptitude','background-check','reference-check','other') NOT NULL,
  `title` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `assigned_date` date DEFAULT NULL,
  `due_date` date DEFAULT NULL,
  `completed_date` date DEFAULT NULL,
  `score` decimal(5,2) DEFAULT NULL COMMENT 'Score percentage or rating',
  `max_score` decimal(5,2) DEFAULT 100.00,
  `pass_threshold` decimal(5,2) DEFAULT 70.00,
  `status` enum('pending','in-progress','completed','passed','failed','waived') DEFAULT 'pending',
  `results` text DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `evaluated_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_application` (`application_id`),
  KEY `idx_status` (`status`),
  KEY `idx_type` (`assessment_type`),
  CONSTRAINT `qualification_assessments_ibfk_1` FOREIGN KEY (`application_id`) REFERENCES `job_applications` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `qualification_assessments`
--

LOCK TABLES `qualification_assessments` WRITE;
/*!40000 ALTER TABLE `qualification_assessments` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `qualification_assessments` VALUES
(1,1,'','','','2025-11-02','2025-11-10',NULL,NULL,100.00,70.00,'pending',NULL,NULL,NULL,'2025-11-02 12:31:59','2025-11-02 12:31:59');
/*!40000 ALTER TABLE `qualification_assessments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `quality_inspections`
--

DROP TABLE IF EXISTS `quality_inspections`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `quality_inspections` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `inspection_number` varchar(50) NOT NULL,
  `work_order_id` int(10) unsigned DEFAULT NULL,
  `product_id` int(10) unsigned NOT NULL,
  `inspection_date` datetime NOT NULL,
  `inspection_type` enum('receiving','in_process','final','audit') DEFAULT 'final',
  `template_id` int(10) unsigned DEFAULT NULL,
  `inspector_id` int(10) unsigned DEFAULT NULL,
  `status` enum('pending','in_progress','completed','cancelled') DEFAULT 'pending',
  `overall_result` enum('pass','fail','conditional') DEFAULT NULL,
  `completion_notes` text DEFAULT NULL,
  `completed_by` int(10) unsigned DEFAULT NULL,
  `completed_at` datetime DEFAULT NULL,
  `created_at` datetime DEFAULT current_timestamp(),
  `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `inspection_number` (`inspection_number`),
  KEY `idx_work_order` (`work_order_id`),
  KEY `idx_product` (`product_id`),
  KEY `idx_inspection_date` (`inspection_date`),
  KEY `idx_status` (`status`),
  KEY `inspector_id` (`inspector_id`),
  KEY `completed_by` (`completed_by`),
  KEY `idx_quality_inspections_status_date` (`status`,`inspection_date`),
  CONSTRAINT `quality_inspections_ibfk_1` FOREIGN KEY (`work_order_id`) REFERENCES `work_orders` (`id`) ON DELETE CASCADE,
  CONSTRAINT `quality_inspections_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE,
  CONSTRAINT `quality_inspections_ibfk_3` FOREIGN KEY (`inspector_id`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `quality_inspections_ibfk_4` FOREIGN KEY (`completed_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `quality_inspections`
--

LOCK TABLES `quality_inspections` WRITE;
/*!40000 ALTER TABLE `quality_inspections` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `quality_inspections` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `quote_documents`
--

DROP TABLE IF EXISTS `quote_documents`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `quote_documents` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `quote_id` int(11) NOT NULL,
  `file_name` varchar(255) NOT NULL,
  `original_name` varchar(255) NOT NULL,
  `file_path` varchar(500) NOT NULL,
  `file_type` varchar(100) DEFAULT NULL,
  `file_size` int(11) DEFAULT NULL COMMENT 'Size in bytes',
  `document_type` varchar(50) DEFAULT NULL COMMENT 'bom, sketch, specification, other',
  `description` text DEFAULT NULL,
  `uploaded_by` int(11) NOT NULL,
  `uploaded_at` datetime DEFAULT current_timestamp(),
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_quote` (`quote_id`),
  KEY `idx_uploaded_by` (`uploaded_by`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `quote_documents`
--

LOCK TABLES `quote_documents` WRITE;
/*!40000 ALTER TABLE `quote_documents` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `quote_documents` VALUES
(1,15,'IMG_5218_1764273457.jpg','IMG_5218.JPG','uploads/quotes/15/IMG_5218_1764273457.jpg','image/jpeg',239098,'','',1,'2025-11-27 14:57:37','2025-11-27 19:57:37','2025-11-27 19:57:37');
/*!40000 ALTER TABLE `quote_documents` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `quote_items`
--

DROP TABLE IF EXISTS `quote_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `quote_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `quote_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned DEFAULT NULL,
  `description` text NOT NULL,
  `quantity` int(11) NOT NULL,
  `unit_price` decimal(15,2) NOT NULL,
  `tax_rate` decimal(5,2) DEFAULT 0.00,
  `discount_percent` decimal(5,2) DEFAULT 0.00,
  `line_total` decimal(15,2) NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `quote_id` (`quote_id`),
  KEY `product_id` (`product_id`),
  CONSTRAINT `quote_items_ibfk_1` FOREIGN KEY (`quote_id`) REFERENCES `quotes` (`id`) ON DELETE CASCADE,
  CONSTRAINT `quote_items_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=32 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `quote_items`
--

LOCK TABLES `quote_items` WRITE;
/*!40000 ALTER TABLE `quote_items` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `quote_items` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `quote_signatures`
--

DROP TABLE IF EXISTS `quote_signatures`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `quote_signatures` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `quote_id` int(11) NOT NULL,
  `action` enum('accepted','declined') NOT NULL,
  `signature_data` text DEFAULT NULL,
  `accepted_by_name` varchar(255) NOT NULL,
  `accepted_by_email` varchar(255) NOT NULL,
  `accepted_by_title` varchar(255) DEFAULT NULL,
  `company_name` varchar(255) DEFAULT NULL,
  `declined_reason` text DEFAULT NULL,
  `ip_address` varchar(45) DEFAULT NULL,
  `user_agent` text DEFAULT NULL,
  `signed_at` datetime NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_quote_id` (`quote_id`),
  KEY `idx_action` (`action`),
  KEY `idx_signed_at` (`signed_at`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `quote_signatures`
--

LOCK TABLES `quote_signatures` WRITE;
/*!40000 ALTER TABLE `quote_signatures` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `quote_signatures` VALUES
(1,9,'accepted','data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAlgAAADICAYAAAA0n5+2AAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAACWKADAAQAAAABAAAAyAAAAAAzUgSDAAAdWUlEQVR4Ae3dy+suyV3H8TPXzCSiaAQVkRAIouBK8AKKqAt3uvBfEFdBHReCEl1kKbiMiqAThBAvKLrThYvBhVETcaO5wswkXmJmnIzJJHM1xvqc3/P5ne+pU91PX6q7q7vfBX2qn+7qurz6Gfo71f30784dEgIIzBH48TkHcywCCCCAAAIIIIDA/QK/mj5+PS3KSQgggAACCNwKPHy7xgoCCIwVeOJygPOxx1MeAQQQQOCgAgRYBz2xDAsBBBBAAAEEthMgwNrOnpYRQAABBBBA4KACBFgHPbEMCwEEEEAAAQS2EyDA2s6elhFAAAEEEEDgoAIEWAc9sQwLAQQQQAABBLYTIMDazp6WEUAAAQQQQOCgAgRYBz2xDAsBBBBAAAEEthMgwNrOnpYRQAABBBBA4KACBFgHPbEMCwEEEEAAAQS2EyDA2s6elhFAAAEEEEDgoAIEWAc9sQwLAQQQQAABBLYTIMDazp6WEUAAAQQQQOCgAgRYBz2xDAsBBBBAAAEEthMgwNrOnpb3L/CDlyH8xP6HwggQQAABBGoKEGDV1KSuswm8cRnwN55t4IwXAQQQQKBfgACr34e9CPQJ/Mdl5zf3FWIfAggggMD5BAiwznfOGXE9gc9dqmIGq54pNSGAAAKHECDAOsRpZBAbCTx7affJjdqnWQQQQACBRgUIsBo9MXRrFwKfvvTy8V30lk4igAACCCCAAAI7EHg09fHrl4X/WdnBCaOLCCCAAAIIILAPga+lbirI+r59dJdeIoAAAgisIcD/da+hTBtHFnjrMrjvPvIgGRsCCCCAwDgBAqxxXpReVuCpZatfpPZXL7W+Z5HaqRQBBBBAAAEEEJgo8L/pOD/LpPz/riy6LeeXfKbVTdNnU+vq8wc27QWNI4AAAgg0JcAMVlOn45SdUXDySDbyh9LnvkXfW/1yLw/KFHitfavu5dSm0nfeZPyLAAIIIIDAnTv6FRQJga0ENFNVKzkg+1RWoYKwJf9H4sVLe9+WtctHBBBAAIETCxBgnfjkNzB0BUWl1LU9L6tbiwqe+sprn4IspSWCrc/fVH3nnZecDAEEEEAAgUX/zx5eBJYW0P8gOMBSIKXlk2nRzJiDqrR6mxxsaZ9uJ9ZI/3ap5JtqVEYdCCCAAALHEGAG6xjnkVHcE/jee6u3awqm8tuE+qxAS4sCsqn/LTyfjlV6x03GvwgggAACCDx40cEEgSMK6CF6z3DlM1varv0OtJ5P62PSZy6FnxhzEGURQAABBBBAAIGlBDyDlOdLtZfX61uJefsOtvLypc/fnjb6+NJ+tiGAAAIIIIAAAqsKODDJ81U7kRp7Li1zgi33/zvW7jjtIYAAAgi0KZA/l9JmL+kVAssKvDtV74flSw+/X3s4Xr9mVPqem4x/EUAAAQTOLkCAdfZvAOPPBfSwu5/X0qxWnvxwvPY5sHr9Uug9eWE+I4AAAgicU2DqL6fOqcWozyYQ3zCvgEqBl5PW/XC8t73bK+QIIIAAAucWiBeMc0sw+i0E9OxSKbX+vcyDrTgGjYmZ4SjCOgIIIHBCAS4EJzzpDHm2gP67URD4bFryIFHb/dB76XmutJuEAAIIIIAAAmsKfENqTLMjZ0kORPJ8b+N/JnU4H0P8rHP6j3sbFP1FAAEEEEDgKALxonyUMfWNI443rvcd0+K+X06dUv8dHCuP44nrLtPiOOgTAggggAAChxSIF+JDDjAbVFcgkhXbxUefux8Kvf2ptN41RpV/K5RlFQEEEEAAAQQWEvBFWvkZUlfwscex65UNOm9Pd3Te++M59rocSAgggAACCCCwkIAvuMrPkPQQeByz1/c4s/PiZSyfGnDiugJLjZ8H4wcAUgQBBBBoXYBfEbZ+ho7dv+c6hhffP9VRpLnN/3rp0XcN6Jl/hfjlQlntU6DFrFYBh00IIIAAAghMEfAMjvKzpDhmr+8xuMgfdB97/pjVGitGeQQQQAABBAYKOMA4e4C11/H7/MUH3Qee+ttiz6c115Pneww8bwfGCgIIIIAAAlsJxAvqVn1Yu9045ri+dj9qtOcH2Z+uUVmqo29Wq1ITVIMAAggggMDxBeIF9fijvRlhDKri+h7HP+ZB9zHj+2wqHL8bdtI2EgIIIIAAAghcEYgX0StFD7M7jtmBg/I9pmdSp9X3VxfsfJfXRxZsk6oRQAABBBDYtUB8bcGuBzKi810Bw4gqmin6VOqJAiyNaenU5ab2edXD0vrUjwACCCCwKwHNfOgCqeUsKQaVHrvyPb4LS+fMY5jzoPuYc98XaI2ph7IIIIAAAggcWsAXaD0wfYb06TRIjznma8wCLeFb+0H3oX18pcNx6PGUQwABBBBAoBmBJYIABxlnus3jMcd8Cds1vjhLPeie912znX2zV7Ysvcw0r4vPCCCAAAIINCXgi1jNTrnOvQYYUyw85jyfUtfWxzyTOqBx1H7QXQH3kIBKbZ8pOE/DJSGAAALtCfCncuqcE13UaqeHaldIfasI/OWllSdmtpYHU/7zOqVq9f17f1r0ndGyxz81lLpNQgABBBBA4EZAFzYvtWacXJ/ys6Q45ri+1/F7DD88cAAfTeXygMp15LnKMUM1EJZiCCCAAAL7FMgvfq9VGEa80FaobhdV5I7+vIvOFzp57UH319Mx8Tx7vKVc5c7yg4cCJZsQQAABBM4okF8QdTGcm95MFbjeuXXt5fiuYGMv/c/7+ULaoHOoX0gqjXl+ShZfuHsU/yCAAAIIIHBSAQdCMa9B4fr2+i6osQYKQDzmmI+tp4Xy7+sYSxxXXFdA9estdJw+IIAAAggg0IpAvFB6vUbfXFeNGbEa/Vm6Dt9S87id61Za6+m/Uwe7ZuA8Ducqx/NTrZ9R+ocAAgggsLmAL5wxr9Ep13eWAOvvE5rHHPMWnz0ac7tPY9EtXxICCCCAAAIIjBCIwYDXa8y6uC7lZ0lxzF5vIcDsun3pPsZc/f3Y5YR5Vu7ps5xAxokAAggggEAtgXhx9XqNW0C6ULu+Wn1tvR6PN+ZrB1gfT0jRPvaltN7Xvy9dziFvUm/9m0f/EEAAAQSaExh70R06gDhrMvSYvZdbyrLPZcztPgVTY25Z/lUq7zH19YF9CCCAAAIIIJAJ+AKa51mx0R8/l45wnc+NPnqfB3i8yuMsUq3R6B1lsd7YXmldZV+a2bjr/Z2Z9XA4AggggAACpxLwBVR5vHjXQHDdNW451ujP0nV4vDUs/zg7H7Hu0rrOnZbaSc/jqb1XaldMfQgggAACCBxZIF6sv5gG6s813l/lupa48Ld4Tjxe5WOD1TG3+ly/ZgmXTn+RGvC4lm6L+hFAAAEEEDiMgC+eypX8uUZQ5Lpc900Lx/03jrfvGbQx751SnToXW84Celz+I9DHPYOMDAEEEEAAgUoCvngqVxo783JzVPnfmnWVW2hra7T0Kw60LTrEMqV1ldXy/oaGptuD6muN13c0NCy6ggACCCCAwHICpYu8t2mmZU7qm8WZU2+rx9ptTK5gqvXXIPx26qPH1Ko9/UIAAQQQqCzwUOX6zladLvBDDXWRHZtc95Rjx7Y1tbyDB1l8JS3fMrCif0jlfiAtHuO1w9zOI9cKNrjf5+/vUt9+pMH+0SUEEEAAgcoCQy9ulZs9XHWabXr4cKNqY0AK3PYYVEU9zWa+My269flY3ME6AggggMAxBQgK6pxXBQAKVrUoIHDyrIs/k48XOML/BPzmZdiPpvxd4wk4AgEEEEAAAQQk4MAqBltTZHS865py/FrHfCQ1FPvqPtfMVf+YN6mvNfah7dhHf46HhAACCCCAAAITBGJgMeHw20NafdD9jdRDBwxxrKV1lRvymoTSsde2Dan3FnPjFb+df0993piM5hFAAAEEELhfIAYf9+8Z/8lBxpvjD612RAz03J+uXGOf8gvKvL5oGNfzcv6sMi2nn0mdc19/uuWO0jcEEEAAAQRaFvDFdO6MhetZK4B4b0IdEtDEfv18hRPh+pzHPsTq5Rn3ubxz7avxJv3YZq11B6prvEW+Vp+pBwEEEEAAgaYE4gV/Tsdcj/Klkp5t6gta3AeVmRswdo3BbTiP/ek6RtsdtPi4mKuOlpKev1L/WutXS0b0BQEEEEAAgV6BoQFCbyVpZ616Yju/lNUbg5K4rran3O6LbQ1dj+1qPb7NfWgd0SrWp+0tpHelTrhfv9JCh+gDAggggAACexOIMytz+l6rniGzVApEPj+nszOOdeDhfM649bxaKdja8jk203hcykkIIIAAAgggMEHAwcLc1wu4njEBwp+n/paCDNflvJXZHffHeez7nGeqXJ/zrcf74XRe3JdPTPhOcQgCCCCAAAKnF/CFdO5FfUg9f5q0Y1DiY/JcZf6rwTOT9zN+nuvnWSPXObe+uXyvpgrcl5+dWxnHI4AAAgggcDYBX0SVz0muJwYGf5Qq1Gfv68v3cDuqr/9x3F2O3592/F5a/iktCiC/mhbNfGnsXvI2vH1orpnIKYv6kS+xLzyPlYBICCCAAAIIDBWIAdDQY0rlYj3xwty1rvIKwFpMP5o69S9peS0t6qeXrrGcbbtmt0gIIIAAAggg0COg2Q4HCD3Fru5yHV25gpQ/uVrLMgU+lKrVLw01VgdLyrv6yvZhNomQhAACCCCAAAJdAg4odBtqSioFK9r2Z1Mq6znmt9I+PXT95bS0GCw5eFPf9Kd6Xk7Ls2n567T8YlqGJp8P5apz66TvRexTXN+6b7SPAAIIIDBR4KGJx3HYcAFdMJWUP3x3bfg/PjYeUdoW98f1rc+v+6pct77+OS0/FjsY1hVo9PnUGIsCKtejPvW1F7q26Oq3ptpf7GnB/e0pwi4EEEAAAQTOJ6ALuZcxo/cxreQKTrzodRH/npZfGzOgK2X1ELjHqna87vzK4Vd35zNFVw9YscDfprY8zpjrQX0SAggggAACCBQEYrBQ2F3cFC+yNdbdBwdIynWb7Qtp+Zu0/GRatk56XYHH6v76s/I56fV0cK265vSj79iPZX38z77C7EMAAQQQQODsAvHi/r4ZGA4QFHwcNcUxet35SzMG7TqUkxBAAAEEEEDgIAK+wE990F0MruOsAZYebh+b8pmwKXWMbZPyCCCAAAII3HkUg1UFeGB5OveYB9IVWOXWCm75vk/350gEEEAAgRECXHBGYFUoml/0x1SpGSwdP6eOMe3tsWwpsJLbmOBsj+OmzwgggAACjQlw4VnnhOgiT7ouYKexQaR/IZgfp898x6+7UwIBBBBAoLIAF5/KoB3V/UbYrj8RQ7ou4GDLJfPgSdsdWOXfY73eoFTedZEjgAACCCCAwEEEFDBomfqQuoOJPPA4CM/dYcSH0vVAus2ce6zxnVnep1zbSQgggAACCGwukP+f/+YdogOdAmf4BZyCJKfS84F6d5fK5Pv87NVjPpgcAQQQQACBLQUIsNbTd/Aw9dbV20JXj3qb8VoQ+Xgw0KoDq0ey7XxEAAEEEEBgUwECrPX4HWDVaDEPNGrU2UIdQ4NIAqsWzhZ9QAABBBDoFJg6m9JZITt6BRxkKUCYMuvi45UfNTj2GEuQRx53abxsQwABBBDYqcBRL9Ktnw4C2wfP0CtpkwLPvtQXfPUdxz4EEEAAAQRWFcgfFl618RM3NjfAmnt8K/Rvpo7oOzh0PEPLtTI++oEAAgggcFIBAqx1T7xmYOYECXOPX3e05db0KoWh3ztZxVmrOXbl3rAVAQQQQACBBQS4RbgAak+VXwr7dEvsLEnv8NLtPwVLpeBK2/ULwjygSptICCCAAAII7E+AGYH1z5lnZJSPDXAVqPiY1s9d7GuXsmaz8l9E+heCOqYUcLU+7q6xsh0BBBBA4EQCvlifaMi7Huq1h8C3HpxnqbqCR21/NS0KkrTkwVXadN8tQX0mIYAAAgggsDsBAqz1T5lnsKbMxHwodPd3w/qWqzGoKo1J4/25tGifvm/vSEtfyl82aq++Y9iHAAIIIIBAUwKlC2JTHTxgZ+Ktsyn+DjgUiGz1p2HibbzSKVIf5wTvHqN+Zaj3hcV3hsmv9BxX2kxCAAEEEECgDYEpF/g2er7vXjiAmBIs+Ni5QcwYQQVzCpj6vi81++MxKpBTcOXPafXu+pzgTXWQEEAAAQQQWFSAmYBFea9W3lqg4EBKHe8LpjwwB0D+XDsv9aG0rXa71IcAAggggMAsgdYu8LMGs8ODtwgW/jA5aeYsPjulGSItmi1Sn7r6pTK+Pagy8dZd+lg9dfWjekNUiAACCCCAQE0BZrBqag6vS4HK1ODBx147/iupjbdfunStbKnnakdJwdhWz3rd7QD/IIAAAgggsDcBZrC2OWP/E5pVIDQn6UFwzSrlM1L6tZ4Cq2vBlWel3gjldYy+G1q2CK4c3KXmSQgggAACCCCAwHABBREObq4d9UIq0HVbz/VcyxWAqY6XrjXWwP4YLKo78bPGmb/KoYEu0wUEEEAAAQTuCXCL8J7FVmuaLdIbzePzTNdmnfr66kAr1tdXvsV9Cqhi/zWmaMLMa4tnjT4hgAACCNwKcKG6pVhsRbfwSrNPsUEFugogvMR9feuq18c41zmNwUnf8a3ue2/o2C+k9Y+Gz1rVWEkIIIAAAgg0K8CFavqpeS0dqueTHNi4plqmnonSbE7+HJT2Kb2elifvrh3vH49RQaQCUH/2SGs5uz5yBBBAAAEEEKgo8OFUl2eYFMzkz/s40KmZ5+2MfabIfVG/j5ryMfqz86OOm3EhgAACCBxA4EjPYCloGZKWnvlQAKCkXIHT2/ShI7ns1Fu1S4+lo9urbj7DGFcFpTEEEEAAgeUFpl7Yl+/Z+BY8Fl2Q+5bxNd87wrMnee4ZKc0oKah6Li16DqovuEq7bxNBxC3F4JWxs36DK6YgAggggAACCJQF1rjNlwdZcz+7zw7WlCuI+GBhiLGtwu5DbMrHaB9v12cSAggggAACCGwg4IvxkfOnN3Bdo8kYUKk9zQ7m53GNftAGAggggAACCDQk8Hzqi96Orndc5Q/RO3hwngcOcz+rXi2aAfuDtOwx6ReSdlD/Xw2f43btIyGAAAIIIIAAAvcJOFhQXkq/nzYqUHLQFMtPXXddnyg12NA2j0/jV/Jn5zdb+RcBBBBAAAEEEMgEFOyMDRjiMZqhmhuAqT7NsrWW7KL+Kfmz85ut/IsAAggggAACCGQCCo7GBgwxwMqqe+DjB9MW36J0O9dy1f/JB2paf0Psp1qPn7Xuma31e0aLCCCAAAII9AjweoAenBV3KVhQUmAz5M/cKGCKr6XQsVOS/oyP/0xP3/FD+9VXx5R9dtGx+q7Gz9qmz3bQZxICCCCAAAJNCHBxauI03HZiaMCrgKdGejxVou+A2tXSVa/KKJjRojKfScsaqRRQxXaHesVjWEcAAQQQQACBkwg4eMkDiq7hx1/UdZWZu12/flQwFfuWr2v/ks9u5b8kLPVn7jg5HgEEEEAAAQQOKqAgxcHL0CG6/HNDD5hZrhTcuA/OVaZ2ct163kpBnz87r90e9SGAAAIIIIDAQQQ+nsbhgOG1gWNyeT1HtXYaOrtVo18ep4M3f3Zeow3qQAABBBBAoKoAz7BU5ZxVmQIGJeVDno1zec1+bf1HuxX89H2XtH/Iw/up2APJ49QOtRE/a1sL41c/SAgggAACCNwKDLmQ3xZmZRWBvkCl1IGx5Ut1zN127UF5PySvQGvsqxXygCrvK9/hXITPCCCAAAKbC3Bx2vwU3HbgWiBxWzBbaSHAil3STJX6pCUfk7Zpv7Yr2BpyO1S3I530p4dICCCAAAIINC/Q2sW5ebAFO6hAwrf6hpwXBy/K9xAo991GvDaGOFadgtwn/6wyJAQQQAABBDYT2MOFeTOclRt+LLS35KsPQjOrruq7pkDIr16IjWu7gigFYX2JQKpPh30IIIAAAs0IEGA1cyru68iRA4kn00gdbOWBpAOt/JeRnsG6Dyl8GPtcVziUVQQQQAABBOoLHPlCXl9r+RpjIHHt3MRbbtfKLt/z+S3Esas2fY7/A+D9yvPx5mV1PAkBBBBAAIHNBOIFbLNO0PCtwLVbZLcFD7iioCmOX58VOMVtGnYeXHVt03YSAggggAACmwgQYG3C3tlofFdUfpus86AD7fAvED1bpaE50CoNM5Yr7WcbAggggAACmwgQYG3CPqhR/6JwUOGDFdL3sjRTlQ+TACsX4TMCCCCAQBMCBFhNnIZiJ64FGPkD4sVKdr5RBvktwq4hncGja+xsRwABBBBoTIAAq7ETkrozdFYmvtbhlfaGUa1HpduGrjwGoXyXrUKOAAIIILC5ABelzU/BAx2Iby5/YGfHhrd3bD/S5tJ3NQZYRxorY0EAAQQQ2LkAF6g2T6BnsZSXAgv3emg5l9977vF2jYPvc5cM2xFAAAEEVhXou3iv2hEaKwoQMBRZOjcO+duGnQezAwEEEEAAgVoCXMBrSdatJ87U9J2joeXq9m672vTAe5+HenZt/3a9p2UEEEAAgdMIMIPV5qke+su5GGC1OZK6vdL3NY5Z6wRUdY2pDQEEEEAAgUMLKHjQ0vd39hSIudyhMa4MLjrIg4QAAggggMCmAsxgbco/qPG+c0QwcUOYGw2dARx0AiiEAAIIIIDAWIH8wjT2eMovL9B3C4yXa5b9+8zKR7AVAQQQQACBigIEWBUxK1c1ZHbq8dDmV8P6GVejV1w/owVjRgABBBBAAIEOAb1yQIGCli92lNFml2E2qweJXQgggAACCCCAgAUcPPU9UzSkjOsjRwABBBBAAIEVBLhFuAJyhSZ4pqgCIlUggAACCCCwlgAB1lrS09rR7NTQRBA2VIpyCCCAAAIILCxAgLUw8Mzq4zuwXppZF4cjgAACCCCAAAIIXASuPWMVX7IJGgIIIIAAAgg0IMAMVgMnYWAXuAU4EIpiCCCAAAIIbC1AgLX1Gbje/pjnsK7XRgkEEEAAAQQQWFyAAGtx4tkNxHP0VqE2ArACCpsQQAABBBDYUiBevLfsB20PE3ikUCw+CF/YzSYEEEAAAQQQQACBksC1B9n9IPwLpYPZhgACCCCAAAIIIPCggGapHEQ9uPfevtItxFJ5tiGAAAIIIIDAggLcIlwQt2LVj4a6+v7mIOczQLGKAAIIIIDAVgJckLeSn95u3znjVQ7TXTkSAQQQQACBagJ9F+tqjVBRFQF+LViFkUoQQAABBBBYXoAAa3njWi3EW4Mv16qUehBAAAEEEECgvgC3lOqbLlmjZ7GUx+DY29U253TJM0DdCCCAAAIIDBCIF+kBxSnSiABBVCMngm4ggAACCCBQEiDAKqm0uy3OVLXbS3qGAAIIIIDAyQUIsPb1BYjnize47+vc0VsEEEAAgRMJxAv2iYZ9iKFy7g5xGhkEAggggMARBbhI7++s+jYhz2Ht79zRYwQQQACBkwgQYO3vRDvA2l/P6TECCCCAAAInESDA2t+JfiR0WX8EmoQAAggggAACjQkQYDV2QkZ2h9uEI8EojgACCCCAwBoCBFhrKNdvg9uE9U2pEQEEEEAAgWoCBFjVKFetiFuDq3LTGAIIIIAAAuMEuMU0zqul0p7FUh7PY1xvqb/0BQEEEEAAgdMIMIN1mlPNQBFAAAEEEEBgLQECrLWk67fjGSxmrOrbUiMCCCCAAAKzBAiwZvFtevDXNm2dxhFAAAEEEECgU4DZj06aXezwLFbsLOc0arCOAAIIIIDABgLMYG2ATpMIIIAAAgggcGwBAqx9n9/SDNa+R0TvEUAAAQQQOIAAAda+TyLvw9r3+aP3CCCAAAIHFeB5nf2f2HwWi3O6/3PKCBBAAAEEdi7ADNbOTyDdRwABBBBAAIH2BAiw2jsnY3uUz2CNPZ7yCCCAAAIIIFBZgACrMugG1fEc1gboNIkAAggggECfAM/r9OnsZ1+cxeKc7ue80VMEEEAAgYMKMIN10BPLsBBAAAEEEEBgOwECrO3saRkBBBBAAAEEEECgYYGnUt9eTotyEgIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCKwn8P+6549ho6NNagAAAABJRU5ErkJggg==','4 Patriots','4patriots@example.com','','4 Patriots',NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-16 08:27:53','2025-11-16 13:27:53'),
(2,19,'accepted','data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAlgAAADICAYAAAA0n5+2AAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAACWKADAAQAAAABAAAAyAAAAAAzUgSDAAARE0lEQVR4Ae3dTassRxkA4HwjCn7ARRfRjSL4E1z7A/wHZuVKBQkouoq4FhRDBHVlVjELBVfBpRjcKBGCiCuToEHwxsSgMd/3+r5winROz8ztmequ6a55Goqe09NV9dZTc0+/p3ruzF132QgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQOLPAreg/i40AAQIECBAgQGAGgRvRxu2rko9tBAgQIECAAAECMwiUBGuGpjRBgECNwD01ldUlQIAAAQIECBAYC0iwxiaOECBAgAABAgSqBCRYVXwqEyBAgAABAgTGAhKssYkjBAgQIECAAIEqAQlWFZ/KBAgQIECAAIGxgARrbOIIAQIECBAgQKBKQIJVxacyAQIECBAgQGAsIMEamzhCgAABAgQIEKgSkGBV8alMgAABAgQIEBgLSLDGJo4QIECAAAECBKoEJFhVfCoTIECAAAECBMYCEqyxiSMECBAgQIAAgSoBCVYVn8oECBAgQIAAgbGABGts4ggBAgQIECBAoEpAglXFpzIBAgQIECBAYCwgwRqbOEKAAAECBAgQqBKQYFXxqUyAAAECBAgQGAtIsMYmjhAgQIAAAQIEqgQkWFV8KhMgQIAAAQIExgISrLGJIwQIECBAgACBKgEJVhWfygQIECBAgACBsYAEa2ziCAECBAgQIECgSkCCVcWnMgECBAgQIEBgLCDBGps4QoAAAQIECBCoEpBgVfGpTIAAAQIECBAYC9w3PuQIAQINBG5d9dHjHzmPxti+EOXBKO9cjXPXLp97M8onorwb5dtRHotiI0CAAAECBAgcLXAjaty+Kvl4q1smUi9GeTtKGU/tfqsWa4m7+K8lHnEQIECAAIGmAlu5EH4rVJ6J8mqUXHEqcc+xz1W8LKWtp+OxrU6gWNa1ojYBAgQIENigQN4SKxfCfHyuLZOnP0Z5JUrtKtRb0cbzUR6JYjufQHldnS8CPRMgQIAAgTMKtLgQPhnjeznKnCtPEqkzvmgmdN3idTUhDKcQIECAAIHzCMx5IcxEKm/hDW+3lfaP2Wf9fNP5zSi/jfJQFNu2BMp8bytq0RIgQIAAgZkETrkQ1iRSmTzl6lNJnr400zg0sy6BU15X6xqBaAgQIECAQIXAoQthTSKVH3eQtwV/VBGbqtsVOPS62u6oRE6AAAECBCYIfD3OKRfCXFU65daeRGoC9AWeUl5XFzh0QyZAgACB3gQejgH9Lkrefsv3MGXyUy50tXuJVGDaJguU19vkCk4kQGAZAZ/kvoxrj61m4nD/SgeWF5WltruvGi77pfrJVax8o/oTUb66VCfaJUCAAIE2AhKsNs5b7yU/bfyBFQ9i6eSnZui5ApW3AfOzpp6N8uMov4pSksI1xx5h2ggQIECAAIElBcqth0vfZ8L0epT8ipinonwxyilbcTylrjoE9gl4Xe2TcZxAYwErWI3BN9ydlZYNT57QCRAgQKCtwD1tu9MbAQIECBAgQKB/AQlW/3NshAQIECBAgEBjAQlWY3DdESBAgAABAv0LSLD6n2MjJECAAAECBBoLSLAag+uOAAECBAgQ6F9AgtX/HBshAQIECBAg0FhAgtUYXHcECBAgQIBA/wISrP7n2AgJECBAgACBxgISrMbguiNAgAABAgT6F5Bg9T/HRkiAAAECBAg0FpBgNQbXHQECBAgQINC/gASr/zk2QgIECBAgQKCxgASrMbjuCBAgQIAAgf4FJFj9z7EREiBAgAABAo0FJFiNwXVHgAABAgQI9C8gwep/jo2QAAECBAgQaCwgwWoMrjsCBAgQIECgfwEJVv9zbIQECBAgQIBAYwEJVmNw3REgQIAAAQL9C0iw+p9jIyRAgAABAgQaC0iwGoPrjgABAgQIEOhfQILV/xwbIQECBAgQINBYQILVGFx3BAgQIECAQP8CEqz+59gICRAgQIAAgcYCEqzG4LojQIAAAQIE+heQYPU/x0ZIgAABAgQINBaQYDUG1x0BAgQIECDQv4AEq/85NkICBAgQIECgsYAEqzG47ggQIECAAIH+BSRY/c+xERIgQIAAAQKNBSRYjcF1R4AAAQIECPQvIMHqf46NkAABAgQIEGgsIMFqDK47AgQIECBAoH8BCVb/c2yEBAgQIECAQGMBCVZjcN0RIECAAAEC/QtIsPqfYyMkQIAAAQIEGgtIsBqD644AAQIECBDoX0CC1f8cGyEBAgQIECDQWECC1RhcdwQIECBAgED/AhKs/ufYCAkQIECAAIHGAhKsxuC6I0CAAAECBPoXkGD1P8dGSIAAAQIECDQWkGA1BtcdAQIECBAg0L+ABKv/OTZCAgQIECBAoLHAfY370x0BAgQuWeCdGPzcf9je3gGa/dy6Op774TnvXj2X+zyvbPn4zShvR3mtHIz9G1FeifKXKA9HsREgMEHg7gnnOIUAgfkFygXPv8H5bdfa4o0I7OZag5sYl9frRCinEbCC5TVAgACBNgIvtenm5F5K0p/78jgbyxWwXNV6OX+wESAwTUCCNc3JWQQIEJhDYOkVoJIYLd3PHBbaINC1wNzvBegay+AIECBAgAABAlMEJFhTlJxDgAABAgQIEDhCQIJ1BJZTCRAgQIAAAQJTBCRYU5ScQ4AAAQIECBA4QkCCdQSWUwkQIECAAAECUwQkWFOUnEOAAAECBAgQOEJAgnUEllMJECBAgAABAlMEJFhTlJxDgAABAgQIEDhCQIJ1BJZTCRAgQIAAAQJTBCRYU5ScQ4AAAQIECBA4QsBX5RyB5VQCGxbI75K7d0L8/uiagOQUAgQI3ElAgnUnIc8T2L5Aflmv76bb/jwaAQECGxLw1+qGJkuoBE4QODa5yvOz2AgQIECgQsAKVgWeqgRWLnA9uTq0inX7aiyHzln5cIVHgACB9QhIsNYzFyIhMKfAMcnVrn7LKlbvq9zX35vW+3h3zbVjBAgsIOCXyQKomiSwAoHhStTw8b7Q8pzhedd/3ldvy8czicw/MstYc//5LQ9I7AQIrEdg+At1PVGJhED/Akvfkju1/VKvzECvvyOur/D1Mt4yf73OW5knewKrF7CCtfopEiCBpgJ5YR5enMutwqZBLNzZ9eSqjHk47oVD0DwBAr0LSLB6n2HjI1AnkElHT0nWruSqTkhtAgQI7BCQYO1AcYgAgfetYmWS9VYHJpKrDibREAhsRUCCtZWZEieB9gLDW2b3t+9+1h4lV7NyaowAgTsJSLDuJOR5ApctMLw9mB9psMVNcrXFWRMzgY0LSLA2PoHCJ7CwwPD7C7f4uXmSq4VfIJonQGC3gARrt4ujBAi8J1D+638eGa5ovXfGOh9JrtY5L6IicBECEqyLmGaDJFAlMPw9sZX/VSi5qppylQkQqBUY/uKsbUt9AgT6FRi+4X3tSda7MQ3X4+13ZoyMAIFVCkiwVjktgiKwSoHrSctabxcO3zeWkHmLM2Pt4aMmcjw2AgQ2ICDB2sAkCZHAigSuJ1krCu19oQzjzCfy5/yoibUmhRmjjQCBjgQkWB1NpqEQmFEgE5F9Zfim93z8gxn7nbOpTKqGsWbb5dhwbP+bs1NtESBAgAABAucTyAv/9Yv/nNGU9k9ZsblxFVtpY8p+ztiXautO4zjFaqlYT223jPHU+uoRIDCTgBWsmSA1Q2ClArlic2zi8NKRY/n7keef6/SyerWv//L8sV772nOcAAECBAgQaCzQYqWh9JF7ScP+CX4+nhpalcdbNCuxf3r/cD1DgAABAgT6FSgXwqVHWPrJ/RYThqV9hu2/ED8MvcrjdBuW/BiItW4l5ptrDVBcBAgQIEBgSYFyIVyyj9J26avst/qdgmU8S+//Gh0Uqzvt15a0vj6IfWkn7RMgQIAAgdUJlAt3q8AyESh9lr1E67D+c/H0Lrfit2uf5//7cLOLPvv9aL3E9blFe9I4AQIECBBYoUC5CLYM7RfRWel3uPcBnMfPQt4mHBruenyu1a0Si9uEx8+rGgQIECCwcYFyETzHMH4ZnZb+h3uJ1mmzkcnWoZWufK6U03o4rpbbhMd5OZsAAQIEOhIoic05h/REdF7iGO7fOGdQHfT97B7XNG6xDW8TPtCiQ30QIECAAIG1CJSEZg3x/DyCKPEM9xKtutn5U1S/vrJVVrLKvq6H/bXLPO4/wzMECBAgQKBDgTVeAH8WziWu4d5XydS/AIeew8f1Le9uofSx+1lHCRAgQIBApwJrvgA+HuYlvuH+nO/Ryu87/EeU56P8OcpTUdb6HYgR2mgbOg4fj06c6UDpY6bmNEOAAAECBLYhsIUL4E+CssR5ff/fRszPHIghY9rqVjyXin/p9peKW7sEuhHI796yESDQXqAkB1v4N/jT4PlylEOxHvp083y/0a6tvD+pPFf+N17+/MEo95YnBvuSOOT7w16O8qnBc1t6uPT8L93+lqzFSoAAAQIXJFASha0NOT9Es8Teav9O9PnQ1qAOxJuJZLE7cFrVU29G7Sw2AgTOJHDfmfrVLQEC2xT46CDsTLY+HOXQytbg9KMf5pvrvxLl8aNrrrdCrtot5TUc9feGP3hMgAABAgQuRWDpFYxLcdzKOP8TgZY5L/utxC5OAgQIECCwGQEX2c1MVVWg+V6xMtdlv+89aVUdqUyAAAECBAi8d9Fl0Z/Aofep/bC/4RoRAQIECBBYj0BZzVhPRCI5VeAzUfG1KGVOr+9zxerRUxtXjwABAgQIEJguUC7C02s4cy0Cn4xA/hWlzOG+/UtrCVgcBAgQIEDgUgTKRflSxrvlcX4zgn81SpmzQ3tJ1ZZnWuwECBAgsHmBcpHe/EA6G8A3Yjz/jDL8rKoyV7v2r8e53+nMwHAIECBAgMBmBf4WkWexnU8gb/W9GCXfI7Uredp1LBOq70axESBAgAABAgQIhMDHozwXZerqVH659e+j2AgQIECAAAECFynwZIz65o6Sn0M1JaHKr5X5QxQbAQIECBAgQOCiBX4To387yq5beYeO5S3B/F+A+TU8NgIECCwi0OI7sRYJXKMECHQp8LUY1WejPBjlQ1E+FuUDUcqW75v6SJRjvkc1vyw6v6rmkSiPRbERIECAAAECBC5K4NDK067n8n1Sv74oIYMlQIAAAQIECBwp8HSc/0KU/Nyp/HT0TKByBaqUfD9V3t6TVAWCjQABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBwboH/A9S+bqLIgchpAAAAAElFTkSuQmCC','4 Patriots','4patriots@example.com','','4 Patriots',NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-16 09:28:22','2025-11-16 14:28:22'),
(3,16,'accepted','data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAlgAAADICAYAAAA0n5+2AAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAACWKADAAQAAAABAAAAyAAAAAAzUgSDAAALgklEQVR4Ae3dTW4cRRQAYENWbFihHCArLpAdQuIQ3IQLsWKL2ETiAtlEbJBY8HcCBAmB2KD8VcOUVFZsj6aqu6eq3tfSeNozUz/ve9aoXK89vrhwECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgTuFHiSnn2Tbo/vfJUnCRAgQOCowHtHX+EFBAhEEVgWV/nw3pAl3BMgQKBC4P2KNpoQIECAAAECBAjcIWCBdQeOpwgEEyh3sIKFLlwCBAisK2CBta6n3ggQIECAAAECFxZYfggIEMgCV/nEPQECBAi0CVhgtflpTWAmgUczBSMWAgQIECBAgEAvAst1WMvtm14mZB4ECBAgQIAAgdEF8gLrxeiBmD8BAgQIECBAoBeBvMB63cuEzIMAAQIjCrgGa8SsmTOB7QSWBdZy+KDR/x18JUCAQJWABVYVm0YEphW4nDYygREgQIAAAQIEziiQy4SuwzpjEgxNgMDYAsoAY+fP7AlsIZDLhEvf3iO2ENYnAQLTCygRTp9iARI4WeCvk1toQIAAAQIECBAgcFRAmfAokRcQIEDgdgHb/7fbeIZAZAFlwsjZFzsBAs0CSoTNhDogMKWAMuGUaRUUAQIECBAgcG4BZcJzZ8D4BAgMK6BEOGzqTJzA5gLKhJsTG4AAgVkFlAhnzay4CLQLKBO2G+qBAAECBAgQIPCOgDLhOyQeIECAwHEBJcLjRl5BILKAMmHk7IudAIFqASXCajoNCYQQeB4iSkESIECAAAECBHYWyGVCi62d4Q1HgMC4AkqE4+bOzAnsJaBMuJe0cQgQmEZAiXCaVAqEwGYCzzbrWccECBAgQIAAgcACyoSBky90AgROF1AiPN1MCwIRBZQJI2ZdzAQIVAsoEVbTaUgglIAyYah0C5YAAQIECBDYS0CZcC9p4xAgMLyAEuHwKRQAgd0ElAl3ozYQAQKjCygRjp5B8yewn4Ay4X7WRiJAgAABAgQCCSgTBkq2UAkQqBdQIqy305JARAFlwohZFzMBAicLKBGeTKYBgdACyoSh0y94AgQIECBAYCsBZcKtZPVLgMA0AkqE06RSIAR2E1Am3I3aQAQIjCqgRDhq5sybwPkEfjvf0EYmQIAAAQIECMwrkMuEl/OGKDICBAjUCygR1ttpSSCygDJh5OyLnQCBowJKhEeJvIAAgRsEvise+7Q4d0qAAAECBAgQINAgkMuELxv60JQAAQIECBAgQKAQeJ3O8yKreNgpAQIECNxDQIAAgUqB+6ndw0PbB+n+68p+NCNAgAABAgQIECgE8g7WspvlIECAAIGDgIvc/SgQINAi8OrQ2F8ktyhqS4AAAQIECBAoBD5O53kX6/vicacECBAILeC3ztDpFzyBVQSWBVY+vKdkCfcECIQWUCIMnX7BE1hF4GqVXnRCgAABAgQIECBwTSCXCf2fwmssviFAIKqA7fyomRc3gXUFlAnX9dQbAQKDCygRDp5A0yfQicDPxTw+L86dEiBAgAABAgQINAjkMqHPxGpA1JQAgTkE7GDNkUdREOhB4N/DJFx60EM2zIEAAQIECBCYRiDvYj2dJiKBECBAoELAb5oVaJoQIHCrgIvdb6XxBAECkQSUCCNlW6wEthf4qhjCP38uMJwSIBBLwA5WrHyLlsAeAnax9lA2BgECXQvYweo6PSZHYEgB118NmTaTJkCAAAECBHoXyBe7578s7H2+5keAAAECBAgQ6F7gVZphXmR1P1kTJECAAAECBAiMIPBZmmReYP06woTNkQABAmsKuMh9TU19ESBQCrjYvdRwToBAKAEXuYdKt2AJ7Crw466jGYwAAQIECBAgEEQglwn/DhKvMAkQIECAAAECmwu42H1zYgMQINCjwL0eJ2VOBAhMI/BBiuSTQzQfpftH00QmEAIECBAgQIDAGQVymXDZzXIQIEAghICL3EOkWZAEziqQr7/yfnPWNBicAAECBAgQmE0g72L9NFtg4iFAgMBNAj4H6yYVjxEgsLaAz8RaW1R/BAh0LWDLvuv0mByBaQSeFJE8KM6dEiBAgAABAgQINAjkMuFlQx+aEiBAgAABAgQIFAIv0nleZBUPOyVAgAABAgQIEKgV+DA1zAusH2o70Y4AAQIECBAgQOC6gE92v+7hOwIECBAgQIBAs8AXqYe8i/W8uTcdECBAgAABAgQI/CfwLH3Ni6xlweUgQIAAAQIECBBYQSAvsH5foS9dECBAgAABAgQIJIF/0i0vsr4kQoAAAQIECBAg0C6wfBZWXmD90d6dHggQINCXgE9y7ysfZkMgisC3KdCrQ7B/RglanAQIECBAgACBrQUepgF+Sbfl3kGAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQqBd4Cx+vnfE6VZpdAAAAAElFTkSuQmCC','4 Patriots','4patriots@example.com','','4 Patriots',NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-16 10:01:01','2025-11-16 15:01:01'),
(4,17,'accepted','data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAlgAAADICAYAAAA0n5+2AAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAACWKADAAQAAAABAAAAyAAAAAAzUgSDAAAM2klEQVR4Ae3dv4tcRRwA8MRrxMYiICiCVirRyhRBsLC1ElH8F7TQQrC0ETtLexurdKKIIlgIsRC0UCG20bMx/ijM+Su53OkM3hdekt17u/d+z3wePPbdvvn1/czeMjszt3fqlIMAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECMxEYGcm7dAMAgT6EXgsFfPyUVHf91OkUggQIEBgW4HT22aQngCBWQv822id3+8GhksCBAiMKXDHmJWpiwABAgQIECBQg4ABVg29LEYCBAgQIEBgVAEDrFG5VUaAAAECBAjUIGCAVUMvi5EAAQIECBAYVcAAa1RulREgQIAAAQI1CBhg1dDLYiRAgAABAgRGFTDAGpVbZQQIECBAgEANAgZYNfSyGAkQIECAAIFRBQywRuVWGYHBBW4MXoMKCBAgQKBVwACrlUgCAosS+GFRrdVYAgQIECBAgMACBO5Pbcz/LiefZxfQXk0kQIAAAQIECCxCIAZYlxfRWo0kQIAAAQIECCxAIAZY+wtoqyYSIECgSIHTRUYlKAJ1C+QBVhx+x0PCIwECBEYUsMl9RGxVESBAgAABAnUIGGDV0c+irEvgsK5wRUuAAIH5CRhgza9PtIhAV4EPuxYgPwECBAgQIECAwO0CsdH999tveYYAAQIECBAgQOAkAjHAslx4Ej15CBAg0FHAEmFHQNkJzFQg/pLQXxHOtIM0iwCBsgUMsMruX9HVK3C13tBFToAAAQIECBAYTiCWCT8ZrgolEyBAgAABAgTqEogB1kFdYYuWAAEC0wvYnzF9H2gBgaEEYh9WLt/v+lDKyiVAgMAKAXuwVqB4ikAhAnuFxCEMAgQIECBAgMCsBGKZ8MasWqUxBAgQKFzAskHhHSy86gUsE1b/EgBAgMAUAjtTVKpOAgRGE3gm1XTvUW15FuviaDWriAABAgQIECBQsEAsE/pW94I7WWgECMxLwCb3efWH1hAYQiCWCW0JGEJXmQQIECBAgECVAi+lqGMW61KVAoImQIDAyAI+0Y4MrjoCEwnELFau3u/9RJ2gWgIE6hGwRFhPX4u0bgHf5l53/4ueAAECBAgQGEgglgl9AelAwIolQIBACFgqCAmPBMoXsExYfh+LkACBmQhYIpxJR2gGgREEfm7U8Xjj2iUBAgQIECBAgEAHgVgm9J1YHRBlJUCAQJuAGaw2IfcJlCUQy4S2B5TVr6IhQIAAAQIEJhS4J9Uds1i/TNgOVRMgQKBoAZ9ii+5ewRFYKRCzWPmm94CVRJ4kQIBANwFLhN385CawRIErjUafa1y7JECAAAECBAgQ6CAQy4Q2u3dAlJUAAQLrBMxgrZPxPIGyBWKZ0BJh2f0sOgIECBAgQGBEAZvdR8RWFQEC9Qn49Fpfn4uYQAjELFb+2XtBqHgkQIBADwKWCHtAVASBhQr8tNB2azYBAgQIECBAYNYCsdn9+qxbqXEECBBYmIBlgYV1mOYS6FnAMmHPoIojQIBAFrBE6HVAoG6BdxrhX2hcuyRAgACBDgJmsDrgyUqgEAGzWIV0pDAIEJiPgBms+fSFlhCYSmB/qorVS4AAAQIECBAoWSA2uzf/jU7J8YqNAAECgwpYIhyUV+EEFiNgmXAxXaWhBAgsQcAS4RJ6SRsJDC+wO3wVaiBAgAABAgQI1CcQy4T/1Be6iAkQIECAAAECwwgcpmJjkDVMDUolQIBAJQI7lcQpTAIE2gXOpCTnj5I9kB7fb88iBQECBAgQIECAQJtAzGDl2SwHAQIECJxQwCb3E8LJRqBQgWtHcfkL40I7WFgECBAgQIDANAIxi/XjNNWrlQABAssX8Cl1+X0oAgJ9C+QBVhzeI0LCIwECBLYQsES4BZakBCoR+LoR54uNa5cECBAgQIAAAQIdBGKZ8KBDGbISIECgWgEzWNV2vcAJHCuwd3TXe8SxTG4SIECAAAECBLYTiFmsP7bLJjUBAgQIECBAgMA6gbw8GIOsdWk8T4AAAQIECBAgsIXACyltDLAubZFPUgIECFQv4E+wq38JACBwrEAeYMXh/SIkPBIgQKBFwAbWFiC3CVQu0Px/hB9VbiF8AgQIbCzgE+nGVBISqFbALFa1XS9wAgROKmAG66Ry8hGoR+C9RqgfN65dEiBAgMAaATNYa2A8TYDATQJmsW7i8AMBAgSOFzCDdbyPuwQI/C/QnMX6FAoBAgQIECBAgEA/AoepmPjahn5KVAoBAgQKFTCDVWjHCovAAAJvNcrcbVy7JECAAAECBAgQ6CBwLeU1i9UBUFYCBAgQIECAwCqBGGBdX3XTcwQIECBAgAABAtsLXE5ZYpD19vbZ5SBAgAABAgQIEFglEAOsvPHdQYAAAQK3CNjkfguIHwkQ2EjgzaNU+bv0vtsoh0QECBAgQIAAAQKtAnspRcxktSaWgAABAgQIECBAYDOBGGD9uVlyqQgQIECAAAECBNoEvk0JYpD1Rlti9wkQIECAAAECBDYTiG94P9gsuVQECBAgQIAAAQJtAq+mBDGL9XlbYvcJECBAgAABAgQ2E7iSksUga7McUhEgQIAAAQIECLQKxADr19aUEhAgQKBwgZ3C4xMeAQLjCTyVqnownXel82o6v0ingwABAgQIECBAoKPAfsqfZ7Lyo4MAAQIECBAgQKAHgedSGbFUaAarB1BFECBAgAABAgSywMV0xiDreSQECBAgQIAAAQL9CORvds+DrL/7KU4pBAgQIECAAAECTyeCmMWyVOj1QIAAAQIECBDoSaC5VPhsT2UqhgABAgQIECBQvUAsFf5VvQQAAgQIECBAgEBPAudTOfl/FOblwm96KlMxBAgQIECAAIHqBV5JArEf60L1GgAIECBAgAABAj0JvJvKiUHWaz2VqRgCBAgQIECAQPUCXyWBPMi6kc5Hq9cAQIAAAQIECBDoSeC3VE4eZH3ZU3mKIUCAAAECBAhUL/BkEoilwrPVawAgQKBYgZ1iIxMYAQJzFNhNjbovnefSeWc6P0ingwABAgQIECBAoKPAwym/WayOiLITIDBvATNY8+4frSNQokDeh2UWq8SeFRMBAgQIECAwqcBDqfaYxXpk0paonAABAgMImMEaAFWRBAi0CuRZrLvT+UQ68/Vn6XQQIECAAAECBAh0FDiT8r+ezvzoIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAIFWgf8ARO/RgV4ct/oAAAAASUVORK5CYII=','4 Patriots','4patriots@example.com','','4 Patriots',NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-16 10:06:36','2025-11-16 15:06:36'),
(5,18,'accepted','data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAlgAAADICAYAAAA0n5+2AAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAACWKADAAQAAAABAAAAyAAAAAAzUgSDAAAUaklEQVR4Ae3dS+wsWVkA8GEuPsAXyCsYCIougIUbgQ1gAhtXxIUxBl2oG92Iia7UGJ2gURMXPBbyCCYmBoMxoLLwkaAho0GDBomGiaAywZEMMzhcmBFh5s4A32fuuXzW7a5/dVdVV3X1r5KTqq46dR6/80/6y6nT9b/jDhsBAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIELgEgevRya9E+vIldFYfCRAgQIAAAQJzC2RQlcFVN90zd8XKJ0CAAAEC5yjwpHNstDafVCCDqr7N31CfjmsECBAgcJECd15kr3V6iMAnI1MNrvI4gykB1RA9eQgQIECAAAECOwTq48Bd667a9S/uuNcpAgQIECBAgACBjkALnnL/hc619rHl2RV8tTz2BAgQIECAAAECIdACp9w/0SNSF773ZHOJAAECBAhcnoA1WJc35n09rrNRGWBd68ns0WAPjksECBAgQIAAgRSoM1I10OrTabNdQ/P3leUaAQIECBDYjIAZrM0M5aiO5KPA+uvAQ/8u6r2jGuJmAgQIECCwBYFDv0i30Gd9+P8CD8bH+ndwSLCUM1g2AgQIECBAoCNwyJdp51YfNyJQg6RD/x7y0WC7p+03wqIbBAgQIEDgeIE6c3F8Ke48V4G6dqrvF4Pn2j/tJkCAAAECiwgIsBZhX02lbdYpZ7GevJpWaQgBAgQIEDhzAQHWmQ/giObX2atj/w7q48URTXErAQIECBDYlsCxX6zbUri83nwiulxnr44VuH7sje4jQIAAAQIECGxNIGeeWhrTt9+ZqJwxbXAvAQIECBAgQGBxgVzM3oKrKRa2t7LeuXjPNIAAAQIECBAgsJBAC4hyP8XWyntoisKUQYAAAQIECBA4N4Fc2N4Cor+fqPGtvClmwyZqkmIIECBAgAABAqcTaMFQ/QXh2NrnKHNsm9xPgAABAgQWFfArwkX5T1p5BkJtM+5Nwp4AAQIECMwg4It2BtQVFvloaVMNtMpphwQIECBAgMBUAu1dSFOVp5x1CtSgauoxn7PsdWpqFQECBAgQuELADNYVQBu7POXaq43R6A4BAgQIEJhOQIA1neVaS6pB1bW1NlK7CBAgQIDAlgQEWFsazd19aY8E66O83TmdJUCAAAECBCYREGBNwrjaQm6Ult1Xjh0SIECAAAECMwq02Y0Zq1D0ggJ11mqusT5FHQsSqpoAAQIECBwuYAbrcLNzvKMGQefYfm0mQIAAAQJnJSDAOqvhOqixdXG7cT6ITmYCBAgQIDBOwBfvOL813z3XI8E191nbCBAgQIDAKgQEWKsYhskb8e5SYp3JKqcdEiBAgAABAnMJmOWYS3bZcuuaq7nH+JR1LauqdgIECBAgMFDADNZAqDPNVoOfM+2CZhMgQIAAgfMTEGCd35hd1eInSobfLMcOCRAgQIAAgRMJzP346ETdUE0RqLNWpxjfU9dXuuqQAAECBAisU8AM1jrHZYpW1cBnivKUQYAAAQIECAwUEGANhDqTbPUXg8b2TAZNMwkQIEBgewK+hLc1pqd4JLgtMb0hQIAAAQIzCAiwZkBdqMgHS72PlmOHBAgQIECAAAECRwrk48Fcd3XqtVetzvp48sguuI0AAQIECGxDwAzWNsYxe9EeD546wNqOoJ4QIECAAIGJBARYE0EuXEx995UxXXgwVE+AAAECBHwZb+NvYA3juLaZs/+Joc02ednqNv7G9YIAAQIECJxcYMl1UK3uz5+817dXeCNOtfbk/i23Z3GGAAECBAgQIHC1QD4ebEHF1bmnz9Hqvnv6ogeVeH/kam2oe8HVID6ZCBAgQIAAgV0CNajYdX3Oc8+Owlv9c9azq+zHSt2tDW3/jl03OEeAAAECBAgQGCrQgoolXpPwwWhkq39oe8fk+/VSX6u3uxdcjRF2LwECBAgQIHDHP4RBCzAeWMDj4VL/nNV/qtTT+pv7+u6v/Py+ORuhbAIECBAgQOAyBGqAsUSP517/te8x4Jdudrb2/5ElANRJgAABAgQIbE+gzeYs8XgwNWuAM5Vuvlah9au7/3ippNa9VP9LcxwSIECAAAECWxFoAUh90egp+1aDnLH17vs1YNbxuk7hX4zPre+5txEgQIAAAQIEJhGY+/HckEaODbDeEJXUftSgqT0G7LbjnjhR83Wv+0yAAAECBAgQOFpgDUHGsW1ob1mv97fjj/WI5Dqrli/3NgIECBAgQIDApAIt0Fhy/VFrw5Bg52+i9zV/Pd43W1XBujNdb6sXHRMgQIAAAQIExgrUfwnzgrGFjbi/BUn7grynRNm1rS1/2793YN0tf9sPvE02AgQIECBAgMBwgbFrn4bX1J+zBTzdAOu/4rZ2rbu/3l/kbVdrX7MsGwECBAgQIEBgFoEWtHQDm1kq6ym0tSNnovoWrOfjvR/rKWffpVZ+2+/L5zwBAgQIECBAYJTAj8bdLeAYsnZpVGU9N9e3uLf2dPf1vVU9Rd126Xlxppa1dCB5WwOdIECAAAECBLYlUB+ZLdWzsQvW+9p9d1yswdXjfZldI0CAAAECBAhMIVCDjynKG1pG34L1DPqGLljvq+/v4mLt30N9mV0jQIAAAQIECEwl0AKQUzw2e2U0+nORWp279lO1oxtc/eVUYMohQIAAAQIECPQJ1HdB9eUbc+3euLnW0w2q2oL1dn6KAKsbXE0xGzbGwL0ECBAgQIDABQm0oCb3U20fiIJynVMte9dxd8F6y/P5kQ0RXI0EdDsBAgQIECAwTqAFNWNmjd4YTej+s+RWbt3nv7N5/Z7m/nmcb3n3ZBl0WnA1iEkmAgQIECBAYC6BfEFnC2r+4oBKXhV5672tjO7+scj3noHl1keIA2+5LZvg6jYSJwgQIECAAIFTC+SsVQuKrqr73shQ87f76j6DpH+5qqA912vZe7L0nhZc9fK4SIAAAQIECJxKoAZH3To/ECeGrKN6IPJ9Y/fmIz6PCbAEV0eAu4UAAQIECBCYR6AFWDnzNMU6qjGtbG3J/SGb4OoQLXkJECBAgACBWQXqjFENbrrHh6yjGtPgVm+2a+gmuBoqJR8BAgQIECAwqcDzo7R/jDTkV34Z5IxZRzWm4S3AypeQDtlyrVe7J/feczVETR4CBAgQIEDgYIEfjzv+I9KNSDX4uOp4qnVUBzf45g35dvfWxhcNKOSRkj/vE1wNQJOFAAECBAgQuFrgTZElA6MhC9Fb8JJ5/zPSz0Vq53LGauktXyza2nNVW7K9LW/u//iqG1wnQIAAAQIECHQFfjFOfDhSztoMXTeVgcejkfIx2ssjdbeH40QLUrrXlvhc+9VXf82X7X9aX2bXCBAgQIAAgcsWyCDqnyLlTM4hM1IZZGTQkW9If3+koVsNVIbeM2e+Fuzlft9W29yXb9/9zhMgQIAAAQIbE/iu6E++BiEXmz8U6dAgqgUgeV/e/85IY7ZW3loClRo87epXvb6WNu9qp3MECBAgQIDATALPjXIPXWReA548zvvvj/R7kV4TKcuccmv1ZeCyhq21J/fdrV7bdb2b32cCBAgQILBJgSdtslfDO3VXZP3V4dkPztkCjlzsnTNa+Z6qfAXD/0bKtVXXI/13pE9Hui/SvZE+HumjkdqC9hao5P7rI2U5S26tPdmG+vdTz+fxnUs2Ut0ECBAgQGBJgfoFuWQ7lqr7GVHxJyJ9a6QMCjJ4yQXqfdu1uJiL0r8hUgY8T46U59LyFJ752DHXf30o0gcj/W2kXBN2qq0GUtnfH4n07lK54KpgOCRAgACByxQ4RUBwibL5mPDFkV4Y6TsjfUek50T69kjfFumbIz01UgZpXxcpA7QWpMXhwVsGNV+KlMFXvtrhY5Ey6Joj+KoB1meijmdFalsGqNkfGwECBAgQuGgBAdY6hz+DrZdE+ucdzftInMuZt1yTlQHbN0Xqexw3dfBVA6yo+taWwd0zb31yQIAAAQIELlhAgLXuwd8VzOwas++Obnx/pO+LlIHZCyLlzNIhwdd9kf9fI10187WrTe+L+34wko0AAQIECBAIgV1f1mDWI7ArmDl0zDL4elWkl0aaIvh6S+HJ9vXNnpWsDgkQIECAwOUIHPplfTky6+jpFAFWX0+ODb6yzGzbpyINnfnKe2wECBAgQOAiBARY6x3mfE3DrtmhU43ZvuDrW64gy8CrLbjPV078bqQ/ipTvC7MRIECAAIGLEDjVl/VFYE7cyVzEvmt8dp2buOori9sXfO1b85W/Lnx/pL+6uc+F+jYCBAgQILBZgTV8WW8Wd2THdj0ezCLXPmY1+MpF9/nahtzXLR8rtmArA68H6kXHBAgQIECAAIG5BDLAypQzWe14X9A1VxumKvfZUdDrIuXjwk9Gqv3J4w9F+o1Ir4lkI0CAAAECBAjMJtCCkCeihnac+y1s3xud+PlIfxYp34pf+/eF+PynkX42Uv7q0UaAAAECBAgQmETg4SilBR1ZYDveSoBVka7Fhx+I9NuRPhyp9jWP/z3S2yP9cKSnR7IRIECAAAECBI4SqI8Fs4AadBxV4Bnd9Lxo609E+v1I90eqfc/j/Pc/d0V6ZSQbAQIECBAgQGCwwCUHWF2kl8WJX4iUi+G7wdb1OJevgPjpSN8TyUaAAAECBAgQ2CtQA4nM1P2898aNX3hq9O+1kd4c6aORqkse3xMp3zSf/7YnXxlhI0CAAAECBAjcEmiBQ85k5dY+5972NYEXxuFPRfrDSPnPpqtTHv91pF+K9PJINgIECBAgQOCCBXJBdwsUfuumQ/uce9t+gVfEpV+JdHekapbHn470rkg/Gen5kWwECBAgQIDABQl0119l12uwcEEUo7r6tLj7hyK9NdK/RaqGeZxvk/+1SM+NZCNAgAABAgQ2LiDAmmeAXxTF/kykP4n0SKQWcN0VxzYCBAgQIEBg4wLtiz/3bdt1rl2zP07g1XHbL0d6xnG3u4sAAQIECOwXWPv/tdvf8u1eaYFV7u+82c12Lj8as5sodgQIECBAYK0C7Qt8re275Hbl29xtBAgQIECAAAECIwXq/x2sRXlEWDUcEyBAgACBlQuYwVrXAHn8t67x0BoCBAgQIHCUgADrKDY3ESBAgAABAgT2Cwiw9tsscaXNYNVF7Uu0Q50ECBAgQIDACAEB1gg8txIgQIAAAQIEdgkIsHapLH9u3wzWvvPLt1gLCBAgQIAAgVsCAqxbFKs6+INVtUZjCBAgQIAAAQJnKnAj2t1ex9DtQjufr3GwESBAgAABAisXMIO1ngEaMhaPr6e5WkKAAAECBAgQWL/Arn/ynK1+caQ2g5XHNgIECBAgQIAAgYECLYjKfd0eiw/tWj3vmAABAgQIEFipwJDHUitt+mab1Q2wrm22pzpGgAABAgQ2KiDAWv/AtpePrr+lWkiAAAECBAj8n4AAa31/CN0ZrPW1UIsIECBAgACBXgEBVi/PIhcfXKRWlRIgQIAAAQIENiaQQdW+heztfP7K0EaAAAECBAgQIDBQIF8g2gKp7i3tvACrK+MzAQIECBBYqYBHhOsYmH0L2eub243VOsZKKwgQIECAwJUCvrSvJFo0g/FZlF/lBAgQIEDgOAFf4Me5TX3XvhmsVk8+JrQRIECAAAECZyIgwFrXQNVA6rOlaZ8pxw4JECBAgAABAgQGCOxayL7vfxMOKE4WAgQIECBAYEkBM1hL6t9e941yqj02rLNa5bJDAgQIECBAgACBfQLvjQttBqvmaefqLwnrdccECBAgQIAAAQJ7BB6P8y2Yalk8HmwS9gQIECBA4AwFPCJcftB2jUF7PLh867SAAAECBAgQOFhg15f7wYW4YTYBb2+fjVbBBAgQIEBgPgEzJfPZDi25LmLP8cigqo1L2w8tSz4CBAgQIEBgBQJmsFYwCJ0mCKo6ID4SIECAAIFzExBgrXfEPB5c79hoGQECBAgQ6BUwW9LLc5KL9RFhHrcxafuTNEIlBAgQIECAwHQCZrCms5yiJEHVFIrKIECAAAECCwsIsBYegD3Vezy4B8ZpAgQIECBwDgJmTJYfpfqIsLXGuDQJewIECBAgcIYCZrDOcNA0mQABAgQIEFi3gABrfePj8eD6xkSLCBAgQIDAQQIeRR3ENUvm7iNCYzILs0IJECBAgMDpBMxgnc56SE0fGZJJHgIECBAgQIAAgX6BnMHK9Nn+bK4SIECAAAECBAgMFcjg6qGhmeUjQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIELlTgqzVxQEAoNxcTAAAAAElFTkSuQmCC','4 Patriots','4patriots@example.com','','4 Patriots',NULL,'::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15','2025-11-16 14:22:19','2025-11-16 19:22:19');
/*!40000 ALTER TABLE `quote_signatures` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `quote_templates`
--

DROP TABLE IF EXISTS `quote_templates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `quote_templates` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL,
  `category` varchar(50) DEFAULT NULL,
  `terms_text` text DEFAULT NULL,
  `notes_text` text DEFAULT NULL,
  `is_default` tinyint(1) DEFAULT 0,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE 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 `quote_templates`
--

LOCK TABLES `quote_templates` WRITE;
/*!40000 ALTER TABLE `quote_templates` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `quote_templates` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `quotes`
--

DROP TABLE IF EXISTS `quotes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `quotes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `public_token` varchar(64) DEFAULT NULL,
  `token_expires_at` datetime DEFAULT NULL,
  `quote_number` varchar(50) NOT NULL,
  `customer_id` int(10) unsigned NOT NULL,
  `quote_date` date NOT NULL,
  `expiry_date` date DEFAULT NULL,
  `status` enum('draft','sent','accepted','rejected','expired','converted') DEFAULT 'draft',
  `customer_response` enum('pending','accepted','declined') DEFAULT 'pending',
  `response_at` datetime DEFAULT NULL,
  `converted_to_sales_order_id` int(11) DEFAULT NULL,
  `auto_convert_on_accept` tinyint(1) DEFAULT 1,
  `quote_type` enum('standard','battery','motor','drone','electronics') DEFAULT 'standard',
  `subtotal` decimal(15,2) DEFAULT 0.00,
  `tax_amount` decimal(15,2) DEFAULT 0.00,
  `discount_amount` decimal(15,2) DEFAULT 0.00,
  `total_amount` decimal(15,2) DEFAULT 0.00,
  `notes` text DEFAULT NULL,
  `terms_id` int(11) DEFAULT NULL,
  `terms` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  `last_notified_at` datetime DEFAULT NULL COMMENT 'Last expiry reminder sent',
  `notification_level` varchar(20) DEFAULT NULL COMMENT 'Current notification level: 3day, 1day, expired',
  PRIMARY KEY (`id`),
  UNIQUE KEY `quote_number` (`quote_number`),
  UNIQUE KEY `public_token` (`public_token`),
  KEY `customer_id` (`customer_id`),
  KEY `created_by` (`created_by`),
  KEY `idx_terms_id` (`terms_id`),
  KEY `idx_quote_type` (`quote_type`),
  KEY `idx_quotes_expiry_notification` (`expiry_date`,`status`,`last_notified_at`),
  KEY `idx_public_token` (`public_token`),
  KEY `idx_customer_response` (`customer_response`),
  KEY `idx_deleted_at` (`deleted_at`),
  KEY `idx_search_status` (`status`,`quote_date`),
  FULLTEXT KEY `ft_quote_search` (`quote_number`,`notes`),
  CONSTRAINT `fk_quotes_terms` FOREIGN KEY (`terms_id`) REFERENCES `terms_conditions` (`id`) ON DELETE SET NULL,
  CONSTRAINT `quotes_ibfk_1` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`),
  CONSTRAINT `quotes_ibfk_2` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `quotes`
--

LOCK TABLES `quotes` WRITE;
/*!40000 ALTER TABLE `quotes` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `quotes` VALUES
(15,'2743927b7ca267a61d0a2a01b8ba44c52edb24bf0a71bb67731e8470605e7063','2025-12-16 10:12:46','TEST-Q-001',46,'2025-11-16','2025-12-16','sent',NULL,NULL,NULL,1,'standard',5000.00,500.00,0.00,5500.00,'Enterprise software deal',NULL,'Net 30 days',1,'2025-11-16 14:22:51','2025-11-27 20:54:47',NULL,NULL,NULL),
(16,'test1111test2222test3333test4444test5555test6666test7777test8888','2025-12-16 09:22:51','TEST-Q-002',46,'2025-11-16','2025-12-16','converted','accepted','2025-11-16 10:01:01',18,1,'standard',2500.00,250.00,0.00,2750.00,'Service package',NULL,'Net 30 days',1,'2025-11-16 14:22:51','2025-11-16 15:01:01',NULL,NULL,NULL),
(17,'1d9adecdf62dd638d7954ffec069ac7372be3b3881b367bb1a48e164f5a86f9f','2025-12-16 10:06:16','TEST-Q-003',46,'2025-11-16','2025-12-31','converted','accepted','2025-11-16 10:06:36',19,1,'standard',15000.00,1500.00,0.00,16500.00,'Large infrastructure deal',NULL,'Net 60 days',1,'2025-11-16 14:22:51','2025-11-16 15:06:36',NULL,NULL,NULL),
(18,'411158e1ae62c6d87f81b27c5cde2c68400ae829537c0d8ffad00d5932ae59d7','2025-12-16 14:07:22','TEST-Q-004',46,'2025-11-16','2025-11-23','converted','accepted','2025-11-16 14:22:19',20,1,'standard',750.00,75.00,0.00,825.00,'Quick deal',NULL,'Net 15 days',1,'2025-11-16 14:22:51','2025-11-16 19:22:19',NULL,NULL,NULL),
(19,'cb0219a5294a39400d7ce22cb388875a0485fb02d334c3c035773b1be9ba7432','2025-12-16 09:26:49','TEST-Q-005',46,'2025-11-16','2025-12-16','converted','accepted','2025-11-16 09:28:22',17,1,'standard',8500.00,850.00,0.00,9350.00,'Website project',NULL,'Installments',1,'2025-11-16 14:22:51','2025-11-16 14:28:22',NULL,NULL,NULL);
/*!40000 ALTER TABLE `quotes` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `rate_limit_whitelist`
--

DROP TABLE IF EXISTS `rate_limit_whitelist`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `rate_limit_whitelist` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `ip_address` varchar(45) NOT NULL COMMENT 'IPv4 or IPv6 address',
  `description` varchar(255) DEFAULT NULL COMMENT 'Description of why this IP is whitelisted',
  `is_active` tinyint(1) NOT NULL DEFAULT 1 COMMENT 'Whether whitelist entry is active',
  `created_at` datetime DEFAULT current_timestamp(),
  `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_ip` (`ip_address`),
  KEY `idx_is_active` (`is_active`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='IP addresses that bypass rate limiting';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `rate_limit_whitelist`
--

LOCK TABLES `rate_limit_whitelist` WRITE;
/*!40000 ALTER TABLE `rate_limit_whitelist` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `rate_limit_whitelist` VALUES
(1,'127.0.0.1','Localhost IPv4',1,'2025-11-26 07:40:10','2025-11-26 07:40:10'),
(2,'::1','Localhost IPv6',1,'2025-11-26 07:40:10','2025-11-26 07:40:10');
/*!40000 ALTER TABLE `rate_limit_whitelist` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `recurring_executions`
--

DROP TABLE IF EXISTS `recurring_executions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `recurring_executions` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `template_id` int(11) NOT NULL,
  `executed_at` timestamp NULL DEFAULT current_timestamp(),
  `scheduled_date` date NOT NULL COMMENT 'The date it was supposed to run',
  `actual_date` date NOT NULL COMMENT 'The date it actually ran',
  `status` enum('success','failed','skipped') NOT NULL,
  `error_message` text DEFAULT NULL,
  `generated_invoice_id` int(10) unsigned DEFAULT NULL,
  `generated_bill_id` int(10) unsigned DEFAULT NULL,
  `generated_journal_entry_id` int(10) unsigned DEFAULT NULL,
  `executed_by` int(10) unsigned DEFAULT NULL COMMENT 'NULL if cron, user_id if manual',
  `execution_method` enum('automatic','manual') DEFAULT 'automatic',
  PRIMARY KEY (`id`),
  KEY `idx_template` (`template_id`),
  KEY `idx_executed_at` (`executed_at`),
  KEY `idx_status` (`status`),
  CONSTRAINT `recurring_executions_ibfk_1` FOREIGN KEY (`template_id`) REFERENCES `recurring_templates` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `recurring_executions`
--

LOCK TABLES `recurring_executions` WRITE;
/*!40000 ALTER TABLE `recurring_executions` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `recurring_executions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `recurring_template_items`
--

DROP TABLE IF EXISTS `recurring_template_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `recurring_template_items` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `template_id` int(11) NOT NULL,
  `product_id` int(10) unsigned DEFAULT NULL,
  `description` text NOT NULL,
  `quantity` decimal(10,2) NOT NULL DEFAULT 1.00,
  `unit_price` decimal(15,2) NOT NULL,
  `tax_rate` decimal(5,2) DEFAULT 0.00,
  `amount` decimal(15,2) NOT NULL,
  `account_id` int(10) unsigned DEFAULT NULL,
  `debit_amount` decimal(15,2) DEFAULT 0.00,
  `credit_amount` decimal(15,2) DEFAULT 0.00,
  `line_order` int(11) DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `idx_template` (`template_id`),
  KEY `product_id` (`product_id`),
  KEY `account_id` (`account_id`),
  CONSTRAINT `recurring_template_items_ibfk_1` FOREIGN KEY (`template_id`) REFERENCES `recurring_templates` (`id`) ON DELETE CASCADE,
  CONSTRAINT `recurring_template_items_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE SET NULL,
  CONSTRAINT `recurring_template_items_ibfk_3` FOREIGN KEY (`account_id`) REFERENCES `chart_of_accounts` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `recurring_template_items`
--

LOCK TABLES `recurring_template_items` WRITE;
/*!40000 ALTER TABLE `recurring_template_items` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `recurring_template_items` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `recurring_templates`
--

DROP TABLE IF EXISTS `recurring_templates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `recurring_templates` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `template_name` varchar(255) NOT NULL,
  `template_type` enum('invoice','bill','journal_entry') NOT NULL,
  `description` text DEFAULT NULL,
  `frequency` enum('daily','weekly','biweekly','monthly','quarterly','semi_annually','annually') NOT NULL,
  `interval_count` int(11) DEFAULT 1 COMMENT 'Every X days/weeks/months',
  `day_of_week` tinyint(4) DEFAULT NULL COMMENT 'For weekly: 0=Sun, 6=Sat',
  `day_of_month` tinyint(4) DEFAULT NULL COMMENT 'For monthly: 1-31, -1=last day',
  `month_of_year` tinyint(4) DEFAULT NULL COMMENT 'For annually: 1-12',
  `start_date` date NOT NULL,
  `end_date` date DEFAULT NULL COMMENT 'NULL = no end date',
  `next_run_date` date NOT NULL,
  `last_run_date` date DEFAULT NULL,
  `is_active` tinyint(1) DEFAULT 1,
  `auto_post` tinyint(1) DEFAULT 0 COMMENT 'Automatically post generated transactions',
  `send_email` tinyint(1) DEFAULT 0 COMMENT 'Send email notification when generated',
  `template_data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL COMMENT 'Stores customer_id, items, amounts, etc.' CHECK (json_valid(`template_data`)),
  `times_executed` int(11) DEFAULT 0,
  `max_executions` int(11) DEFAULT NULL COMMENT 'NULL = unlimited',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `created_by` int(10) unsigned DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `updated_by` int(10) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_type` (`template_type`),
  KEY `idx_next_run` (`next_run_date`,`is_active`),
  KEY `idx_active` (`is_active`),
  KEY `created_by` (`created_by`),
  KEY `updated_by` (`updated_by`),
  CONSTRAINT `recurring_templates_ibfk_1` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `recurring_templates_ibfk_2` FOREIGN KEY (`updated_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `recurring_templates`
--

LOCK TABLES `recurring_templates` WRITE;
/*!40000 ALTER TABLE `recurring_templates` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `recurring_templates` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `report_schedules`
--

DROP TABLE IF EXISTS `report_schedules`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `report_schedules` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `report_id` int(10) unsigned NOT NULL,
  `schedule_type` enum('daily','weekly','monthly') NOT NULL,
  `schedule_time` time NOT NULL,
  `schedule_day` varchar(20) DEFAULT NULL COMMENT 'Day of week or month',
  `recipients` text DEFAULT NULL COMMENT 'Email addresses, comma separated',
  `last_sent_at` timestamp NULL DEFAULT NULL,
  `is_active` tinyint(1) DEFAULT 1,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_report` (`report_id`),
  CONSTRAINT `report_schedules_ibfk_1` FOREIGN KEY (`report_id`) REFERENCES `custom_reports` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `report_schedules`
--

LOCK TABLES `report_schedules` WRITE;
/*!40000 ALTER TABLE `report_schedules` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `report_schedules` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `resource_capacity`
--

DROP TABLE IF EXISTS `resource_capacity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `resource_capacity` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `capacity_date` date NOT NULL,
  `available_hours` decimal(5,2) DEFAULT 8.00 COMMENT 'Available hours for this date',
  `notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_user_date` (`user_id`,`capacity_date`),
  KEY `idx_capacity_date` (`capacity_date`),
  KEY `idx_user_date` (`user_id`,`capacity_date`),
  CONSTRAINT `resource_capacity_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `resource_capacity`
--

LOCK TABLES `resource_capacity` WRITE;
/*!40000 ALTER TABLE `resource_capacity` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `resource_capacity` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `resource_weekly_capacity`
--

DROP TABLE IF EXISTS `resource_weekly_capacity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `resource_weekly_capacity` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `day_of_week` tinyint(4) NOT NULL COMMENT '0=Sunday, 6=Saturday',
  `available_hours` decimal(5,2) DEFAULT 8.00,
  `is_working_day` tinyint(1) DEFAULT 1,
  `effective_from` date DEFAULT NULL COMMENT 'When this schedule starts',
  `effective_to` date DEFAULT NULL COMMENT 'When this schedule ends',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_user_schedule` (`user_id`,`effective_from`,`effective_to`),
  CONSTRAINT `resource_weekly_capacity_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=127 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `resource_weekly_capacity`
--

LOCK TABLES `resource_weekly_capacity` WRITE;
/*!40000 ALTER TABLE `resource_weekly_capacity` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `resource_weekly_capacity` VALUES
(1,1,0,0.00,0,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(2,1,1,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(3,1,2,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(4,1,3,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(5,1,4,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(6,1,5,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(7,1,6,0.00,0,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(8,2,0,0.00,0,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(9,2,1,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(10,2,2,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(11,2,3,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(12,2,4,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(13,2,5,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(14,2,6,0.00,0,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(15,3,0,0.00,0,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(16,3,1,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(17,3,2,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(18,3,3,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(19,3,4,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(20,3,5,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(21,3,6,0.00,0,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(22,4,0,0.00,0,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(23,4,1,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(24,4,2,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(25,4,3,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(26,4,4,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(27,4,5,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(28,4,6,0.00,0,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(29,5,0,0.00,0,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(30,5,1,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(31,5,2,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(32,5,3,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(33,5,4,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(34,5,5,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(35,5,6,0.00,0,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(36,6,0,0.00,0,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(37,6,1,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(38,6,2,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(39,6,3,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(40,6,4,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(41,6,5,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(42,6,6,0.00,0,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(43,7,0,0.00,0,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(44,7,1,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(45,7,2,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(46,7,3,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(47,7,4,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(48,7,5,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(49,7,6,0.00,0,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(50,8,0,0.00,0,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(51,8,1,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(52,8,2,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(53,8,3,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(54,8,4,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(55,8,5,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(56,8,6,0.00,0,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(57,21,0,0.00,0,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(58,21,1,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(59,21,2,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(60,21,3,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(61,21,4,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(62,21,5,8.00,1,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(63,21,6,0.00,0,NULL,NULL,'2025-11-16 11:44:34','2025-11-16 11:44:34'),
(64,1,0,0.00,0,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(65,1,1,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(66,1,2,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(67,1,3,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(68,1,4,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(69,1,5,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(70,1,6,0.00,0,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(71,2,0,0.00,0,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(72,2,1,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(73,2,2,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(74,2,3,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(75,2,4,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(76,2,5,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(77,2,6,0.00,0,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(78,3,0,0.00,0,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(79,3,1,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(80,3,2,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(81,3,3,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(82,3,4,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(83,3,5,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(84,3,6,0.00,0,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(85,4,0,0.00,0,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(86,4,1,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(87,4,2,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(88,4,3,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(89,4,4,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(90,4,5,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(91,4,6,0.00,0,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(92,5,0,0.00,0,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(93,5,1,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(94,5,2,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(95,5,3,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(96,5,4,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(97,5,5,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(98,5,6,0.00,0,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(99,6,0,0.00,0,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(100,6,1,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(101,6,2,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(102,6,3,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(103,6,4,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(104,6,5,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(105,6,6,0.00,0,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(106,7,0,0.00,0,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(107,7,1,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(108,7,2,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(109,7,3,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(110,7,4,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(111,7,5,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(112,7,6,0.00,0,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(113,8,0,0.00,0,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(114,8,1,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(115,8,2,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(116,8,3,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(117,8,4,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(118,8,5,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(119,8,6,0.00,0,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(120,21,0,0.00,0,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(121,21,1,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(122,21,2,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(123,21,3,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(124,21,4,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(125,21,5,8.00,1,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54'),
(126,21,6,0.00,0,NULL,NULL,'2025-11-16 11:46:54','2025-11-16 11:46:54');
/*!40000 ALTER TABLE `resource_weekly_capacity` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `return_items`
--

DROP TABLE IF EXISTS `return_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `return_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `return_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned NOT NULL,
  `quantity` decimal(10,2) NOT NULL,
  `unit_price` decimal(10,2) DEFAULT NULL,
  `reason` varchar(255) DEFAULT NULL,
  `serial_number` varchar(100) DEFAULT NULL,
  `condition_notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `return_id` (`return_id`),
  KEY `product_id` (`product_id`),
  CONSTRAINT `return_items_ibfk_1` FOREIGN KEY (`return_id`) REFERENCES `returns` (`id`) ON DELETE CASCADE,
  CONSTRAINT `return_items_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `return_items`
--

LOCK TABLES `return_items` WRITE;
/*!40000 ALTER TABLE `return_items` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `return_items` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `returns`
--

DROP TABLE IF EXISTS `returns`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `returns` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `rma_number` varchar(50) NOT NULL,
  `customer_id` int(10) unsigned NOT NULL,
  `sales_order_id` int(10) unsigned DEFAULT NULL,
  `invoice_id` int(10) unsigned DEFAULT NULL,
  `return_date` date NOT NULL,
  `reason` varchar(255) DEFAULT NULL,
  `return_type` enum('warranty','defective','wrong_item','customer_error','other') NOT NULL,
  `condition_received` enum('new','opened','used','damaged') DEFAULT 'used',
  `status` enum('pending','approved','rejected','received','refunded','replaced','cancelled') DEFAULT 'pending',
  `refund_amount` decimal(10,2) DEFAULT 0.00,
  `refund_method` enum('original_payment','store_credit','replacement') DEFAULT 'original_payment',
  `restocking_fee` decimal(10,2) DEFAULT 0.00,
  `notes` text DEFAULT NULL,
  `customer_notes` text DEFAULT NULL,
  `resolution_notes` text DEFAULT NULL,
  `approved_by` int(10) unsigned DEFAULT NULL,
  `approved_at` timestamp NULL DEFAULT NULL,
  `received_by` int(10) unsigned DEFAULT NULL,
  `received_at` timestamp NULL DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `rma_number` (`rma_number`),
  KEY `sales_order_id` (`sales_order_id`),
  KEY `invoice_id` (`invoice_id`),
  KEY `approved_by` (`approved_by`),
  KEY `received_by` (`received_by`),
  KEY `created_by` (`created_by`),
  KEY `idx_status` (`status`),
  KEY `idx_return_date` (`return_date`),
  KEY `idx_customer` (`customer_id`),
  KEY `idx_returns_deleted_at` (`deleted_at`),
  CONSTRAINT `returns_ibfk_1` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE,
  CONSTRAINT `returns_ibfk_2` FOREIGN KEY (`sales_order_id`) REFERENCES `sales_orders` (`id`) ON DELETE SET NULL,
  CONSTRAINT `returns_ibfk_3` FOREIGN KEY (`invoice_id`) REFERENCES `invoices` (`id`) ON DELETE SET NULL,
  CONSTRAINT `returns_ibfk_4` FOREIGN KEY (`approved_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `returns_ibfk_5` FOREIGN KEY (`received_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `returns_ibfk_6` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `returns`
--

LOCK TABLES `returns` WRITE;
/*!40000 ALTER TABLE `returns` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `returns` VALUES
(1,'RMA-20250001',2,NULL,NULL,'2025-10-30','','warranty','used','pending',0.00,'original_payment',0.00,'','',NULL,NULL,NULL,NULL,NULL,1,'2025-10-31 00:35:12','2025-10-31 00:35:12',NULL);
/*!40000 ALTER TABLE `returns` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `rfq_items`
--

DROP TABLE IF EXISTS `rfq_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `rfq_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `rfq_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned DEFAULT NULL,
  `description` text NOT NULL,
  `quantity` int(11) NOT NULL,
  `specifications` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `rfq_id` (`rfq_id`),
  KEY `product_id` (`product_id`),
  CONSTRAINT `rfq_items_ibfk_1` FOREIGN KEY (`rfq_id`) REFERENCES `rfqs` (`id`) ON DELETE CASCADE,
  CONSTRAINT `rfq_items_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `rfq_items`
--

LOCK TABLES `rfq_items` WRITE;
/*!40000 ALTER TABLE `rfq_items` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `rfq_items` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `rfq_quotes`
--

DROP TABLE IF EXISTS `rfq_quotes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `rfq_quotes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `rfq_supplier_id` int(10) unsigned NOT NULL,
  `rfq_item_id` int(10) unsigned NOT NULL,
  `unit_price` decimal(15,2) NOT NULL,
  `lead_time_days` int(11) DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `rfq_supplier_id` (`rfq_supplier_id`),
  KEY `rfq_item_id` (`rfq_item_id`),
  CONSTRAINT `rfq_quotes_ibfk_1` FOREIGN KEY (`rfq_supplier_id`) REFERENCES `rfq_suppliers` (`id`) ON DELETE CASCADE,
  CONSTRAINT `rfq_quotes_ibfk_2` FOREIGN KEY (`rfq_item_id`) REFERENCES `rfq_items` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `rfq_quotes`
--

LOCK TABLES `rfq_quotes` WRITE;
/*!40000 ALTER TABLE `rfq_quotes` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `rfq_quotes` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `rfq_suppliers`
--

DROP TABLE IF EXISTS `rfq_suppliers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `rfq_suppliers` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `rfq_id` int(10) unsigned NOT NULL,
  `supplier_id` int(10) unsigned NOT NULL,
  `sent_date` date DEFAULT NULL,
  `response_date` date DEFAULT NULL,
  `status` enum('pending','responded','declined','selected') DEFAULT 'pending',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `rfq_id` (`rfq_id`),
  KEY `supplier_id` (`supplier_id`),
  CONSTRAINT `rfq_suppliers_ibfk_1` FOREIGN KEY (`rfq_id`) REFERENCES `rfqs` (`id`) ON DELETE CASCADE,
  CONSTRAINT `rfq_suppliers_ibfk_2` FOREIGN KEY (`supplier_id`) REFERENCES `suppliers` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `rfq_suppliers`
--

LOCK TABLES `rfq_suppliers` WRITE;
/*!40000 ALTER TABLE `rfq_suppliers` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `rfq_suppliers` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `rfqs`
--

DROP TABLE IF EXISTS `rfqs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `rfqs` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `rfq_number` varchar(50) NOT NULL,
  `title` varchar(255) NOT NULL,
  `pr_id` int(10) unsigned DEFAULT NULL,
  `issue_date` date NOT NULL,
  `due_date` date DEFAULT NULL,
  `status` enum('draft','sent','quotes_received','awarded','cancelled') DEFAULT 'draft',
  `terms` text DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `rfq_number` (`rfq_number`),
  KEY `pr_id` (`pr_id`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `rfqs_ibfk_1` FOREIGN KEY (`pr_id`) REFERENCES `purchase_requisitions` (`id`) ON DELETE SET NULL,
  CONSTRAINT `rfqs_ibfk_2` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `rfqs`
--

LOCK TABLES `rfqs` WRITE;
/*!40000 ALTER TABLE `rfqs` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `rfqs` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `role_data_scopes`
--

DROP TABLE IF EXISTS `role_data_scopes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `role_data_scopes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `role_id` int(10) unsigned NOT NULL,
  `scope_type` enum('location','department','custom','position_hierarchy','same_position','position_department') NOT NULL,
  `location_id` int(10) unsigned DEFAULT NULL COMMENT 'For location-based scoping',
  `position_id` int(11) DEFAULT NULL,
  `filter_rules` text DEFAULT NULL COMMENT 'Custom SQL WHERE clause conditions',
  `created_at` datetime NOT NULL,
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_role` (`role_id`),
  KEY `idx_location` (`location_id`),
  KEY `idx_scope_type` (`scope_type`),
  KEY `idx_position_id` (`position_id`),
  CONSTRAINT `fk_rds_location` FOREIGN KEY (`location_id`) REFERENCES `locations` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_rds_role` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_role_data_scopes_position` FOREIGN KEY (`position_id`) REFERENCES `positions` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Role-based data access control scopes';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `role_data_scopes`
--

LOCK TABLES `role_data_scopes` WRITE;
/*!40000 ALTER TABLE `role_data_scopes` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `role_data_scopes` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `role_menu_access`
--

DROP TABLE IF EXISTS `role_menu_access`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `role_menu_access` (
  `role_id` int(11) NOT NULL,
  `menu_item_id` int(11) NOT NULL,
  `can_access` tinyint(1) DEFAULT 1,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`role_id`,`menu_item_id`),
  KEY `idx_role` (`role_id`),
  KEY `idx_menu` (`menu_item_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `role_menu_access`
--

LOCK TABLES `role_menu_access` WRITE;
/*!40000 ALTER TABLE `role_menu_access` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `role_menu_access` VALUES
(1,1,1,'2025-11-08 18:30:00','2025-11-11 00:36:46'),
(1,2,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,3,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,4,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,5,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,7,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,8,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,10,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,11,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,12,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,13,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,14,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,15,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,16,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,17,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,18,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,19,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,20,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,21,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,22,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,23,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,24,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,25,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,26,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,27,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,28,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,29,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,30,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,31,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,32,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,33,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,34,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,35,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,36,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,37,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,38,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,39,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,40,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,41,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,42,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,43,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,44,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,45,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,46,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,47,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,48,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,49,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,50,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,51,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,52,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,53,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,54,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,55,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,56,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,57,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,58,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,59,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,60,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,61,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,62,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,63,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,64,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,65,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,66,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,68,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,69,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,70,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,71,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,72,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,73,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,74,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,75,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,76,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,77,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,78,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,79,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,80,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,81,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,82,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,83,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,84,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,85,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,86,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,87,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,88,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,89,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,90,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,91,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,92,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,93,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,94,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,95,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,96,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,97,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,98,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,99,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,100,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,101,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,102,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,103,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,104,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,105,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,106,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,107,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,108,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,109,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,110,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,111,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,112,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,113,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,114,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,115,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,116,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,117,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,118,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,119,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,120,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,121,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,122,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,123,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,124,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,125,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,126,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,127,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,128,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,129,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,130,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,131,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,132,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,133,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,134,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,135,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,136,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,137,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,138,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,139,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,140,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,141,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,142,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,143,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,144,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,145,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,146,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,147,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,148,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,149,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,150,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,151,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,152,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,153,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,154,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,155,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,156,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,157,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,161,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,162,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,163,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,164,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,165,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,166,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,167,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,168,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,169,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,170,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,171,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,172,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,173,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,174,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,180,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,181,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,182,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,183,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,184,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,185,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,186,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,187,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,188,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,189,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,190,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,191,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,192,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,193,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,194,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,195,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,196,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,197,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,198,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,199,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,200,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,201,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,202,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,203,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,204,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,205,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,206,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,207,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,208,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,209,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,210,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,211,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,212,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,213,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,214,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,215,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,216,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,217,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,218,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,219,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,220,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,221,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,222,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,223,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,224,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,225,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,226,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,227,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,228,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,229,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,230,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,231,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,232,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,234,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,235,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,236,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,237,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,238,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,239,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,240,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,241,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,243,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,244,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,245,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,246,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,247,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,248,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,250,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(1,346,1,'2025-11-30 01:36:27','2025-11-30 01:36:27'),
(2,1,1,'2025-11-08 18:30:00','2025-11-11 00:36:46'),
(2,2,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,3,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,4,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,5,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,7,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,8,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,10,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,11,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,12,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,13,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,14,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,15,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,16,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,17,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,18,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,19,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,20,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,21,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,22,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,23,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,24,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,25,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,26,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,27,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,28,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,29,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,30,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,31,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,32,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,33,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,34,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,35,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,36,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,37,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,38,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,39,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,40,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,41,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,42,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,43,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,44,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,45,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,46,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,47,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,48,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,49,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,50,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,51,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,52,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,53,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,54,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,55,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,56,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,57,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,58,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,59,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,60,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,61,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,62,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,63,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,64,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,65,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,66,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,68,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,69,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,70,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,71,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,72,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,73,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,74,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,75,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,76,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,77,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,78,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,79,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,80,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,81,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,82,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,83,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,84,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,85,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,86,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,87,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,88,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,89,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,90,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,91,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,92,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,93,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,94,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,95,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,96,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,97,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,98,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,99,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,100,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,101,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,102,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,103,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,104,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,105,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,106,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,107,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,108,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,109,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,110,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,111,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,112,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,113,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,114,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,115,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,116,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,117,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,118,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,119,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,120,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,121,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,122,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,123,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,124,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,125,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,126,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,127,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,128,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,129,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,130,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,131,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,132,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,133,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,134,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,135,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,136,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,137,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,138,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,139,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,140,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,141,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,142,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,143,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,144,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,145,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,146,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,147,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,148,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,149,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,150,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,151,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,152,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,153,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,154,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,155,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,156,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,157,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,161,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,162,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,163,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,164,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,165,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,166,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,167,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,168,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,169,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,170,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,171,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,172,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,173,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,174,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,180,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,181,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,182,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,183,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,184,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,185,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,186,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,187,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,188,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,189,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,190,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,191,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,192,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,193,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,194,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,195,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,196,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,197,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,198,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,199,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,200,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,201,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,202,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,203,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,204,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,205,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,206,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,207,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,208,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,209,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,210,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,211,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,212,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,213,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,214,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,215,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,216,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,217,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,218,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,219,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,220,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,221,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,222,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,223,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,224,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,225,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,226,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,227,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,228,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,229,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,230,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,231,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,232,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,234,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,235,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,236,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,237,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,238,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,239,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,240,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,241,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,243,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,244,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,245,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,246,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,247,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,248,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(2,250,1,'2025-11-08 18:29:20','2025-11-11 00:36:46'),
(66,1,1,'2025-11-08 18:30:00','2025-11-11 00:36:46');
/*!40000 ALTER TABLE `role_menu_access` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `role_permissions`
--

DROP TABLE IF EXISTS `role_permissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `role_permissions` (
  `role_id` int(10) unsigned NOT NULL,
  `permission_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`role_id`,`permission_id`),
  KEY `permission_id` (`permission_id`),
  CONSTRAINT `role_permissions_ibfk_1` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE,
  CONSTRAINT `role_permissions_ibfk_2` FOREIGN KEY (`permission_id`) REFERENCES `permissions` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `role_permissions`
--

LOCK TABLES `role_permissions` WRITE;
/*!40000 ALTER TABLE `role_permissions` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `role_permissions` VALUES
(1,1,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,2,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,3,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,4,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,5,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,6,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,7,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,8,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,9,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,10,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,11,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,12,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,13,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,14,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,15,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,16,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,17,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,18,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,19,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,20,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,21,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,22,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,23,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,24,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,25,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,26,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,27,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,28,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,29,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,30,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,31,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,32,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,33,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,34,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,35,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,36,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,37,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,38,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,39,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,40,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,41,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,42,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,43,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,44,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,45,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,46,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,47,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,48,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,49,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,50,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,51,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,52,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,53,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,54,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,55,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,56,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,57,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,58,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,69,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,70,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,71,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,72,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,73,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,74,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,75,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,76,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,77,'2025-11-11 00:36:43','2025-11-11 00:36:43'),
(1,78,'2025-12-04 16:14:00','2025-12-04 16:14:00'),
(1,82,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(1,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(1,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(1,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(1,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(1,200,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,272,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(1,273,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(1,274,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(1,275,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(1,276,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(1,325,'2025-11-15 19:50:26','2025-11-15 19:50:26'),
(1,326,'2025-11-15 19:50:26','2025-11-15 19:50:26'),
(1,327,'2025-11-15 19:50:26','2025-11-15 19:50:26'),
(1,328,'2025-11-15 19:50:26','2025-11-15 19:50:26'),
(1,377,'2025-11-17 11:19:40','2025-11-17 11:19:40'),
(1,398,'2025-11-19 14:34:42','2025-11-19 14:34:42'),
(1,399,'2025-11-19 14:34:42','2025-11-19 14:34:42'),
(1,400,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(1,401,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(1,402,'2025-11-19 16:40:14','2025-11-19 16:40:14'),
(1,403,'2025-11-19 17:53:07','2025-11-19 17:53:07'),
(1,404,'2025-11-19 17:53:07','2025-11-19 17:53:07'),
(1,405,'2025-11-19 17:53:07','2025-11-19 17:53:07'),
(1,406,'2025-11-19 19:25:50','2025-11-19 19:25:50'),
(1,410,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,411,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(1,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(1,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(1,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(1,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(1,580,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,618,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(1,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(1,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(1,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(1,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(1,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(1,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(1,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(1,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(1,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(1,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(1,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(1,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(1,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(1,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(1,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(1,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(1,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(1,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(1,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(1,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(1,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(1,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(1,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(1,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(1,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(1,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(1,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(1,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(1,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(1,1037,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(1,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(1,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(1,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(1,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(1,1401,'2025-11-30 01:09:11','2025-11-30 01:09:11'),
(1,1402,'2025-11-30 01:09:11','2025-11-30 01:09:11'),
(1,1403,'2025-11-30 01:09:11','2025-11-30 01:09:11'),
(1,1404,'2025-11-30 01:09:11','2025-11-30 01:09:11'),
(1,1405,'2025-11-30 01:09:11','2025-11-30 01:09:11'),
(1,1406,'2025-11-30 01:09:11','2025-11-30 01:09:11'),
(1,1407,'2025-11-30 01:09:11','2025-11-30 01:09:11'),
(1,1408,'2025-11-30 01:09:11','2025-11-30 01:09:11'),
(1,1409,'2025-11-30 01:09:11','2025-11-30 01:09:11'),
(1,1419,'2025-12-02 03:44:08','2025-12-02 03:44:08'),
(1,1420,'2025-12-02 03:44:08','2025-12-02 03:44:08'),
(1,1421,'2025-12-02 03:44:08','2025-12-02 03:44:08'),
(1,1422,'2025-12-02 03:44:08','2025-12-02 03:44:08'),
(1,1423,'2025-12-02 03:44:08','2025-12-02 03:44:08'),
(1,1424,'2025-12-02 03:44:08','2025-12-02 03:44:08'),
(1,1449,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,1450,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,1451,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,1452,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,1453,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,1454,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,1455,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,1457,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,1459,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,1460,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,1461,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,1462,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,1463,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,1464,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,1465,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,1468,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,1469,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,1472,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,1473,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,1476,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,1477,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,1479,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,1481,'2025-12-02 13:56:09','2025-12-02 13:56:09'),
(1,1487,'2025-12-02 13:59:43','2025-12-02 13:59:43'),
(1,1488,'2025-12-02 13:59:43','2025-12-02 13:59:43'),
(70,82,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(70,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(70,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(70,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(70,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(70,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(70,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(70,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(70,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(70,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(70,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(70,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(70,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(70,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(70,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(70,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(70,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(70,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(70,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(70,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(70,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(70,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(70,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(70,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(70,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(70,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(70,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(70,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(70,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(70,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(70,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(70,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(70,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(70,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(70,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(70,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(70,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(70,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(70,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(70,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(70,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(70,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(70,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(70,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(70,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(72,82,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(72,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(72,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(72,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(72,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(72,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(72,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(72,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(72,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(72,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(72,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(72,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(72,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(72,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(72,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(72,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(72,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(72,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(72,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(72,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(72,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(72,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(72,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(72,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(72,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(72,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(72,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(72,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(72,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(72,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(72,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(72,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(72,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(72,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(72,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(72,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(72,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(72,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(72,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(72,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(72,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(72,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(72,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(72,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(72,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(76,82,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(76,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(76,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(76,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(76,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(76,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(76,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(76,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(76,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(76,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(76,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(76,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(76,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(76,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(76,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(76,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(76,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(76,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(76,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(76,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(76,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(76,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(76,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(76,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(76,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(76,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(76,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(76,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(76,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(76,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(76,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(76,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(76,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(76,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(76,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(76,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(76,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(76,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(76,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(76,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(76,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(76,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(76,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(76,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(76,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(77,5,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(77,14,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(77,18,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(77,78,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(77,81,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(77,82,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(77,83,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(77,114,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(77,115,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(77,116,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(77,123,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(77,124,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(77,125,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(77,127,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(77,128,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(77,129,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(77,131,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(77,132,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(77,133,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(77,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(77,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(77,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(77,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(77,169,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(77,208,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(77,209,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(77,210,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(77,250,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(77,325,'2025-11-15 19:50:26','2025-11-15 19:50:26'),
(77,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(77,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(77,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(77,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(77,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(77,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(77,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(77,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(77,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(77,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(77,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(77,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(77,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(77,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(77,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(77,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(77,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(77,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(77,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(77,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(77,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(77,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(77,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(77,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(77,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(77,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(77,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(77,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(77,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(77,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(77,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(77,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(77,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(77,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(77,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(77,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(77,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(77,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(77,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(77,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(78,5,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(78,18,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(78,78,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(78,81,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(78,82,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(78,83,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(78,114,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(78,115,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(78,116,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(78,123,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(78,124,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(78,125,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(78,127,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(78,128,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(78,129,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(78,131,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(78,132,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(78,133,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(78,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(78,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(78,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(78,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(78,169,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(78,208,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(78,209,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(78,210,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(78,250,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(78,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(78,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(78,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(78,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(78,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(78,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(78,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(78,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(78,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(78,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(78,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(78,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(78,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(78,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(78,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(78,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(78,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(78,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(78,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(78,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(78,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(78,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(78,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(78,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(78,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(78,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(78,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(78,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(78,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(78,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(78,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(78,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(78,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(78,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(78,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(78,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(78,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(78,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(78,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(78,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(79,82,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(79,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(79,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(79,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(79,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(79,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(79,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(79,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(79,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(79,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(79,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(79,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(79,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(79,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(79,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(79,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(79,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(79,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(79,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(79,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(79,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(79,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(79,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(79,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(79,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(79,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(79,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(79,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(79,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(79,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(79,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(79,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(79,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(79,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(79,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(79,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(79,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(79,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(79,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(79,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(79,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(79,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(79,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(79,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(79,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(80,82,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(80,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(80,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(80,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(80,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(80,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(80,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(80,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(80,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(80,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(80,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(80,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(80,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(80,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(80,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(80,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(80,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(80,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(80,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(80,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(80,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(80,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(80,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(80,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(80,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(80,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(80,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(80,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(80,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(80,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(80,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(80,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(80,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(80,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(80,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(80,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(80,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(80,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(80,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(80,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(80,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(80,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(80,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(80,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(80,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(81,24,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,25,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,26,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,27,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,28,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,29,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,30,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,31,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,43,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,44,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,45,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,46,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,51,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,52,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,53,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,54,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,72,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,73,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,74,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,75,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,76,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,78,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,79,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,80,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,81,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,82,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,83,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(81,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(81,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(81,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(81,187,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,188,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,189,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,190,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,191,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,192,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,193,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,194,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,195,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,196,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,197,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,198,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,199,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,200,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,201,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,202,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,203,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,204,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,205,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,206,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,207,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,230,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,231,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,232,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,233,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,234,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,235,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,236,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,237,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,238,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,239,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,240,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,241,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,242,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,243,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,244,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,245,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,246,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,247,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,248,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,249,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,250,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,251,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,252,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,287,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,288,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,289,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,290,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,291,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,292,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,293,'2025-11-15 16:02:16','2025-11-15 16:02:16'),
(81,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(81,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(81,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(81,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(81,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(81,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(81,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(81,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(81,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(81,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(81,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(81,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(81,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(81,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(81,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(81,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(81,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(81,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(81,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(81,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(81,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(81,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(81,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(81,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(81,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(81,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(81,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(81,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(81,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(81,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(81,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(81,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(81,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(81,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(81,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(81,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(81,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(81,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(81,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(81,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(82,82,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(82,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(82,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(82,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(82,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(82,287,'2025-11-13 21:23:05','2025-11-13 21:23:05'),
(82,288,'2025-11-13 21:23:05','2025-11-13 21:23:05'),
(82,289,'2025-11-13 21:23:05','2025-11-13 21:23:05'),
(82,290,'2025-11-13 21:23:05','2025-11-13 21:23:05'),
(82,291,'2025-11-13 21:23:05','2025-11-13 21:23:05'),
(82,292,'2025-11-13 21:23:05','2025-11-13 21:23:05'),
(82,293,'2025-11-13 21:23:05','2025-11-13 21:23:05'),
(82,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(82,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(82,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(82,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(82,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(82,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(82,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(82,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(82,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(82,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(82,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(82,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(82,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(82,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(82,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(82,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(82,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(82,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(82,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(82,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(82,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(82,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(82,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(82,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(82,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(82,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(82,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(82,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(82,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(82,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(82,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(82,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(82,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(82,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(82,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(82,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(82,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(82,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(82,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(82,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(85,82,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(85,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(85,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(85,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(85,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(85,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(85,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(85,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(85,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(85,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(85,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(85,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(85,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(85,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(85,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(85,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(85,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(85,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(85,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(85,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(85,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(85,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(85,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(85,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(85,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(85,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(85,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(85,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(85,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(85,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(85,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(85,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(85,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(85,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(85,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(85,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(85,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(85,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(85,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(85,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(85,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(85,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(85,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(85,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(85,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(87,82,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(87,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(87,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(87,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(87,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(87,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(87,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(87,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(87,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(87,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(87,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(87,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(87,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(87,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(87,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(87,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(87,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(87,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(87,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(87,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(87,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(87,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(87,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(87,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(87,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(87,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(87,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(87,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(87,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(87,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(87,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(87,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(87,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(87,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(87,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(87,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(87,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(87,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(87,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(87,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(87,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(87,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(87,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(87,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(87,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(88,82,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(88,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(88,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(88,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(88,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(88,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(88,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(88,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(88,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(88,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(88,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(88,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(88,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(88,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(88,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(88,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(88,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(88,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(88,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(88,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(88,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(88,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(88,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(88,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(88,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(88,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(88,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(88,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(88,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(88,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(88,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(88,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(88,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(88,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(88,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(88,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(88,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(88,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(88,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(88,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(88,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(88,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(88,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(88,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(88,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(92,82,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(92,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(92,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(92,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(92,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(92,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(92,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(92,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(92,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(92,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(92,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(92,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(92,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(92,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(92,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(92,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(92,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(92,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(92,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(92,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(92,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(92,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(92,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(92,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(92,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(92,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(92,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(92,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(92,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(92,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(92,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(92,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(92,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(92,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(92,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(92,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(92,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(92,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(92,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(92,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(92,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(92,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(92,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(92,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(92,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(93,82,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(93,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(93,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(93,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(93,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(93,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(93,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(93,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(93,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(93,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(93,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(93,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(93,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(93,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(93,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(93,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(93,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(93,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(93,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(93,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(93,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(93,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(93,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(93,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(93,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(93,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(93,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(93,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(93,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(93,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(93,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(93,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(93,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(93,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(93,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(93,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(93,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(93,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(93,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(93,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(93,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(93,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(93,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(93,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(93,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(96,82,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(96,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(96,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(96,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(96,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(96,242,'2025-11-29 17:52:41','2025-11-29 17:52:41'),
(96,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(96,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(96,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(96,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(96,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(96,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(96,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(96,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(96,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(96,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(96,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(96,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(96,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(96,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(96,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(96,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(96,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(96,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(96,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(96,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(96,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(96,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(96,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(96,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(96,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(96,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(96,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(96,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(96,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(96,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(96,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(96,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(96,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(96,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(96,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(96,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(96,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(96,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(96,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(96,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(97,82,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(97,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(97,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(97,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(97,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(97,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(97,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(97,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(97,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(97,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(97,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(97,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(97,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(97,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(97,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(97,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(97,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(97,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(97,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(97,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(97,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(97,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(97,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(97,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(97,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(97,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(97,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(97,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(97,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(97,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(97,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(97,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(97,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(97,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(97,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(97,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(97,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(97,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(97,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(97,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(97,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(97,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(97,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(97,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(97,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(99,82,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(99,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(99,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(99,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(99,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(99,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(99,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(99,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(99,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(99,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(99,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(99,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(99,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(99,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(99,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(99,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(99,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(99,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(99,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(99,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(99,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(99,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(99,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(99,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(99,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(99,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(99,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(99,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(99,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(99,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(99,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(99,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(99,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(99,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(99,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(99,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(99,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(99,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(99,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(99,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(99,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(99,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(99,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(99,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(99,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(100,82,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(100,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(100,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(100,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(100,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(100,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(100,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(100,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(100,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(100,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(100,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(100,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(100,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(100,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(100,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(100,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(100,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(100,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(100,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(100,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(100,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(100,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(100,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(100,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(100,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(100,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(100,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(100,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(100,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(100,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(100,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(100,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(100,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(100,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(100,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(100,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(100,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(100,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(100,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(100,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(100,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(100,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(100,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(100,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(100,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(101,82,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(101,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(101,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(101,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(101,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(101,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(101,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(101,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(101,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(101,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(101,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(101,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(101,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(101,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(101,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(101,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(101,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(101,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(101,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(101,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(101,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(101,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(101,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(101,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(101,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(101,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(101,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(101,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(101,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(101,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(101,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(101,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(101,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(101,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(101,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(101,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(101,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(101,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(101,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(101,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(101,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(101,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(101,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(101,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(101,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(108,5,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,14,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,18,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,24,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,28,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,33,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,34,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,35,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,40,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,43,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,47,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,48,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,51,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,69,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,70,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,73,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,78,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,79,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,80,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,81,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,82,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,83,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,84,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,85,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,87,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,88,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,89,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,90,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,91,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,92,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,93,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,94,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,95,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,96,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,97,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,98,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,99,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,100,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,101,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,102,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,103,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,104,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,105,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,106,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,107,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,108,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,109,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,110,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,111,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,112,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,113,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,119,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,123,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,127,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,129,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,131,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,134,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(108,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(108,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(108,138,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,141,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,149,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,153,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,156,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,161,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,164,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,167,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,169,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,174,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,178,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,181,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,184,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,187,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,193,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,197,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,201,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,203,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,206,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,208,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,212,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,214,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,219,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,224,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,230,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,235,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,237,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,240,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,242,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,247,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,248,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,249,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,250,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,251,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,252,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,253,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,257,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,259,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,267,'2025-11-11 14:28:10','2025-11-11 14:28:10'),
(108,272,'2025-11-11 17:41:34','2025-11-11 17:41:34'),
(108,273,'2025-11-11 17:41:34','2025-11-11 17:41:34'),
(108,274,'2025-11-11 17:41:34','2025-11-11 17:41:34'),
(108,275,'2025-11-11 17:41:34','2025-11-11 17:41:34'),
(108,276,'2025-11-11 17:41:34','2025-11-11 17:41:34'),
(108,325,'2025-11-15 19:50:26','2025-11-15 19:50:26'),
(108,369,'2025-12-02 18:15:31','2025-12-02 18:15:31'),
(108,379,'2025-12-02 18:15:49','2025-12-02 18:15:49'),
(108,400,'2025-12-02 18:14:33','2025-12-02 18:14:33'),
(108,401,'2025-12-02 18:14:38','2025-12-02 18:14:38'),
(108,402,'2025-12-02 18:14:33','2025-12-02 18:14:33'),
(108,403,'2025-12-02 18:14:34','2025-12-02 18:14:34'),
(108,404,'2025-12-02 18:41:52','2025-12-02 18:41:52'),
(108,405,'2025-12-02 18:14:34','2025-12-02 18:14:34'),
(108,406,'2025-12-02 18:24:58','2025-12-02 18:24:58'),
(108,407,'2025-12-02 18:14:49','2025-12-02 18:14:49'),
(108,411,'2025-12-02 22:17:29','2025-12-02 22:17:29'),
(108,432,'2025-12-02 18:15:28','2025-12-02 18:15:28'),
(108,434,'2025-12-02 18:24:58','2025-12-02 18:24:58'),
(108,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(108,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(108,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(108,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(108,470,'2025-11-29 12:50:39','2025-11-29 12:50:39'),
(108,576,'2025-12-02 18:15:26','2025-12-02 18:15:26'),
(108,577,'2025-12-02 18:15:27','2025-12-02 18:15:27'),
(108,578,'2025-12-02 18:15:28','2025-12-02 18:15:28'),
(108,579,'2025-12-02 18:15:29','2025-12-02 18:15:29'),
(108,581,'2025-12-02 18:15:32','2025-12-02 18:15:32'),
(108,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(108,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(108,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(108,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(108,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(108,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(108,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(108,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(108,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(108,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(108,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(108,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(108,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(108,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(108,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(108,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(108,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(108,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(108,739,'2025-12-02 22:17:26','2025-12-02 22:17:26'),
(108,788,'2025-12-02 18:15:21','2025-12-02 18:15:21'),
(108,793,'2025-12-02 18:14:50','2025-12-02 18:14:50'),
(108,810,'2025-12-02 22:17:02','2025-12-02 22:17:02'),
(108,861,'2025-12-02 18:15:02','2025-12-02 18:15:02'),
(108,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(108,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(108,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(108,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(108,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(108,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(108,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(108,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(108,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(108,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(108,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(108,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(108,985,'2025-12-02 18:24:58','2025-12-02 18:24:58'),
(108,986,'2025-12-02 18:24:58','2025-12-02 18:24:58'),
(108,987,'2025-12-02 18:24:58','2025-12-02 18:24:58'),
(108,988,'2025-12-02 18:24:58','2025-12-02 18:24:58'),
(108,989,'2025-12-02 18:14:35','2025-12-02 18:14:35'),
(108,990,'2025-12-02 18:14:36','2025-12-02 18:14:36'),
(108,991,'2025-12-02 18:14:37','2025-12-02 18:14:37'),
(108,992,'2025-12-02 18:24:58','2025-12-02 18:24:58'),
(108,993,'2025-12-02 18:24:58','2025-12-02 18:24:58'),
(108,994,'2025-12-02 18:24:58','2025-12-02 18:24:58'),
(108,1001,'2025-12-02 18:21:02','2025-12-02 18:21:02'),
(108,1032,'2025-12-02 18:21:02','2025-12-02 18:21:02'),
(108,1070,'2025-12-02 18:14:57','2025-12-02 18:14:57'),
(108,1147,'2025-12-02 18:14:53','2025-12-02 18:14:53'),
(108,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(108,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(108,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(108,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(108,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(108,1410,'2025-12-02 22:16:41','2025-12-02 22:16:41'),
(108,1411,'2025-12-02 22:16:42','2025-12-02 22:16:42'),
(108,1412,'2025-12-02 22:16:42','2025-12-02 22:16:42'),
(108,1414,'2025-12-02 22:16:47','2025-12-02 22:16:47'),
(108,1419,'2025-12-02 18:14:49','2025-12-02 18:14:49'),
(108,1449,'2025-12-02 18:15:02','2025-12-02 18:15:02'),
(108,1450,'2025-12-02 18:15:03','2025-12-02 18:15:03'),
(108,1451,'2025-12-02 18:15:03','2025-12-02 18:15:03'),
(108,1452,'2025-12-02 18:15:04','2025-12-02 18:15:04'),
(108,1453,'2025-12-02 18:15:05','2025-12-02 18:15:05'),
(108,1454,'2025-12-02 18:15:05','2025-12-02 18:15:05'),
(108,1455,'2025-12-02 18:15:06','2025-12-02 18:15:06'),
(108,1456,'2025-12-02 18:15:07','2025-12-02 18:15:07'),
(108,1457,'2025-12-02 18:15:40','2025-12-02 18:15:40'),
(108,1458,'2025-12-02 18:15:41','2025-12-02 18:15:41'),
(108,1459,'2025-12-02 18:15:37','2025-12-02 18:15:37'),
(108,1460,'2025-12-02 18:15:38','2025-12-02 18:15:38'),
(108,1461,'2025-12-02 18:15:39','2025-12-02 18:15:39'),
(108,1468,'2025-12-02 18:14:53','2025-12-02 18:14:53'),
(108,1469,'2025-12-02 18:14:54','2025-12-02 18:14:54'),
(108,1470,'2025-12-02 18:14:55','2025-12-02 18:14:55'),
(108,1474,'2025-12-02 18:14:59','2025-12-02 18:14:59'),
(108,1487,'2025-12-02 18:14:58','2025-12-02 18:14:58'),
(108,1488,'2025-12-02 18:14:58','2025-12-02 18:14:58'),
(110,5,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,9,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,14,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,18,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,19,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,20,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,21,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,24,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,28,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,32,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,36,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,43,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,47,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,78,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,81,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,82,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,83,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,87,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,88,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,89,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,90,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,91,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,92,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,93,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,94,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,105,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,106,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,107,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,108,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,112,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,113,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,114,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,134,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(110,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(110,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(110,169,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,187,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,208,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,230,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,237,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,238,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,250,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(110,272,'2025-11-11 17:41:34','2025-11-11 17:41:34'),
(110,273,'2025-11-11 17:41:34','2025-11-11 17:41:34'),
(110,274,'2025-11-11 17:41:34','2025-11-11 17:41:34'),
(110,275,'2025-11-11 17:41:34','2025-11-11 17:41:34'),
(110,276,'2025-11-11 17:41:34','2025-11-11 17:41:34'),
(110,325,'2025-11-15 19:50:26','2025-11-15 19:50:26'),
(110,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(110,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(110,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(110,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(110,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(110,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(110,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(110,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(110,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(110,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(110,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(110,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(110,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(110,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(110,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(110,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(110,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(110,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(110,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(110,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(110,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(110,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(110,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(110,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(110,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(110,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(110,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(110,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(110,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(110,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(110,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(110,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(110,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(110,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(110,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(110,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(110,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(110,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(110,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(110,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(111,9,'2025-11-29 00:29:03','2025-11-29 00:29:03'),
(111,10,'2025-11-29 00:31:58','2025-11-29 00:31:58'),
(111,11,'2025-11-29 00:31:58','2025-11-29 00:31:58'),
(111,12,'2025-11-29 00:31:58','2025-11-29 00:31:58'),
(111,43,'2025-11-29 00:32:05','2025-11-29 00:32:05'),
(111,47,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,48,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,49,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,78,'2025-11-28 23:17:47','2025-11-28 23:17:47'),
(111,79,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,81,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,82,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(111,83,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,85,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(111,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(111,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(111,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(111,242,'2025-11-29 00:23:44','2025-11-29 00:23:44'),
(111,247,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,248,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,249,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,250,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,251,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,252,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,407,'2025-11-29 00:23:43','2025-11-29 00:23:43'),
(111,408,'2025-11-29 01:00:10','2025-11-29 01:00:10'),
(111,409,'2025-11-29 01:00:10','2025-11-29 01:00:10'),
(111,435,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,436,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,437,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,438,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,439,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,440,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,441,'2025-11-29 00:25:56','2025-11-29 00:25:56'),
(111,442,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(111,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(111,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(111,456,'2025-11-29 00:40:21','2025-11-29 00:40:21'),
(111,470,'2025-11-29 00:23:56','2025-11-29 00:23:56'),
(111,511,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,512,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,513,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,582,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,637,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,638,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,639,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,640,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,641,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,642,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,643,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,644,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,645,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,651,'2025-11-29 00:25:56','2025-11-29 00:25:56'),
(111,668,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,669,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,670,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,671,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,672,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,673,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,677,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,678,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,679,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,680,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,681,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,682,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,683,'2025-11-29 00:44:50','2025-11-29 00:44:50'),
(111,684,'2025-11-29 00:44:50','2025-11-29 00:44:50'),
(111,685,'2025-11-29 00:44:50','2025-11-29 00:44:50'),
(111,686,'2025-11-29 00:44:50','2025-11-29 00:44:50'),
(111,687,'2025-11-29 00:44:50','2025-11-29 00:44:50'),
(111,688,'2025-11-29 00:44:50','2025-11-29 00:44:50'),
(111,689,'2025-11-29 00:44:50','2025-11-29 00:44:50'),
(111,690,'2025-11-29 00:44:50','2025-11-29 00:44:50'),
(111,691,'2025-11-29 00:44:50','2025-11-29 00:44:50'),
(111,692,'2025-11-29 00:44:50','2025-11-29 00:44:50'),
(111,693,'2025-11-29 00:44:50','2025-11-29 00:44:50'),
(111,694,'2025-11-29 00:44:50','2025-11-29 00:44:50'),
(111,695,'2025-11-29 00:44:50','2025-11-29 00:44:50'),
(111,696,'2025-11-29 00:44:50','2025-11-29 00:44:50'),
(111,697,'2025-11-29 00:44:50','2025-11-29 00:44:50'),
(111,698,'2025-11-29 00:44:50','2025-11-29 00:44:50'),
(111,699,'2025-11-29 00:44:50','2025-11-29 00:44:50'),
(111,700,'2025-11-29 00:44:50','2025-11-29 00:44:50'),
(111,728,'2025-11-29 00:57:54','2025-11-29 00:57:54'),
(111,729,'2025-11-29 01:00:10','2025-11-29 01:00:10'),
(111,730,'2025-11-29 01:00:10','2025-11-29 01:00:10'),
(111,731,'2025-11-29 01:00:10','2025-11-29 01:00:10'),
(111,732,'2025-11-29 01:00:10','2025-11-29 01:00:10'),
(111,733,'2025-11-29 01:00:10','2025-11-29 01:00:10'),
(111,734,'2025-11-29 01:00:10','2025-11-29 01:00:10'),
(111,735,'2025-11-29 01:00:10','2025-11-29 01:00:10'),
(111,736,'2025-11-29 01:00:10','2025-11-29 01:00:10'),
(111,737,'2025-11-29 01:00:10','2025-11-29 01:00:10'),
(111,738,'2025-11-29 01:00:10','2025-11-29 01:00:10'),
(111,739,'2025-11-29 01:00:10','2025-11-29 01:00:10'),
(111,789,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,790,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,791,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,792,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,793,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,794,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,795,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,796,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,797,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,798,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,799,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,800,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,801,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,802,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(111,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(111,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(111,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(111,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(111,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(111,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(111,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(111,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(111,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(111,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(111,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(111,1001,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1002,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1003,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1004,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1005,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1006,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1007,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1008,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1009,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1010,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1011,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1012,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1013,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1014,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1015,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1016,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1017,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1018,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1019,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1020,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1021,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1022,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1023,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1024,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1025,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1026,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1027,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1028,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1029,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1030,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1031,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1032,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1033,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1034,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1035,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1036,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1037,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1038,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1039,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1040,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1041,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1042,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1043,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1126,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1127,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1128,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1129,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1130,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1131,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1332,'2025-11-29 01:00:10','2025-11-29 01:00:10'),
(111,1333,'2025-11-29 01:00:10','2025-11-29 01:00:10'),
(111,1334,'2025-11-29 01:00:10','2025-11-29 01:00:10'),
(111,1335,'2025-11-29 01:00:10','2025-11-29 01:00:10'),
(111,1336,'2025-11-29 01:00:10','2025-11-29 01:00:10'),
(111,1337,'2025-11-29 01:00:10','2025-11-29 01:00:10'),
(111,1338,'2025-11-29 01:00:10','2025-11-29 01:00:10'),
(111,1339,'2025-11-29 01:00:10','2025-11-29 01:00:10'),
(111,1340,'2025-11-29 01:00:10','2025-11-29 01:00:10'),
(111,1347,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1348,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1349,'2025-11-28 23:15:26','2025-11-28 23:15:26'),
(111,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(111,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(111,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(111,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(111,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(112,9,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,14,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,24,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,28,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,29,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,30,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,32,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,36,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,43,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,47,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,78,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,81,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,82,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,83,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,105,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,134,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(112,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(112,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(112,169,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,170,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,171,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,174,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,175,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,176,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,178,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,179,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,181,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,182,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,184,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,185,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,186,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,187,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,188,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,189,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,193,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,194,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,195,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,196,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,197,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,198,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,199,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,201,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,203,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,204,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,206,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,207,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,208,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,219,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,230,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,231,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,232,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,234,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,235,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,236,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,250,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(112,325,'2025-11-15 19:50:26','2025-11-15 19:50:26'),
(112,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(112,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(112,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(112,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(112,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(112,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(112,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(112,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(112,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(112,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(112,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(112,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(112,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(112,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(112,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(112,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(112,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(112,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(112,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(112,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(112,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(112,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(112,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(112,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(112,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(112,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(112,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(112,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(112,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(112,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(112,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(112,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(112,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(112,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(112,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(112,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(112,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(112,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(112,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(112,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(116,36,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(116,37,'2025-11-29 13:22:48','2025-11-29 13:22:48'),
(116,38,'2025-11-29 13:22:48','2025-11-29 13:22:48'),
(116,39,'2025-11-29 13:22:48','2025-11-29 13:22:48'),
(116,78,'2025-11-30 01:22:37','2025-11-30 01:22:37'),
(116,82,'2025-11-30 01:27:10','2025-11-30 01:27:10'),
(116,134,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(116,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(116,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(116,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(116,149,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(116,151,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(116,153,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(116,155,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(116,156,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(116,157,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(116,158,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(116,159,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(116,160,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(116,161,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(116,162,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(116,163,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(116,164,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(116,165,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(116,166,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(116,167,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(116,168,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(116,267,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(116,268,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(116,269,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(116,270,'2025-11-29 13:23:10','2025-11-29 13:23:10'),
(116,448,'2025-11-30 01:22:37','2025-11-30 01:22:37'),
(116,456,'2025-11-30 01:26:58','2025-11-30 01:26:58'),
(116,470,'2025-11-29 13:22:14','2025-11-29 13:22:14'),
(116,683,'2025-11-30 01:26:58','2025-11-30 01:26:58'),
(116,684,'2025-11-30 01:26:58','2025-11-30 01:26:58'),
(116,685,'2025-11-30 01:26:58','2025-11-30 01:26:58'),
(116,686,'2025-11-30 01:26:58','2025-11-30 01:26:58'),
(116,687,'2025-11-30 01:26:58','2025-11-30 01:26:58'),
(116,688,'2025-11-30 01:26:58','2025-11-30 01:26:58'),
(116,689,'2025-11-30 01:26:58','2025-11-30 01:26:58'),
(116,690,'2025-11-30 01:26:58','2025-11-30 01:26:58'),
(116,691,'2025-11-30 01:26:58','2025-11-30 01:26:58'),
(116,693,'2025-11-30 01:26:58','2025-11-30 01:26:58'),
(116,695,'2025-11-30 01:26:58','2025-11-30 01:26:58'),
(116,788,'2025-11-30 00:44:56','2025-11-30 00:44:56'),
(116,871,'2025-11-30 01:27:10','2025-11-30 01:27:10'),
(116,873,'2025-11-30 01:27:10','2025-11-30 01:27:10'),
(116,875,'2025-11-30 01:27:10','2025-11-30 01:27:10'),
(116,876,'2025-11-30 01:27:10','2025-11-30 01:27:10'),
(116,878,'2025-11-30 01:27:10','2025-11-30 01:27:10'),
(116,995,'2025-11-30 01:22:37','2025-11-30 01:22:37'),
(116,1401,'2025-11-30 01:09:52','2025-11-30 01:09:52'),
(116,1402,'2025-11-30 01:09:53','2025-11-30 01:09:53'),
(116,1403,'2025-11-30 01:09:53','2025-11-30 01:09:53'),
(116,1404,'2025-11-30 01:09:55','2025-11-30 01:09:55'),
(116,1405,'2025-11-30 01:10:31','2025-11-30 01:10:31'),
(116,1406,'2025-11-30 01:18:06','2025-11-30 01:18:06'),
(116,1407,'2025-11-30 01:10:00','2025-11-30 01:10:00'),
(116,1408,'2025-11-30 01:10:34','2025-11-30 01:10:34'),
(116,1409,'2025-11-30 01:10:35','2025-11-30 01:10:35'),
(121,18,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(121,19,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(121,20,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(121,32,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(121,47,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(121,78,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(121,81,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(121,82,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(121,83,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(121,87,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(121,88,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(121,89,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(121,91,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(121,92,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(121,93,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(121,94,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(121,105,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(121,106,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(121,107,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(121,108,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(121,112,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(121,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(121,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(121,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(121,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(121,237,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(121,238,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(121,250,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(121,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(121,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(121,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(121,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(121,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(121,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(121,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(121,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(121,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(121,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(121,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(121,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(121,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(121,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(121,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(121,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(121,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(121,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(121,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(121,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(121,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(121,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(121,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(121,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(121,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(121,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(121,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(121,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(121,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(121,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(121,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(121,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(121,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(121,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(121,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(121,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(121,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(121,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(121,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(121,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(126,78,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(126,79,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(126,81,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(126,82,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(126,83,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(126,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(126,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(126,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(126,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(126,242,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(126,243,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(126,244,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(126,245,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(126,247,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(126,248,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(126,250,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(126,251,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(126,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(126,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(126,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(126,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(126,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(126,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(126,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(126,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(126,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(126,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(126,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(126,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(126,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(126,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(126,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(126,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(126,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(126,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(126,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(126,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(126,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(126,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(126,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(126,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(126,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(126,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(126,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(126,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(126,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(126,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(126,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(126,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(126,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(126,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(126,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(126,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(126,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(126,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(126,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(126,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(127,5,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(127,14,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(127,47,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(127,78,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(127,79,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(127,81,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(127,82,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(127,83,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(127,114,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(127,127,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(127,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(127,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(127,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(127,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(127,169,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(127,170,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(127,171,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(127,174,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(127,175,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(127,176,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(127,193,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(127,208,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(127,247,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(127,248,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(127,250,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(127,325,'2025-11-15 19:50:26','2025-11-15 19:50:26'),
(127,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(127,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(127,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(127,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(127,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(127,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(127,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(127,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(127,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(127,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(127,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(127,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(127,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(127,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(127,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(127,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(127,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(127,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(127,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(127,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(127,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(127,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(127,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(127,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(127,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(127,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(127,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(127,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(127,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(127,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(127,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(127,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(127,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(127,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(127,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(127,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(127,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(127,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(127,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(127,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(130,14,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,15,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,16,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,17,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,18,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,19,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,20,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,21,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,22,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,23,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,78,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,82,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(130,83,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,114,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,115,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,116,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,119,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,120,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,121,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,123,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,124,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,125,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,127,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,128,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,129,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,131,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,132,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,133,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,134,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(130,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(130,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(130,208,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,209,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,210,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,211,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,212,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,213,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,214,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,215,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,216,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,217,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,218,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,219,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,220,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,221,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,222,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,223,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,224,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,225,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,226,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,227,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,228,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,229,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,247,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,248,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,249,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,250,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,251,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,325,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,326,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,327,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,328,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,369,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,374,'2025-11-24 18:21:29','2025-11-24 18:21:29'),
(130,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(130,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(130,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(130,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(130,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(130,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(130,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(130,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(130,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(130,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(130,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(130,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(130,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(130,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(130,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(130,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(130,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(130,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(130,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(130,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(130,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(130,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(130,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(130,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(130,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(130,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(130,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(130,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(130,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(130,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(130,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(130,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(130,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(130,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(130,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(130,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(130,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(130,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(130,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(130,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(131,24,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,26,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,28,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,29,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,30,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,51,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,52,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,73,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,74,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,75,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,82,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(131,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(131,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(131,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(131,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(131,230,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,232,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,237,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,238,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,242,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,243,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,244,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,245,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,246,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,247,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,248,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,249,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,250,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,251,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,252,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,287,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,288,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,289,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,290,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,291,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,292,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,293,'2025-11-15 16:00:58','2025-11-15 16:00:58'),
(131,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(131,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(131,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(131,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(131,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(131,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(131,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(131,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(131,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(131,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(131,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(131,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(131,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(131,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(131,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(131,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(131,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(131,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(131,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(131,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(131,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(131,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(131,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(131,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(131,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(131,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(131,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(131,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(131,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(131,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(131,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(131,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(131,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(131,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(131,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(131,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(131,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(131,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(131,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(131,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(132,82,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(132,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(132,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(132,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(132,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(132,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(132,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(132,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(132,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(132,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(132,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(132,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(132,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(132,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(132,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(132,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(132,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(132,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(132,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(132,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(132,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(132,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(132,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(132,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(132,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(132,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(132,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(132,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(132,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(132,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(132,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(132,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(132,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(132,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(132,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(132,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(132,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(132,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(132,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(132,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(132,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(132,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(132,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(132,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(132,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(133,82,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(133,134,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(133,135,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(133,136,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(133,137,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(133,444,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(133,445,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(133,446,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(133,456,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(133,470,'2025-11-29 13:39:38','2025-11-29 13:39:38'),
(133,683,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(133,684,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(133,685,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(133,686,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(133,687,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(133,688,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(133,689,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(133,690,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(133,691,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(133,692,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(133,693,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(133,694,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(133,695,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(133,696,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(133,697,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(133,698,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(133,699,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(133,700,'2025-11-29 13:34:26','2025-11-29 13:34:26'),
(133,870,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(133,871,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(133,872,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(133,873,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(133,874,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(133,875,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(133,876,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(133,877,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(133,878,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(133,879,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(133,880,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(133,881,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(133,1364,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(133,1365,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(133,1366,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(133,1367,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(133,1368,'2025-11-29 13:38:35','2025-11-29 13:38:35'),
(134,47,'2025-11-30 14:32:56','2025-11-30 14:32:56'),
(134,78,'2025-11-30 14:32:33','2025-11-30 14:32:33'),
(134,79,'2025-11-30 14:32:57','2025-11-30 14:32:57'),
(134,82,'2025-11-30 14:40:46','2025-11-30 14:40:46'),
(134,247,'2025-11-30 14:34:49','2025-11-30 14:34:49'),
(134,248,'2025-11-30 14:34:55','2025-11-30 14:34:55'),
(134,249,'2025-11-30 14:34:52','2025-11-30 14:34:52'),
(134,407,'2025-11-30 14:32:58','2025-11-30 14:32:58'),
(134,448,'2025-11-30 14:40:46','2025-11-30 14:40:46'),
(134,456,'2025-11-30 14:40:46','2025-11-30 14:40:46'),
(134,638,'2025-11-30 14:33:09','2025-11-30 14:33:09'),
(134,639,'2025-11-30 14:33:08','2025-11-30 14:33:08'),
(134,640,'2025-11-30 14:33:07','2025-11-30 14:33:07'),
(134,641,'2025-11-30 14:33:06','2025-11-30 14:33:06'),
(134,686,'2025-11-30 14:40:46','2025-11-30 14:40:46'),
(134,687,'2025-11-30 14:40:46','2025-11-30 14:40:46'),
(134,693,'2025-11-30 14:40:46','2025-11-30 14:40:46'),
(134,728,'2025-11-30 14:34:40','2025-11-30 14:34:40'),
(134,731,'2025-11-30 14:34:35','2025-11-30 14:34:35'),
(134,732,'2025-11-30 14:34:41','2025-11-30 14:34:41'),
(134,735,'2025-11-30 14:34:37','2025-11-30 14:34:37'),
(134,736,'2025-11-30 14:34:36','2025-11-30 14:34:36'),
(134,737,'2025-11-30 14:34:36','2025-11-30 14:34:36'),
(134,738,'2025-11-30 14:34:38','2025-11-30 14:34:38'),
(134,739,'2025-11-30 14:34:33','2025-11-30 14:34:33'),
(134,789,'2025-11-30 14:33:28','2025-11-30 14:33:28'),
(134,791,'2025-11-30 14:33:35','2025-11-30 14:33:35'),
(134,792,'2025-11-30 14:33:39','2025-11-30 14:33:39'),
(134,793,'2025-11-30 14:32:57','2025-11-30 14:32:57'),
(134,795,'2025-11-30 14:33:41','2025-11-30 14:33:41'),
(134,796,'2025-11-30 14:33:45','2025-11-30 14:33:45'),
(134,799,'2025-11-30 14:34:16','2025-11-30 14:34:16'),
(134,995,'2025-11-30 14:40:46','2025-11-30 14:40:46'),
(134,1001,'2025-11-30 14:33:17','2025-11-30 14:33:17'),
(134,1003,'2025-11-30 14:33:22','2025-11-30 14:33:22'),
(134,1004,'2025-11-30 14:35:00','2025-11-30 14:35:00'),
(134,1005,'2025-11-30 14:34:49','2025-11-30 14:34:49'),
(134,1006,'2025-11-30 14:35:05','2025-11-30 14:35:05'),
(134,1008,'2025-11-30 14:34:52','2025-11-30 14:34:52'),
(134,1013,'2025-11-30 14:33:19','2025-11-30 14:33:19'),
(134,1014,'2025-11-30 14:33:23','2025-11-30 14:33:23'),
(134,1016,'2025-11-30 14:35:07','2025-11-30 14:35:07'),
(134,1023,'2025-11-30 14:34:56','2025-11-30 14:34:56'),
(134,1024,'2025-11-30 14:34:50','2025-11-30 14:34:50'),
(134,1026,'2025-11-30 14:34:56','2025-11-30 14:34:56'),
(134,1027,'2025-11-30 14:35:08','2025-11-30 14:35:08'),
(134,1029,'2025-11-30 14:34:53','2025-11-30 14:34:53'),
(134,1034,'2025-11-30 14:35:06','2025-11-30 14:35:06'),
(134,1042,'2025-11-30 14:34:58','2025-11-30 14:34:58'),
(134,1043,'2025-11-30 14:34:57','2025-11-30 14:34:57'),
(134,1339,'2025-11-30 14:34:39','2025-11-30 14:34:39'),
(134,1340,'2025-11-30 14:34:40','2025-11-30 14:34:40'),
(134,1349,'2025-11-30 14:33:38','2025-11-30 14:33:38');
/*!40000 ALTER TABLE `role_permissions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `role_signature_assignments`
--

DROP TABLE IF EXISTS `role_signature_assignments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `role_signature_assignments` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `role_id` int(11) unsigned NOT NULL,
  `template_id` int(11) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_role_assignment` (`role_id`),
  KEY `idx_template_id` (`template_id`),
  CONSTRAINT `role_signature_assignments_ibfk_1` FOREIGN KEY (`template_id`) REFERENCES `email_signature_templates` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `role_signature_assignments`
--

LOCK TABLES `role_signature_assignments` WRITE;
/*!40000 ALTER TABLE `role_signature_assignments` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `role_signature_assignments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `roles`
--

DROP TABLE IF EXISTS `roles`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `roles` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(50) NOT NULL,
  `description` text DEFAULT NULL,
  `is_system` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=135 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `roles`
--

LOCK TABLES `roles` WRITE;
/*!40000 ALTER TABLE `roles` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `roles` VALUES
(1,'Admin','System Administrator - Full Access',1,'2025-10-26 14:24:24','2025-11-01 15:08:04'),
(70,'Accounts Payable Manager','Full AP module access including vendor management, payment approvals, and AP reporting.',0,'2025-11-08 17:16:14','2025-11-08 17:16:14'),
(72,'Accounts Receivable Manager','Full AR module access including customer payments, credit management, and AR reporting.',0,'2025-11-08 17:16:14','2025-11-08 17:16:14'),
(76,'VP/Director of Sales','Full sales and CRM access with pricing approval, discount authority, and team management.',0,'2025-11-08 17:16:14','2025-11-15 12:33:55'),
(77,'Sales Manager','Sales team and account management',0,'2025-11-08 17:16:14','2025-11-11 13:53:56'),
(78,'Sales Representative','Customer relationship management and order processing',0,'2025-11-08 17:16:14','2025-11-11 13:53:56'),
(79,'Customer Service Manager','Full customer service access including ticket management, returns, and CS reporting.',0,'2025-11-08 17:16:14','2025-11-08 17:16:14'),
(80,'Customer Service Representative','Handle support tickets, process returns, view customer information.',0,'2025-11-08 17:16:14','2025-11-08 17:16:14'),
(81,'VP/Director of Operations','Full operations access including inventory, purchasing, and warehouse management.',0,'2025-11-08 17:16:14','2025-11-15 12:33:55'),
(82,'Warehouse Manager','Manage inventory, approve transfers and adjustments, warehouse reporting.',0,'2025-11-08 17:16:14','2025-11-08 17:16:14'),
(85,'Purchasing Manager','Full purchasing access including supplier management, PO approvals, and procurement reports.',0,'2025-11-08 17:16:14','2025-11-08 17:16:14'),
(87,'Inventory Controller','Manage inventory levels, reorder points, stock adjustments, and inventory reporting.',0,'2025-11-08 17:16:14','2025-11-08 17:16:14'),
(88,'VP/Director of Manufacturing','Full manufacturing access including production planning, BOM management, and MRP.',0,'2025-11-08 17:16:14','2025-11-15 12:33:55'),
(92,'Quality Manager','Full quality control access including inspection plans, non-conformance management, and quality reports.',0,'2025-11-08 17:16:14','2025-11-08 17:16:14'),
(93,'Quality Inspector','Perform inspections, record test results, create NCRs. Cannot modify inspection plans.',0,'2025-11-08 17:16:14','2025-11-08 17:16:14'),
(96,'HR Coordinator','Employee records, recruitment coordination, training scheduling. No compensation access.',0,'2025-11-08 17:16:14','2025-11-08 17:16:14'),
(97,'Recruiting Manager','Full recruitment module access including job postings, interviews, offers, and hiring reports.',0,'2025-11-08 17:16:14','2025-11-08 17:16:14'),
(99,'Payroll Manager','Full payroll access with tax filing and payroll reporting.',0,'2025-11-08 17:16:14','2025-11-08 17:16:14'),
(100,'System Administrator','Full system access including security, configuration, integrations, and system reports.',0,'2025-11-08 17:16:14','2025-11-08 17:16:14'),
(101,'IT Manager','User management, system configuration, backup management, and IT dashboards.',0,'2025-11-08 17:16:14','2025-11-08 17:16:14'),
(108,'CEO','Chief Executive Officer - Full strategic oversight and business administration',0,'2025-11-11 13:50:13','2025-11-11 13:50:13'),
(110,'CFO','Chief Financial Officer - Complete financial oversight and control',0,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(111,'CTO','Chief Technology Officer',0,'2025-11-15 11:52:00','2025-11-15 11:52:00'),
(112,'COO','Chief Operating Officer - Operations, manufacturing, and supply chain oversight',0,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(116,'VP/Director of HR','Human resources and talent management',0,'2025-11-11 13:53:56','2025-11-15 12:33:55'),
(121,'Controller','Senior accounting oversight and financial reporting',0,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(126,'Software Engineer','Software development and technical implementation',0,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(127,'Product Manager','Product strategy and roadmap management',0,'2025-11-11 13:53:56','2025-11-11 13:53:56'),
(130,'President, Batteries &amp;amp; Tech','President of Batteries &amp;amp; Tech division, reports to CTO',0,'2025-11-15 11:54:33','2025-11-24 18:21:29'),
(131,'VP/Director of Production','VP or Director of Production - manages production operations and team',0,'2025-11-15 12:35:17','2025-11-15 12:35:17'),
(132,'VP/Director of Business Development','VP or Director of Business Development - handles new business and partnerships',0,'2025-11-15 12:35:17','2025-11-15 12:35:17'),
(133,'VP/Director of Autonomous Systems','VP or Director of Autonomous Systems - leads autonomous technology initiatives',0,'2025-11-15 12:35:17','2025-11-15 12:35:17'),
(134,'Test Role','Used to Test Security',0,'2025-11-30 14:10:19','2025-11-30 14:10:19');
/*!40000 ALTER TABLE `roles` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `sales_order_items`
--

DROP TABLE IF EXISTS `sales_order_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `sales_order_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned DEFAULT NULL,
  `description` text DEFAULT NULL,
  `quantity` int(11) NOT NULL,
  `shipped_quantity` decimal(10,2) DEFAULT 0.00,
  `unit_price` decimal(15,2) NOT NULL,
  `tax_rate` decimal(5,2) DEFAULT 0.00,
  `discount_percent` decimal(5,2) DEFAULT 0.00,
  `line_total` decimal(15,2) NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `order_id` (`order_id`),
  KEY `product_id` (`product_id`),
  CONSTRAINT `sales_order_items_ibfk_1` FOREIGN KEY (`order_id`) REFERENCES `sales_orders` (`id`) ON DELETE CASCADE,
  CONSTRAINT `sales_order_items_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_order_items`
--

LOCK TABLES `sales_order_items` WRITE;
/*!40000 ALTER TABLE `sales_order_items` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `sales_order_items` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `sales_orders`
--

DROP TABLE IF EXISTS `sales_orders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `sales_orders` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `order_number` varchar(50) NOT NULL,
  `customer_id` int(10) unsigned NOT NULL,
  `order_date` date NOT NULL,
  `delivery_date` date DEFAULT NULL,
  `status` enum('draft','confirmed','processing','shipped','delivered','cancelled') DEFAULT 'draft',
  `subtotal` decimal(15,2) DEFAULT 0.00,
  `tax_amount` decimal(15,2) DEFAULT 0.00,
  `discount_amount` decimal(15,2) DEFAULT 0.00,
  `shipping_cost` decimal(15,2) DEFAULT 0.00,
  `total_amount` decimal(15,2) DEFAULT 0.00,
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `order_number` (`order_number`),
  KEY `customer_id` (`customer_id`),
  KEY `created_by` (`created_by`),
  KEY `idx_deleted_at` (`deleted_at`),
  KEY `idx_search_status` (`status`,`order_date`),
  FULLTEXT KEY `ft_order_search` (`order_number`,`notes`),
  CONSTRAINT `sales_orders_ibfk_1` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`),
  CONSTRAINT `sales_orders_ibfk_2` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_orders`
--

LOCK TABLES `sales_orders` WRITE;
/*!40000 ALTER TABLE `sales_orders` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `sales_orders` VALUES
(16,'SO-2025-11-16-0001',46,'2025-11-16',NULL,'draft',1000.00,100.00,0.00,0.00,1100.00,NULL,1,'2025-11-16 13:27:53','2025-11-16 13:27:53',NULL),
(17,'SO-2025-11-16-0002',46,'2025-11-16',NULL,'draft',8500.00,850.00,0.00,0.00,9350.00,'Website project',1,'2025-11-16 14:28:22','2025-11-16 14:28:22',NULL),
(18,'SO-2025-11-16-0003',46,'2025-11-16',NULL,'draft',2500.00,250.00,0.00,0.00,2750.00,'Service package',1,'2025-11-16 15:01:01','2025-11-16 15:01:01',NULL),
(19,'SO-2025-11-16-0004',46,'2025-11-16',NULL,'draft',15000.00,1500.00,0.00,0.00,16500.00,'Large infrastructure deal',1,'2025-11-16 15:06:36','2025-11-16 15:06:36',NULL),
(20,'SO-2025-11-16-0005',46,'2025-11-16',NULL,'draft',750.00,75.00,0.00,0.00,825.00,'Quick deal',1,'2025-11-16 19:22:19','2025-11-16 19:22:19',NULL);
/*!40000 ALTER TABLE `sales_orders` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `saved_searches`
--

DROP TABLE IF EXISTS `saved_searches`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `saved_searches` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `name` varchar(100) NOT NULL COMMENT 'User-friendly name for saved search',
  `category` varchar(50) NOT NULL,
  `query` varchar(500) DEFAULT NULL,
  `filters` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Advanced filters (date range, status, etc.)' CHECK (json_valid(`filters`)),
  `is_default` tinyint(1) DEFAULT 0 COMMENT 'Load this search by default',
  `is_shared` tinyint(1) DEFAULT 0 COMMENT 'Share with other users',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_user_id` (`user_id`),
  KEY `idx_category` (`category`),
  KEY `idx_is_shared` (`is_shared`),
  CONSTRAINT `saved_searches_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='User saved searches and filters';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `saved_searches`
--

LOCK TABLES `saved_searches` WRITE;
/*!40000 ALTER TABLE `saved_searches` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `saved_searches` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `search_history`
--

DROP TABLE IF EXISTS `search_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `search_history` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned DEFAULT NULL,
  `query` varchar(500) NOT NULL,
  `category` varchar(50) DEFAULT NULL COMMENT 'all, customers, products, invoices, etc.',
  `results_count` int(11) DEFAULT 0 COMMENT 'Number of results returned',
  `execution_time_ms` int(11) DEFAULT NULL COMMENT 'Query execution time in milliseconds',
  `ip_address` varchar(45) DEFAULT NULL,
  `user_agent` varchar(255) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_user_id` (`user_id`,`created_at`),
  KEY `idx_query` (`query`(255)),
  KEY `idx_category` (`category`),
  KEY `idx_created_at` (`created_at`),
  CONSTRAINT `search_history_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Track search queries for analytics and suggestions';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `search_history`
--

LOCK TABLES `search_history` WRITE;
/*!40000 ALTER TABLE `search_history` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `search_history` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Temporary table structure for view `search_performance_stats`
--

DROP TABLE IF EXISTS `search_performance_stats`;
/*!50001 DROP VIEW IF EXISTS `search_performance_stats`*/;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8mb4;
/*!50001 CREATE VIEW `search_performance_stats` AS SELECT
 1 AS `category`,
  1 AS `total_searches`,
  1 AS `avg_results`,
  1 AS `avg_execution_time_ms`,
  1 AS `max_execution_time_ms`,
  1 AS `zero_result_searches`,
  1 AS `search_date` */;
SET character_set_client = @saved_cs_client;

--
-- Table structure for table `search_suggestions`
--

DROP TABLE IF EXISTS `search_suggestions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `search_suggestions` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `query` varchar(255) NOT NULL,
  `category` varchar(50) DEFAULT NULL,
  `search_count` int(11) DEFAULT 1 COMMENT 'How many times this was searched',
  `click_count` int(11) DEFAULT 0 COMMENT 'How many times results were clicked',
  `last_searched_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `query` (`query`),
  KEY `idx_query` (`query`),
  KEY `idx_search_count` (`search_count` DESC),
  KEY `idx_category` (`category`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Popular search queries for autocomplete suggestions';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `search_suggestions`
--

LOCK TABLES `search_suggestions` WRITE;
/*!40000 ALTER TABLE `search_suggestions` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `search_suggestions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `settings`
--

DROP TABLE IF EXISTS `settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `settings` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `setting_key` varchar(100) NOT NULL,
  `setting_value` text DEFAULT NULL,
  `description` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `setting_key` (`setting_key`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `settings`
--

LOCK TABLES `settings` WRITE;
/*!40000 ALTER TABLE `settings` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `settings` VALUES
(1,'corporate_email_domain','@mavrix.one','Corporate email domain for primary email addresses','2025-10-27 15:16:36','2025-11-11 14:05:48');
/*!40000 ALTER TABLE `settings` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `shipment_items`
--

DROP TABLE IF EXISTS `shipment_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `shipment_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `shipment_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned NOT NULL,
  `sales_order_item_id` int(10) unsigned DEFAULT NULL,
  `quantity` decimal(10,2) NOT NULL,
  `serial_numbers` text DEFAULT NULL,
  `notes` varchar(255) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `shipment_id` (`shipment_id`),
  KEY `product_id` (`product_id`),
  KEY `sales_order_item_id` (`sales_order_item_id`),
  CONSTRAINT `shipment_items_ibfk_1` FOREIGN KEY (`shipment_id`) REFERENCES `shipments` (`id`) ON DELETE CASCADE,
  CONSTRAINT `shipment_items_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`),
  CONSTRAINT `shipment_items_ibfk_3` FOREIGN KEY (`sales_order_item_id`) REFERENCES `sales_order_items` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `shipment_items`
--

LOCK TABLES `shipment_items` WRITE;
/*!40000 ALTER TABLE `shipment_items` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `shipment_items` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `shipments`
--

DROP TABLE IF EXISTS `shipments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `shipments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `shipment_number` varchar(50) NOT NULL,
  `sales_order_id` int(10) unsigned DEFAULT NULL,
  `invoice_id` int(10) unsigned DEFAULT NULL,
  `customer_id` int(10) unsigned NOT NULL,
  `shipment_date` date NOT NULL,
  `expected_delivery` date DEFAULT NULL,
  `carrier` varchar(100) DEFAULT NULL,
  `tracking_number` varchar(100) DEFAULT NULL,
  `shipping_method` varchar(100) DEFAULT NULL,
  `shipping_cost` decimal(15,2) DEFAULT 0.00,
  `shipping_address` text DEFAULT NULL,
  `shipping_city` varchar(100) DEFAULT NULL,
  `shipping_state` varchar(100) DEFAULT NULL,
  `shipping_zip` varchar(20) DEFAULT NULL,
  `shipping_country` varchar(100) DEFAULT NULL,
  `status` enum('pending','packed','shipped','in_transit','delivered','cancelled','returned') DEFAULT 'pending',
  `notes` text DEFAULT NULL,
  `packed_by` int(10) unsigned DEFAULT NULL,
  `shipped_by` int(10) unsigned DEFAULT NULL,
  `packed_at` timestamp NULL DEFAULT NULL,
  `shipped_at` timestamp NULL DEFAULT NULL,
  `delivered_at` timestamp NULL DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `shipment_number` (`shipment_number`),
  KEY `sales_order_id` (`sales_order_id`),
  KEY `invoice_id` (`invoice_id`),
  KEY `customer_id` (`customer_id`),
  KEY `created_by` (`created_by`),
  KEY `packed_by` (`packed_by`),
  KEY `shipped_by` (`shipped_by`),
  KEY `idx_shipments_deleted_at` (`deleted_at`),
  CONSTRAINT `shipments_ibfk_1` FOREIGN KEY (`sales_order_id`) REFERENCES `sales_orders` (`id`) ON DELETE SET NULL,
  CONSTRAINT `shipments_ibfk_2` FOREIGN KEY (`invoice_id`) REFERENCES `invoices` (`id`) ON DELETE SET NULL,
  CONSTRAINT `shipments_ibfk_3` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`),
  CONSTRAINT `shipments_ibfk_4` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `shipments_ibfk_5` FOREIGN KEY (`packed_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `shipments_ibfk_6` FOREIGN KEY (`shipped_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `shipments`
--

LOCK TABLES `shipments` WRITE;
/*!40000 ALTER TABLE `shipments` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `shipments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `shortage_alerts`
--

DROP TABLE IF EXISTS `shortage_alerts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `shortage_alerts` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `product_id` int(10) unsigned NOT NULL,
  `work_order_id` int(10) unsigned DEFAULT NULL,
  `safety_stock` decimal(15,3) DEFAULT 0.000,
  `reorder_point` decimal(15,3) DEFAULT 0.000,
  `current_stock` decimal(15,3) DEFAULT 0.000,
  `net_required` decimal(15,3) DEFAULT 0.000,
  `shortage_amount` decimal(15,3) NOT NULL,
  `priority` enum('low','medium','high','critical') DEFAULT 'medium',
  `status` enum('active','acknowledged','resolved') DEFAULT 'active',
  `resolution` varchar(255) DEFAULT NULL,
  `resolution_notes` text DEFAULT NULL,
  `resolved_by` int(10) unsigned DEFAULT NULL,
  `resolved_at` datetime DEFAULT NULL,
  `created_at` datetime DEFAULT current_timestamp(),
  `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_product` (`product_id`),
  KEY `idx_priority` (`priority`),
  KEY `idx_status` (`status`),
  KEY `idx_created_at` (`created_at`),
  KEY `work_order_id` (`work_order_id`),
  KEY `resolved_by` (`resolved_by`),
  KEY `idx_shortage_status_priority` (`status`,`priority`),
  CONSTRAINT `shortage_alerts_ibfk_1` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE,
  CONSTRAINT `shortage_alerts_ibfk_2` FOREIGN KEY (`work_order_id`) REFERENCES `work_orders` (`id`) ON DELETE CASCADE,
  CONSTRAINT `shortage_alerts_ibfk_3` FOREIGN KEY (`resolved_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `shortage_alerts`
--

LOCK TABLES `shortage_alerts` WRITE;
/*!40000 ALTER TABLE `shortage_alerts` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `shortage_alerts` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `statement_history`
--

DROP TABLE IF EXISTS `statement_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `statement_history` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `customer_id` int(10) unsigned NOT NULL,
  `start_date` date NOT NULL,
  `end_date` date NOT NULL,
  `generation_method` enum('manual','automatic','email','bulk') DEFAULT 'manual',
  `generated_at` timestamp NULL DEFAULT current_timestamp(),
  `generated_by` int(10) unsigned DEFAULT NULL,
  `email_sent` tinyint(1) DEFAULT 0,
  `email_sent_at` timestamp NULL DEFAULT NULL,
  `pdf_generated` tinyint(1) DEFAULT 0,
  `pdf_path` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_customer` (`customer_id`),
  KEY `idx_generated_at` (`generated_at`),
  KEY `idx_period` (`start_date`,`end_date`),
  KEY `generated_by` (`generated_by`),
  CONSTRAINT `statement_history_ibfk_1` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE,
  CONSTRAINT `statement_history_ibfk_2` FOREIGN KEY (`generated_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `statement_history`
--

LOCK TABLES `statement_history` WRITE;
/*!40000 ALTER TABLE `statement_history` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `statement_history` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `stock_movements`
--

DROP TABLE IF EXISTS `stock_movements`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `stock_movements` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `product_id` int(10) unsigned NOT NULL,
  `location_id` int(10) unsigned NOT NULL,
  `movement_type` enum('in','out','adjustment','transfer','return','sale','purchase') NOT NULL,
  `quantity` decimal(15,4) NOT NULL COMMENT 'Positive for IN, negative for OUT',
  `cost_price` decimal(15,2) DEFAULT NULL COMMENT 'Unit cost at time of movement',
  `reference_type` varchar(50) DEFAULT NULL COMMENT 'Type of related document (e.g., purchase_order, sales_order)',
  `reference_id` int(10) unsigned DEFAULT NULL COMMENT 'ID of related document',
  `notes` text DEFAULT NULL,
  `movement_date` datetime NOT NULL DEFAULT current_timestamp(),
  `recorded_by` int(10) unsigned DEFAULT NULL COMMENT 'User ID who recorded the movement',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_product_id` (`product_id`),
  KEY `idx_location_id` (`location_id`),
  KEY `idx_movement_type` (`movement_type`),
  KEY `idx_movement_date` (`movement_date`),
  KEY `idx_reference` (`reference_type`,`reference_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `stock_movements`
--

LOCK TABLES `stock_movements` WRITE;
/*!40000 ALTER TABLE `stock_movements` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `stock_movements` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `stock_transfers`
--

DROP TABLE IF EXISTS `stock_transfers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `stock_transfers` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `transfer_number` varchar(50) NOT NULL,
  `product_id` int(10) unsigned NOT NULL,
  `from_location_id` int(10) unsigned NOT NULL,
  `to_location_id` int(10) unsigned NOT NULL,
  `quantity` decimal(15,4) NOT NULL,
  `status` enum('pending','in_transit','completed','cancelled') NOT NULL DEFAULT 'pending',
  `notes` text DEFAULT NULL,
  `requested_by` int(10) unsigned DEFAULT NULL COMMENT 'User who requested the transfer',
  `requested_date` datetime NOT NULL DEFAULT current_timestamp(),
  `shipped_by` int(10) unsigned DEFAULT NULL COMMENT 'User who shipped the transfer',
  `shipped_date` datetime DEFAULT NULL,
  `received_by` int(10) unsigned DEFAULT NULL COMMENT 'User who received the transfer',
  `received_date` datetime DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `transfer_number` (`transfer_number`),
  KEY `idx_product_id` (`product_id`),
  KEY `idx_from_location` (`from_location_id`),
  KEY `idx_to_location` (`to_location_id`),
  KEY `idx_status` (`status`),
  KEY `idx_requested_date` (`requested_date`),
  KEY `fk_transfers_requested_by` (`requested_by`),
  KEY `fk_transfers_shipped_by` (`shipped_by`),
  KEY `fk_transfers_received_by` (`received_by`),
  CONSTRAINT `fk_transfers_from_location` FOREIGN KEY (`from_location_id`) REFERENCES `locations` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_transfers_product` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_transfers_received_by` FOREIGN KEY (`received_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `fk_transfers_requested_by` FOREIGN KEY (`requested_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `fk_transfers_shipped_by` FOREIGN KEY (`shipped_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `fk_transfers_to_location` FOREIGN KEY (`to_location_id`) REFERENCES `locations` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `stock_transfers`
--

LOCK TABLES `stock_transfers` WRITE;
/*!40000 ALTER TABLE `stock_transfers` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `stock_transfers` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `supplier_bill_items`
--

DROP TABLE IF EXISTS `supplier_bill_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `supplier_bill_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `bill_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned DEFAULT NULL,
  `description` text NOT NULL,
  `quantity` int(11) NOT NULL,
  `unit_price` decimal(15,2) NOT NULL,
  `tax_rate` decimal(5,2) DEFAULT 0.00,
  `line_total` decimal(15,2) NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `bill_id` (`bill_id`),
  KEY `product_id` (`product_id`),
  CONSTRAINT `supplier_bill_items_ibfk_1` FOREIGN KEY (`bill_id`) REFERENCES `supplier_bills` (`id`) ON DELETE CASCADE,
  CONSTRAINT `supplier_bill_items_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `supplier_bill_items`
--

LOCK TABLES `supplier_bill_items` WRITE;
/*!40000 ALTER TABLE `supplier_bill_items` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `supplier_bill_items` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `supplier_bills`
--

DROP TABLE IF EXISTS `supplier_bills`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `supplier_bills` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `bill_number` varchar(50) NOT NULL,
  `supplier_invoice_number` varchar(100) DEFAULT NULL,
  `supplier_id` int(10) unsigned NOT NULL,
  `po_id` int(10) unsigned DEFAULT NULL,
  `grn_id` int(10) unsigned DEFAULT NULL,
  `bill_date` date NOT NULL,
  `due_date` date DEFAULT NULL,
  `status` enum('draft','pending','approved','paid','overdue','cancelled') DEFAULT 'draft',
  `subtotal` decimal(15,2) DEFAULT 0.00,
  `tax_amount` decimal(15,2) DEFAULT 0.00,
  `total_amount` decimal(15,2) DEFAULT 0.00,
  `paid_amount` decimal(15,2) DEFAULT 0.00,
  `balance` decimal(15,2) DEFAULT 0.00,
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `bill_number` (`bill_number`),
  KEY `supplier_id` (`supplier_id`),
  KEY `po_id` (`po_id`),
  KEY `grn_id` (`grn_id`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `supplier_bills_ibfk_1` FOREIGN KEY (`supplier_id`) REFERENCES `suppliers` (`id`),
  CONSTRAINT `supplier_bills_ibfk_2` FOREIGN KEY (`po_id`) REFERENCES `purchase_orders` (`id`) ON DELETE SET NULL,
  CONSTRAINT `supplier_bills_ibfk_3` FOREIGN KEY (`grn_id`) REFERENCES `goods_receipts` (`id`) ON DELETE SET NULL,
  CONSTRAINT `supplier_bills_ibfk_4` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `supplier_bills`
--

LOCK TABLES `supplier_bills` WRITE;
/*!40000 ALTER TABLE `supplier_bills` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `supplier_bills` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `supplier_contracts`
--

DROP TABLE IF EXISTS `supplier_contracts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `supplier_contracts` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `contract_number` varchar(50) NOT NULL,
  `supplier_id` int(10) unsigned NOT NULL,
  `title` varchar(255) NOT NULL,
  `contract_type` enum('supply','service','maintenance','other') DEFAULT 'supply',
  `start_date` date NOT NULL,
  `end_date` date DEFAULT NULL,
  `value` decimal(15,2) DEFAULT NULL,
  `currency` varchar(3) DEFAULT 'USD',
  `payment_terms` varchar(100) DEFAULT NULL,
  `renewal_terms` text DEFAULT NULL,
  `status` enum('draft','active','expiring','expired','terminated') DEFAULT 'draft',
  `terms_conditions` text DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `contract_number` (`contract_number`),
  KEY `supplier_id` (`supplier_id`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `supplier_contracts_ibfk_1` FOREIGN KEY (`supplier_id`) REFERENCES `suppliers` (`id`),
  CONSTRAINT `supplier_contracts_ibfk_2` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `supplier_contracts`
--

LOCK TABLES `supplier_contracts` WRITE;
/*!40000 ALTER TABLE `supplier_contracts` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `supplier_contracts` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `supplier_payments`
--

DROP TABLE IF EXISTS `supplier_payments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `supplier_payments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `payment_number` varchar(50) NOT NULL,
  `supplier_id` int(10) unsigned NOT NULL,
  `bill_id` int(10) unsigned DEFAULT NULL,
  `payment_date` date NOT NULL,
  `amount` decimal(15,2) NOT NULL,
  `payment_method` enum('cash','check','credit_card','bank_transfer','other') NOT NULL,
  `reference` varchar(100) DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `payment_number` (`payment_number`),
  KEY `supplier_id` (`supplier_id`),
  KEY `bill_id` (`bill_id`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `supplier_payments_ibfk_1` FOREIGN KEY (`supplier_id`) REFERENCES `suppliers` (`id`),
  CONSTRAINT `supplier_payments_ibfk_2` FOREIGN KEY (`bill_id`) REFERENCES `supplier_bills` (`id`) ON DELETE SET NULL,
  CONSTRAINT `supplier_payments_ibfk_3` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `supplier_payments`
--

LOCK TABLES `supplier_payments` WRITE;
/*!40000 ALTER TABLE `supplier_payments` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `supplier_payments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `suppliers`
--

DROP TABLE IF EXISTS `suppliers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `suppliers` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `company_name` varchar(255) NOT NULL,
  `contact_person` varchar(200) DEFAULT NULL,
  `email` varchar(255) NOT NULL,
  `phone` varchar(20) DEFAULT NULL,
  `website` varchar(255) DEFAULT NULL,
  `tax_id` varchar(50) DEFAULT NULL,
  `address` text DEFAULT NULL,
  `city` varchar(100) DEFAULT NULL,
  `state` varchar(100) DEFAULT NULL,
  `zip` varchar(20) DEFAULT NULL,
  `country` varchar(100) DEFAULT NULL,
  `payment_terms` varchar(100) DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `status` enum('active','inactive') DEFAULT 'active',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  `is_1099_contractor` tinyint(1) DEFAULT 0 COMMENT 'Is this supplier a 1099 contractor?',
  `form_1099_type` enum('MISC','NEC','K','INT','DIV','R') DEFAULT NULL COMMENT '1099 form type',
  `tax_id_type` enum('EIN','SSN') DEFAULT 'EIN' COMMENT 'Tax ID type',
  `tax_id_verified` tinyint(1) DEFAULT 0 COMMENT 'Tax ID verified with W-9',
  `w9_received_date` date DEFAULT NULL COMMENT 'Date W-9 form was received',
  `w9_file_path` varchar(500) DEFAULT NULL COMMENT 'Path to W-9 document',
  `box_number` int(11) DEFAULT NULL COMMENT '1099 box number for categorization',
  PRIMARY KEY (`id`),
  KEY `idx_1099_contractor` (`is_1099_contractor`),
  KEY `idx_form_1099_type` (`form_1099_type`),
  KEY `idx_deleted_at` (`deleted_at`),
  FULLTEXT KEY `ft_supplier_search` (`company_name`,`email`)
) ENGINE=InnoDB AUTO_INCREMENT=64 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `suppliers`
--

LOCK TABLES `suppliers` WRITE;
/*!40000 ALTER TABLE `suppliers` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `suppliers` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `system_notes`
--

DROP TABLE IF EXISTS `system_notes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `system_notes` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `note_type` varchar(50) NOT NULL,
  `subject` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `created_by` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_note_type` (`note_type`),
  KEY `idx_created_at` (`created_at`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `system_notes`
--

LOCK TABLES `system_notes` WRITE;
/*!40000 ALTER TABLE `system_notes` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `system_notes` VALUES
(1,'deprecation','PurchasePaymentController Deprecated','The PurchasePaymentController (/purchases/payments) has been deprecated in favor of VendorPaymentController (/accounting/vendor-payments). \n    The VendorPaymentController provides enhanced features including:\n    - Check printing capability\n    - Multiple bill payment application\n    - Journal entry integration\n    - Payment status workflow (draft, printed, cleared, voided)\n    - Bank account management\n    \n    Legacy routes at /purchases/payments remain active for backwards compatibility but should be migrated to /accounting/vendor-payments.\n    Any new development should use VendorPaymentController.','2025-11-15 19:51:04',NULL);
/*!40000 ALTER TABLE `system_notes` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `system_script_log`
--

DROP TABLE IF EXISTS `system_script_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `system_script_log` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `script_key` varchar(100) NOT NULL COMMENT 'Script identifier',
  `executed_by` int(10) unsigned NOT NULL COMMENT 'User who executed the script',
  `parameters` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Script parameters as JSON' CHECK (json_valid(`parameters`)),
  `success` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Execution success flag',
  `output` mediumtext DEFAULT NULL COMMENT 'Script output (up to 16MB)',
  `message` varchar(500) DEFAULT NULL COMMENT 'Result message',
  `executed_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_script_key` (`script_key`),
  KEY `idx_executed_by` (`executed_by`),
  KEY `idx_executed_at` (`executed_at`),
  CONSTRAINT `system_script_log_ibfk_1` FOREIGN KEY (`executed_by`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=29 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Logs system script executions for audit trail';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `system_script_log`
--

LOCK TABLES `system_script_log` WRITE;
/*!40000 ALTER TABLE `system_script_log` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `system_script_log` VALUES
(1,'scan_permissions',1,'{\"mode\":\"dry-run\"}',0,'sh: php: command not found','Script execution failed with exit code 127','2025-11-24 19:19:44'),
(2,'scan_permissions',1,'{\"mode\":\"dry-run\"}',0,'sh: php: command not found','Script execution failed with exit code 127','2025-11-24 19:21:23'),
(3,'scan_permissions',1,'{\"mode\":\"dry-run\"}',1,'PHP Warning:  Constant BASE_PATH already defined in /Users/rpmbbu/LocalPHPStorm/m1_erp_config/config.php on line 17\n\nWarning: Constant BASE_PATH already defined in /Users/rpmbbu/LocalPHPStorm/m1_erp_config/config.php on line 17\nPHP Warning:  session_name(): Session name cannot be changed after headers have already been sent in /Users/rpmbbu/LocalPHPStorm/m1_erp_config/config.php on line 57\n\nWarning: session_name(): Session name cannot be changed after headers have already been sent in /Users/rpmbbu/LocalPHPStorm/m1_erp_config/config.php on line 57\nPHP Warning:  session_set_cookie_params(): Session cookie parameters cannot be changed after headers have already been sent in /Users/rpmbbu/LocalPHPStorm/m1_erp_config/config.php on line 58\n\nWarning: session_set_cookie_params(): Session cookie parameters cannot be changed after headers have already been sent in /Users/rpmbbu/LocalPHPStorm/m1_erp_config/config.php on line 58\nPHP Warning:  session_start(): Session cannot be started after headers have already been sent in /Users/rpmbbu/LocalPHPStorm/m1_erp_config/config.php on line 65\n\nWarning: session_start(): Session cannot be started after headers have already been sent in /Users/rpmbbu/LocalPHPStorm/m1_erp_config/config.php on line 65\n\n================================================================================\nPERMISSION SCANNER & SYNC UTILITY\nMODE: DRY RUN (no changes will be made)\n================================================================================\n\n📚 LOADING DATABASE PERMISSIONS\n--------------------------------------------------------------------------------\n  Loaded 373 permissions from database\n\n🔍 SCANNING CONTROLLERS\n--------------------------------------------------------------------------------\n  Scanned 143 controller files\n  Found 116 files with permission checks\n  Discovered 116 unique permissions\n\n📋 DISCOVERED PERMISSIONS REPORT\n--------------------------------------------------------------------------------\n  Permission                               Checks   Controllers\n--------------------------------------------------------------------------------\n\n  (CORE):\n  admin                                    86       ActionMenuEditorController,... ✓\n\n  1099_CONTRACTORS:\n  1099_contractors.export                  1        Form1099Controller ✓\n  1099_contractors.generate_reports        1        Form1099Controller ✓\n  1099_contractors.view                    1        Form1099Controller ✓\n  1099_contractors.view_payments           1        Form1099Controller ✓\n\n  ACCOUNTING:\n  accounting.approve                       2        ExpenseController ✓\n  accounting.create                        25       AccountController, BankAcco... ✓\n  accounting.customer_payments.create      2        CustomerPaymentController ✓\n  accounting.customer_payments.view        2        CustomerPaymentController ✓\n  accounting.delete                        10       BankAccountController, Budg... ✓\n  accounting.edit                          20       BankAccountController, Bank... ✓\n  accounting.vendor_payments.create        4        VendorPaymentController ✓\n  accounting.vendor_payments.delete        1        VendorPaymentController ✓\n  accounting.vendor_payments.edit          2        VendorPaymentController ✓\n  accounting.vendor_payments.print_checks  1        VendorPaymentController ✓\n  accounting.vendor_payments.view          3        VendorPaymentController ✓\n  accounting.vendor_payments.void          1        VendorPaymentController ✓\n  accounting.view                          35       AccountController, Accounti... ✓\n\n  ADMIN:\n  admin.settings                           1        PipedriveImportController ✓\n  admin.system_scripts                     3        SystemScriptsController ✓\n\n  AUDIT_LOGS:\n  audit_logs.view                          1        AuditLogController ✓\n\n  BANK_IMPORT:\n  bank_import.create                       2        BankImportController ✓\n  bank_import.delete                       1        BankImportController ✓\n  bank_import.edit                         2        BankImportController ✓\n  bank_import.import                       1        BankImportController ✓\n  bank_import.manage_rules                 4        BankImportController ✓\n  bank_import.view                         2        BankImportController ✓\n\n  CAMERA_AUDIT:\n  camera_audit.capture                     1        CameraAuditController ✓\n  camera_audit.delete                      1        CameraAuditController ✓\n  camera_audit.stations                    3        CameraAuditController ✓\n  camera_audit.verify                      1        CameraAuditController ✓\n  camera_audit.view                        3        CameraAuditController ✓\n\n  CRM:\n  crm.create                               6        ClientController, CompanyCo... ✓\n  crm.delete                               6        ClientController, CompanyCo... ✓\n  crm.edit                                 6       ','Script executed successfully','2025-11-24 19:22:27'),
(4,'sync_permissions_menu',1,'{\"mode\":\"dry-run\"}',1,'PHP Warning:  Constant BASE_PATH already defined in /Users/rpmbbu/LocalPHPStorm/m1_erp_config/config.php on line 17\n\nWarning: Constant BASE_PATH already defined in /Users/rpmbbu/LocalPHPStorm/m1_erp_config/config.php on line 17\nPHP Warning:  session_name(): Session name cannot be changed after headers have already been sent in /Users/rpmbbu/LocalPHPStorm/m1_erp_config/config.php on line 57\n\nWarning: session_name(): Session name cannot be changed after headers have already been sent in /Users/rpmbbu/LocalPHPStorm/m1_erp_config/config.php on line 57\nPHP Warning:  session_set_cookie_params(): Session cookie parameters cannot be changed after headers have already been sent in /Users/rpmbbu/LocalPHPStorm/m1_erp_config/config.php on line 58\n\nWarning: session_set_cookie_params(): Session cookie parameters cannot be changed after headers have already been sent in /Users/rpmbbu/LocalPHPStorm/m1_erp_config/config.php on line 58\nPHP Warning:  session_start(): Session cannot be started after headers have already been sent in /Users/rpmbbu/LocalPHPStorm/m1_erp_config/config.php on line 65\n\nWarning: session_start(): Session cannot be started after headers have already been sent in /Users/rpmbbu/LocalPHPStorm/m1_erp_config/config.php on line 65\n\n================================================================================\nPERMISSION SYNC UTILITY\nMODE: DRY RUN (no changes will be made)\n================================================================================\n\n📱 CHECKING APP GRID PERMISSIONS\n--------------------------------------------------------------------------------\n  ✓ All App Grid items have permissions\n\n📋 CHECKING MENU ITEM PERMISSIONS\n--------------------------------------------------------------------------------\n  Found 6 menu items without permissions:\n\n  + ai-test.view (module: core) - View AI Assistant\n    URL: ai-test\n\n  + assumptions.view (module: core) - View Daily Update\n    URL: assumptions\n\n  + companies.view (module: core) - View Companies\n    URL: companies\n\n  + documentation.view (module: core) - View Documentation\n    URL: documentation\n\n  + network-monitor.view (module: core) - View Network Monitor\n    URL: network-monitor\n\n  + product-forecast.view (module: core) - View Product Configs\n    URL: product-forecast\n\n  Total to add: 6\n\n🔧 STANDARDIZING MODULE NAMES\n--------------------------------------------------------------------------------\n  ✓ No obvious standardization issues found\n\n\n================================================================================\nSYNC COMPLETE\n================================================================================\n\nThis was a dry run. Run with --live flag to apply changes.\n','Script executed successfully','2025-11-24 19:22:32'),
(5,'audit_menu_permissions',1,'[]',1,'PHP Warning:  Constant BASE_PATH already defined in /Users/rpmbbu/LocalPHPStorm/m1_erp_config/config.php on line 17\n\nWarning: Constant BASE_PATH already defined in /Users/rpmbbu/LocalPHPStorm/m1_erp_config/config.php on line 17\nPHP Warning:  session_name(): Session name cannot be changed after headers have already been sent in /Users/rpmbbu/LocalPHPStorm/m1_erp_config/config.php on line 57\n\nWarning: session_name(): Session name cannot be changed after headers have already been sent in /Users/rpmbbu/LocalPHPStorm/m1_erp_config/config.php on line 57\nPHP Warning:  session_set_cookie_params(): Session cookie parameters cannot be changed after headers have already been sent in /Users/rpmbbu/LocalPHPStorm/m1_erp_config/config.php on line 58\n\nWarning: session_set_cookie_params(): Session cookie parameters cannot be changed after headers have already been sent in /Users/rpmbbu/LocalPHPStorm/m1_erp_config/config.php on line 58\nPHP Warning:  session_start(): Session cannot be started after headers have already been sent in /Users/rpmbbu/LocalPHPStorm/m1_erp_config/config.php on line 65\n\nWarning: session_start(): Session cannot be started after headers have already been sent in /Users/rpmbbu/LocalPHPStorm/m1_erp_config/config.php on line 65\n\n================================================================================\nMENU ITEMS TO PERMISSIONS AUDIT\n================================================================================\n\n📋 MENU ITEMS ANALYSIS\n--------------------------------------------------------------------------------\n\nTOP_LEVEL:\n  - Dashboard → dashboard\n  - DEPARTMENTS → (no URL)\n  - TOOLS → (no URL)\n  - QUICK LINKS → (no URL)\n  - ADMIN → (no URL)\n  - APP GRID → (no URL)\n\nDEPARTMENTS:\n  - Accounting → #\n  - CRM → #\n  - Forecaster → (no URL)\n  - HR → #\n  - Inventory → #\n  - Manufacturing → #\n  - Purchases → #\n  - Sales → #\n\nCRM:\n  - Dashboard → crm/dashboard\n  - Activities → crm/activities\n  - Contacts → crm/contacts\n  - Companies → companies\n  - Email Marketing → email-marketing\n  - Opportunities → crm/opportunities\n  - NDAs → ndas\n  - Support → #\n  - Reports → crm/reports\n\nSupport:\n  - Tickets → crm/support\n  - FAQs → crm/faqs\n\nADMIN:\n  - Announcements → announcements\n  - Settings → #\n\nSettings:\n  - Administrative → (no URL)\n  - Automation → settings/automation\n  - Company Settings → #\n  - Financial Settings → #\n  - Location Settings → #\n  - System Configuration → #\n  - AI Assistant → ai-test\n  - Network Monitor → network-monitor\n\nCompany Settings:\n  - Company Info → settings/company\n  - Email Settings → settings/email\n  - Locations → locations\n  - Positions → hr/positions\n  - User Groups → settings/user-groups\n\nFinancial Settings:\n  - Cost Allocation → settings/cost-allocation\n  - Fiscal Year → settings/fiscal-year\n  - Payment Terms → settings/payment-terms\n  - PP&E Parameters → settings/ppe-parameters\n  - Tax Settings → settings/tax\n\nLocation Settings:\n  - Business Parameters → settings/business-parameters\n  - Facilities & Leasing → settings/facilities\n  - Payroll Settings → settings/payroll\n\nAccess & Roles:\n  - Audit Log → audit-logs\n  - Users → users\n  - Roles & Permissions → roles\n  - Specific Data Roles → data_access\n\nSystem Configuration:\n  - Action Menu Editor → settings/action-menus\n  - Dropdowns → #\n  - QuickBooks Mgmt → quickbooks\n  - System Scripts → admin/system-scripts\n  - Templates → #\n\nDropdowns:\n  - Operations → settings/dropdowns/operations\n  - Sales & CRM → settings/dropdowns/sales\n\nTemplates:\n  - NDA Templates → settings/nda-templates\n  - Terms & Conditions → settings/terms-conditions\n\nAccounting:\n  - Assets/Compliance → #\n  - Banking/Cash → #\n  - Core Accounting → #\n  - Multi-Currency → accounting/currency\n  - Operations → #\n  - Payments → (no URL)\n  - Recurring Transactions → /recurring\n  - Tax Management → #\n  - Reports → #\n\nCore Accounting:\n  - Chart of Accounts → accounting/accounts\n  - Journal Entries → accounting/journal\n  - General Ledger → accounting/ledger\n\nBanking/Cash:\n  - Bank Accounts → accounting/bank-accounts\n  - Bank Reconciliation → accounting/reconciliation\n\nOperations:\n  - Expenses → accounting/expenses\n  - Budgets → accounting/budgets\n\nAssets/Compliance:\n  - Fixed Assets → accounting/assets\n  - Depreciation → accounting/depreciation\n  - Period Closing → accounting/period\n\nReports:\n  - All Report Package → accounting/reports/package\n  - Balance Sheet → accounting/reports/balance-sheet\n  - Income Statement → accounting/reports/income-statement\n  - Cash Flow Statement → accounting/reports/cash-flow-statement\n  - Trial Balance → accounting/reports/trial-balance\n  - Aging Reports → accounting/reports/aging\n  - A/P Aging Detail → accounting/reports/ap-aging-detail\n  - A/R Aging Detail → accounting/reports/ar-aging-detail\n  - Payment Terms List → accounting/reports/payment-terms-list\n  - ','Script executed successfully','2025-11-24 19:22:44'),
(6,'cache_clear',1,'[]',1,'Cleared cache directory: /Users/rpmbbu/LocalPHPStorm/m1_erp_web/cache','Cache cleared successfully. Deleted 0 file(s).','2025-11-24 19:22:52'),
(7,'audit_menu_permissions',1,'[]',1,'\n\n\n\n\n================================================================================\nMENU ITEMS TO PERMISSIONS AUDIT\n================================================================================\n\n📋 MENU ITEMS ANALYSIS\n--------------------------------------------------------------------------------\n\nTOP_LEVEL:\n  - Dashboard → dashboard\n  - DEPARTMENTS → (no URL)\n  - TOOLS → (no URL)\n  - QUICK LINKS → (no URL)\n  - ADMIN → (no URL)\n  - APP GRID → (no URL)\n\nDEPARTMENTS:\n  - Accounting → #\n  - CRM → #\n  - Forecaster → (no URL)\n  - HR → #\n  - Inventory → #\n  - Manufacturing → #\n  - Purchases → #\n  - Sales → #\n\nCRM:\n  - Dashboard → crm/dashboard\n  - Activities → crm/activities\n  - Contacts → crm/contacts\n  - Companies → companies\n  - Email Marketing → email-marketing\n  - Opportunities → crm/opportunities\n  - NDAs → ndas\n  - Support → #\n  - Reports → crm/reports\n\nSupport:\n  - Tickets → crm/support\n  - FAQs → crm/faqs\n\nADMIN:\n  - Announcements → announcements\n  - Settings → #\n\nSettings:\n  - Administrative → (no URL)\n  - Automation → settings/automation\n  - Company Settings → #\n  - Financial Settings → #\n  - Location Settings → #\n  - System Configuration → #\n  - AI Assistant → ai-test\n  - Network Monitor → network-monitor\n\nCompany Settings:\n  - Company Info → settings/company\n  - Email Settings → settings/email\n  - Locations → locations\n  - Positions → hr/positions\n  - User Groups → settings/user-groups\n\nFinancial Settings:\n  - Cost Allocation → settings/cost-allocation\n  - Fiscal Year → settings/fiscal-year\n  - Payment Terms → settings/payment-terms\n  - PP&E Parameters → settings/ppe-parameters\n  - Tax Settings → settings/tax\n\nLocation Settings:\n  - Business Parameters → settings/business-parameters\n  - Facilities & Leasing → settings/facilities\n  - Payroll Settings → settings/payroll\n\nAccess & Roles:\n  - Audit Log → audit-logs\n  - Users → users\n  - Roles & Permissions → roles\n  - Specific Data Roles → data_access\n\nSystem Configuration:\n  - Action Menu Editor → settings/action-menus\n  - Dropdowns → #\n  - QuickBooks Mgmt → quickbooks\n  - System Scripts → admin/system-scripts\n  - Templates → #\n\nDropdowns:\n  - Operations → settings/dropdowns/operations\n  - Sales & CRM → settings/dropdowns/sales\n\nTemplates:\n  - NDA Templates → settings/nda-templates\n  - Terms & Conditions → settings/terms-conditions\n\nAccounting:\n  - Assets/Compliance → #\n  - Banking/Cash → #\n  - Core Accounting → #\n  - Multi-Currency → accounting/currency\n  - Operations → #\n  - Payments → (no URL)\n  - Recurring Transactions → /recurring\n  - Tax Management → #\n  - Reports → #\n\nCore Accounting:\n  - Chart of Accounts → accounting/accounts\n  - Journal Entries → accounting/journal\n  - General Ledger → accounting/ledger\n\nBanking/Cash:\n  - Bank Accounts → accounting/bank-accounts\n  - Bank Reconciliation → accounting/reconciliation\n\nOperations:\n  - Expenses → accounting/expenses\n  - Budgets → accounting/budgets\n\nAssets/Compliance:\n  - Fixed Assets → accounting/assets\n  - Depreciation → accounting/depreciation\n  - Period Closing → accounting/period\n\nReports:\n  - All Report Package → accounting/reports/package\n  - Balance Sheet → accounting/reports/balance-sheet\n  - Income Statement → accounting/reports/income-statement\n  - Cash Flow Statement → accounting/reports/cash-flow-statement\n  - Trial Balance → accounting/reports/trial-balance\n  - Aging Reports → accounting/reports/aging\n  - A/P Aging Detail → accounting/reports/ap-aging-detail\n  - A/R Aging Detail → accounting/reports/ar-aging-detail\n  - Payment Terms List → accounting/reports/payment-terms-list\n  - Production Reports → manufacturing/reports/production\n  - OEE Reports → manufacturing/reports/oee\n  - Report Builder → reports/custom/builder\n  - My Reports → reports/custom/my\n  - Shared Reports → reports/custom/shared\n  - Scheduled Reports → reports/custom/scheduled\n\nHR:\n  - Dashboard → hr/dashboard\n  - Employees → employees\n  - Recruitment → #\n  - Development → #\n  - Relations → #\n  - Attendance → hr/attendance\n  - Time Off → hr/timeoff\n  - Timesheets → hr/timesheets\n\nRecruitment:\n  - Dashboard → hr/recruitment/dashboard\n  - Job Positions → hr/recruitment/positions\n  - Applications → hr/recruitment/applications\n  - Interviews → hr/recruitment/interviews\n  - Assessments → hr/recruitment/assessments\n  - Offers → hr/recruitment/offers\n\nDevelopment:\n  - Contracts → hr/development/contracts\n  - Training → hr/development/training\n  - Performance Reviews → hr/development/reviews\n\nRelations:\n  - Issues & Challenges → hr/relations/issues\n  - Separations → hr/relations/separations\n\nInventory:\n  - Dashboard → inventory/dashboard\n  - Product Management → #\n  - Stock Levels → /inventory/stock-levels\n  - Lot/Serial Numbers → inventory/lots\n  - Visual Audits → /camera-audit\n\nProd','Script executed successfully','2025-11-24 19:24:19'),
(8,'audit_menu_permissions',1,'[]',1,'\n\n\n\n\n================================================================================\nMENU ITEMS TO PERMISSIONS AUDIT\n================================================================================\n\n📋 MENU ITEMS ANALYSIS\n--------------------------------------------------------------------------------\n\nTOP_LEVEL:\n  - Dashboard → dashboard\n  - DEPARTMENTS → (no URL)\n  - TOOLS → (no URL)\n  - QUICK LINKS → (no URL)\n  - ADMIN → (no URL)\n  - APP GRID → (no URL)\n\nDEPARTMENTS:\n  - Accounting → #\n  - CRM → #\n  - Forecaster → (no URL)\n  - HR → #\n  - Inventory → #\n  - Manufacturing → #\n  - Purchases → #\n  - Sales → #\n\nCRM:\n  - Dashboard → crm/dashboard\n  - Activities → crm/activities\n  - Contacts → crm/contacts\n  - Companies → companies\n  - Email Marketing → email-marketing\n  - Opportunities → crm/opportunities\n  - NDAs → ndas\n  - Support → #\n  - Reports → crm/reports\n\nSupport:\n  - Tickets → crm/support\n  - FAQs → crm/faqs\n\nADMIN:\n  - Announcements → announcements\n  - Settings → #\n\nSettings:\n  - Administrative → (no URL)\n  - Automation → settings/automation\n  - Company Settings → #\n  - Financial Settings → #\n  - Location Settings → #\n  - System Configuration → #\n  - AI Assistant → ai-test\n  - Network Monitor → network-monitor\n\nCompany Settings:\n  - Company Info → settings/company\n  - Email Settings → settings/email\n  - Locations → locations\n  - Positions → hr/positions\n  - User Groups → settings/user-groups\n\nFinancial Settings:\n  - Cost Allocation → settings/cost-allocation\n  - Fiscal Year → settings/fiscal-year\n  - Payment Terms → settings/payment-terms\n  - PP&E Parameters → settings/ppe-parameters\n  - Tax Settings → settings/tax\n\nLocation Settings:\n  - Business Parameters → settings/business-parameters\n  - Facilities & Leasing → settings/facilities\n  - Payroll Settings → settings/payroll\n\nAccess & Roles:\n  - Audit Log → audit-logs\n  - Users → users\n  - Roles & Permissions → roles\n  - Specific Data Roles → data_access\n\nSystem Configuration:\n  - Action Menu Editor → settings/action-menus\n  - Dropdowns → #\n  - QuickBooks Mgmt → quickbooks\n  - System Scripts → admin/system-scripts\n  - Templates → #\n\nDropdowns:\n  - Operations → settings/dropdowns/operations\n  - Sales & CRM → settings/dropdowns/sales\n\nTemplates:\n  - NDA Templates → settings/nda-templates\n  - Terms & Conditions → settings/terms-conditions\n\nAccounting:\n  - Dashboard → accounting\n  - Assets/Compliance → #\n  - Banking/Cash → #\n  - Core Accounting → #\n  - Multi-Currency → accounting/currency\n  - Operations → #\n  - Payments → (no URL)\n  - Recurring Transactions → /recurring\n  - Tax Management → #\n  - Reports → #\n\nCore Accounting:\n  - Chart of Accounts → accounting/accounts\n  - Journal Entries → accounting/journal\n  - General Ledger → accounting/ledger\n\nBanking/Cash:\n  - Bank Accounts → accounting/bank-accounts\n  - Bank Reconciliation → accounting/reconciliation\n\nOperations:\n  - Expenses → accounting/expenses\n  - Budgets → accounting/budgets\n\nAssets/Compliance:\n  - Fixed Assets → accounting/assets\n  - Depreciation → accounting/depreciation\n  - Period Closing → accounting/period\n\nReports:\n  - All Report Package → accounting/reports/package\n  - Balance Sheet → accounting/reports/balance-sheet\n  - Income Statement → accounting/reports/income-statement\n  - Cash Flow Statement → accounting/reports/cash-flow-statement\n  - Trial Balance → accounting/reports/trial-balance\n  - Aging Reports → accounting/reports/aging\n  - A/P Aging Detail → accounting/reports/ap-aging-detail\n  - A/R Aging Detail → accounting/reports/ar-aging-detail\n  - Payment Terms List → accounting/reports/payment-terms-list\n  - Production Reports → manufacturing/reports/production\n  - OEE Reports → manufacturing/reports/oee\n  - Report Builder → reports/custom/builder\n  - My Reports → reports/custom/my\n  - Shared Reports → reports/custom/shared\n  - Scheduled Reports → reports/custom/scheduled\n\nHR:\n  - Dashboard → hr/dashboard\n  - Employees → employees\n  - Recruitment → #\n  - Development → #\n  - Relations → #\n  - Attendance → hr/attendance\n  - Time Off → hr/timeoff\n  - Timesheets → hr/timesheets\n\nRecruitment:\n  - Dashboard → hr/recruitment/dashboard\n  - Job Positions → hr/recruitment/positions\n  - Applications → hr/recruitment/applications\n  - Interviews → hr/recruitment/interviews\n  - Assessments → hr/recruitment/assessments\n  - Offers → hr/recruitment/offers\n\nDevelopment:\n  - Contracts → hr/development/contracts\n  - Training → hr/development/training\n  - Performance Reviews → hr/development/reviews\n\nRelations:\n  - Issues & Challenges → hr/relations/issues\n  - Separations → hr/relations/separations\n\nInventory:\n  - Dashboard → inventory/dashboard\n  - Product Management → #\n  - Stock Levels → /inventory/stock-levels\n  - Lot/Serial Numbers → inventory/lots\n  - Visual Audits → /camera-audit\n\nProduct Management:\n  - Products → products\n  - Categories → inventory/categories\n\nManufacturing:\n  - Dashboard → manufacturing\n  - Capacity Planning → #\n  - Planning & Materials → #\n  - Production → #\n  - Resources → #\n  - Quality Control → #\n  - Maintenance → #\n  - Costing → #\n  - Reports → #\n\nCapacity Planning:\n  - Dashboard → manufacturing/capacity\n  - Real-time Status → manufacturing/capacity/machineStatus\n  - Analytics → manufacturing/capacity/analytics\n  - Availability → manufacturing/capacity/availability\n  - Feasibility → manufacturing/capacity/feasibility\n\nPlanning & Materials:\n  - Bill of Materials → manufacturing/boms\n  - MRP → manufacturing/mrp\n  - Production Scheduling → manufacturing/scheduling\n\nProduction:\n  - Work Orders → manufacturing/workorders\n  - Shop Floor Control → manufacturing/shopfloor\n\nResources:\n  - Business Lines → manufacturing/business-lines\n  - Equipment Lines → manufacturing/equipment-lines\n  - Equipment Units → manufacturing/equipment\n\nQuality Control:\n  - Dashboard → manufacturing/quality\n  - Inspections → manufacturing/quality/inspections\n  - NCR → manufacturing/quality/ncr\n  - Metrics → manufacturing/quality/metrics\n  - Templates → manufacturing/quality/templates\n\nMaintenance:\n  - Maintenance Schedules → manufacturing/maintenance/schedules\n  - Maintenance Work Orders → manufacturing/maintenance/work-orders\n  - Downtime Tracking → manufacturing/maintenance/downtime\n\nCosting:\n  - Production Costing → manufacturing/costing/production\n  - Job Costing → manufacturing/costing/jobs\n\nSales:\n  - Dashboard → sales/dashboard\n  - Sales Documents → #\n  - Fulfillment → #\n  - Configuration → #\n  - Reports → sales/reports\n\nSales Documents:\n  - Quotes → quotes\n  - Agreements → sales/agreements\n  - Orders → sales/orders\n  - Invoices → invoices\n  - Credit Notes → creditnotes\n\nFulfillment:\n  - Shipments → shipments\n  - Delivery Notes → sales/delivery_notes\n  - Returns (RMA) → sales/returns\n\nConfiguration:\n  - Pricing Rules → sales/pricing_rules\n  - Discounts & Promotions → sales/promotions\n\nPurchases:\n  - Dashboard → purchases/dashboard\n  - Suppliers → suppliers\n  - Procurement Process → #\n  - Payments & Documents → #\n  - Supplier Contracts → purchases/contracts\n  - Reports → purchases/reports\n\nSuppliers:\n  - Suppliers → suppliers\n  - 1099 Contractors → /suppliers?filter=1099\n\nProcurement Process:\n  - Purchase Requisitions → purchases/requisitions\n  - RFQs (Quotes) → purchases/rfqs\n  - Purchase Orders → purchases/orders\n  - Goods Receipt → purchases/receiving\n\nPayments & Documents:\n  - Bills/Invoices → purchases/bills\n  - Payments Made (Legacy) → purchases/payments\n  - Purchase Returns → purchases/returns\n  - Debit Notes → purchases/debit-notes\n\nTime Off:\n  - My Time Off → hr/timeoff/my\n  - All Requests → hr/timeoff/all\n  - Approve Requests → hr/timeoff/approve\n  - Time Off Types → hr/timeoff/types\n  - Accrual Rules → hr/timeoff/accruals\n\nTimesheets:\n  - My Timesheet → hr/timesheets/my\n  - All Timesheets → hr/timesheets/all\n  - Approve Timesheets → hr/timesheets/approve\n  - Timesheet Reports → hr/timesheets/reports\n\nLot/Serial Numbers:\n  - All Lots/Serials → inventory/lots/all\n  - Traceability → inventory/lots/traceability\n  - Expiration Dates → inventory/lots/expiration\n\nMulti-Currency:\n  - Currencies → accounting/currency/list\n  - Exchange Rates → accounting/currency/rates\n  - Currency Gains/Losses → accounting/currency/revaluation\n\nAutomation:\n  - AI Testing → ai-test\n  - Approval Rules → settings/automation/approvals\n  - Templates → automation/email-templates\n  - Scheduled Actions → settings/automation/scheduled\n  - Workflows → settings/automation/workflows\n\nProjects:\n  - Dashboard → projects/dashboard\n  - My Projects → projects/?my_projects=1\n  - My Tasks → projects/my-tasks\n  - Gantt Chart → projects/gantt\n  - Time Tracking → projects/time\n  - Resource Planning → projects/resources\n  - Project Profitability → projects/profitability\n\nFiles:\n  - All Files → /files\n  - My Files → /files?context=user\n  - Shared With Me → files/shared\n  - Accounting Files → /files?context=accounting\n  - Company Files → /files?context=company\n  - HR Documents → /files?context=hr\n  - Inventory Documents → /files?context=inventory\n  - Manufacturing Documents → /files?context=manufacturing\n  - Project Files → /files?context=project\n  - Purchases Documents → /files?context=purchases\n  - Sales Documents → /files?context=sales\n\nEmail Marketing:\n  - Dashboard → email-marketing/dashboard\n  - Campaigns → email-marketing/campaigns\n  - Email Templates → email-marketing/templates\n  - Mailing Lists → email-marketing/lists\n  - Automation → email-marketing/automation\n  - Analytics → email-marketing/analytics\n\nHelpdesk:\n  - Dashboard → helpdesk/dashboard\n  - Documentation → documentation\n  - Tickets → helpdesk/tickets\n  - My Tickets → helpdesk/my-tickets\n  - SLA Management → helpdesk/sla\n  - Knowledge Base → helpdesk/kb\n  - Live Chat → helpdesk/chat\n  - Reports → helpdesk/reports\n\nAPP GRID:\n  - DASHBOARD → dashboard\n  - CALENDAR → calendar\n  - EMPLOYEES → employees/directory\n  - PRODUCTS → products\n  - SALES → salesorders\n  - SETTINGS → settings\n\nTOOLS:\n  - Files → /files\n  - Helpdesk → helpdesk\n  - Projects → projects\n  - Reports → reports/custom\n\nTax Management:\n  - Tax Jurisdictions → /tax/jurisdictions\n  - Tax Payments → /tax/payments\n  - Tax Reports → /tax/reports/liability\n\nPayments:\n  - Customer Payments → /accounting/customer-payments\n  - Vendor Payments → /accounting/vendor-payments\n\nAdministrative:\n  - Access & Roles → #\n  - Document Mgmt → #\n  - Menu Mgmt → menus\n  - PHPmyadmin → /phpmyadmin\n  - System Backup → backup\n\nDocument Mgmt:\n  - Dashboard → nextcloud/admin/dashboard\n  - Activity Log → nextcloud/admin/activity\n  - Storage Report → nextcloud/admin/storage\n  - User Activity → nextcloud/admin/users\n  - Settings → nextcloud/settings\n\nForecaster:\n  - Getting Started → /product-forecast/getting-started\n  - Command Center → /product-forecast/command-center\n  - Daily Update → assumptions\n  - Assumption Sets → assumptions/sets\n  - Product Configs → product-forecast\n  - Generate Projections → product-forecast/generate\n  - Pro Forma Stmts → product-forecast/proforma\n  - Variance Tracking → /product-forecast/variance\n  - Sensitivity Analysis → product-forecast/sensitivity\n  - Compare Scenarios → product-forecast/compare\n  - Variance Report → assumptions/variance\n  - Advanced Tools → (no URL)\n  - Scenario Modeler → forecaster\n\nTotal menu items: 275\n\n🔐 PERMISSIONS ANALYSIS\n--------------------------------------------------------------------------------\n  (empty/top-level)               21 permissions\n  1099                             7 permissions\n  1099_contractors                 3 permissions\n  accounting                      48 permissions\n  admin                            3 permissions\n  audit                            2 permissions\n  automation                       1 permissions\n  bank_import                      8 permissions\n  credit_notes                     4 permissions\n  crm                             34 permissions\n  documents                        3 permissions\n  Forecasting                      7 permissions\n  helpdesk                         5 permissions\n  hr                              46 permissions\n  inventory                       31 permissions\n  manufacturing                   26 permissions\n  marketing                        8 permissions\n  nextcloud                        4 permissions\n  permissions                      1 permissions\n  procurement                      5 permissions\n  projects                         3 permissions\n  purchases                       24 permissions\n  recurring                        6 permissions\n  reports                          2 permissions\n  roles                            4 permissions\n  sales                           36 permissions\n  security                         5 permissions\n  settings                         2 permissions\n  statements                       4 permissions\n  system                           5 permissions\n  tax                             11 permissions\n  users                            4 permissions\n\nTotal permissions: 373\n\n⚠️  MISSING PERMISSIONS (Menu items without corresponding permissions)\n--------------------------------------------------------------------------------\n  Found 13 menu items without clear permission mappings:\n\n    - #\n    - companies\n    - documentation\n    - ai-test\n    - network-monitor\n    - assumptions\n    - assumptions/variance\n    - assumptions/sets\n    - product-forecast\n    - product-forecast/generate\n    - product-forecast/proforma\n    - product-forecast/compare\n    - product-forecast/sensitivity\n\n🗑️  ORPHANED PERMISSIONS (Permissions without menu items)\n--------------------------------------------------------------------------------\n  Found 75 permissions without clear menu mappings:\n\n    - 1099_contractors.manage (1099): Manage 1099 contractor designations\n    - 1099_contractors.view (1099): View 1099 contractors\n    - 1099_filings.file (1099): File 1099 forms\n    - 1099_filings.prepare (1099): Prepare 1099 forms\n    - 1099_payments.manage (1099): Manage 1099 payment classifications\n    - 1099_payments.view (1099): View 1099 reportable payments\n    - 1099_reports.view (1099): View 1099 reports\n    - 1099_contractors.export (1099_contractors): Export 1099 Contractors\n    - 1099_contractors.generate_reports (1099_contractors): Generate Reports 1099 Contractors\n    - 1099_contractors.view_payments (1099_contractors): View Payments 1099 Contractors\n    - audit_trail.export (audit): Export audit trail\n    - audit_trail.view (audit): View audit trail\n    - bank_import.categorize (bank_import): Categorize imported transactions\n    - bank_import.create (bank_import): Import bank transactions\n    - bank_import.delete (bank_import): Delete Bank Import\n    - bank_import.edit (bank_import): Edit Bank Import\n    - bank_import.import (bank_import): Import Bank Import\n    - bank_import.manage_rules (bank_import): Manage Rules Bank Import\n    - bank_import.rules (bank_import): Manage categorization rules\n    - bank_import.view (bank_import): View bank imports\n    ... and 55 more\n\n📱 APP GRID ANALYSIS\n--------------------------------------------------------------------------------\nApp Grid items:\n  - DASHBOARD (dashboard) → ✓ Has permission: dashboard.view\n  - CALENDAR (calendar) → ✓ Has permission: calendar.view\n  - EMPLOYEES (employees/directory) → ✓ Has permission: employees.view\n  - PRODUCTS (products) → ✓ Has permission: products.view\n  - SALES (salesorders) → ✓ Has permission: salesorders.view\n  - SETTINGS (settings) → ✓ Has permission: settings.view\n\nRECOMMENDATION: Create \'App Grid\' permission category in role editor\nThese should be DEFAULT permissions for all users:\n  ☑ DASHBOARD\n  ☑ CALENDAR\n  ☑ EMPLOYEES\n  ☑ PRODUCTS\n  ☑ SALES\n  ☑ SETTINGS\n\n💡 STANDARDIZATION RECOMMENDATIONS\n--------------------------------------------------------------------------------\n\nModule naming issues:\n  ✓ No obvious case inconsistencies found\n\n  ℹ️  21 permissions have empty module (top-level items)\n\nRECOMMENDATIONS:\n  1. Standardize all module names to lowercase\n  2. Add \'app_grid\' or \'quick_access\' module for App Grid items\n  3. Consider grouping top-level items (empty module) into \'core\' or \'general\'\n  4. Ensure every menu item has at least a \'view\' permission\n  5. Update role editor to show \'App Grid\' as first category\n\n\n================================================================================\nAUDIT COMPLETE\n================================================================================\n','Script executed successfully','2025-11-25 00:15:54'),
(9,'check_orphaned_files',1,'[]',1,'All files in uploads directory are referenced in database','No orphaned files found','2025-11-26 12:06:31'),
(10,'sync_permissions_menu',1,'{\"mode\":\"dry-run\"}',1,'\n\n\n\n\n================================================================================\nPERMISSION SYNC UTILITY\nMODE: DRY RUN (no changes will be made)\n================================================================================\n\n📱 CHECKING APP GRID PERMISSIONS\n--------------------------------------------------------------------------------\n  ✓ All App Grid items have permissions\n\n📋 CHECKING MENU ITEM PERMISSIONS\n--------------------------------------------------------------------------------\n  Found 6 menu items without permissions:\n\n  + agreements.view (module: core) - View Agreements\n    URL: agreements\n\n  + ai-test.view (module: core) - View AI Testing\n    URL: ai-test\n\n  + assumptions.view (module: core) - View Daily Update\n    URL: assumptions\n\n  + companies.view (module: core) - View Companies\n    URL: companies\n\n  + documentation.view (module: core) - View Documentation\n    URL: documentation\n\n  + product-forecast.view (module: core) - View Product Configs\n    URL: product-forecast\n\n  Total to add: 6\n\n🔧 STANDARDIZING MODULE NAMES\n--------------------------------------------------------------------------------\n  ✓ No obvious standardization issues found\n\n\n================================================================================\nSYNC COMPLETE\n================================================================================\n\nThis was a dry run. Run with --live flag to apply changes.\n','Script executed successfully','2025-11-26 12:06:40'),
(11,'sync_permissions_menu',1,'{\"mode\":\"live\"}',1,'\n\n\n\n\n================================================================================\nPERMISSION SYNC UTILITY\nMODE: LIVE (changes WILL be applied to database)\n================================================================================\n\n📱 CHECKING APP GRID PERMISSIONS\n--------------------------------------------------------------------------------\n  ✓ All App Grid items have permissions\n\n📋 CHECKING MENU ITEM PERMISSIONS\n--------------------------------------------------------------------------------\n  Found 6 menu items without permissions:\n\n  + agreements.view (module: core) - View Agreements\n    URL: agreements\n\n  + ai-test.view (module: core) - View AI Testing\n    URL: ai-test\n\n  + assumptions.view (module: core) - View Daily Update\n    URL: assumptions\n\n  + companies.view (module: core) - View Companies\n    URL: companies\n\n  + documentation.view (module: core) - View Documentation\n    URL: documentation\n\n  + product-forecast.view (module: core) - View Product Configs\n    URL: product-forecast\n\n  Total to add: 6\n\n🔧 STANDARDIZING MODULE NAMES\n--------------------------------------------------------------------------------\n  ✓ No obvious standardization issues found\n\n\n================================================================================\nSYNC COMPLETE\n================================================================================\n','Script executed successfully','2025-11-26 12:07:17'),
(12,'sync_permissions_menu',1,'{\"mode\":\"live\"}',1,'\n\n\n\n\n================================================================================\nPERMISSION SYNC UTILITY\nMODE: LIVE (changes WILL be applied to database)\n================================================================================\n\n📱 CHECKING APP GRID PERMISSIONS\n--------------------------------------------------------------------------------\n  ✓ All App Grid items have permissions\n\n📋 CHECKING MENU ITEM PERMISSIONS\n--------------------------------------------------------------------------------\n  ✓ All menu items have corresponding permissions\n\n🔧 STANDARDIZING MODULE NAMES\n--------------------------------------------------------------------------------\n  ✓ No obvious standardization issues found\n\n\n================================================================================\nSYNC COMPLETE\n================================================================================\n','Script executed successfully','2025-11-26 12:07:42'),
(13,'audit_menu_permissions',1,'[]',1,'\n\n\n\n\n================================================================================\nMENU ITEMS TO PERMISSIONS AUDIT\n================================================================================\n\n📋 MENU ITEMS ANALYSIS\n--------------------------------------------------------------------------------\n\nTOP_LEVEL:\n  - Dashboard → dashboard\n  - DEPARTMENTS → (no URL)\n  - TOOLS → (no URL)\n  - QUICK LINKS → (no URL)\n  - ADMIN → (no URL)\n  - APP GRID → (no URL)\n\nDEPARTMENTS:\n  - Accounting → #\n  - CRM → #\n  - Forecaster → (no URL)\n  - HR → #\n  - Inventory → #\n  - Manufacturing → #\n  - Purchases → #\n  - Sales → #\n\nCRM:\n  - Dashboard → crm/dashboard\n  - Activities → crm/activities\n  - Contacts → crm/contacts\n  - Companies → companies\n  - Email Marketing → email-marketing\n  - Opportunities → crm/opportunities\n  - NDAs → ndas\n  - Support → #\n  - Reports → crm/reports\n\nSupport:\n  - Tickets → crm/support\n  - FAQs → crm/faqs\n\nADMIN:\n  - Announcements → announcements\n  - Settings → #\n\nSettings:\n  - Administrative → (no URL)\n  - Automation → settings/automation\n  - Company Settings → #\n  - Financial Settings → #\n  - Location Settings → #\n  - System Configuration → #\n\nCompany Settings:\n  - Company Info → settings/company\n  - Email Settings → settings/email\n  - Locations → locations\n  - Positions → hr/positions\n  - User Groups → settings/user-groups\n\nFinancial Settings:\n  - Cost Allocation → settings/cost-allocation\n  - Fiscal Year → settings/fiscal-year\n  - Payment Terms → settings/payment-terms\n  - PP&E Parameters → settings/ppe-parameters\n  - Tax Settings → settings/tax\n\nLocation Settings:\n  - Business Parameters → settings/business-parameters\n  - Facilities & Leasing → settings/facilities\n  - Payroll Settings → settings/payroll\n\nAccess & Roles:\n  - Audit Log → audit-logs\n  - Users → users\n  - Roles & Permissions → roles\n  - Specific Data Roles → data_access\n\nSystem Configuration:\n  - Action Menu Editor → settings/action-menus\n  - Dropdowns → #\n  - QuickBooks Mgmt → quickbooks\n  - Templates → #\n\nDropdowns:\n  - Operations → settings/dropdowns/operations\n  - Sales & CRM → settings/dropdowns/sales\n\nTemplates:\n  - NDA Templates → settings/nda-templates\n  - Terms & Conditions → settings/terms-conditions\n\nAccounting:\n  - Dashboard → accounting\n  - Assets/Compliance → #\n  - Banking/Cash → #\n  - Core Accounting → #\n  - Multi-Currency → accounting/currency\n  - Operations → #\n  - Payments → (no URL)\n  - Recurring Transactions → /recurring\n  - Tax Management → #\n  - Reports → #\n\nCore Accounting:\n  - Chart of Accounts → accounting/accounts\n  - Journal Entries → accounting/journal\n  - General Ledger → accounting/ledger\n\nBanking/Cash:\n  - Bank Accounts → accounting/bank-accounts\n  - Bank Reconciliation → accounting/reconciliation\n\nOperations:\n  - Expenses → accounting/expenses\n  - Budgets → accounting/budgets\n\nAssets/Compliance:\n  - Fixed Assets → accounting/assets\n  - Depreciation → accounting/depreciation\n  - Period Closing → accounting/period\n\nReports:\n  - All Report Package → accounting/reports/package\n  - Balance Sheet → accounting/reports/balance-sheet\n  - Income Statement → accounting/reports/income-statement\n  - Cash Flow Statement → accounting/reports/cash-flow-statement\n  - Trial Balance → accounting/reports/trial-balance\n  - Aging Reports → accounting/reports/aging\n  - A/P Aging Detail → accounting/reports/ap-aging-detail\n  - A/R Aging Detail → accounting/reports/ar-aging-detail\n  - Payment Terms List → accounting/reports/payment-terms-list\n  - Production Reports → manufacturing/reports/production\n  - OEE Reports → manufacturing/reports/oee\n  - Report Builder → reports/custom/builder\n  - My Reports → reports/custom/my\n  - Shared Reports → reports/custom/shared\n  - Scheduled Reports → reports/custom/scheduled\n\nHR:\n  - Dashboard → hr/dashboard\n  - Employees → employees\n  - Recruitment → #\n  - Development → #\n  - Relations → #\n  - Attendance → hr/attendance\n  - Time Off → hr/timeoff\n  - Timesheets → hr/timesheets\n\nRecruitment:\n  - Dashboard → hr/recruitment/dashboard\n  - Job Positions → hr/recruitment/positions\n  - Applications → hr/recruitment/applications\n  - Interviews → hr/recruitment/interviews\n  - Assessments → hr/recruitment/assessments\n  - Offers → hr/recruitment/offers\n\nDevelopment:\n  - Contracts → hr/development/contracts\n  - Training → hr/development/training\n  - Performance Reviews → hr/development/reviews\n\nRelations:\n  - Issues & Challenges → hr/relations/issues\n  - Separations → hr/relations/separations\n\nInventory:\n  - Dashboard → inventory/dashboard\n  - Product Management → #\n  - Stock Levels → /inventory/stock-levels\n  - Lot/Serial Numbers → inventory/lots\n  - Visual Audits → /camera-audit\n\nProduct Management:\n  - Products → products\n  - Categories → inventory/categories\n\nManufacturing:\n  - Dashboard → manufacturing\n  - Capacity Planning → #\n  - Planning & Materials → #\n  - Production → #\n  - Resources → #\n  - Quality Control → #\n  - Maintenance → #\n  - Costing → #\n  - Reports → #\n\nCapacity Planning:\n  - Dashboard → manufacturing/capacity\n  - Real-time Status → manufacturing/capacity/machineStatus\n  - Analytics → manufacturing/capacity/analytics\n  - Availability → manufacturing/capacity/availability\n  - Feasibility → manufacturing/capacity/feasibility\n\nPlanning & Materials:\n  - Bill of Materials → manufacturing/boms\n  - MRP → manufacturing/mrp\n  - Production Scheduling → manufacturing/scheduling\n\nProduction:\n  - Work Orders → manufacturing/workorders\n  - Shop Floor Control → manufacturing/shopfloor\n\nResources:\n  - Business Lines → manufacturing/business-lines\n  - Equipment Lines → manufacturing/equipment-lines\n  - Equipment Units → manufacturing/equipment\n\nQuality Control:\n  - Dashboard → manufacturing/quality\n  - Inspections → manufacturing/quality/inspections\n  - NCR → manufacturing/quality/ncr\n  - Metrics → manufacturing/quality/metrics\n  - Templates → manufacturing/quality/templates\n\nMaintenance:\n  - Maintenance Schedules → manufacturing/maintenance/schedules\n  - Maintenance Work Orders → manufacturing/maintenance/work-orders\n  - Downtime Tracking → manufacturing/maintenance/downtime\n\nCosting:\n  - Production Costing → manufacturing/costing/production\n  - Job Costing → manufacturing/costing/jobs\n\nSales:\n  - Dashboard → sales/dashboard\n  - Sales Documents → #\n  - Fulfillment → #\n  - Configuration → #\n  - Reports → sales/reports\n\nSales Documents:\n  - Quotes → quotes\n  - Agreements → agreements\n  - Orders → sales/orders\n  - Invoices → invoices\n  - Credit Notes → creditnotes\n\nFulfillment:\n  - Shipments → shipments\n  - Delivery Notes → sales/delivery_notes\n  - Returns (RMA) → sales/returns\n\nConfiguration:\n  - Pricing Rules → sales/pricing_rules\n  - Discounts & Promotions → sales/promotions\n\nPurchases:\n  - Dashboard → purchases/dashboard\n  - Suppliers → suppliers\n  - Procurement Process → #\n  - Payments & Documents → #\n  - Supplier Contracts → purchases/contracts\n  - Reports → purchases/reports\n\nSuppliers:\n  - Suppliers → suppliers\n  - 1099 Contractors → /suppliers?filter=1099\n\nProcurement Process:\n  - Purchase Requisitions → purchases/requisitions\n  - RFQs (Quotes) → purchases/rfqs\n  - Purchase Orders → purchases/orders\n  - Goods Receipt → purchases/receiving\n\nPayments & Documents:\n  - Bills/Invoices → purchases/bills\n  - Payments Made (Legacy) → purchases/payments\n  - Purchase Returns → purchases/returns\n  - Debit Notes → purchases/debit-notes\n\nTime Off:\n  - My Time Off → hr/timeoff/my\n  - All Requests → hr/timeoff/all\n  - Approve Requests → hr/timeoff/approve\n  - Time Off Types → hr/timeoff/types\n  - Accrual Rules → hr/timeoff/accruals\n\nTimesheets:\n  - My Timesheet → hr/timesheets/my\n  - All Timesheets → hr/timesheets/all\n  - Approve Timesheets → hr/timesheets/approve\n  - Timesheet Reports → hr/timesheets/reports\n\nLot/Serial Numbers:\n  - All Lots/Serials → inventory/lots/all\n  - Traceability → inventory/lots/traceability\n  - Expiration Dates → inventory/lots/expiration\n\nMulti-Currency:\n  - Currencies → accounting/currency/list\n  - Exchange Rates → accounting/currency/rates\n  - Currency Gains/Losses → accounting/currency/revaluation\n\nAutomation:\n  - AI Testing → ai-test\n  - Approval Rules → settings/automation/approvals\n  - Templates → automation/email-templates\n  - Scheduled Actions → settings/automation/scheduled\n  - Workflows → settings/automation/workflows\n\nProjects:\n  - Dashboard → projects/dashboard\n  - My Projects → projects/?my_projects=1\n  - My Tasks → projects/my-tasks\n  - Gantt Chart → projects/gantt\n  - Time Tracking → projects/time\n  - Resource Planning → projects/resources\n  - Project Profitability → projects/profitability\n\nFiles:\n  - All Files → /files\n  - My Files → /files?context=user\n  - Shared With Me → files/shared\n  - Accounting Files → /files?context=accounting\n  - Company Files → /files?context=company\n  - HR Documents → /files?context=hr\n  - Inventory Documents → /files?context=inventory\n  - Manufacturing Documents → /files?context=manufacturing\n  - Project Files → /files?context=project\n  - Purchases Documents → /files?context=purchases\n  - Sales Documents → /files?context=sales\n\nEmail Marketing:\n  - Dashboard → email-marketing/dashboard\n  - Campaigns → email-marketing/campaigns\n  - Email Templates → email-marketing/templates\n  - Mailing Lists → email-marketing/lists\n  - Automation → email-marketing/automation\n  - Analytics → email-marketing/analytics\n\nHelpdesk:\n  - Dashboard → helpdesk/dashboard\n  - Documentation → documentation\n  - Tickets → helpdesk/tickets\n  - My Tickets → helpdesk/my-tickets\n  - SLA Management → helpdesk/sla\n  - Knowledge Base → helpdesk/kb\n  - Live Chat → helpdesk/chat\n  - Reports → helpdesk/reports\n\nAPP GRID:\n  - DASHBOARD → dashboard\n  - CALENDAR → calendar\n  - EMPLOYEES → employees/directory\n  - PRODUCTS → products\n  - SALES → salesorders\n  - SETTINGS → settings\n\nTOOLS:\n  - Files → /files\n  - Helpdesk → helpdesk\n  - Projects → projects\n  - Reports → reports/custom\n\nTax Management:\n  - Tax Jurisdictions → /tax/jurisdictions\n  - Tax Payments → /tax/payments\n  - Tax Reports → /tax/reports/liability\n\nPayments:\n  - Customer Payments → /accounting/customer-payments\n  - Vendor Payments → /accounting/vendor-payments\n\nAdministrative:\n  - Access & Roles → #\n  - Document Mgmt → #\n  - Menu Mgmt → menus\n  - PHPmyadmin → /phpmyadmin\n  - System Backup → backup\n  - System Scripts → admin/system-scripts\n\nDocument Mgmt:\n  - Dashboard → nextcloud/admin/dashboard\n  - Activity Log → nextcloud/admin/activity\n  - Storage Report → nextcloud/admin/storage\n  - User Activity → nextcloud/admin/users\n  - Settings → nextcloud/settings\n\nForecaster:\n  - Getting Started → /product-forecast/getting-started\n  - Command Center → /product-forecast/command-center\n  - Daily Update → assumptions\n  - Assumption Sets → assumptions/sets\n  - Product Configs → product-forecast\n  - Generate Projections → product-forecast/generate\n  - Pro Forma Stmts → product-forecast/proforma\n  - Variance Tracking → /product-forecast/variance\n  - Sensitivity Analysis → product-forecast/sensitivity\n  - Compare Scenarios → product-forecast/compare\n  - Variance Report → assumptions/variance\n  - Advanced Tools → (no URL)\n  - Scenario Modeler → forecaster\n\nTotal menu items: 273\n\n🔐 PERMISSIONS ANALYSIS\n--------------------------------------------------------------------------------\n  (empty/top-level)               27 permissions\n  1099                             7 permissions\n  1099_contractors                 3 permissions\n  accounting                      48 permissions\n  admin                            4 permissions\n  audit                            2 permissions\n  automation                       1 permissions\n  bank_import                      8 permissions\n  credit_notes                     4 permissions\n  crm                             34 permissions\n  documents                        3 permissions\n  Forecasting                      7 permissions\n  helpdesk                         5 permissions\n  hr                              46 permissions\n  inventory                       31 permissions\n  manufacturing                   26 permissions\n  marketing                        8 permissions\n  nextcloud                        4 permissions\n  permissions                      1 permissions\n  procurement                      5 permissions\n  projects                         3 permissions\n  purchases                       24 permissions\n  recurring                        6 permissions\n  reports                          2 permissions\n  roles                            4 permissions\n  sales                           41 permissions\n  security                         5 permissions\n  settings                         2 permissions\n  statements                       4 permissions\n  system                           5 permissions\n  tax                             11 permissions\n  users                            4 permissions\n\nTotal permissions: 385\n\n⚠️  MISSING PERMISSIONS (Menu items without corresponding permissions)\n--------------------------------------------------------------------------------\n  Found 1 menu items without clear permission mappings:\n\n    - #\n\n🗑️  ORPHANED PERMISSIONS (Permissions without menu items)\n--------------------------------------------------------------------------------\n  Found 75 permissions without clear menu mappings:\n\n    - 1099_contractors.manage (1099): Manage 1099 contractor designations\n    - 1099_contractors.view (1099): View 1099 contractors\n    - 1099_filings.file (1099): File 1099 forms\n    - 1099_filings.prepare (1099): Prepare 1099 forms\n    - 1099_payments.manage (1099): Manage 1099 payment classifications\n    - 1099_payments.view (1099): View 1099 reportable payments\n    - 1099_reports.view (1099): View 1099 reports\n    - 1099_contractors.export (1099_contractors): Export 1099 Contractors\n    - 1099_contractors.generate_reports (1099_contractors): Generate Reports 1099 Contractors\n    - 1099_contractors.view_payments (1099_contractors): View Payments 1099 Contractors\n    - audit_trail.export (audit): Export audit trail\n    - audit_trail.view (audit): View audit trail\n    - bank_import.categorize (bank_import): Categorize imported transactions\n    - bank_import.create (bank_import): Import bank transactions\n    - bank_import.delete (bank_import): Delete Bank Import\n    - bank_import.edit (bank_import): Edit Bank Import\n    - bank_import.import (bank_import): Import Bank Import\n    - bank_import.manage_rules (bank_import): Manage Rules Bank Import\n    - bank_import.rules (bank_import): Manage categorization rules\n    - bank_import.view (bank_import): View bank imports\n    ... and 55 more\n\n📱 APP GRID ANALYSIS\n--------------------------------------------------------------------------------\nApp Grid items:\n  - DASHBOARD (dashboard) → ✓ Has permission: dashboard.view\n  - CALENDAR (calendar) → ✓ Has permission: calendar.view\n  - EMPLOYEES (employees/directory) → ✓ Has permission: employees.view\n  - PRODUCTS (products) → ✓ Has permission: products.view\n  - SALES (salesorders) → ✓ Has permission: salesorders.view\n  - SETTINGS (settings) → ✓ Has permission: settings.view\n\nRECOMMENDATION: Create \'App Grid\' permission category in role editor\nThese should be DEFAULT permissions for all users:\n  ☑ DASHBOARD\n  ☑ CALENDAR\n  ☑ EMPLOYEES\n  ☑ PRODUCTS\n  ☑ SALES\n  ☑ SETTINGS\n\n💡 STANDARDIZATION RECOMMENDATIONS\n--------------------------------------------------------------------------------\n\nModule naming issues:\n  ✓ No obvious case inconsistencies found\n\n  ℹ️  27 permissions have empty module (top-level items)\n\nRECOMMENDATIONS:\n  1. Standardize all module names to lowercase\n  2. Add \'app_grid\' or \'quick_access\' module for App Grid items\n  3. Consider grouping top-level items (empty module) into \'core\' or \'general\'\n  4. Ensure every menu item has at least a \'view\' permission\n  5. Update role editor to show \'App Grid\' as first category\n\n\n================================================================================\nAUDIT COMPLETE\n================================================================================\n','Script executed successfully','2025-11-26 12:08:07'),
(14,'check_documentation_coverage',1,'[]',1,'\n\n\n\n=== Documentation Coverage Report ===\nCoverage: 99.3%\nTotal Controllers: 143\nDocumented: 142\nUndocumented: 1\n\nUndocumented Controllers:\n  - RFQ (RFQController.php)\n\n✓ Results saved to database','Script executed successfully','2025-11-26 12:10:09'),
(15,'scan_permissions',1,'{\"mode\":\"dry-run\"}',1,'\n\n\n\n\n================================================================================\nPERMISSION SCANNER & SYNC UTILITY\nMODE: DRY RUN (no changes will be made)\n================================================================================\n\n📚 LOADING DATABASE PERMISSIONS\n--------------------------------------------------------------------------------\n  Loaded 385 permissions from database\n\n🔍 SCANNING CONTROLLERS\n--------------------------------------------------------------------------------\n  Scanned 147 controller files\n  Found 132 files with permission checks\n  Discovered 148 unique permissions\n\n📋 DISCOVERED PERMISSIONS REPORT\n--------------------------------------------------------------------------------\n  Permission                               Checks   Controllers\n--------------------------------------------------------------------------------\n\n  (CORE):\n  admin                                    101      ActionMenuEditorController,... ✓\n\n  1099_CONTRACTORS:\n  1099_contractors.export                  1        Form1099Controller ✓\n  1099_contractors.generate_reports        1        Form1099Controller ✓\n  1099_contractors.view                    1        Form1099Controller ✓\n  1099_contractors.view_payments           1        Form1099Controller ✓\n\n  ACCOUNTING:\n  accounting.approve                       3        ExpenseController ✓\n  accounting.create                        30       AccountController, BankAcco... ✓\n  accounting.customer_payments.create      2        CustomerPaymentController ✓\n  accounting.customer_payments.view        2        CustomerPaymentController ✓\n  accounting.delete                        21       BankAccountController, Budg... ✓\n  accounting.edit                          25       BankAccountController, Bank... ✓\n  accounting.vendor_payments.create        4        VendorPaymentController ✓\n  accounting.vendor_payments.delete        1        VendorPaymentController ✓\n  accounting.vendor_payments.edit          2        VendorPaymentController ✓\n  accounting.vendor_payments.print_checks  1        VendorPaymentController ✓\n  accounting.vendor_payments.view          3        VendorPaymentController ✓\n  accounting.vendor_payments.void          1        VendorPaymentController ✓\n  accounting.view                          36       AccountController, Accounti... ✓\n\n  ADMIN:\n  admin.agreement_templates                9        AgreementTemplateController ✓\n  admin.create                             7        PipedriveImportController, ... ✗\n  admin.delete                             2        QuickBooksController, UserG... ✗\n  admin.edit                               5        QuickBooksController, UserG... ✗\n  admin.settings                           1        PipedriveImportController ✓\n  admin.system_scripts                     3        SystemScriptsController ✓\n\n  AUDIT_LOGS:\n  audit_logs.view                          1        AuditLogController ✓\n\n  BANK_IMPORT:\n  bank_import.create                       2        BankImportController ✓\n  bank_import.delete                       1        BankImportController ✓\n  bank_import.edit                         2        BankImportController ✓\n  bank_import.import                       1        BankImportController ✓\n  bank_import.manage_rules                 4        BankImportController ✓\n  bank_import.view                         2        BankImportController ✓\n\n  CALENDAR:\n  calendar.create                          1        CalendarController ✗\n  calendar.delete                          1        CalendarController ✗\n  calendar.edit                            1        CalendarController ✗\n\n  CAMERA_AUDIT:\n  camera_audit.capture                     1        CameraAuditController ✓\n  camera_audit.delete                      1        CameraAuditController ✓\n  camera_audit.stations                    3        CameraAuditController ✓\n  camera_audit.verify                      1        CameraAuditController ✓\n  camera_audit.view                        3        CameraAuditController ✓\n\n  CRM:\n  crm.create                               11       ActivityController, ClientC... ✓\n  crm.delete                               13       ActivityController, ClientC... ✓\n  crm.edit                                 13       ActivityController, ClientC... ✓\n  crm.view                                 55       ActivityController, CRMCont... ✓\n\n  DASHBOARD:\n  dashboard.edit                           2        DashboardController ✗\n\n  DOCUMENTS:\n  documents.create                         1        DocumentsController ✗\n  documents.delete                         1        DocumentsController ✓\n\n  FORECASTING:\n  forecasting.create                       10       FinancialPlannerController,... ✓\n  forecasting.delete                       8        ForecasterController ✓\n  forecasting.edit                         16       FinancialPlannerController,... ✓\n  forecasting.generate_projections         1        ProductForecastController ✓\n  forecasting.manage_assumptions           5        AssumptionsController ✓\n  forecasting.manage_products              3        ProductForecastController ✓\n  forecasting.update_daily                 3        AssumptionsController ✓\n  forecasting.view                         9        FinancialPlannerController,... ✓\n  forecasting.view_actuals                 1        AssumptionsController ✓\n  forecasting.view_proforma                7        FinancialProFormaController... ✓\n\n  HR:\n  hr.create                                28       ApplicationController, Asse... ✓\n  hr.delete                                16       ApplicationController, Asse... ✓\n  hr.edit                                  25       ApplicationController, Asse... ✓\n  hr.view                                  30       ApplicationController, Asse... ✓\n\n  INVENTORY:\n  inventory.create                         9        CategoryController, Locatio... ✓\n  inventory.delete                         10       CategoryController, Locatio... ✓\n  inventory.edit                           7        CategoryController, Locatio... ✓\n  inventory.manage                         12       CategoryController, StockMo... ✓\n  inventory.view                           20       CategoryController, Invento... ✓\n\n  MANUFACTURING:\n  manufacturing.approve                    2        MRPController ✓\n  manufacturing.create                     13       BOMController, BusinessLine... ✓\n  manufacturing.delete                     6        BusinessLineController, Equ... ✓\n  manufacturing.edit                       44       BOMController, BusinessLine... ✓\n  manufacturing.view                       53       AnalyticsController, BOMCon... ✓\n\n  MESSAGING:\n  messaging.create                         1        MessagingController ✗\n  messaging.delete                         1        MessagingController ✗\n  messaging.edit                           2        MessagingController ✗\n\n  NDAS:\n  ndas.countersign                         2        NDAController ✓\n  ndas.create                              2        NDAController ✓\n  ndas.delete                              1        NDAController ✓\n  ndas.edit                                2        NDAController ✓\n  ndas.send                                2        NDAController ✓\n  ndas.view                                5        NDAController ✓\n\n  NETWORK_MONITOR:\n  network_monitor.manage                   3        NetworkMonitorController ✓\n  network_monitor.view                     1        NetworkMonitorController ✓\n\n  NEXTCLOUD:\n  nextcloud.delete                         1        NextcloudController ✓\n  nextcloud.manage                         7        NextcloudAdminController, N... ✓\n  nextcloud.upload                         6        NextcloudController ✓\n  nextcloud.view                           7        NextcloudController ✓\n\n  PAYROLL:\n  payroll.view                             1        PayrollController ✓\n\n  PERMISSIONS:\n  permissions.manage                       10       PermissionGroupController ✓\n\n  PROCUREMENT:\n  procurement.approve                      2        PurchaseRequisitionController ✓\n  procurement.create                       16       DebitNoteController, GoodsR... ✓\n  procurement.delete                       12       DebitNoteController, GoodsR... ✓\n  procurement.edit                         12       DebitNoteController, Purcha... ✓\n  procurement.view                         18       DebitNoteController, GoodsR... ✓\n\n  PRODUCT_FORECAST:\n  product_forecast.view                    2        ProductForecastController ✓\n\n  PROFILE:\n  profile.edit                             2        ProfileController ✗\n\n  PROJECTS:\n  projects.create                          3        ProjectsController ✓\n  projects.delete                          5        ProjectsController ✓\n  projects.edit                            9        ProjectsController ✓\n  projects.view                            5        ProjectsController ✓\n\n  PURCHASES:\n  purchases.create                         3        SupplierController ✓\n  purchases.delete                         3        SupplierController ✓\n  purchases.edit                           2        SupplierController ✓\n  purchases.view                           3        PurchasesController, Suppli... ✓\n\n  PURCHASING:\n  purchasing.create                        1        MRPController ✓\n\n  RECURRING_TEMPLATES:\n  recurring_templates.activate             1        RecurringTransactionController ✓\n  recurring_templates.create               2        RecurringTransactionController ✓\n  recurring_templates.delete               1        RecurringTransactionController ✓\n  recurring_templates.edit                 2        RecurringTransactionController ✓\n  recurring_templates.execute              2        RecurringTransactionController ✓\n  recurring_templates.view                 3        RecurringTransactionController ✓\n\n  REPORTS:\n  reports.create                           2        CustomReportsController ✗\n  reports.delete                           1        CustomReportsController ✗\n  reports.edit                             2        CustomReportsController ✗\n  reports.view                             7        ReportsController ✓\n\n  ROLES:\n  roles.create                             2        RoleController ✓\n  roles.delete                             1        RoleController ✓\n  roles.edit                               2        RoleController ✓\n  roles.view                               4        RoleController ✓\n\n  SALES:\n  sales.agreements.create                  3        AgreementController ✓\n  sales.agreements.delete                  3        AgreementController ✓\n  sales.agreements.edit                    3        AgreementController ✓\n  sales.agreements.send                    2        AgreementController ✓\n  sales.agreements.view                    5        AgreementController ✓\n  sales.approve                            2        ReturnController ✗\n  sales.create                             28       BatteryQuoteController, Cre... ✓\n  sales.delete                             23       BatteryQuoteController, Cre... ✓\n  sales.edit                               20       BatteryQuoteController, Inv... ✓\n  sales.view                               34       BatteryQuoteController, Cre... ✓\n\n  SETTINGS:\n  settings.edit                            23       MenuController, TermsCondit... ✓\n  settings.view                            4        MenuController, TermsCondit... ✓\n\n  SYSTEM:\n  system.backup                            1        BackupController ✓\n  system.edit                              1        ProfileController ✗\n  system.files.delete                      3        FileManagerController ✗\n\n  TAX_JURISDICTIONS:\n  tax_jurisdictions.create                 2        TaxJurisdictionController ✓\n  tax_jurisdictions.delete                 1        TaxJurisdictionController ✓\n  tax_jurisdictions.edit                   3        TaxJurisdictionController ✓\n  tax_jurisdictions.view                   2        TaxJurisdictionController ✓\n\n  TAX_PAYMENTS:\n  tax_payments.create                      2        TaxPaymentController ✓\n  tax_payments.edit                        4        TaxPaymentController ✓\n  tax_payments.file                        1        TaxPaymentController ✓\n  tax_payments.view                        2        TaxPaymentController ✓\n\n  TAX_REPORTS:\n  tax_reports.view                         1        TaxPaymentController ✓\n\n  TICKETS:\n  tickets.create                           4        HelpDeskController, Support... ✓\n  tickets.delete                           2        SupportController ✗\n  tickets.edit                             2        HelpDeskController, Support... ✓\n\n  USERS:\n  users.create                             2        UserController ✓\n  users.delete                             3        UserController ✓\n  users.edit                               2        UserController ✓\n  users.view                               3        UserController ✓\n\n➕ CREATING MISSING PERMISSIONS\n--------------------------------------------------------------------------------\n  Found 19 missing permissions:\n\n  + calendar.create (calendar) - \"Create Calendar\"\n    Used in: CalendarController\n\n  + calendar.edit (calendar) - \"Edit Calendar\"\n    Used in: CalendarController\n\n  + calendar.delete (calendar) - \"Delete Calendar\"\n    Used in: CalendarController\n\n  + reports.create (reports) - \"Create Reports\"\n    Used in: CustomReportsController\n\n  + reports.edit (reports) - \"Edit Reports\"\n    Used in: CustomReportsController\n\n  + reports.delete (reports) - \"Delete Reports\"\n    Used in: CustomReportsController\n\n  + dashboard.edit (dashboard) - \"Edit Dashboard\"\n    Used in: DashboardController\n\n  + documents.create (documents) - \"Create Documents\"\n    Used in: DocumentsController\n\n  + system.files.delete (system) - \"System Files Delete\"\n    Used in: FileManagerController\n\n  + messaging.create (messaging) - \"Create Messaging\"\n    Used in: MessagingController\n\n  + messaging.edit (messaging) - \"Edit Messaging\"\n    Used in: MessagingController\n\n  + messaging.delete (messaging) - \"Delete Messaging\"\n    Used in: MessagingController\n\n  + admin.create (admin) - \"Create Admin\"\n    Used in: PipedriveImportController, UserGroupController\n\n  + profile.edit (profile) - \"Edit Profile\"\n    Used in: ProfileController\n\n  + system.edit (system) - \"Edit System\"\n    Used in: ProfileController\n\n  + admin.edit (admin) - \"Edit Admin\"\n    Used in: QuickBooksController, UserGroupController\n\n  + admin.delete (admin) - \"Delete Admin\"\n    Used in: QuickBooksController, UserGroupController\n\n  + sales.approve (sales) - \"Approve Sales\"\n    Used in: ReturnController\n\n  + tickets.delete (tickets) - \"Delete Tickets\"\n    Used in: SupportController\n\n🗑️  UNUSED PERMISSIONS\n--------------------------------------------------------------------------------\n  Found 256 permissions in database not used in controllers:\n\n  (CORE):\n    - agreements.view - \"View Agreements\"\n    - ai-test.view - \"View AI Testing\"\n    - analytics.view - \"View analytics\"\n    - announcements.view - \"View Announcements\"\n    - assumptions.view - \"View Daily Update\"\n    - audit-logs.view - \"View Audit Log\"\n    - backup.view - \"View System Backup\"\n    - calendar.view - \"View calendar\"\n    - companies.view - \"View Companies\"\n    - creditnotes.view - \"View Credit Notes\"\n    ... and 16 more\n\n  1099:\n    - 1099_contractors.manage - \"Manage 1099 contractor designations\"\n    - 1099_filings.file - \"File 1099 forms\"\n    - 1099_filings.prepare - \"Prepare 1099 forms\"\n    - 1099_payments.manage - \"Manage 1099 payment classifications\"\n    - 1099_payments.view - \"View 1099 reportable payments\"\n    - 1099_reports.view - \"View 1099 reports\"\n\n  ACCOUNTING:\n    - accounting.customer_payments.delete - \"Delete customer payments\"\n    - accounting.customer_payments.edit - \"Edit customer payments\"\n    - accounting.post - \"Post journal entries\"\n    - accounts.create - \"Create accounts\"\n    - accounts.delete - \"Delete accounts\"\n    - accounts.edit - \"Edit accounts\"\n    - accounts.view - \"View chart of accounts\"\n    - bank_accounts.create - \"Create bank accounts\"\n    - bank_accounts.edit - \"Edit bank accounts\"\n    - bank_accounts.view - \"View bank accounts\"\n    ... and 21 more\n\n  AUDIT:\n    - audit_trail.export - \"Export audit trail\"\n    - audit_trail.view - \"View audit trail\"\n\n  AUTOMATION:\n    - automation.view - \"View Templates\"\n\n  BANK_IMPORT:\n    - bank_import.categorize - \"Categorize imported transactions\"\n    - bank_import.rules - \"Manage categorization rules\"\n\n  CREDIT_NOTES:\n    - credit_notes.apply - \"Apply Credit Notes to Invoices\"\n    - credit_notes.auto_apply - \"Auto-apply Credit Notes\"\n    - credit_notes.reverse - \"Reverse Credit Note Applications\"\n    - credit_notes.view_balances - \"View Customer Credit Balances\"\n\n  CRM:\n    - activities.create - \"Create CRM activities\"\n    - activities.edit - \"Edit CRM activities\"\n    - activities.view - \"View CRM activities\"\n    - clients.create - \"Create clients\"\n    - clients.delete - \"Delete clients\"\n    - clients.edit - \"Edit clients\"\n    - clients.view - \"View clients\"\n    - contacts.create - \"Create contacts\"\n    - contacts.delete - \"Delete contacts\"\n    - contacts.edit - \"Edit contacts\"\n    ... and 14 more\n\n  DOCUMENTS:\n    - documents.edit - \"Edit documents\"\n    - documents.upload - \"Upload documents\"\n\n  HELPDESK:\n    - tickets.assign - \"Assign support tickets\"\n    - tickets.close - \"Close support tickets\"\n    - tickets.view - \"View support tickets\"\n\n  HR:\n    - applications.create - \"Create job applications\"\n    - applications.edit - \"Edit job applications\"\n    - applications.view - \"View job applications\"\n    - assessments.create - \"Create assessments\"\n    - assessments.view - \"View assessments\"\n    - attendance.create - \"Record attendance\"\n    - attendance.view - \"View attendance\"\n    - contracts.create - \"Create employee contracts\"\n    - contracts.edit - \"Edit employee contracts\"\n    - contracts.view - \"View employee contracts\"\n    ... and 31 more\n\n  INVENTORY:\n    - camera_audit.annotate - \"Add annotations to audit images\"\n    - camera_audit.export - \"Export camera audit data\"\n    - categories.create - \"Create product categories\"\n    - categories.delete - \"Delete product categories\"\n    - categories.edit - \"Edit product categories\"\n    - categories.view - \"View product categories\"\n    - inventory.adjust - \"Adjust inventory levels\"\n    - lots.create - \"Create lot/serial numbers\"\n    - lots.edit - \"Edit lot/serial numbers\"\n    - lots.view - \"View lot/serial numbers\"\n    ... and 11 more\n\n  MANUFACTURING:\n    - boms.create - \"Create bills of materials\"\n    - boms.delete - \"Delete bills of materials\"\n    - boms.edit - \"Edit bills of materials\"\n    - boms.view - \"View bills of materials\"\n    - capacity.edit - \"Edit capacity planning\"\n    - capacity.view - \"View capacity planning\"\n    - equipment.create - \"Create equipment\"\n    - equipment.edit - \"Edit equipment\"\n    - equipment.maintenance - \"Perform equipment maintenance\"\n    - equipment.view - \"View equipment\"\n    ... and 11 more\n\n  MARKETING:\n    - campaigns.create - \"Create email campaigns\"\n    - campaigns.edit - \"Edit email campaigns\"\n    - campaigns.send - \"Send email campaigns\"\n    - campaigns.view - \"View email campaigns\"\n    - lists.create - \"Create mailing lists\"\n    - lists.view - \"View mailing lists\"\n    - templates.create - \"Create email templates\"\n    - templates.view - \"View email templates\"\n\n  PURCHASES:\n    - bills.approve - \"Approve supplier bills\"\n    - bills.create - \"Create supplier bills\"\n    - bills.view - \"View supplier bills\"\n    - goods_receipts.create - \"Create goods receipts\"\n    - goods_receipts.view - \"View goods receipts\"\n    - purchase_orders.approve - \"Approve purchase orders\"\n    - purchase_orders.create - \"Create purchase orders\"\n    - purchase_orders.delete - \"Delete purchase orders\"\n    - purchase_orders.edit - \"Edit purchase orders\"\n    - purchase_orders.view - \"View purchase orders\"\n    ... and 9 more\n\n  REPORTS:\n    - reports.export - \"Export reports\"\n\n  SALES:\n    - delivery_notes.create - \"Create delivery notes\"\n    - delivery_notes.view - \"View delivery notes\"\n    - invoices.create - \"Create invoices\"\n    - invoices.delete - \"Delete invoices\"\n    - invoices.edit - \"Edit invoices\"\n    - invoices.view - \"View invoices\"\n    - orders.approve - \"Approve sales orders\"\n    - orders.create - \"Create sales orders\"\n    - orders.delete - \"Delete sales orders\"\n    - orders.edit - \"Edit sales orders\"\n    ... and 22 more\n\n  SECURITY:\n    - mfa.admin_override - \"Admin: Override MFA for any user\"\n    - mfa.manage_own - \"Manage own MFA settings\"\n    - security.view_audit - \"View security audit logs\"\n\n  STATEMENTS:\n    - statements.bulk_generate - \"Generate Bulk Statements\"\n    - statements.email - \"Email Statements to Customers\"\n    - statements.generate - \"Generate Customer Statements\"\n    - statements.view_history - \"View Statement History\"\n\n  SYSTEM:\n    - files.delete - \"Delete files and folders\"\n    - files.manage - \"Manage all files and folders\"\n    - files.upload - \"Upload files\"\n\n  TAX:\n    - tax_exemptions.manage - \"Manage tax exemptions\"\n    - tax_exemptions.view - \"View tax exemptions\"\n\n  ⚠️  NOTE: These may be used in views or future features.\n  Review carefully before deleting.\n\n📊 COVERAGE STATISTICS\n--------------------------------------------------------------------------------\n  Permissions in database:        385\n  Permissions in controllers:     148\n  Matching (in both):             129\n  Missing from database:          19\n  Unused in controllers:          256\n  Coverage:                       87.2%\n\n  PERMISSIONS BY MODULE:\n    accounting                      13 permissions\n    sales                           10 permissions\n    forecasting                     10 permissions\n    admin                            6 permissions\n    bank_import                      6 permissions\n    ndas                             6 permissions\n    recurring_templates              6 permissions\n    manufacturing                    5 permissions\n    camera_audit                     5 permissions\n    inventory                        5 permissions\n\n\n================================================================================\nSCAN COMPLETE\n================================================================================\n\nThis was a dry run. Run with --live flag to apply changes.\n','Script executed successfully','2025-11-28 12:33:48'),
(16,'scan_permissions',1,'{\"mode\":\"live\"}',1,'\n\n\n\n\n================================================================================\nPERMISSION SCANNER & SYNC UTILITY\nMODE: LIVE (changes WILL be applied to database)\n================================================================================\n\n📚 LOADING DATABASE PERMISSIONS\n--------------------------------------------------------------------------------\n  Loaded 385 permissions from database\n\n🔍 SCANNING CONTROLLERS\n--------------------------------------------------------------------------------\n  Scanned 147 controller files\n  Found 132 files with permission checks\n  Discovered 148 unique permissions\n\n📋 DISCOVERED PERMISSIONS REPORT\n--------------------------------------------------------------------------------\n  Permission                               Checks   Controllers\n--------------------------------------------------------------------------------\n\n  (CORE):\n  admin                                    101      ActionMenuEditorController,... ✓\n\n  1099_CONTRACTORS:\n  1099_contractors.export                  1        Form1099Controller ✓\n  1099_contractors.generate_reports        1        Form1099Controller ✓\n  1099_contractors.view                    1        Form1099Controller ✓\n  1099_contractors.view_payments           1        Form1099Controller ✓\n\n  ACCOUNTING:\n  accounting.approve                       3        ExpenseController ✓\n  accounting.create                        30       AccountController, BankAcco... ✓\n  accounting.customer_payments.create      2        CustomerPaymentController ✓\n  accounting.customer_payments.view        2        CustomerPaymentController ✓\n  accounting.delete                        21       BankAccountController, Budg... ✓\n  accounting.edit                          25       BankAccountController, Bank... ✓\n  accounting.vendor_payments.create        4        VendorPaymentController ✓\n  accounting.vendor_payments.delete        1        VendorPaymentController ✓\n  accounting.vendor_payments.edit          2        VendorPaymentController ✓\n  accounting.vendor_payments.print_checks  1        VendorPaymentController ✓\n  accounting.vendor_payments.view          3        VendorPaymentController ✓\n  accounting.vendor_payments.void          1        VendorPaymentController ✓\n  accounting.view                          36       AccountController, Accounti... ✓\n\n  ADMIN:\n  admin.agreement_templates                9        AgreementTemplateController ✓\n  admin.create                             7        PipedriveImportController, ... ✗\n  admin.delete                             2        QuickBooksController, UserG... ✗\n  admin.edit                               5        QuickBooksController, UserG... ✗\n  admin.settings                           1        PipedriveImportController ✓\n  admin.system_scripts                     3        SystemScriptsController ✓\n\n  AUDIT_LOGS:\n  audit_logs.view                          1        AuditLogController ✓\n\n  BANK_IMPORT:\n  bank_import.create                       2        BankImportController ✓\n  bank_import.delete                       1        BankImportController ✓\n  bank_import.edit                         2        BankImportController ✓\n  bank_import.import                       1        BankImportController ✓\n  bank_import.manage_rules                 4        BankImportController ✓\n  bank_import.view                         2        BankImportController ✓\n\n  CALENDAR:\n  calendar.create                          1        CalendarController ✗\n  calendar.delete                          1        CalendarController ✗\n  calendar.edit                            1        CalendarController ✗\n\n  CAMERA_AUDIT:\n  camera_audit.capture                     1        CameraAuditController ✓\n  camera_audit.delete                      1        CameraAuditController ✓\n  camera_audit.stations                    3        CameraAuditController ✓\n  camera_audit.verify                      1        CameraAuditController ✓\n  camera_audit.view                        3        CameraAuditController ✓\n\n  CRM:\n  crm.create                               11       ActivityController, ClientC... ✓\n  crm.delete                               13       ActivityController, ClientC... ✓\n  crm.edit                                 13       ActivityController, ClientC... ✓\n  crm.view                                 55       ActivityController, CRMCont... ✓\n\n  DASHBOARD:\n  dashboard.edit                           2        DashboardController ✗\n\n  DOCUMENTS:\n  documents.create                         1        DocumentsController ✗\n  documents.delete                         1        DocumentsController ✓\n\n  FORECASTING:\n  forecasting.create                       10       FinancialPlannerController,... ✓\n  forecasting.delete                       8        ForecasterController ✓\n  forecasting.edit                         16       FinancialPlannerController,... ✓\n  forecasting.generate_projections         1        ProductForecastController ✓\n  forecasting.manage_assumptions           5        AssumptionsController ✓\n  forecasting.manage_products              3        ProductForecastController ✓\n  forecasting.update_daily                 3        AssumptionsController ✓\n  forecasting.view                         9        FinancialPlannerController,... ✓\n  forecasting.view_actuals                 1        AssumptionsController ✓\n  forecasting.view_proforma                7        FinancialProFormaController... ✓\n\n  HR:\n  hr.create                                28       ApplicationController, Asse... ✓\n  hr.delete                                16       ApplicationController, Asse... ✓\n  hr.edit                                  25       ApplicationController, Asse... ✓\n  hr.view                                  30       ApplicationController, Asse... ✓\n\n  INVENTORY:\n  inventory.create                         9        CategoryController, Locatio... ✓\n  inventory.delete                         10       CategoryController, Locatio... ✓\n  inventory.edit                           7        CategoryController, Locatio... ✓\n  inventory.manage                         12       CategoryController, StockMo... ✓\n  inventory.view                           20       CategoryController, Invento... ✓\n\n  MANUFACTURING:\n  manufacturing.approve                    2        MRPController ✓\n  manufacturing.create                     13       BOMController, BusinessLine... ✓\n  manufacturing.delete                     6        BusinessLineController, Equ... ✓\n  manufacturing.edit                       44       BOMController, BusinessLine... ✓\n  manufacturing.view                       53       AnalyticsController, BOMCon... ✓\n\n  MESSAGING:\n  messaging.create                         1        MessagingController ✗\n  messaging.delete                         1        MessagingController ✗\n  messaging.edit                           2        MessagingController ✗\n\n  NDAS:\n  ndas.countersign                         2        NDAController ✓\n  ndas.create                              2        NDAController ✓\n  ndas.delete                              1        NDAController ✓\n  ndas.edit                                2        NDAController ✓\n  ndas.send                                2        NDAController ✓\n  ndas.view                                5        NDAController ✓\n\n  NETWORK_MONITOR:\n  network_monitor.manage                   3        NetworkMonitorController ✓\n  network_monitor.view                     1        NetworkMonitorController ✓\n\n  NEXTCLOUD:\n  nextcloud.delete                         1        NextcloudController ✓\n  nextcloud.manage                         7        NextcloudAdminController, N... ✓\n  nextcloud.upload                         6        NextcloudController ✓\n  nextcloud.view                           7        NextcloudController ✓\n\n  PAYROLL:\n  payroll.view                             1        PayrollController ✓\n\n  PERMISSIONS:\n  permissions.manage                       10       PermissionGroupController ✓\n\n  PROCUREMENT:\n  procurement.approve                      2        PurchaseRequisitionController ✓\n  procurement.create                       16       DebitNoteController, GoodsR... ✓\n  procurement.delete                       12       DebitNoteController, GoodsR... ✓\n  procurement.edit                         12       DebitNoteController, Purcha... ✓\n  procurement.view                         18       DebitNoteController, GoodsR... ✓\n\n  PRODUCT_FORECAST:\n  product_forecast.view                    2        ProductForecastController ✓\n\n  PROFILE:\n  profile.edit                             2        ProfileController ✗\n\n  PROJECTS:\n  projects.create                          3        ProjectsController ✓\n  projects.delete                          5        ProjectsController ✓\n  projects.edit                            9        ProjectsController ✓\n  projects.view                            5        ProjectsController ✓\n\n  PURCHASES:\n  purchases.create                         3        SupplierController ✓\n  purchases.delete                         3        SupplierController ✓\n  purchases.edit                           2        SupplierController ✓\n  purchases.view                           3        PurchasesController, Suppli... ✓\n\n  PURCHASING:\n  purchasing.create                        1        MRPController ✓\n\n  RECURRING_TEMPLATES:\n  recurring_templates.activate             1        RecurringTransactionController ✓\n  recurring_templates.create               2        RecurringTransactionController ✓\n  recurring_templates.delete               1        RecurringTransactionController ✓\n  recurring_templates.edit                 2        RecurringTransactionController ✓\n  recurring_templates.execute              2        RecurringTransactionController ✓\n  recurring_templates.view                 3        RecurringTransactionController ✓\n\n  REPORTS:\n  reports.create                           2        CustomReportsController ✗\n  reports.delete                           1        CustomReportsController ✗\n  reports.edit                             2        CustomReportsController ✗\n  reports.view                             7        ReportsController ✓\n\n  ROLES:\n  roles.create                             2        RoleController ✓\n  roles.delete                             1        RoleController ✓\n  roles.edit                               2        RoleController ✓\n  roles.view                               4        RoleController ✓\n\n  SALES:\n  sales.agreements.create                  3        AgreementController ✓\n  sales.agreements.delete                  3        AgreementController ✓\n  sales.agreements.edit                    3        AgreementController ✓\n  sales.agreements.send                    2        AgreementController ✓\n  sales.agreements.view                    5        AgreementController ✓\n  sales.approve                            2        ReturnController ✗\n  sales.create                             28       BatteryQuoteController, Cre... ✓\n  sales.delete                             23       BatteryQuoteController, Cre... ✓\n  sales.edit                               20       BatteryQuoteController, Inv... ✓\n  sales.view                               34       BatteryQuoteController, Cre... ✓\n\n  SETTINGS:\n  settings.edit                            23       MenuController, TermsCondit... ✓\n  settings.view                            4        MenuController, TermsCondit... ✓\n\n  SYSTEM:\n  system.backup                            1        BackupController ✓\n  system.edit                              1        ProfileController ✗\n  system.files.delete                      3        FileManagerController ✗\n\n  TAX_JURISDICTIONS:\n  tax_jurisdictions.create                 2        TaxJurisdictionController ✓\n  tax_jurisdictions.delete                 1        TaxJurisdictionController ✓\n  tax_jurisdictions.edit                   3        TaxJurisdictionController ✓\n  tax_jurisdictions.view                   2        TaxJurisdictionController ✓\n\n  TAX_PAYMENTS:\n  tax_payments.create                      2        TaxPaymentController ✓\n  tax_payments.edit                        4        TaxPaymentController ✓\n  tax_payments.file                        1        TaxPaymentController ✓\n  tax_payments.view                        2        TaxPaymentController ✓\n\n  TAX_REPORTS:\n  tax_reports.view                         1        TaxPaymentController ✓\n\n  TICKETS:\n  tickets.create                           4        HelpDeskController, Support... ✓\n  tickets.delete                           2        SupportController ✗\n  tickets.edit                             2        HelpDeskController, Support... ✓\n\n  USERS:\n  users.create                             2        UserController ✓\n  users.delete                             3        UserController ✓\n  users.edit                               2        UserController ✓\n  users.view                               3        UserController ✓\n\n➕ CREATING MISSING PERMISSIONS\n--------------------------------------------------------------------------------\n  Found 19 missing permissions:\n\n  + calendar.create (calendar) - \"Create Calendar\"\n    Used in: CalendarController\n    ✓ Created\n\n  + calendar.edit (calendar) - \"Edit Calendar\"\n    Used in: CalendarController\n    ✓ Created\n\n  + calendar.delete (calendar) - \"Delete Calendar\"\n    Used in: CalendarController\n    ✓ Created\n\n  + reports.create (reports) - \"Create Reports\"\n    Used in: CustomReportsController\n    ✓ Created\n\n  + reports.edit (reports) - \"Edit Reports\"\n    Used in: CustomReportsController\n    ✓ Created\n\n  + reports.delete (reports) - \"Delete Reports\"\n    Used in: CustomReportsController\n    ✓ Created\n\n  + dashboard.edit (dashboard) - \"Edit Dashboard\"\n    Used in: DashboardController\n    ✓ Created\n\n  + documents.create (documents) - \"Create Documents\"\n    Used in: DocumentsController\n    ✓ Created\n\n  + system.files.delete (system) - \"System Files Delete\"\n    Used in: FileManagerController\n    ✓ Created\n\n  + messaging.create (messaging) - \"Create Messaging\"\n    Used in: MessagingController\n    ✓ Created\n\n  + messaging.edit (messaging) - \"Edit Messaging\"\n    Used in: MessagingController\n    ✓ Created\n\n  + messaging.delete (messaging) - \"Delete Messaging\"\n    Used in: MessagingController\n    ✓ Created\n\n  + admin.create (admin) - \"Create Admin\"\n    Used in: PipedriveImportController, UserGroupController\n    ✓ Created\n\n  + profile.edit (profile) - \"Edit Profile\"\n    Used in: ProfileController\n    ✓ Created\n\n  + system.edit (system) - \"Edit System\"\n    Used in: ProfileController\n    ✓ Created\n\n  + admin.edit (admin) - \"Edit Admin\"\n    Used in: QuickBooksController, UserGroupController\n    ✓ Created\n\n  + admin.delete (admin) - \"Delete Admin\"\n    Used in: QuickBooksController, UserGroupController\n    ✓ Created\n\n  + sales.approve (sales) - \"Approve Sales\"\n    Used in: ReturnController\n    ✓ Created\n\n  + tickets.delete (tickets) - \"Delete Tickets\"\n    Used in: SupportController\n    ✓ Created\n\n🗑️  UNUSED PERMISSIONS\n--------------------------------------------------------------------------------\n  Found 256 permissions in database not used in controllers:\n\n  (CORE):\n    - agreements.view - \"View Agreements\"\n    - ai-test.view - \"View AI Testing\"\n    - analytics.view - \"View analytics\"\n    - announcements.view - \"View Announcements\"\n    - assumptions.view - \"View Daily Update\"\n    - audit-logs.view - \"View Audit Log\"\n    - backup.view - \"View System Backup\"\n    - calendar.view - \"View calendar\"\n    - companies.view - \"View Companies\"\n    - creditnotes.view - \"View Credit Notes\"\n    ... and 16 more\n\n  1099:\n    - 1099_contractors.manage - \"Manage 1099 contractor designations\"\n    - 1099_filings.file - \"File 1099 forms\"\n    - 1099_filings.prepare - \"Prepare 1099 forms\"\n    - 1099_payments.manage - \"Manage 1099 payment classifications\"\n    - 1099_payments.view - \"View 1099 reportable payments\"\n    - 1099_reports.view - \"View 1099 reports\"\n\n  ACCOUNTING:\n    - accounting.customer_payments.delete - \"Delete customer payments\"\n    - accounting.customer_payments.edit - \"Edit customer payments\"\n    - accounting.post - \"Post journal entries\"\n    - accounts.create - \"Create accounts\"\n    - accounts.delete - \"Delete accounts\"\n    - accounts.edit - \"Edit accounts\"\n    - accounts.view - \"View chart of accounts\"\n    - bank_accounts.create - \"Create bank accounts\"\n    - bank_accounts.edit - \"Edit bank accounts\"\n    - bank_accounts.view - \"View bank accounts\"\n    ... and 21 more\n\n  AUDIT:\n    - audit_trail.export - \"Export audit trail\"\n    - audit_trail.view - \"View audit trail\"\n\n  AUTOMATION:\n    - automation.view - \"View Templates\"\n\n  BANK_IMPORT:\n    - bank_import.categorize - \"Categorize imported transactions\"\n    - bank_import.rules - \"Manage categorization rules\"\n\n  CREDIT_NOTES:\n    - credit_notes.apply - \"Apply Credit Notes to Invoices\"\n    - credit_notes.auto_apply - \"Auto-apply Credit Notes\"\n    - credit_notes.reverse - \"Reverse Credit Note Applications\"\n    - credit_notes.view_balances - \"View Customer Credit Balances\"\n\n  CRM:\n    - activities.create - \"Create CRM activities\"\n    - activities.edit - \"Edit CRM activities\"\n    - activities.view - \"View CRM activities\"\n    - clients.create - \"Create clients\"\n    - clients.delete - \"Delete clients\"\n    - clients.edit - \"Edit clients\"\n    - clients.view - \"View clients\"\n    - contacts.create - \"Create contacts\"\n    - contacts.delete - \"Delete contacts\"\n    - contacts.edit - \"Edit contacts\"\n    ... and 14 more\n\n  DOCUMENTS:\n    - documents.edit - \"Edit documents\"\n    - documents.upload - \"Upload documents\"\n\n  HELPDESK:\n    - tickets.assign - \"Assign support tickets\"\n    - tickets.close - \"Close support tickets\"\n    - tickets.view - \"View support tickets\"\n\n  HR:\n    - applications.create - \"Create job applications\"\n    - applications.edit - \"Edit job applications\"\n    - applications.view - \"View job applications\"\n    - assessments.create - \"Create assessments\"\n    - assessments.view - \"View assessments\"\n    - attendance.create - \"Record attendance\"\n    - attendance.view - \"View attendance\"\n    - contracts.create - \"Create employee contracts\"\n    - contracts.edit - \"Edit employee contracts\"\n    - contracts.view - \"View employee contracts\"\n    ... and 31 more\n\n  INVENTORY:\n    - camera_audit.annotate - \"Add annotations to audit images\"\n    - camera_audit.export - \"Export camera audit data\"\n    - categories.create - \"Create product categories\"\n    - categories.delete - \"Delete product categories\"\n    - categories.edit - \"Edit product categories\"\n    - categories.view - \"View product categories\"\n    - inventory.adjust - \"Adjust inventory levels\"\n    - lots.create - \"Create lot/serial numbers\"\n    - lots.edit - \"Edit lot/serial numbers\"\n    - lots.view - \"View lot/serial numbers\"\n    ... and 11 more\n\n  MANUFACTURING:\n    - boms.create - \"Create bills of materials\"\n    - boms.delete - \"Delete bills of materials\"\n    - boms.edit - \"Edit bills of materials\"\n    - boms.view - \"View bills of materials\"\n    - capacity.edit - \"Edit capacity planning\"\n    - capacity.view - \"View capacity planning\"\n    - equipment.create - \"Create equipment\"\n    - equipment.edit - \"Edit equipment\"\n    - equipment.maintenance - \"Perform equipment maintenance\"\n    - equipment.view - \"View equipment\"\n    ... and 11 more\n\n  MARKETING:\n    - campaigns.create - \"Create email campaigns\"\n    - campaigns.edit - \"Edit email campaigns\"\n    - campaigns.send - \"Send email campaigns\"\n    - campaigns.view - \"View email campaigns\"\n    - lists.create - \"Create mailing lists\"\n    - lists.view - \"View mailing lists\"\n    - templates.create - \"Create email templates\"\n    - templates.view - \"View email templates\"\n\n  PURCHASES:\n    - bills.approve - \"Approve supplier bills\"\n    - bills.create - \"Create supplier bills\"\n    - bills.view - \"View supplier bills\"\n    - goods_receipts.create - \"Create goods receipts\"\n    - goods_receipts.view - \"View goods receipts\"\n    - purchase_orders.approve - \"Approve purchase orders\"\n    - purchase_orders.create - \"Create purchase orders\"\n    - purchase_orders.delete - \"Delete purchase orders\"\n    - purchase_orders.edit - \"Edit purchase orders\"\n    - purchase_orders.view - \"View purchase orders\"\n    ... and 9 more\n\n  REPORTS:\n    - reports.export - \"Export reports\"\n\n  SALES:\n    - delivery_notes.create - \"Create delivery notes\"\n    - delivery_notes.view - \"View delivery notes\"\n    - invoices.create - \"Create invoices\"\n    - invoices.delete - \"Delete invoices\"\n    - invoices.edit - \"Edit invoices\"\n    - invoices.view - \"View invoices\"\n    - orders.approve - \"Approve sales orders\"\n    - orders.create - \"Create sales orders\"\n    - orders.delete - \"Delete sales orders\"\n    - orders.edit - \"Edit sales orders\"\n    ... and 22 more\n\n  SECURITY:\n    - mfa.admin_override - \"Admin: Override MFA for any user\"\n    - mfa.manage_own - \"Manage own MFA settings\"\n    - security.view_audit - \"View security audit logs\"\n\n  STATEMENTS:\n    - statements.bulk_generate - \"Generate Bulk Statements\"\n    - statements.email - \"Email Statements to Customers\"\n    - statements.generate - \"Generate Customer Statements\"\n    - statements.view_history - \"View Statement History\"\n\n  SYSTEM:\n    - files.delete - \"Delete files and folders\"\n    - files.manage - \"Manage all files and folders\"\n    - files.upload - \"Upload files\"\n\n  TAX:\n    - tax_exemptions.manage - \"Manage tax exemptions\"\n    - tax_exemptions.view - \"View tax exemptions\"\n\n  ⚠️  NOTE: These may be used in views or future features.\n  Review carefully before deleting.\n\n📊 COVERAGE STATISTICS\n--------------------------------------------------------------------------------\n  Permissions in database:        385\n  Permissions in controllers:     148\n  Matching (in both):             129\n  Missing from database:          19\n  Unused in controllers:          256\n  Coverage:                       87.2%\n\n  PERMISSIONS BY MODULE:\n    accounting                      13 permissions\n    sales                           10 permissions\n    forecasting                     10 permissions\n    admin                            6 permissions\n    bank_import                      6 permissions\n    ndas                             6 permissions\n    recurring_templates              6 permissions\n    manufacturing                    5 permissions\n    camera_audit                     5 permissions\n    inventory                        5 permissions\n\n\n================================================================================\nSCAN COMPLETE\n================================================================================\n','Script executed successfully','2025-11-28 13:23:58'),
(17,'sync_permissions_menu',1,'{\"mode\":\"dry-run\"}',1,'\n\n\n\n\n================================================================================\nPERMISSION SYNC UTILITY\nMODE: DRY RUN (no changes will be made)\n================================================================================\n\n📱 CHECKING APP GRID PERMISSIONS\n--------------------------------------------------------------------------------\n  ✓ All App Grid items have permissions\n\n📋 CHECKING MENU ITEM PERMISSIONS\n--------------------------------------------------------------------------------\n  ✓ All menu items have corresponding permissions\n\n🔧 STANDARDIZING MODULE NAMES\n--------------------------------------------------------------------------------\n  ✓ No obvious standardization issues found\n\n\n================================================================================\nSYNC COMPLETE\n================================================================================\n\nThis was a dry run. Run with --live flag to apply changes.\n','Script executed successfully','2025-11-28 13:24:11'),
(18,'sync_permissions_menu',1,'{\"mode\":\"live\"}',1,'\n\n\n\n\n================================================================================\nPERMISSION SYNC UTILITY\nMODE: LIVE (changes WILL be applied to database)\n================================================================================\n\n📱 CHECKING APP GRID PERMISSIONS\n--------------------------------------------------------------------------------\n  ✓ All App Grid items have permissions\n\n📋 CHECKING MENU ITEM PERMISSIONS\n--------------------------------------------------------------------------------\n  ✓ All menu items have corresponding permissions\n\n🔧 STANDARDIZING MODULE NAMES\n--------------------------------------------------------------------------------\n  ✓ No obvious standardization issues found\n\n\n================================================================================\nSYNC COMPLETE\n================================================================================\n','Script executed successfully','2025-11-28 13:24:35'),
(19,'categorize_unprotected',1,'[]',1,'=== Unprotected Methods Analysis ===\nGenerated: 2025-11-28 14:15:31\n\nTotal unprotected methods: 302\n\n╔══════════════════════════════════════════════════════════════╗\n║  1. INTENTIONALLY PUBLIC (9 methods) - OK           ║\n╚══════════════════════════════════════════════════════════════╝\nThese methods are designed to be public (login, agreements, etc.)\nAction: ✓ Document and keep as-is\n\n  ✓ AgreementController::publicView()\n  ✓ AgreementController::acceptAgreement()\n  ✓ AgreementController::declineAgreement()\n  ✓ AgreementController::thankYou()\n  ✓ AuthController::loginForm()\n  ✓ AuthController::login()\n  ✓ AuthController::logout()\n  ✓ AuthController::forgotPassword()\n  ✓ AuthController::resetPassword()\n\n╔══════════════════════════════════════════════════════════════╗\n║  2. TEST/DEVELOPMENT (10 methods)                  ║\n╚══════════════════════════════════════════════════════════════╝\nTest controllers that should be removed or protected in production\nAction: ⚠ Remove from production OR add admin-only protection\n\n  ⚠ AITestController (9 methods)\n     - index()\n     - chat()\n     - generate()\n     - extract()\n     - sentiment()\n     ... and 4 more\n  ⚠ TestController (1 methods)\n     - formGenerator()\n\n╔══════════════════════════════════════════════════════════════╗\n║  3. NEEDS REVIEW (11 methods)                      ║\n╚══════════════════════════════════════════════════════════════╝\nSystem/utility methods that may need special handling\nAction: ⏳ Review each to determine if protection is needed\n\n  ? AuthController::forgotPasswordForm()\n  ? AuthController::resetPasswordForm()\n  ? BackupController::index()\n  ? BackupController::triggerDatabaseBackup()\n  ? BackupController::triggerGitPush()\n  ? BackupController::triggerFullBackup()\n  ? BackupController::getHistory()\n  ? BackupController::getStats()\n  ? BackupController::showDetails()\n  ? QuoteController::publicView()\n  ? QuoteController::thankYou()\n\n╔══════════════════════════════════════════════════════════════╗\n║  4. AUTH ONLY (107 methods) - Medium Priority      ║\n╚══════════════════════════════════════════════════════════════╝\nMethods with authentication but no permission check\nAction: ⏳ Evaluate if permission check needed based on sensitivity\n\n  ⏳ ApprovalsController (1 methods)\n     - dashboard()\n  ⏳ CalendarController (2 methods)\n     - index()\n     - getEvents()\n  ⏳ CurrencyController (2 methods)\n     - getRate()\n     - convertAmount()\n  ⏳ CustomReportsController (5 methods)\n     - builder()\n     - my()\n     - shared()\n     ... and 2 more\n  ⏳ DashboardController (2 methods)\n     - index()\n     - customize()\n  ⏳ DocumentsController (7 methods)\n     - all()\n     - my()\n     - shared()\n     ... and 4 more\n  ⏳ EmailController (20 methods)\n     - index()\n     - folder()\n     - viewEmail()\n     ... and 17 more\n  ⏳ EmployeeController (1 methods)\n     - directory()\n  ⏳ FileManagerController (9 methods)\n     - index()\n     - browse()\n     - tree()\n     ... and 6 more\n  ⏳ FinancialProFormaController (2 methods)\n     - index()\n     - assumptions()\n  ⏳ GoodsReceiptController (1 methods)\n     - getPOItemsAjax()\n  ⏳ HelpDeskController (11 methods)\n     - dashboard()\n     - tickets()\n     - myTickets()\n     ... and 8 more\n  ⏳ InternalNoteAPIController (2 methods)\n     - add()\n     - togglePin()\n  ⏳ MFAController (5 methods)\n     - setupForm()\n     - setup()\n     - showBackupCodes()\n     ... and 2 more\n  ⏳ MessagingController (9 methods)\n     - index()\n     - channel()\n     - getChannelMembers()\n     ... and 6 more\n  ⏳ NextcloudProxyController (1 methods)\n     - proxyLogin()\n  ⏳ NextcloudSSOController (2 methods)\n     - generateToken()\n     - autoLogin()\n  ⏳ NotificationController (1 methods)\n     - index()\n  ⏳ ProFormaController (3 methods)\n     - index()\n     - location()\n     - compare()\n  ⏳ ProfileController (4 methods)\n     - index()\n     - uploadAvatar()\n     - changePassword()\n     ... and 1 more\n  ⏳ QuickBooksController (11 methods)\n     - index()\n     - connect()\n     - callback()\n     ... and 8 more\n  ⏳ QuoteTemplateController (1 methods)\n     - getTemplate()\n  ⏳ SearchController (1 methods)\n     - searchCustomers()\n  ⏳ TaxJurisdictionController (2 methods)\n     - getCitiesByState()\n     - calculateCustomerTax()\n  ⏳ TermsConditionsController (2 methods)\n     - show()\n     - getByType()\n\n╔══════════════════════════════════════════════════════════════╗\n║  5. NEEDS PROTECTION (165 methods) - HIGH PRIORITY!   ║\n╚══════════════════════════════════════════════════════════════╝\n🚨 These methods MUST have protection added immediately!\nAction: 🚨 Add requireAuth() + checkPermission() ASAP\n\n  🚨 ApiController (2 methods)\n     - usersList()  [controllers/ApiController.php]\n     - allUsers()  [controllers/ApiController.php]\n\n  🚨 BankImportController (4 methods)\n     - upload()  [controllers/BankImportController.php]\n     - categorizeTransaction()  [controllers/BankImportController.php]\n     - applyRules()  [controllers/BankImportController.php]\n     - toggleRule()  [controllers/BankImportController.php]\n\n  🚨 CameraAuditController (3 methods)\n     - capture()  [controllers/CameraAuditController.php]\n     - createStation()  [controllers/CameraAuditController.php]\n     - editStation()  [controllers/CameraAuditController.php]\n\n  🚨 ContactAPIController (1 methods)\n     - getByCompany()  [controllers/ContactAPIController.php]\n\n  🚨 CurrencyController (2 methods)\n     - createCurrency()  [controllers/CurrencyController.php]\n     - createRevaluation()  [controllers/CurrencyController.php]\n\n  🚨 CustomReportsController (1 methods)\n     - index()  [controllers/CustomReportsController.php]\n\n  🚨 DashboardController (3 methods)\n     - addWidget()  [controllers/DashboardController.php]\n     - toggleWidget()  [controllers/DashboardController.php]\n     - refreshWidget()  [controllers/DashboardController.php]\n\n  🚨 DocumentationController (4 methods)\n     - index()  [controllers/DocumentationController.php]\n     - search()  [controllers/DocumentationController.php]\n     - download()  [controllers/DocumentationController.php]\n     - refreshCoverage()  [controllers/DocumentationController.php]\n\n  🚨 EmailTemplateController (1 methods)\n     - toggleActive()  [controllers/EmailTemplateController.php]\n\n  🚨 EmailWebhookController (2 methods)\n     - receive()  [controllers/EmailWebhookController.php]\n     - test()  [controllers/EmailWebhookController.php]\n\n  🚨 FileManagerController (9 methods)\n     - upload()  [controllers/FileManagerController.php]\n     - createFolder()  [controllers/FileManagerController.php]\n     - rename()  [controllers/FileManagerController.php]\n     - move()  [controllers/FileManagerController.php]\n     - moveFolder()  [controllers/FileManagerController.php]\n     - compress()  [controllers/FileManagerController.php]\n     - extract()  [controllers/FileManagerController.php]\n     - shareFile()  [controllers/FileManagerController.php]\n     - shareFolder()  [controllers/FileManagerController.php]\n\n  🚨 FinancialProFormaController (2 methods)\n     - generate()  [controllers/FinancialProFormaController.php]\n     - compare()  [controllers/FinancialProFormaController.php]\n\n  🚨 ForecasterController (4 methods)\n     - createForecast()  [controllers/ForecasterController.php]\n     - createScenario()  [controllers/ForecasterController.php]\n     - createFinancing()  [controllers/ForecasterController.php]\n     - createInvestment()  [controllers/ForecasterController.php]\n\n  🚨 HelpDeskController (3 methods)\n     - chatAssignSession()  [controllers/HelpDeskController.php]\n     - chatEndSession()  [controllers/HelpDeskController.php]\n     - chatCreateSession()  [controllers/HelpDeskController.php]\n\n  🚨 InternalNoteAPIController (1 methods)\n     - index()  [controllers/InternalNoteAPIController.php]\n\n  🚨 MFAController (3 methods)\n     - verifyForm()  [controllers/MFAController.php]\n     - verify()  [controllers/MFAController.php]\n     - resendOTP()  [controllers/MFAController.php]\n\n  🚨 MRPController (4 methods)\n     - calculate()  [controllers/MRPController.php]\n     - generateRequisitions()  [controllers/MRPController.php]\n     - autoCalculateSafetyStock()  [controllers/MRPController.php]\n     - convertToPO()  [controllers/MRPController.php]\n\n  🚨 MachineDataController (5 methods)\n     - updateStatus()  [controllers/MachineDataController.php]\n     - updateProduction()  [controllers/MachineDataController.php]\n     - updateUtilization()  [controllers/MachineDataController.php]\n     - getStatus()  [controllers/MachineDataController.php]\n     - health()  [controllers/MachineDataController.php]\n\n  🚨 MaintenanceController (6 methods)\n     - createSchedule()  [controllers/MaintenanceController.php]\n     - storeSchedule()  [controllers/MaintenanceController.php]\n     - createWorkOrder()  [controllers/MaintenanceController.php]\n     - storeWorkOrder()  [controllers/MaintenanceController.php]\n     - createDowntime()  [controllers/MaintenanceController.php]\n     - storeDowntime()  [controllers/MaintenanceController.php]\n\n  🚨 MessagingController (5 methods)\n     - createChannel()  [controllers/MessagingController.php]\n     - addMember()  [controllers/MessagingController.php]\n     - uploadFile()  [controllers/MessagingController.php]\n     - addReaction()  [controllers/MessagingController.php]\n     - leaveChannel()  [controllers/MessagingController.php]\n\n  🚨 NDAController (3 methods)\n     - publicSign()  [controllers/NDAController.php]\n     - signNDA()  [controllers/NDAController.php]\n     - declineNDA()  [controllers/NDAController.php]\n\n  🚨 NDATemplateController (1 methods)\n     - toggle()  [controllers/NDATemplateController.php]\n\n  🚨 NetworkMonitorController (8 methods)\n     - status()  [controllers/NetworkMonitorController.php]\n     - logs()  [controllers/NetworkMonitorController.php]\n     - statistics()  [controllers/NetworkMonitorController.php]\n     - feed()  [controllers/NetworkMonitorController.php]\n     - clearLogs()  [controllers/NetworkMonitorController.php]\n     - addAllowedHost()  [controllers/NetworkMonitorController.php]\n     - testConnection()  [controllers/NetworkMonitorController.php]\n     - logDetail()  [controllers/NetworkMonitorController.php]\n\n  🚨 NextcloudController (5 methods)\n     - settings()  [controllers/NextcloudController.php]\n     - viewDocument()  [controllers/NextcloudController.php]\n     - quickCreateWord()  [controllers/NextcloudController.php]\n     - quickCreateExcel()  [controllers/NextcloudController.php]\n     - quickCreatePowerPoint()  [controllers/NextcloudController.php]\n\n  🚨 NextcloudSSOController (1 methods)\n     - validateToken()  [controllers/NextcloudSSOController.php]\n\n  🚨 NotificationController (4 methods)\n     - getUnread()  [controllers/NotificationController.php]\n     - markAsRead()  [controllers/NotificationController.php]\n     - markAllAsRead()  [controllers/NotificationController.php]\n     - delete()  [controllers/NotificationController.php]\n\n  🚨 OpportunityController (5 methods)\n     - addTask()  [controllers/OpportunityController.php]\n     - logReceivedEmail()  [controllers/OpportunityController.php]\n     - uploadDocument()  [controllers/OpportunityController.php]\n     - addCompetitor()  [controllers/OpportunityController.php]\n     - assign()  [controllers/OpportunityController.php]\n\n  🚨 PeriodClosingController (1 methods)\n     - processClose()  [controllers/PeriodClosingController.php]\n\n  🚨 PermissionGroupController (2 methods)\n     - assignPermissions()  [controllers/PermissionGroupController.php]\n     - reorder()  [controllers/PermissionGroupController.php]\n\n  🚨 PipedriveImportController (3 methods)\n     - index()  [controllers/PipedriveImportController.php]\n     - viewLog()  [controllers/PipedriveImportController.php]\n     - getStats()  [controllers/PipedriveImportController.php]\n\n  🚨 PricingRuleController (1 methods)\n     - calculatePrice()  [controllers/PricingRuleController.php]\n\n  🚨 ProFormaController (1 methods)\n     - calculate()  [controllers/ProFormaController.php]\n\n  🚨 ProductForecastController (1 methods)\n     - gettingStarted()  [controllers/ProductForecastController.php]\n\n  🚨 ProjectsController (31 methods)\n     - dashboard()  [controllers/ProjectsController.php]\n     - myTasks()  [controllers/ProjectsController.php]\n     - index()  [controllers/ProjectsController.php]\n     - show()  [controllers/ProjectsController.php]\n     - listView()  [controllers/ProjectsController.php]\n     - moveTask()  [controllers/ProjectsController.php]\n     - getTask()  [controllers/ProjectsController.php]\n     - addComment()  [controllers/ProjectsController.php]\n     - assignUser()  [controllers/ProjectsController.php]\n     - unassignUser()  [controllers/ProjectsController.php]\n     - addChecklistItem()  [controllers/ProjectsController.php]\n     - toggleChecklistItem()  [controllers/ProjectsController.php]\n     - addTeamMember()  [controllers/ProjectsController.php]\n     - addTeamGroup()  [controllers/ProjectsController.php]\n     - assignGroupToTask()  [controllers/ProjectsController.php]\n     - unassignGroupFromTask()  [controllers/ProjectsController.php]\n     - financials()  [controllers/ProjectsController.php]\n     - createTransaction()  [controllers/ProjectsController.php]\n     - storeTransaction()  [controllers/ProjectsController.php]\n     - editTransaction()  [controllers/ProjectsController.php]\n     - linkTransactionToTask()  [controllers/ProjectsController.php]\n     - migrateTransactions()  [controllers/ProjectsController.php]\n     - processMigration()  [controllers/ProjectsController.php]\n     - gantt()  [controllers/ProjectsController.php]\n     - calculateCriticalPath()  [controllers/ProjectsController.php]\n     - addTaskDependency()  [controllers/ProjectsController.php]\n     - resources()  [controllers/ProjectsController.php]\n     - resourceDayDetails()  [controllers/ProjectsController.php]\n     - autoAllocateResources()  [controllers/ProjectsController.php]\n     - getTaskComments()  [controllers/ProjectsController.php]\n     - addTaskComment()  [controllers/ProjectsController.php]\n\n  🚨 PromotionController (2 methods)\n     - validateCode()  [controllers/PromotionController.php]\n     - applyPromotion()  [controllers/PromotionController.php]\n\n  🚨 QualityController (4 methods)\n     - createInspection()  [controllers/QualityController.php]\n     - completeInspection()  [controllers/QualityController.php]\n     - createNCR()  [controllers/QualityController.php]\n     - createTemplate()  [controllers/QualityController.php]\n\n  🚨 QuoteController (2 methods)\n     - acceptQuote()  [controllers/QuoteController.php]\n     - declineQuote()  [controllers/QuoteController.php]\n\n  🚨 ReturnController (1 methods)\n     - complete()  [controllers/ReturnController.php]\n\n  🚨 SalesReportController (10 methods)\n     - getSummary()  [controllers/SalesReportController.php]\n     - getTopProducts()  [controllers/SalesReportController.php]\n     - getTopCustomers()  [controllers/SalesReportController.php]\n     - getByStatus()  [controllers/SalesReportController.php]\n     - getByChannel()  [controllers/SalesReportController.php]\n     - getInvoiceAnalytics()  [controllers/SalesReportController.php]\n     - getPaymentAnalytics()  [controllers/SalesReportController.php]\n     - getCategoryPerformance()  [controllers/SalesReportController.php]\n     - getSalesGrowth()  [controllers/SalesReportController.php]\n     - getQuoteConversion()  [controllers/SalesReportController.php]\n\n  🚨 SchedulingController (3 methods)\n     - autoSchedule()  [controllers/SchedulingController.php]\n     - rescheduleAssignment()  [controllers/SchedulingController.php]\n     - createAssignment()  [controllers/SchedulingController.php]\n\n  🚨 SearchController (1 methods)\n     - search()  [controllers/SearchController.php]\n\n  🚨 SettingsController (1 methods)\n     - testSmtpConnection()  [controllers/SettingsController.php]\n\n  🚨 ShopFloorController (3 methods)\n     - startProduction()  [controllers/ShopFloorController.php]\n     - pauseProduction()  [controllers/ShopFloorController.php]\n     - completeProduction()  [controllers/ShopFloorController.php]\n\n  🚨 SupportController (1 methods)\n     - addResponse()  [controllers/SupportController.php]\n\n  🚨 TaxPaymentController (1 methods)\n     - calculatePeriodTax()  [controllers/TaxPaymentController.php]\n\n  🚨 TransferController (2 methods)\n     - receive()  [controllers/TransferController.php]\n     - cancel()  [controllers/TransferController.php]\n\n  🚨 UserGroupController (2 methods)\n     - addMember()  [controllers/UserGroupController.php]\n     - addUse()  [controllers/UserGroupController.php]\n\n═══════════════════════════════════════════════════════════════\nSUMMARY\n═══════════════════════════════════════════════════════════════\n✓ Intentionally Public:  9 (OK)\n⚠ Test/Dev Controllers:  10 (Remove/Protect)\n? Needs Review:          11 (Evaluate)\n⏳ Auth Only:            107 (Medium Priority)\n🚨 Needs Protection:     165 (HIGH PRIORITY!)\n─────────────────────────────────────────────────────────────\nTotal:                   302 methods\n\n🚨 IMMEDIATE ACTION REQUIRED:\n165 methods need protection added immediately!\n\n⚠ BEFORE PRODUCTION:\nRemove 10 test/dev methods or add admin protection\n','Script executed successfully','2025-11-28 14:15:31'),
(20,'categorize_unprotected',1,'[]',1,'=== Unprotected Methods Analysis ===\nGenerated: 2025-11-28 14:20:24\n\nTotal unprotected methods: 302\n\n╔══════════════════════════════════════════════════════════════╗\n║  1. INTENTIONALLY PUBLIC (9 methods) - OK           ║\n╚══════════════════════════════════════════════════════════════╝\nThese methods are designed to be public (login, agreements, etc.)\nAction: ✓ Document and keep as-is\n\n  ✓ AgreementController::publicView()\n  ✓ AgreementController::acceptAgreement()\n  ✓ AgreementController::declineAgreement()\n  ✓ AgreementController::thankYou()\n  ✓ AuthController::loginForm()\n  ✓ AuthController::login()\n  ✓ AuthController::logout()\n  ✓ AuthController::forgotPassword()\n  ✓ AuthController::resetPassword()\n\n╔══════════════════════════════════════════════════════════════╗\n║  2. TEST/DEVELOPMENT (10 methods)                  ║\n╚══════════════════════════════════════════════════════════════╝\nTest controllers that should be removed or protected in production\nAction: ⚠ Remove from production OR add admin-only protection\n\n  ⚠ AITestController (9 methods)\n     - index()\n     - chat()\n     - generate()\n     - extract()\n     - sentiment()\n     ... and 4 more\n  ⚠ TestController (1 methods)\n     - formGenerator()\n\n╔══════════════════════════════════════════════════════════════╗\n║  3. NEEDS REVIEW (11 methods)                      ║\n╚══════════════════════════════════════════════════════════════╝\nSystem/utility methods that may need special handling\nAction: ⏳ Review each to determine if protection is needed\n\n  ? AuthController::forgotPasswordForm()\n  ? AuthController::resetPasswordForm()\n  ? BackupController::index()\n  ? BackupController::triggerDatabaseBackup()\n  ? BackupController::triggerGitPush()\n  ? BackupController::triggerFullBackup()\n  ? BackupController::getHistory()\n  ? BackupController::getStats()\n  ? BackupController::showDetails()\n  ? QuoteController::publicView()\n  ? QuoteController::thankYou()\n\n╔══════════════════════════════════════════════════════════════╗\n║  4. AUTH ONLY (107 methods) - Medium Priority      ║\n╚══════════════════════════════════════════════════════════════╝\nMethods with authentication but no permission check\nAction: ⏳ Evaluate if permission check needed based on sensitivity\n\n  ⏳ ApprovalsController (1 methods)\n     - dashboard()\n  ⏳ CalendarController (2 methods)\n     - index()\n     - getEvents()\n  ⏳ CurrencyController (2 methods)\n     - getRate()\n     - convertAmount()\n  ⏳ CustomReportsController (5 methods)\n     - builder()\n     - my()\n     - shared()\n     ... and 2 more\n  ⏳ DashboardController (2 methods)\n     - index()\n     - customize()\n  ⏳ DocumentsController (7 methods)\n     - all()\n     - my()\n     - shared()\n     ... and 4 more\n  ⏳ EmailController (20 methods)\n     - index()\n     - folder()\n     - viewEmail()\n     ... and 17 more\n  ⏳ EmployeeController (1 methods)\n     - directory()\n  ⏳ FileManagerController (9 methods)\n     - index()\n     - browse()\n     - tree()\n     ... and 6 more\n  ⏳ FinancialProFormaController (2 methods)\n     - index()\n     - assumptions()\n  ⏳ GoodsReceiptController (1 methods)\n     - getPOItemsAjax()\n  ⏳ HelpDeskController (11 methods)\n     - dashboard()\n     - tickets()\n     - myTickets()\n     ... and 8 more\n  ⏳ InternalNoteAPIController (2 methods)\n     - add()\n     - togglePin()\n  ⏳ MFAController (5 methods)\n     - setupForm()\n     - setup()\n     - showBackupCodes()\n     ... and 2 more\n  ⏳ MessagingController (9 methods)\n     - index()\n     - channel()\n     - getChannelMembers()\n     ... and 6 more\n  ⏳ NextcloudProxyController (1 methods)\n     - proxyLogin()\n  ⏳ NextcloudSSOController (2 methods)\n     - generateToken()\n     - autoLogin()\n  ⏳ NotificationController (1 methods)\n     - index()\n  ⏳ ProFormaController (3 methods)\n     - index()\n     - location()\n     - compare()\n  ⏳ ProfileController (4 methods)\n     - index()\n     - uploadAvatar()\n     - changePassword()\n     ... and 1 more\n  ⏳ QuickBooksController (11 methods)\n     - index()\n     - connect()\n     - callback()\n     ... and 8 more\n  ⏳ QuoteTemplateController (1 methods)\n     - getTemplate()\n  ⏳ SearchController (1 methods)\n     - searchCustomers()\n  ⏳ TaxJurisdictionController (2 methods)\n     - getCitiesByState()\n     - calculateCustomerTax()\n  ⏳ TermsConditionsController (2 methods)\n     - show()\n     - getByType()\n\n╔══════════════════════════════════════════════════════════════╗\n║  5. NEEDS PROTECTION (165 methods) - HIGH PRIORITY!   ║\n╚══════════════════════════════════════════════════════════════╝\n🚨 These methods MUST have protection added immediately!\nAction: 🚨 Add requireAuth() + checkPermission() ASAP\n\n  🚨 ApiController (2 methods)\n     - usersList()  [controllers/ApiController.php]\n     - allUsers()  [controllers/ApiController.php]\n\n  🚨 BankImportController (4 methods)\n     - upload()  [controllers/BankImportController.php]\n     - categorizeTransaction()  [controllers/BankImportController.php]\n     - applyRules()  [controllers/BankImportController.php]\n     - toggleRule()  [controllers/BankImportController.php]\n\n  🚨 CameraAuditController (3 methods)\n     - capture()  [controllers/CameraAuditController.php]\n     - createStation()  [controllers/CameraAuditController.php]\n     - editStation()  [controllers/CameraAuditController.php]\n\n  🚨 ContactAPIController (1 methods)\n     - getByCompany()  [controllers/ContactAPIController.php]\n\n  🚨 CurrencyController (2 methods)\n     - createCurrency()  [controllers/CurrencyController.php]\n     - createRevaluation()  [controllers/CurrencyController.php]\n\n  🚨 CustomReportsController (1 methods)\n     - index()  [controllers/CustomReportsController.php]\n\n  🚨 DashboardController (3 methods)\n     - addWidget()  [controllers/DashboardController.php]\n     - toggleWidget()  [controllers/DashboardController.php]\n     - refreshWidget()  [controllers/DashboardController.php]\n\n  🚨 DocumentationController (4 methods)\n     - index()  [controllers/DocumentationController.php]\n     - search()  [controllers/DocumentationController.php]\n     - download()  [controllers/DocumentationController.php]\n     - refreshCoverage()  [controllers/DocumentationController.php]\n\n  🚨 EmailTemplateController (1 methods)\n     - toggleActive()  [controllers/EmailTemplateController.php]\n\n  🚨 EmailWebhookController (2 methods)\n     - receive()  [controllers/EmailWebhookController.php]\n     - test()  [controllers/EmailWebhookController.php]\n\n  🚨 FileManagerController (9 methods)\n     - upload()  [controllers/FileManagerController.php]\n     - createFolder()  [controllers/FileManagerController.php]\n     - rename()  [controllers/FileManagerController.php]\n     - move()  [controllers/FileManagerController.php]\n     - moveFolder()  [controllers/FileManagerController.php]\n     - compress()  [controllers/FileManagerController.php]\n     - extract()  [controllers/FileManagerController.php]\n     - shareFile()  [controllers/FileManagerController.php]\n     - shareFolder()  [controllers/FileManagerController.php]\n\n  🚨 FinancialProFormaController (2 methods)\n     - generate()  [controllers/FinancialProFormaController.php]\n     - compare()  [controllers/FinancialProFormaController.php]\n\n  🚨 ForecasterController (4 methods)\n     - createForecast()  [controllers/ForecasterController.php]\n     - createScenario()  [controllers/ForecasterController.php]\n     - createFinancing()  [controllers/ForecasterController.php]\n     - createInvestment()  [controllers/ForecasterController.php]\n\n  🚨 HelpDeskController (3 methods)\n     - chatAssignSession()  [controllers/HelpDeskController.php]\n     - chatEndSession()  [controllers/HelpDeskController.php]\n     - chatCreateSession()  [controllers/HelpDeskController.php]\n\n  🚨 InternalNoteAPIController (1 methods)\n     - index()  [controllers/InternalNoteAPIController.php]\n\n  🚨 MFAController (3 methods)\n     - verifyForm()  [controllers/MFAController.php]\n     - verify()  [controllers/MFAController.php]\n     - resendOTP()  [controllers/MFAController.php]\n\n  🚨 MRPController (4 methods)\n     - calculate()  [controllers/MRPController.php]\n     - generateRequisitions()  [controllers/MRPController.php]\n     - autoCalculateSafetyStock()  [controllers/MRPController.php]\n     - convertToPO()  [controllers/MRPController.php]\n\n  🚨 MachineDataController (5 methods)\n     - updateStatus()  [controllers/MachineDataController.php]\n     - updateProduction()  [controllers/MachineDataController.php]\n     - updateUtilization()  [controllers/MachineDataController.php]\n     - getStatus()  [controllers/MachineDataController.php]\n     - health()  [controllers/MachineDataController.php]\n\n  🚨 MaintenanceController (6 methods)\n     - createSchedule()  [controllers/MaintenanceController.php]\n     - storeSchedule()  [controllers/MaintenanceController.php]\n     - createWorkOrder()  [controllers/MaintenanceController.php]\n     - storeWorkOrder()  [controllers/MaintenanceController.php]\n     - createDowntime()  [controllers/MaintenanceController.php]\n     - storeDowntime()  [controllers/MaintenanceController.php]\n\n  🚨 MessagingController (5 methods)\n     - createChannel()  [controllers/MessagingController.php]\n     - addMember()  [controllers/MessagingController.php]\n     - uploadFile()  [controllers/MessagingController.php]\n     - addReaction()  [controllers/MessagingController.php]\n     - leaveChannel()  [controllers/MessagingController.php]\n\n  🚨 NDAController (3 methods)\n     - publicSign()  [controllers/NDAController.php]\n     - signNDA()  [controllers/NDAController.php]\n     - declineNDA()  [controllers/NDAController.php]\n\n  🚨 NDATemplateController (1 methods)\n     - toggle()  [controllers/NDATemplateController.php]\n\n  🚨 NetworkMonitorController (8 methods)\n     - status()  [controllers/NetworkMonitorController.php]\n     - logs()  [controllers/NetworkMonitorController.php]\n     - statistics()  [controllers/NetworkMonitorController.php]\n     - feed()  [controllers/NetworkMonitorController.php]\n     - clearLogs()  [controllers/NetworkMonitorController.php]\n     - addAllowedHost()  [controllers/NetworkMonitorController.php]\n     - testConnection()  [controllers/NetworkMonitorController.php]\n     - logDetail()  [controllers/NetworkMonitorController.php]\n\n  🚨 NextcloudController (5 methods)\n     - settings()  [controllers/NextcloudController.php]\n     - viewDocument()  [controllers/NextcloudController.php]\n     - quickCreateWord()  [controllers/NextcloudController.php]\n     - quickCreateExcel()  [controllers/NextcloudController.php]\n     - quickCreatePowerPoint()  [controllers/NextcloudController.php]\n\n  🚨 NextcloudSSOController (1 methods)\n     - validateToken()  [controllers/NextcloudSSOController.php]\n\n  🚨 NotificationController (4 methods)\n     - getUnread()  [controllers/NotificationController.php]\n     - markAsRead()  [controllers/NotificationController.php]\n     - markAllAsRead()  [controllers/NotificationController.php]\n     - delete()  [controllers/NotificationController.php]\n\n  🚨 OpportunityController (5 methods)\n     - addTask()  [controllers/OpportunityController.php]\n     - logReceivedEmail()  [controllers/OpportunityController.php]\n     - uploadDocument()  [controllers/OpportunityController.php]\n     - addCompetitor()  [controllers/OpportunityController.php]\n     - assign()  [controllers/OpportunityController.php]\n\n  🚨 PeriodClosingController (1 methods)\n     - processClose()  [controllers/PeriodClosingController.php]\n\n  🚨 PermissionGroupController (2 methods)\n     - assignPermissions()  [controllers/PermissionGroupController.php]\n     - reorder()  [controllers/PermissionGroupController.php]\n\n  🚨 PipedriveImportController (3 methods)\n     - index()  [controllers/PipedriveImportController.php]\n     - viewLog()  [controllers/PipedriveImportController.php]\n     - getStats()  [controllers/PipedriveImportController.php]\n\n  🚨 PricingRuleController (1 methods)\n     - calculatePrice()  [controllers/PricingRuleController.php]\n\n  🚨 ProFormaController (1 methods)\n     - calculate()  [controllers/ProFormaController.php]\n\n  🚨 ProductForecastController (1 methods)\n     - gettingStarted()  [controllers/ProductForecastController.php]\n\n  🚨 ProjectsController (31 methods)\n     - dashboard()  [controllers/ProjectsController.php]\n     - myTasks()  [controllers/ProjectsController.php]\n     - index()  [controllers/ProjectsController.php]\n     - show()  [controllers/ProjectsController.php]\n     - listView()  [controllers/ProjectsController.php]\n     - moveTask()  [controllers/ProjectsController.php]\n     - getTask()  [controllers/ProjectsController.php]\n     - addComment()  [controllers/ProjectsController.php]\n     - assignUser()  [controllers/ProjectsController.php]\n     - unassignUser()  [controllers/ProjectsController.php]\n     - addChecklistItem()  [controllers/ProjectsController.php]\n     - toggleChecklistItem()  [controllers/ProjectsController.php]\n     - addTeamMember()  [controllers/ProjectsController.php]\n     - addTeamGroup()  [controllers/ProjectsController.php]\n     - assignGroupToTask()  [controllers/ProjectsController.php]\n     - unassignGroupFromTask()  [controllers/ProjectsController.php]\n     - financials()  [controllers/ProjectsController.php]\n     - createTransaction()  [controllers/ProjectsController.php]\n     - storeTransaction()  [controllers/ProjectsController.php]\n     - editTransaction()  [controllers/ProjectsController.php]\n     - linkTransactionToTask()  [controllers/ProjectsController.php]\n     - migrateTransactions()  [controllers/ProjectsController.php]\n     - processMigration()  [controllers/ProjectsController.php]\n     - gantt()  [controllers/ProjectsController.php]\n     - calculateCriticalPath()  [controllers/ProjectsController.php]\n     - addTaskDependency()  [controllers/ProjectsController.php]\n     - resources()  [controllers/ProjectsController.php]\n     - resourceDayDetails()  [controllers/ProjectsController.php]\n     - autoAllocateResources()  [controllers/ProjectsController.php]\n     - getTaskComments()  [controllers/ProjectsController.php]\n     - addTaskComment()  [controllers/ProjectsController.php]\n\n  🚨 PromotionController (2 methods)\n     - validateCode()  [controllers/PromotionController.php]\n     - applyPromotion()  [controllers/PromotionController.php]\n\n  🚨 QualityController (4 methods)\n     - createInspection()  [controllers/QualityController.php]\n     - completeInspection()  [controllers/QualityController.php]\n     - createNCR()  [controllers/QualityController.php]\n     - createTemplate()  [controllers/QualityController.php]\n\n  🚨 QuoteController (2 methods)\n     - acceptQuote()  [controllers/QuoteController.php]\n     - declineQuote()  [controllers/QuoteController.php]\n\n  🚨 ReturnController (1 methods)\n     - complete()  [controllers/ReturnController.php]\n\n  🚨 SalesReportController (10 methods)\n     - getSummary()  [controllers/SalesReportController.php]\n     - getTopProducts()  [controllers/SalesReportController.php]\n     - getTopCustomers()  [controllers/SalesReportController.php]\n     - getByStatus()  [controllers/SalesReportController.php]\n     - getByChannel()  [controllers/SalesReportController.php]\n     - getInvoiceAnalytics()  [controllers/SalesReportController.php]\n     - getPaymentAnalytics()  [controllers/SalesReportController.php]\n     - getCategoryPerformance()  [controllers/SalesReportController.php]\n     - getSalesGrowth()  [controllers/SalesReportController.php]\n     - getQuoteConversion()  [controllers/SalesReportController.php]\n\n  🚨 SchedulingController (3 methods)\n     - autoSchedule()  [controllers/SchedulingController.php]\n     - rescheduleAssignment()  [controllers/SchedulingController.php]\n     - createAssignment()  [controllers/SchedulingController.php]\n\n  🚨 SearchController (1 methods)\n     - search()  [controllers/SearchController.php]\n\n  🚨 SettingsController (1 methods)\n     - testSmtpConnection()  [controllers/SettingsController.php]\n\n  🚨 ShopFloorController (3 methods)\n     - startProduction()  [controllers/ShopFloorController.php]\n     - pauseProduction()  [controllers/ShopFloorController.php]\n     - completeProduction()  [controllers/ShopFloorController.php]\n\n  🚨 SupportController (1 methods)\n     - addResponse()  [controllers/SupportController.php]\n\n  🚨 TaxPaymentController (1 methods)\n     - calculatePeriodTax()  [controllers/TaxPaymentController.php]\n\n  🚨 TransferController (2 methods)\n     - receive()  [controllers/TransferController.php]\n     - cancel()  [controllers/TransferController.php]\n\n  🚨 UserGroupController (2 methods)\n     - addMember()  [controllers/UserGroupController.php]\n     - addUse()  [controllers/UserGroupController.php]\n\n═══════════════════════════════════════════════════════════════\nSUMMARY\n═══════════════════════════════════════════════════════════════\n✓ Intentionally Public:  9 (OK)\n⚠ Test/Dev Controllers:  10 (Remove/Protect)\n? Needs Review:          11 (Evaluate)\n⏳ Auth Only:            107 (Medium Priority)\n🚨 Needs Protection:     165 (HIGH PRIORITY!)\n─────────────────────────────────────────────────────────────\nTotal:                   302 methods\n\n🚨 IMMEDIATE ACTION REQUIRED:\n165 methods need protection added immediately!\n\n⚠ BEFORE PRODUCTION:\nRemove 10 test/dev methods or add admin protection\n','Script executed successfully','2025-11-28 14:20:24'),
(21,'auto_fix_permissions',1,'{\"mode\":\"dry-run\",\"exclude_auth_only\":\"yes\"}',1,'╔══════════════════════════════════════════════════════════════╗\n║         Permission Auto-Fix Script                          ║\n╚══════════════════════════════════════════════════════════════╝\n\n🔍 DRY RUN MODE - No files will be modified\n\n⚠️  Skipping AITestController (test controller - should be removed)\n📄 Processing AccountController...\n📄 Processing AccountingController...\n📄 Processing ActionMenuEditorController...\n📄 Processing ActivityController...\n⏭️  Skipping AgreementController (intentionally public)\n📄 Processing AgreementTemplateController...\n📄 Processing AnalyticsController...\n📄 Processing AnnouncementController...\n📄 Processing ApiController...\n  ✓ Would fix allUsers() - add: api.view\n  ✓ Would fix usersList() - add: api.view\n\n📄 Processing ApplicationController...\n📄 Processing ApprovalsController...\n📄 Processing AssessmentController...\n📄 Processing AssumptionsController...\n📄 Processing AttendanceController...\n📄 Processing AuditLogController...\n⏭️  Skipping AuthController (intentionally public)\n📄 Processing BOMController...\n📄 Processing BackupController...\n  ✓ Would fix showDetails() - add: backup.view\n  ✓ Would fix getStats() - add: backup.view\n  ✓ Would fix getHistory() - add: backup.view\n  ✓ Would fix triggerFullBackup() - add: backup.view\n  ✓ Would fix triggerGitPush() - add: backup.view\n  ✓ Would fix triggerDatabaseBackup() - add: backup.view\n  ✓ Would fix index() - add: backup.view\n\n📄 Processing BankAccountController...\n📄 Processing BankImportController...\n📄 Processing BankReconciliationController...\n📄 Processing BatteryQuoteController...\n📄 Processing BudgetController...\n📄 Processing BusinessLineController...\n📄 Processing CRMController...\n📄 Processing CalendarController...\n📄 Processing CameraAuditController...\n📄 Processing CapacityController...\n📄 Processing CategoryController...\n📄 Processing ClientController...\n📄 Processing CompanyController...\n📄 Processing ContactAPIController...\n📄 Processing ContactController...\n📄 Processing ContractController...\n📄 Processing CostingController...\n📄 Processing CreditNoteController...\n📄 Processing CurrencyController...\n📄 Processing CustomReportsController...\n  ✓ Would fix index() - add: reports.view\n\n📄 Processing CustomerController...\n📄 Processing CustomerPaymentController...\n📄 Processing DashboardController...\n📄 Processing DataAccessController...\n📄 Processing DebitNoteController...\n📄 Processing DeliveryNoteController...\n📄 Processing DepreciationController...\n📄 Processing DocumentController...\n📄 Processing DocumentationController...\n  ✓ Would fix refreshCoverage() - add: documentation.view\n  ✓ Would fix download() - add: documentation.export\n  ✓ Would fix search() - add: documentation.view\n  ✓ Would fix index() - add: documentation.view\n\n📄 Processing DocumentsController...\n📄 Processing EmailController...\n📄 Processing EmailTemplateController...\n📄 Processing EmailWebhookController...\n  ✓ Would fix test() - add: email.view\n  ✓ Would fix receive() - add: email.view\n\n📄 Processing EmployeeController...\n📄 Processing EquipmentController...\n📄 Processing EquipmentLineController...\n📄 Processing EquipmentTypeController...\n📄 Processing ExpenseController...\n📄 Processing FileManagerController...\n📄 Processing FinancialPlannerController...\n📄 Processing FinancialProFormaController...\n📄 Processing FixedAssetController...\n📄 Processing ForecasterController...\n📄 Processing Form1099Controller...\n📄 Processing GoodsReceiptController...\n📄 Processing HRController...\n📄 Processing HelpDeskController...\n📄 Processing InternalNoteAPIController...\n📄 Processing InterviewController...\n📄 Processing InventoryController...\n📄 Processing InvoiceController...\n📄 Processing IssueController...\n📄 Processing JobPositionController...\n📄 Processing JournalEntryController...\n📄 Processing LocationController...\n📄 Processing LotSerialController...\n📄 Processing MFAController...\n  ✓ Would fix resendOTP() - add: security.view\n  ✓ Would fix verify() - add: security.approve\n  ✓ Would fix verifyForm() - add: security.approve\n\n📄 Processing MRPController...\n📄 Processing MachineDataController...\n  ✓ Would fix health() - add: machine_data.view\n  ✓ Would fix getStatus() - add: machine_data.view\n\n📄 Processing MaintenanceController...\n📄 Processing ManufacturingController...\n📄 Processing MenuController...\n📄 Processing MessagingController...\n📄 Processing NDAController...\n  ✓ Would fix declineNDA() - add: nda.view\n  ✓ Would fix signNDA() - add: nda.view\n  ✓ Would fix publicSign() - add: nda.view\n\n📄 Processing NDATemplateController...\n📄 Processing NetworkMonitorController...\n  ✓ Would fix logDetail() - add: network_monitor.view\n  ✓ Would fix feed() - add: network_monitor.view\n  ✓ Would fix statistics() - add: network_monitor.view\n  ✓ Would fix logs() - add: network_monitor.view\n  ✓ Would fix status() - add: network_monitor.view\n\n📄 Processing NextcloudAdminController...\n📄 Processing NextcloudController...\n  ✓ Would fix viewDocument() - add: nextcloud.view\n\n📄 Processing NextcloudProxyController...\n📄 Processing NextcloudSSOController...\n  ✓ Would fix validateToken() - add: nextcloud_sso.view\n\n📄 Processing NotificationController...\n  ✓ Would fix delete() - add: notifications.delete\n  ✓ Would fix markAllAsRead() - add: notifications.view\n  ✓ Would fix markAsRead() - add: notifications.view\n  ✓ Would fix getUnread() - add: notifications.view\n\n📄 Processing OfferController...\n📄 Processing OpportunityController...\n📄 Processing PaymentController...\n📄 Processing PayrollController...\n📄 Processing PeriodClosingController...\n📄 Processing PermissionGroupController...\n📄 Processing PipedriveImportController...\n  ✓ Would fix getStats() - add: pipedrive_import.view\n  ✓ Would fix viewLog() - add: pipedrive_import.view\n  ✓ Would fix index() - add: pipedrive_import.view\n\n📄 Processing PositionController...\n📄 Processing PricingRuleController...\n  ✓ Would fix calculatePrice() - add: pricing_rule.view\n\n📄 Processing ProFormaController...\n  ✓ Would fix calculate() - add: pro_forma.view\n\n📄 Processing ProductController...\n📄 Processing ProductForecastController...\n  ✓ Would fix gettingStarted() - add: product_forecast.view\n\n📄 Processing ProfileController...\n📄 Processing ProjectsController...\n  ✓ Would fix addTaskComment() - add: projects.create\n  ✓ Would fix getTaskComments() - add: projects.view\n  ✓ Would fix autoAllocateResources() - add: projects.view\n  ✓ Would fix resourceDayDetails() - add: projects.view\n  ✓ Would fix resources() - add: projects.view\n  ✓ Would fix addTaskDependency() - add: projects.create\n  ✓ Would fix calculateCriticalPath() - add: projects.view\n  ✓ Would fix gantt() - add: projects.view\n  ✓ Would fix processMigration() - add: projects.view\n  ✓ Would fix migrateTransactions() - add: projects.view\n  ✓ Would fix linkTransactionToTask() - add: projects.view\n  ✓ Would fix editTransaction() - add: projects.edit\n  ✓ Would fix storeTransaction() - add: projects.create\n  ✓ Would fix createTransaction() - add: projects.create\n  ✓ Would fix financials() - add: projects.view\n  ✓ Would fix unassignGroupFromTask() - add: projects.view\n  ✓ Would fix assignGroupToTask() - add: projects.view\n  ✓ Would fix addTeamGroup() - add: projects.create\n  ✓ Would fix addTeamMember() - add: projects.create\n  ✓ Would fix toggleChecklistItem() - add: projects.view\n  ✓ Would fix addChecklistItem() - add: projects.view\n  ✓ Would fix unassignUser() - add: projects.view\n  ✓ Would fix assignUser() - add: projects.view\n  ✓ Would fix addComment() - add: projects.create\n  ✓ Would fix getTask() - add: projects.view\n  ✓ Would fix moveTask() - add: projects.view\n  ✓ Would fix listView() - add: projects.view\n  ✓ Would fix show() - add: projects.view\n  ✓ Would fix index() - add: projects.view\n  ✓ Would fix myTasks() - add: projects.view\n  ✓ Would fix dashboard() - add: projects.view\n\n📄 Processing PromotionController...\n  ✓ Would fix applyPromotion() - add: promotion.view\n  ✓ Would fix validateCode() - add: promotion.view\n\n📄 Processing PurchaseBillController...\n📄 Processing PurchaseOrderController...\n📄 Processing PurchasePaymentController...\n📄 Processing PurchaseRequisitionController...\n📄 Processing PurchaseReturnController...\n📄 Processing PurchasesController...\n📄 Processing QualityController...\n📄 Processing QuickBooksController...\n📄 Processing QuoteController...\n  ✓ Would fix declineQuote() - add: quote.view\n  ✓ Would fix acceptQuote() - add: quote.view\n\n📄 Processing QuoteTemplateController...\n📄 Processing RFQController...\n📄 Processing RecruitmentController...\n📄 Processing RecurringTransactionController...\n📄 Processing ReportsController...\n📄 Processing ReturnController...\n  ✓ Would fix complete() - add: return.view\n\n📄 Processing ReviewController...\n📄 Processing RoleController...\n📄 Processing SalesController...\n📄 Processing SalesOrderController...\n📄 Processing SalesReportController...\n  ✓ Would fix getQuoteConversion() - add: sales.view\n  ✓ Would fix getSalesGrowth() - add: sales.view\n  ✓ Would fix getCategoryPerformance() - add: sales.view\n  ✓ Would fix getPaymentAnalytics() - add: sales.view\n  ✓ Would fix getInvoiceAnalytics() - add: sales.view\n  ✓ Would fix getByChannel() - add: sales.view\n  ✓ Would fix getByStatus() - add: sales.view\n  ✓ Would fix getTopCustomers() - add: sales.view\n  ✓ Would fix getTopProducts() - add: sales.view\n  ✓ Would fix getSummary() - add: sales.view\n\n📄 Processing SchedulingController...\n📄 Processing SearchController...\n📄 Processing SeparationController...\n📄 Processing SettingsController...\n📄 Processing ShipmentController...\n📄 Processing ShopFloorController...\n📄 Processing StockMovementController...\n📄 Processing SupplierController...\n📄 Processing SupportController...\n📄 Processing SystemScriptsController...\n📄 Processing TaxFilingController...\n📄 Processing TaxJurisdictionController...\n📄 Processing TaxPaymentController...\n📄 Processing TermsConditionsController...\n⚠️  Skipping TestController (test controller - should be removed)\n📄 Processing TrainingController...\n📄 Processing TransferController...\n📄 Processing UserController...\n📄 Processing UserGroupController...\n📄 Processing VendorPaymentController...\n📄 Processing WarehouseController...\n📄 Processing WorkOrderController...\n═══════════════════════════════════════════════════════════════\nSUMMARY\n═══════════════════════════════════════════════════════════════\nMode: DRY RUN (no changes made)\n\n✅ Complete!','Script executed successfully','2025-11-28 14:21:21'),
(22,'auto_fix_permissions',1,'{\"mode\":\"apply\",\"exclude_auth_only\":\"yes\"}',1,'╔══════════════════════════════════════════════════════════════╗\n║         Permission Auto-Fix Script                          ║\n╚══════════════════════════════════════════════════════════════╝\n\n⚠️  Skipping AITestController (test controller - should be removed)\n📄 Processing AccountController...\n📄 Processing AccountingController...\n📄 Processing ActionMenuEditorController...\n📄 Processing ActivityController...\n⏭️  Skipping AgreementController (intentionally public)\n📄 Processing AgreementTemplateController...\n📄 Processing AnalyticsController...\n📄 Processing AnnouncementController...\n📄 Processing ApiController...\n  ✓ Fixed allUsers() - added: api.view\n  ✓ Fixed usersList() - added: api.view\n  💾 Saved changes (2 methods fixed)\n\n📄 Processing ApplicationController...\n📄 Processing ApprovalsController...\n📄 Processing AssessmentController...\n📄 Processing AssumptionsController...\n📄 Processing AttendanceController...\n📄 Processing AuditLogController...\n⏭️  Skipping AuthController (intentionally public)\n📄 Processing BOMController...\n📄 Processing BackupController...\n  ✓ Fixed showDetails() - added: backup.view\n  ✓ Fixed getStats() - added: backup.view\n  ✓ Fixed getHistory() - added: backup.view\n  ✓ Fixed triggerFullBackup() - added: backup.view\n  ✓ Fixed triggerGitPush() - added: backup.view\n  ✓ Fixed triggerDatabaseBackup() - added: backup.view\n  ✓ Fixed index() - added: backup.view\n  💾 Saved changes (7 methods fixed)\n\n📄 Processing BankAccountController...\n📄 Processing BankImportController...\n📄 Processing BankReconciliationController...\n📄 Processing BatteryQuoteController...\n📄 Processing BudgetController...\n📄 Processing BusinessLineController...\n📄 Processing CRMController...\n📄 Processing CalendarController...\n📄 Processing CameraAuditController...\n📄 Processing CapacityController...\n📄 Processing CategoryController...\n📄 Processing ClientController...\n📄 Processing CompanyController...\n📄 Processing ContactAPIController...\n📄 Processing ContactController...\n📄 Processing ContractController...\n📄 Processing CostingController...\n📄 Processing CreditNoteController...\n📄 Processing CurrencyController...\n📄 Processing CustomReportsController...\n  ✓ Fixed index() - added: reports.view\n  💾 Saved changes (1 methods fixed)\n\n📄 Processing CustomerController...\n📄 Processing CustomerPaymentController...\n📄 Processing DashboardController...\n📄 Processing DataAccessController...\n📄 Processing DebitNoteController...\n📄 Processing DeliveryNoteController...\n📄 Processing DepreciationController...\n📄 Processing DocumentController...\n📄 Processing DocumentationController...\n  ✓ Fixed refreshCoverage() - added: documentation.view\n  ✓ Fixed download() - added: documentation.export\n  ✓ Fixed search() - added: documentation.view\n  ✓ Fixed index() - added: documentation.view\n  💾 Saved changes (4 methods fixed)\n\n📄 Processing DocumentsController...\n📄 Processing EmailController...\n📄 Processing EmailTemplateController...\n📄 Processing EmailWebhookController...\n  ✓ Fixed test() - added: email.view\n  ✓ Fixed receive() - added: email.view\n  💾 Saved changes (2 methods fixed)\n\n📄 Processing EmployeeController...\n📄 Processing EquipmentController...\n📄 Processing EquipmentLineController...\n📄 Processing EquipmentTypeController...\n📄 Processing ExpenseController...\n📄 Processing FileManagerController...\n📄 Processing FinancialPlannerController...\n📄 Processing FinancialProFormaController...\n📄 Processing FixedAssetController...\n📄 Processing ForecasterController...\n📄 Processing Form1099Controller...\n📄 Processing GoodsReceiptController...\n📄 Processing HRController...\n📄 Processing HelpDeskController...\n📄 Processing InternalNoteAPIController...\n📄 Processing InterviewController...\n📄 Processing InventoryController...\n📄 Processing InvoiceController...\n📄 Processing IssueController...\n📄 Processing JobPositionController...\n📄 Processing JournalEntryController...\n📄 Processing LocationController...\n📄 Processing LotSerialController...\n📄 Processing MFAController...\n  ✓ Fixed resendOTP() - added: security.view\n  ✓ Fixed verify() - added: security.approve\n  ✓ Fixed verifyForm() - added: security.approve\n  💾 Saved changes (3 methods fixed)\n\n📄 Processing MRPController...\n📄 Processing MachineDataController...\n  ✓ Fixed health() - added: machine_data.view\n  ✓ Fixed getStatus() - added: machine_data.view\n  💾 Saved changes (2 methods fixed)\n\n📄 Processing MaintenanceController...\n📄 Processing ManufacturingController...\n📄 Processing MenuController...\n📄 Processing MessagingController...\n📄 Processing NDAController...\n  ✓ Fixed declineNDA() - added: nda.view\n  ✓ Fixed signNDA() - added: nda.view\n  ✓ Fixed publicSign() - added: nda.view\n  💾 Saved changes (3 methods fixed)\n\n📄 Processing NDATemplateController...\n📄 Processing NetworkMonitorController...\n  ✓ Fixed logDetail() - added: network_monitor.view\n  ✓ Fixed feed() - added: network_monitor.view\n  ✓ Fixed statistics() - added: network_monitor.view\n  ✓ Fixed logs() - added: network_monitor.view\n  ✓ Fixed status() - added: network_monitor.view\n  💾 Saved changes (5 methods fixed)\n\n📄 Processing NextcloudAdminController...\n📄 Processing NextcloudController...\n  ✓ Fixed viewDocument() - added: nextcloud.view\n  💾 Saved changes (1 methods fixed)\n\n📄 Processing NextcloudProxyController...\n📄 Processing NextcloudSSOController...\n  ✓ Fixed validateToken() - added: nextcloud_sso.view\n  💾 Saved changes (1 methods fixed)\n\n📄 Processing NotificationController...\n  ✓ Fixed delete() - added: notifications.delete\n  ✓ Fixed markAllAsRead() - added: notifications.view\n  ✓ Fixed markAsRead() - added: notifications.view\n  ✓ Fixed getUnread() - added: notifications.view\n  💾 Saved changes (4 methods fixed)\n\n📄 Processing OfferController...\n📄 Processing OpportunityController...\n📄 Processing PaymentController...\n📄 Processing PayrollController...\n📄 Processing PeriodClosingController...\n📄 Processing PermissionGroupController...\n📄 Processing PipedriveImportController...\n  ✓ Fixed getStats() - added: pipedrive_import.view\n  ✓ Fixed viewLog() - added: pipedrive_import.view\n  ✓ Fixed index() - added: pipedrive_import.view\n  💾 Saved changes (3 methods fixed)\n\n📄 Processing PositionController...\n📄 Processing PricingRuleController...\n  ✓ Fixed calculatePrice() - added: pricing_rule.view\n  💾 Saved changes (1 methods fixed)\n\n📄 Processing ProFormaController...\n  ✓ Fixed calculate() - added: pro_forma.view\n  💾 Saved changes (1 methods fixed)\n\n📄 Processing ProductController...\n📄 Processing ProductForecastController...\n  ✓ Fixed gettingStarted() - added: product_forecast.view\n  💾 Saved changes (1 methods fixed)\n\n📄 Processing ProfileController...\n📄 Processing ProjectsController...\n  ✓ Fixed addTaskComment() - added: projects.create\n  ✓ Fixed getTaskComments() - added: projects.view\n  ✓ Fixed autoAllocateResources() - added: projects.view\n  ✓ Fixed resourceDayDetails() - added: projects.view\n  ✓ Fixed resources() - added: projects.view\n  ✓ Fixed addTaskDependency() - added: projects.create\n  ✓ Fixed calculateCriticalPath() - added: projects.view\n  ✓ Fixed gantt() - added: projects.view\n  ✓ Fixed processMigration() - added: projects.view\n  ✓ Fixed migrateTransactions() - added: projects.view\n  ✓ Fixed linkTransactionToTask() - added: projects.view\n  ✓ Fixed editTransaction() - added: projects.edit\n  ✓ Fixed storeTransaction() - added: projects.create\n  ✓ Fixed createTransaction() - added: projects.create\n  ✓ Fixed financials() - added: projects.view\n  ✓ Fixed unassignGroupFromTask() - added: projects.view\n  ✓ Fixed assignGroupToTask() - added: projects.view\n  ✓ Fixed addTeamGroup() - added: projects.create\n  ✓ Fixed addTeamMember() - added: projects.create\n  ✓ Fixed toggleChecklistItem() - added: projects.view\n  ✓ Fixed addChecklistItem() - added: projects.view\n  ✓ Fixed unassignUser() - added: projects.view\n  ✓ Fixed assignUser() - added: projects.view\n  ✓ Fixed addComment() - added: projects.create\n  ✓ Fixed getTask() - added: projects.view\n  ✓ Fixed moveTask() - added: projects.view\n  ✓ Fixed listView() - added: projects.view\n  ✓ Fixed show() - added: projects.view\n  ✓ Fixed index() - added: projects.view\n  ✓ Fixed myTasks() - added: projects.view\n  ✓ Fixed dashboard() - added: projects.view\n  💾 Saved changes (31 methods fixed)\n\n📄 Processing PromotionController...\n  ✓ Fixed applyPromotion() - added: promotion.view\n  ✓ Fixed validateCode() - added: promotion.view\n  💾 Saved changes (2 methods fixed)\n\n📄 Processing PurchaseBillController...\n📄 Processing PurchaseOrderController...\n📄 Processing PurchasePaymentController...\n📄 Processing PurchaseRequisitionController...\n📄 Processing PurchaseReturnController...\n📄 Processing PurchasesController...\n📄 Processing QualityController...\n📄 Processing QuickBooksController...\n📄 Processing QuoteController...\n  ✓ Fixed declineQuote() - added: quote.view\n  ✓ Fixed acceptQuote() - added: quote.view\n  💾 Saved changes (2 methods fixed)\n\n📄 Processing QuoteTemplateController...\n📄 Processing RFQController...\n📄 Processing RecruitmentController...\n📄 Processing RecurringTransactionController...\n📄 Processing ReportsController...\n📄 Processing ReturnController...\n  ✓ Fixed complete() - added: return.view\n  💾 Saved changes (1 methods fixed)\n\n📄 Processing ReviewController...\n📄 Processing RoleController...\n📄 Processing SalesController...\n📄 Processing SalesOrderController...\n📄 Processing SalesReportController...\n  ✓ Fixed getQuoteConversion() - added: sales.view\n  ✓ Fixed getSalesGrowth() - added: sales.view\n  ✓ Fixed getCategoryPerformance() - added: sales.view\n  ✓ Fixed getPaymentAnalytics() - added: sales.view\n  ✓ Fixed getInvoiceAnalytics() - added: sales.view\n  ✓ Fixed getByChannel() - added: sales.view\n  ✓ Fixed getByStatus() - added: sales.view\n  ✓ Fixed getTopCustomers() - added: sales.view\n  ✓ Fixed getTopProducts() - added: sales.view\n  ✓ Fixed getSummary() - added: sales.view\n  💾 Saved changes (10 methods fixed)\n\n📄 Processing SchedulingController...\n📄 Processing SearchController...\n📄 Processing SeparationController...\n📄 Processing SettingsController...\n📄 Processing ShipmentController...\n📄 Processing ShopFloorController...\n📄 Processing StockMovementController...\n📄 Processing SupplierController...\n📄 Processing SupportController...\n📄 Processing SystemScriptsController...\n📄 Processing TaxFilingController...\n📄 Processing TaxJurisdictionController...\n📄 Processing TaxPaymentController...\n📄 Processing TermsConditionsController...\n⚠️  Skipping TestController (test controller - should be removed)\n📄 Processing TrainingController...\n📄 Processing TransferController...\n📄 Processing UserController...\n📄 Processing UserGroupController...\n📄 Processing VendorPaymentController...\n📄 Processing WarehouseController...\n📄 Processing WorkOrderController...\n═══════════════════════════════════════════════════════════════\nSUMMARY\n═══════════════════════════════════════════════════════════════\nFiles modified: 21\nMethods fixed: 87\n\nPermissions used: 26\n\n📋 Next Steps:\n1. Review the changes in your controllers\n2. Add missing permissions to database:\n   php scripts/generate_missing_permissions_sql.php > missing.sql\n   mysql -u rpmbbu brickwal_m1_ds < missing.sql\n3. Assign permissions to roles: http://localhost:8080/roles/111/edit\n4. Test the application thoroughly\n5. Run audit again: php scripts/audit_permissions.php | head -30\n\n✅ Complete!','Script executed successfully','2025-11-28 14:22:15'),
(23,'generate_missing_permissions_sql',1,'[]',0,'-- Missing Permissions SQL\n-- Generated: 2025-11-28 14:23:59\n-- Total missing: 166\n\n-- 1 Module Permissions\nPHP Fatal error:  Uncaught Error: Call to undefined method Database::quote() in /Users/rpmbbu/LocalPHPStorm/m1_erp_web/scripts/generate_missing_permissions_sql.php:114\nStack trace:\n#0 /Users/rpmbbu/LocalPHPStorm/m1_erp_web/scripts/generate_missing_permissions_sql.php(53): MissingPermissionsGenerator->generateSQL(Array)\n#1 /Users/rpmbbu/LocalPHPStorm/m1_erp_web/scripts/generate_missing_permissions_sql.php(136): MissingPermissionsGenerator->generate()\n#2 {main}\n  thrown in /Users/rpmbbu/LocalPHPStorm/m1_erp_web/scripts/generate_missing_permissions_sql.php on line 114\n\nFatal error: Uncaught Error: Call to undefined method Database::quote() in /Users/rpmbbu/LocalPHPStorm/m1_erp_web/scripts/generate_missing_permissions_sql.php:114\nStack trace:\n#0 /Users/rpmbbu/LocalPHPStorm/m1_erp_web/scripts/generate_missing_permissions_sql.php(53): MissingPermissionsGenerator->generateSQL(Array)\n#1 /Users/rpmbbu/LocalPHPStorm/m1_erp_web/scripts/generate_missing_permissions_sql.php(136): MissingPermissionsGenerator->generate()\n#2 {main}\n  thrown in /Users/rpmbbu/LocalPHPStorm/m1_erp_web/scripts/generate_missing_permissions_sql.php on line 114','Script execution failed with exit code 255','2025-11-28 14:23:59'),
(24,'generate_missing_permissions_sql',1,'[]',1,'-- Missing Permissions SQL\n-- Generated: 2025-11-28 14:26:52\n-- Total missing: 166\n\n-- 1 Module Permissions\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\nINSERT INTO permissions (name, module, description) VALUES (\'1\', \'1\', \' 1\');\n','Script executed successfully','2025-11-28 14:26:52'),
(25,'generate_missing_permissions_sql',1,'[]',1,'-- Missing Permissions SQL\n-- Generated: 2025-11-28 14:28:52\n-- Total missing: 16\n\n-- api Module Permissions\nINSERT INTO permissions (name, module, description) VALUES (\'api.view\', \'api\', \'View Api\');\n\n-- documentation Module Permissions\nINSERT INTO permissions (name, module, description) VALUES (\'documentation.export\', \'documentation\', \'Export Documentation\');\n\n-- email Module Permissions\nINSERT INTO permissions (name, module, description) VALUES (\'email.view\', \'email\', \'View Email\');\n\n-- machine_data Module Permissions\nINSERT INTO permissions (name, module, description) VALUES (\'machine_data.view\', \'machine_data\', \'View Machine Data\');\n\n-- nda Module Permissions\nINSERT INTO permissions (name, module, description) VALUES (\'nda.view\', \'nda\', \'View Nda\');\n\n-- nextcloud_sso Module Permissions\nINSERT INTO permissions (name, module, description) VALUES (\'nextcloud_sso.view\', \'nextcloud_sso\', \'View Nextcloud Sso\');\n\n-- notifications Module Permissions\nINSERT INTO permissions (name, module, description) VALUES (\'notifications.delete\', \'notifications\', \'Delete Notifications\');\nINSERT INTO permissions (name, module, description) VALUES (\'notifications.view\', \'notifications\', \'View Notifications\');\n\n-- pipedrive_import Module Permissions\nINSERT INTO permissions (name, module, description) VALUES (\'pipedrive_import.view\', \'pipedrive_import\', \'View Pipedrive Import\');\n\n-- pricing_rule Module Permissions\nINSERT INTO permissions (name, module, description) VALUES (\'pricing_rule.view\', \'pricing_rule\', \'View Pricing Rule\');\n\n-- pro_forma Module Permissions\nINSERT INTO permissions (name, module, description) VALUES (\'pro_forma.view\', \'pro_forma\', \'View Pro Forma\');\n\n-- promotion Module Permissions\nINSERT INTO permissions (name, module, description) VALUES (\'promotion.view\', \'promotion\', \'View Promotion\');\n\n-- quote Module Permissions\nINSERT INTO permissions (name, module, description) VALUES (\'quote.view\', \'quote\', \'View Quote\');\n\n-- return Module Permissions\nINSERT INTO permissions (name, module, description) VALUES (\'return.view\', \'return\', \'View Return\');\n\n-- security Module Permissions\nINSERT INTO permissions (name, module, description) VALUES (\'security.approve\', \'security\', \'Approve Security\');\nINSERT INTO permissions (name, module, description) VALUES (\'security.view\', \'security\', \'View Security\');\n','Script executed successfully','2025-11-28 14:28:52'),
(26,'scan_permissions',1,'{\"mode\":\"live\"}',1,'\n\n\n\n\n================================================================================\nPERMISSION SCANNER & SYNC UTILITY\nMODE: LIVE (changes WILL be applied to database)\n================================================================================\n\n📚 LOADING DATABASE PERMISSIONS\n--------------------------------------------------------------------------------\n  Loaded 420 permissions from database\n\n🔍 SCANNING CONTROLLERS\n--------------------------------------------------------------------------------\n  Scanned 147 controller files\n  Found 138 files with permission checks\n  Discovered 166 unique permissions\n\n📋 DISCOVERED PERMISSIONS REPORT\n--------------------------------------------------------------------------------\n  Permission                               Checks   Controllers\n--------------------------------------------------------------------------------\n\n  (CORE):\n  admin                                    101      ActionMenuEditorController,... ✓\n\n  1099_CONTRACTORS:\n  1099_contractors.export                  1        Form1099Controller ✓\n  1099_contractors.generate_reports        1        Form1099Controller ✓\n  1099_contractors.view                    1        Form1099Controller ✓\n  1099_contractors.view_payments           1        Form1099Controller ✓\n\n  ACCOUNTING:\n  accounting.approve                       3        ExpenseController ✓\n  accounting.create                        30       AccountController, BankAcco... ✓\n  accounting.customer_payments.create      2        CustomerPaymentController ✓\n  accounting.customer_payments.view        2        CustomerPaymentController ✓\n  accounting.delete                        21       BankAccountController, Budg... ✓\n  accounting.edit                          25       BankAccountController, Bank... ✓\n  accounting.vendor_payments.create        4        VendorPaymentController ✓\n  accounting.vendor_payments.delete        1        VendorPaymentController ✓\n  accounting.vendor_payments.edit          2        VendorPaymentController ✓\n  accounting.vendor_payments.print_checks  1        VendorPaymentController ✓\n  accounting.vendor_payments.view          3        VendorPaymentController ✓\n  accounting.vendor_payments.void          1        VendorPaymentController ✓\n  accounting.view                          36       AccountController, Accounti... ✓\n\n  ADMIN:\n  admin.agreement_templates                9        AgreementTemplateController ✓\n  admin.create                             7        PipedriveImportController, ... ✓\n  admin.delete                             2        QuickBooksController, UserG... ✓\n  admin.edit                               5        QuickBooksController, UserG... ✓\n  admin.settings                           1        PipedriveImportController ✓\n  admin.system_scripts                     3        SystemScriptsController ✓\n\n  API:\n  api.view                                 2        ApiController ✓\n\n  AUDIT_LOGS:\n  audit_logs.view                          1        AuditLogController ✓\n\n  BACKUP:\n  backup.view                              7        BackupController ✓\n\n  BANK_IMPORT:\n  bank_import.create                       2        BankImportController ✓\n  bank_import.delete                       1        BankImportController ✓\n  bank_import.edit                         2        BankImportController ✓\n  bank_import.import                       1        BankImportController ✓\n  bank_import.manage_rules                 4        BankImportController ✓\n  bank_import.view                         2        BankImportController ✓\n\n  CALENDAR:\n  calendar.create                          1        CalendarController ✓\n  calendar.delete                          1        CalendarController ✓\n  calendar.edit                            1        CalendarController ✓\n\n  CAMERA_AUDIT:\n  camera_audit.capture                     1        CameraAuditController ✓\n  camera_audit.delete                      1        CameraAuditController ✓\n  camera_audit.stations                    3        CameraAuditController ✓\n  camera_audit.verify                      1        CameraAuditController ✓\n  camera_audit.view                        3        CameraAuditController ✓\n\n  CRM:\n  crm.create                               11       ActivityController, ClientC... ✓\n  crm.delete                               13       ActivityController, ClientC... ✓\n  crm.edit                                 13       ActivityController, ClientC... ✓\n  crm.view                                 55       ActivityController, CRMCont... ✓\n\n  DASHBOARD:\n  dashboard.edit                           2        DashboardController ✓\n\n  DOCUMENTATION:\n  documentation.export                     1        DocumentationController ✓\n  documentation.view                       3        DocumentationController ✓\n\n  DOCUMENTS:\n  documents.create                         1        DocumentsController ✓\n  documents.delete                         1        DocumentsController ✓\n\n  EMAIL:\n  email.view                               2        EmailWebhookController ✓\n\n  FORECASTING:\n  forecasting.create                       10       FinancialPlannerController,... ✓\n  forecasting.delete                       8        ForecasterController ✓\n  forecasting.edit                         16       FinancialPlannerController,... ✓\n  forecasting.generate_projections         1        ProductForecastController ✓\n  forecasting.manage_assumptions           5        AssumptionsController ✓\n  forecasting.manage_products              3        ProductForecastController ✓\n  forecasting.update_daily                 3        AssumptionsController ✓\n  forecasting.view                         9        FinancialPlannerController,... ✓\n  forecasting.view_actuals                 1        AssumptionsController ✓\n  forecasting.view_proforma                7        FinancialProFormaController... ✓\n\n  HR:\n  hr.create                                28       ApplicationController, Asse... ✓\n  hr.delete                                16       ApplicationController, Asse... ✓\n  hr.edit                                  25       ApplicationController, Asse... ✓\n  hr.view                                  30       ApplicationController, Asse... ✓\n\n  INVENTORY:\n  inventory.create                         9        CategoryController, Locatio... ✓\n  inventory.delete                         10       CategoryController, Locatio... ✓\n  inventory.edit                           7        CategoryController, Locatio... ✓\n  inventory.manage                         12       CategoryController, StockMo... ✓\n  inventory.view                           20       CategoryController, Invento... ✓\n\n  MACHINE_DATA:\n  machine_data.view                        2        MachineDataController ✓\n\n  MANUFACTURING:\n  manufacturing.approve                    2        MRPController ✓\n  manufacturing.create                     13       BOMController, BusinessLine... ✓\n  manufacturing.delete                     6        BusinessLineController, Equ... ✓\n  manufacturing.edit                       44       BOMController, BusinessLine... ✓\n  manufacturing.view                       53       AnalyticsController, BOMCon... ✓\n\n  MESSAGING:\n  messaging.create                         1        MessagingController ✓\n  messaging.delete                         1        MessagingController ✓\n  messaging.edit                           2        MessagingController ✓\n\n  NDA:\n  nda.view                                 3        NDAController ✓\n\n  NDAS:\n  ndas.countersign                         2        NDAController ✓\n  ndas.create                              2        NDAController ✓\n  ndas.delete                              1        NDAController ✓\n  ndas.edit                                2        NDAController ✓\n  ndas.send                                2        NDAController ✓\n  ndas.view                                5        NDAController ✓\n\n  NETWORK_MONITOR:\n  network_monitor.manage                   3        NetworkMonitorController ✓\n  network_monitor.view                     6        NetworkMonitorController ✓\n\n  NEXTCLOUD:\n  nextcloud.delete                         1        NextcloudController ✓\n  nextcloud.manage                         7        NextcloudAdminController, N... ✓\n  nextcloud.upload                         6        NextcloudController ✓\n  nextcloud.view                           8        NextcloudController ✓\n\n  NEXTCLOUD_SSO:\n  nextcloud_sso.view                       1        NextcloudSSOController ✓\n\n  NOTIFICATIONS:\n  notifications.delete                     1        NotificationController ✓\n  notifications.view                       3        NotificationController ✓\n\n  PAYROLL:\n  payroll.view                             1        PayrollController ✓\n\n  PERMISSIONS:\n  permissions.manage                       10       PermissionGroupController ✓\n\n  PIPEDRIVE_IMPORT:\n  pipedrive_import.view                    3        PipedriveImportController ✓\n\n  PRICING_RULE:\n  pricing_rule.view                        1        PricingRuleController ✓\n\n  PRO_FORMA:\n  pro_forma.view                           1        ProFormaController ✓\n\n  PROCUREMENT:\n  procurement.approve                      2        PurchaseRequisitionController ✓\n  procurement.create                       16       DebitNoteController, GoodsR... ✓\n  procurement.delete                       12       DebitNoteController, GoodsR... ✓\n  procurement.edit                         12       DebitNoteController, Purcha... ✓\n  procurement.view                         18       DebitNoteController, GoodsR... ✓\n\n  PRODUCT_FORECAST:\n  product_forecast.view                    3        ProductForecastController ✓\n\n  PROFILE:\n  profile.edit                             2        ProfileController ✓\n\n  PROJECTS:\n  projects.create                          10       ProjectsController ✓\n  projects.delete                          5        ProjectsController ✓\n  projects.edit                            10       ProjectsController ✓\n  projects.view                            28       ProjectsController ✓\n\n  PROMOTION:\n  promotion.view                           2        PromotionController ✓\n\n  PURCHASES:\n  purchases.create                         3        SupplierController ✓\n  purchases.delete                         3        SupplierController ✓\n  purchases.edit                           2        SupplierController ✓\n  purchases.view                           3        PurchasesController, Suppli... ✓\n\n  PURCHASING:\n  purchasing.create                        1        MRPController ✓\n\n  QUOTE:\n  quote.view                               2        QuoteController ✓\n\n  RECURRING_TEMPLATES:\n  recurring_templates.activate             1        RecurringTransactionController ✓\n  recurring_templates.create               2        RecurringTransactionController ✓\n  recurring_templates.delete               1        RecurringTransactionController ✓\n  recurring_templates.edit                 2        RecurringTransactionController ✓\n  recurring_templates.execute              2        RecurringTransactionController ✓\n  recurring_templates.view                 3        RecurringTransactionController ✓\n\n  REPORTS:\n  reports.create                           2        CustomReportsController ✓\n  reports.delete                           1        CustomReportsController ✓\n  reports.edit                             2        CustomReportsController ✓\n  reports.view                             8        CustomReportsController, Re... ✓\n\n  RETURN:\n  return.view                              1        ReturnController ✓\n\n  ROLES:\n  roles.create                             2        RoleController ✓\n  roles.delete                             1        RoleController ✓\n  roles.edit                               2        RoleController ✓\n  roles.view                               4        RoleController ✓\n\n  SALES:\n  sales.agreements.create                  3        AgreementController ✓\n  sales.agreements.delete                  3        AgreementController ✓\n  sales.agreements.edit                    3        AgreementController ✓\n  sales.agreements.send                    2        AgreementController ✓\n  sales.agreements.view                    5        AgreementController ✓\n  sales.approve                            2        ReturnController ✓\n  sales.create                             28       BatteryQuoteController, Cre... ✓\n  sales.delete                             23       BatteryQuoteController, Cre... ✓\n  sales.edit                               20       BatteryQuoteController, Inv... ✓\n  sales.view                               44       BatteryQuoteController, Cre... ✓\n\n  SECURITY:\n  security.approve                         2        MFAController ✓\n  security.view                            1        MFAController ✓\n\n  SETTINGS:\n  settings.edit                            23       MenuController, TermsCondit... ✓\n  settings.view                            4        MenuController, TermsCondit... ✓\n\n  SYSTEM:\n  system.backup                            1        BackupController ✓\n  system.edit                              1        ProfileController ✓\n  system.files.delete                      3        FileManagerController ✓\n\n  TAX_JURISDICTIONS:\n  tax_jurisdictions.create                 2        TaxJurisdictionController ✓\n  tax_jurisdictions.delete                 1        TaxJurisdictionController ✓\n  tax_jurisdictions.edit                   3        TaxJurisdictionController ✓\n  tax_jurisdictions.view                   2        TaxJurisdictionController ✓\n\n  TAX_PAYMENTS:\n  tax_payments.create                      2        TaxPaymentController ✓\n  tax_payments.edit                        4        TaxPaymentController ✓\n  tax_payments.file                        1        TaxPaymentController ✓\n  tax_payments.view                        2        TaxPaymentController ✓\n\n  TAX_REPORTS:\n  tax_reports.view                         1        TaxPaymentController ✓\n\n  TICKETS:\n  tickets.create                           4        HelpDeskController, Support... ✓\n  tickets.delete                           2        SupportController ✓\n  tickets.edit                             2        HelpDeskController, Support... ✓\n\n  USERS:\n  users.create                             2        UserController ✓\n  users.delete                             3        UserController ✓\n  users.edit                               2        UserController ✓\n  users.view                               3        UserController ✓\n\n➕ CREATING MISSING PERMISSIONS\n--------------------------------------------------------------------------------\n  ✓ All discovered permissions exist in database\n\n🗑️  UNUSED PERMISSIONS\n--------------------------------------------------------------------------------\n  Found 254 permissions in database not used in controllers:\n\n  (CORE):\n    - agreements.view - \"View Agreements\"\n    - ai-test.view - \"View AI Testing\"\n    - analytics.view - \"View analytics\"\n    - announcements.view - \"View Announcements\"\n    - assumptions.view - \"View Daily Update\"\n    - audit-logs.view - \"View Audit Log\"\n    - calendar.view - \"View calendar\"\n    - companies.view - \"View Companies\"\n    - creditnotes.view - \"View Credit Notes\"\n    - dashboard.view - \"View dashboard\"\n    ... and 14 more\n\n  1099:\n    - 1099_contractors.manage - \"Manage 1099 contractor designations\"\n    - 1099_filings.file - \"File 1099 forms\"\n    - 1099_filings.prepare - \"Prepare 1099 forms\"\n    - 1099_payments.manage - \"Manage 1099 payment classifications\"\n    - 1099_payments.view - \"View 1099 reportable payments\"\n    - 1099_reports.view - \"View 1099 reports\"\n\n  ACCOUNTING:\n    - accounting.customer_payments.delete - \"Delete customer payments\"\n    - accounting.customer_payments.edit - \"Edit customer payments\"\n    - accounting.post - \"Post journal entries\"\n    - accounts.create - \"Create accounts\"\n    - accounts.delete - \"Delete accounts\"\n    - accounts.edit - \"Edit accounts\"\n    - accounts.view - \"View chart of accounts\"\n    - bank_accounts.create - \"Create bank accounts\"\n    - bank_accounts.edit - \"Edit bank accounts\"\n    - bank_accounts.view - \"View bank accounts\"\n    ... and 21 more\n\n  AUDIT:\n    - audit_trail.export - \"Export audit trail\"\n    - audit_trail.view - \"View audit trail\"\n\n  AUTOMATION:\n    - automation.view - \"View Templates\"\n\n  BANK_IMPORT:\n    - bank_import.categorize - \"Categorize imported transactions\"\n    - bank_import.rules - \"Manage categorization rules\"\n\n  CREDIT_NOTES:\n    - credit_notes.apply - \"Apply Credit Notes to Invoices\"\n    - credit_notes.auto_apply - \"Auto-apply Credit Notes\"\n    - credit_notes.reverse - \"Reverse Credit Note Applications\"\n    - credit_notes.view_balances - \"View Customer Credit Balances\"\n\n  CRM:\n    - activities.create - \"Create CRM activities\"\n    - activities.edit - \"Edit CRM activities\"\n    - activities.view - \"View CRM activities\"\n    - clients.create - \"Create clients\"\n    - clients.delete - \"Delete clients\"\n    - clients.edit - \"Edit clients\"\n    - clients.view - \"View clients\"\n    - contacts.create - \"Create contacts\"\n    - contacts.delete - \"Delete contacts\"\n    - contacts.edit - \"Edit contacts\"\n    ... and 14 more\n\n  DOCUMENTS:\n    - documents.edit - \"Edit documents\"\n    - documents.upload - \"Upload documents\"\n\n  HELPDESK:\n    - tickets.assign - \"Assign support tickets\"\n    - tickets.close - \"Close support tickets\"\n    - tickets.view - \"View support tickets\"\n\n  HR:\n    - applications.create - \"Create job applications\"\n    - applications.edit - \"Edit job applications\"\n    - applications.view - \"View job applications\"\n    - assessments.create - \"Create assessments\"\n    - assessments.view - \"View assessments\"\n    - attendance.create - \"Record attendance\"\n    - attendance.view - \"View attendance\"\n    - contracts.create - \"Create employee contracts\"\n    - contracts.edit - \"Edit employee contracts\"\n    - contracts.view - \"View employee contracts\"\n    ... and 31 more\n\n  INVENTORY:\n    - camera_audit.annotate - \"Add annotations to audit images\"\n    - camera_audit.export - \"Export camera audit data\"\n    - categories.create - \"Create product categories\"\n    - categories.delete - \"Delete product categories\"\n    - categories.edit - \"Edit product categories\"\n    - categories.view - \"View product categories\"\n    - inventory.adjust - \"Adjust inventory levels\"\n    - lots.create - \"Create lot/serial numbers\"\n    - lots.edit - \"Edit lot/serial numbers\"\n    - lots.view - \"View lot/serial numbers\"\n    ... and 11 more\n\n  MANUFACTURING:\n    - boms.create - \"Create bills of materials\"\n    - boms.delete - \"Delete bills of materials\"\n    - boms.edit - \"Edit bills of materials\"\n    - boms.view - \"View bills of materials\"\n    - capacity.edit - \"Edit capacity planning\"\n    - capacity.view - \"View capacity planning\"\n    - equipment.create - \"Create equipment\"\n    - equipment.edit - \"Edit equipment\"\n    - equipment.maintenance - \"Perform equipment maintenance\"\n    - equipment.view - \"View equipment\"\n    ... and 11 more\n\n  MARKETING:\n    - campaigns.create - \"Create email campaigns\"\n    - campaigns.edit - \"Edit email campaigns\"\n    - campaigns.send - \"Send email campaigns\"\n    - campaigns.view - \"View email campaigns\"\n    - lists.create - \"Create mailing lists\"\n    - lists.view - \"View mailing lists\"\n    - templates.create - \"Create email templates\"\n    - templates.view - \"View email templates\"\n\n  PURCHASES:\n    - bills.approve - \"Approve supplier bills\"\n    - bills.create - \"Create supplier bills\"\n    - bills.view - \"View supplier bills\"\n    - goods_receipts.create - \"Create goods receipts\"\n    - goods_receipts.view - \"View goods receipts\"\n    - purchase_orders.approve - \"Approve purchase orders\"\n    - purchase_orders.create - \"Create purchase orders\"\n    - purchase_orders.delete - \"Delete purchase orders\"\n    - purchase_orders.edit - \"Edit purchase orders\"\n    - purchase_orders.view - \"View purchase orders\"\n    ... and 9 more\n\n  REPORTS:\n    - reports.export - \"Export reports\"\n\n  SALES:\n    - delivery_notes.create - \"Create delivery notes\"\n    - delivery_notes.view - \"View delivery notes\"\n    - invoices.create - \"Create invoices\"\n    - invoices.delete - \"Delete invoices\"\n    - invoices.edit - \"Edit invoices\"\n    - invoices.view - \"View invoices\"\n    - orders.approve - \"Approve sales orders\"\n    - orders.create - \"Create sales orders\"\n    - orders.delete - \"Delete sales orders\"\n    - orders.edit - \"Edit sales orders\"\n    ... and 22 more\n\n  SECURITY:\n    - mfa.admin_override - \"Admin: Override MFA for any user\"\n    - mfa.manage_own - \"Manage own MFA settings\"\n    - security.view_audit - \"View security audit logs\"\n\n  STATEMENTS:\n    - statements.bulk_generate - \"Generate Bulk Statements\"\n    - statements.email - \"Email Statements to Customers\"\n    - statements.generate - \"Generate Customer Statements\"\n    - statements.view_history - \"View Statement History\"\n\n  SYSTEM:\n    - files.delete - \"Delete files and folders\"\n    - files.manage - \"Manage all files and folders\"\n    - files.upload - \"Upload files\"\n\n  TAX:\n    - tax_exemptions.manage - \"Manage tax exemptions\"\n    - tax_exemptions.view - \"View tax exemptions\"\n\n  ⚠️  NOTE: These may be used in views or future features.\n  Review carefully before deleting.\n\n📊 COVERAGE STATISTICS\n--------------------------------------------------------------------------------\n  Permissions in database:        420\n  Permissions in controllers:     166\n  Matching (in both):             166\n  Missing from database:          0\n  Unused in controllers:          254\n  Coverage:                       100%\n\n  PERMISSIONS BY MODULE:\n    accounting                      13 permissions\n    sales                           10 permissions\n    forecasting                     10 permissions\n    admin                            6 permissions\n    bank_import                      6 permissions\n    ndas                             6 permissions\n    recurring_templates              6 permissions\n    manufacturing                    5 permissions\n    camera_audit                     5 permissions\n    inventory                        5 permissions\n\n\n================================================================================\nSCAN COMPLETE\n================================================================================\n','Script executed successfully','2025-11-28 14:32:22'),
(27,'test_permission_system',1,'[]',1,'=== PERMISSION SYSTEM TEST SUITE ===\n\nRunning comprehensive tests...\n\nTEST 1: Menu Items Have Valid Permissions\n------------------------------------------------------------\n✅ PASS: All menu items reference valid permissions\n\nTEST 2: Controller Permissions Exist in Database\n------------------------------------------------------------\n✅ PASS: All 171 permissions used in controllers exist\n\nTEST 3: All Roles Have Permissions\n------------------------------------------------------------\n⚠️  WARNING: 17 roles have no permissions:\n  - Accounts Payable Manager (ID 70)\n  - Accounts Receivable Manager (ID 72)\n  - VP/Director of Sales (ID 76)\n  - Customer Service Manager (ID 79)\n  - Customer Service Representative (ID 80)\n  - Purchasing Manager (ID 85)\n  - Inventory Controller (ID 87)\n  - VP/Director of Manufacturing (ID 88)\n  - Quality Manager (ID 92)\n  - Quality Inspector (ID 93)\n  - HR Coordinator (ID 96)\n  - Recruiting Manager (ID 97)\n  - Payroll Manager (ID 99)\n  - System Administrator (ID 100)\n  - IT Manager (ID 101)\n  - VP/Director of Business Development (ID 132)\n  - VP/Director of Autonomous Systems (ID 133)\n\nTEST 4: Permissions Are Grouped\n------------------------------------------------------------\n⚠️  WARNING: 503 permissions are not grouped:\n  - projects.view: View projects\n  - helpdesk.view: View help desk module\n  - documents.view: View documents\n  - messaging.view: View messaging module\n  - marketing.view: View marketing module\n  - analytics.view: View analytics\n  - salesorders.view: View SALES\n  - announcements.view: View Announcements\n  - audit-logs.view: View Audit Log\n  - backup.view: View System Backup\n  ... and 493 more\n\nTEST 5: Menu Permissions Match Controller Checks\n------------------------------------------------------------\n✅ PASS: Checked 20 menu items\n\nTEST 6: No Duplicate Permission Names\n------------------------------------------------------------\n✅ PASS: No duplicate permission names found\n\nTEST 7: All Users Have Valid Roles\n------------------------------------------------------------\n✅ PASS: All users have valid roles\n\n=== TEST SUMMARY ===\nTests passed: 5 / 7\nErrors: 0\nWarnings: 18\n\n⚠️  WARNINGS:\n1. Role \'Accounts Payable Manager\' has no permissions assigned\n2. Role \'Accounts Receivable Manager\' has no permissions assigned\n3. Role \'VP/Director of Sales\' has no permissions assigned\n4. Role \'Customer Service Manager\' has no permissions assigned\n5. Role \'Customer Service Representative\' has no permissions assigned\n6. Role \'Purchasing Manager\' has no permissions assigned\n7. Role \'Inventory Controller\' has no permissions assigned\n8. Role \'VP/Director of Manufacturing\' has no permissions assigned\n9. Role \'Quality Manager\' has no permissions assigned\n10. Role \'Quality Inspector\' has no permissions assigned\n11. Role \'HR Coordinator\' has no permissions assigned\n12. Role \'Recruiting Manager\' has no permissions assigned\n13. Role \'Payroll Manager\' has no permissions assigned\n14. Role \'System Administrator\' has no permissions assigned\n15. Role \'IT Manager\' has no permissions assigned\n16. Role \'VP/Director of Business Development\' has no permissions assigned\n17. Role \'VP/Director of Autonomous Systems\' has no permissions assigned\n18. 503 permissions are not assigned to permission groups\n\n⚠️  TESTS PASSED WITH WARNINGS','Script executed successfully','2025-11-28 22:42:24'),
(28,'update_excalidraw',1,'{\"force\":\"no\"}',1,'\n# Excalidraw Update Script\n# Downloads the latest Excalidraw standalone build and checks for updates\n# Usage: ./scripts/update-excalidraw.sh [--force]\n\nset -e\n\n# Configuration\nEXCALIDRAW_DIR=\"/Users/rpmbbu/LocalPHPStorm/m1_erp_web/public/assets/excalidraw\"\nCURRENT_VERSION_FILE=\"$EXCALIDRAW_DIR/.version\"\nEXCALIDRAW_CDN=\"https://unpkg.com/@excalidraw/excalidraw\"\nFORCE_UPDATE=false\n\n# Parse arguments\nif [[ \"$1\" == \"--force\" ]]; then\n    FORCE_UPDATE=true\nfi\n\n# Colors for output\nRED=\'\\033[0;31m\'\nGREEN=\'\\033[0;32m\'\nYELLOW=\'\\033[1;33m\'\nNC=\'\\033[0m\' # No Color\n\necho \"================================================\"\necho \"Excalidraw Local Update Script\"\necho \"================================================\"\necho \"\"\n\n# Create directory if it doesn\'t exist\nmkdir -p \"$EXCALIDRAW_DIR\"\n\n# Function to get latest version from npm\nget_latest_version() {\n    echo \"Checking latest version from npm...\"\n    LATEST_VERSION=$(curl -s https://registry.npmjs.org/@excalidraw/excalidraw/latest | grep -o \'\"version\":\"[^\"]*\"\' | cut -d\'\"\' -f4)\n    if [ -z \"$LATEST_VERSION\" ]; then\n        echo -e \"${RED}Error: Could not fetch latest version${NC}\"\n        exit 1\n    fi\n    echo -e \"${GREEN}Latest version: $LATEST_VERSION${NC}\"\n}\n\n# Function to get current version\nget_current_version() {\n    if [ -f \"$CURRENT_VERSION_FILE\" ]; then\n        CURRENT_VERSION=$(cat \"$CURRENT_VERSION_FILE\")\n        echo -e \"${GREEN}Current version: $CURRENT_VERSION${NC}\"\n    else\n        CURRENT_VERSION=\"\"\n        echo -e \"${YELLOW}No current version found${NC}\"\n    fi\n}\n\n# Function to download Excalidraw\ndownload_excalidraw() {\n    local version=$1\n    echo \"\"\n    echo \"Downloading Excalidraw v$version...\"\n\n    # Download main files\n    echo \"  → Downloading excalidraw.min.js...\"\n    curl -s -o \"$EXCALIDRAW_DIR/excalidraw.min.js\" \\\n        \"$EXCALIDRAW_CDN@$version/dist/excalidraw.production.min.js\"\n\n    echo \"  → Downloading excalidraw.min.css...\"\n    curl -s -o \"$EXCALIDRAW_DIR/excalidraw.min.css\" \\\n        \"$EXCALIDRAW_CDN@$version/dist/excalidraw.min.css\"\n\n    # Download assets\n    echo \"  → Downloading fonts and assets...\"\n    mkdir -p \"$EXCALIDRAW_DIR/fonts\"\n\n    # Download common fonts (these don\'t change often)\n    curl -s -o \"$EXCALIDRAW_DIR/fonts/Virgil.woff2\" \\\n        \"https://unpkg.com/@excalidraw/excalidraw@$version/dist/excalidraw-assets/Virgil.woff2\" || true\n    curl -s -o \"$EXCALIDRAW_DIR/fonts/Cascadia.woff2\" \\\n        \"https://unpkg.com/@excalidraw/excalidraw@$version/dist/excalidraw-assets/Cascadia.woff2\" || true\n\n    # Save version\n    echo \"$version\" > \"$CURRENT_VERSION_FILE\"\n\n    echo -e \"${GREEN}✓ Download complete!${NC}\"\n}\n\n# Function to create wrapper\ncreate_wrapper() {\n    echo \"\"\n    echo \"Creating local wrapper...\"\n\n    cat > \"$EXCALIDRAW_DIR/excalidraw-wrapper.js\" << \'EOF\'\n/**\n * Excalidraw Local Wrapper\n * Provides a simple interface to initialize Excalidraw locally\n */\n\nexport function initExcalidraw(containerId, options = {}) {\n    const container = typeof containerId === \'string\'\n        ? document.getElementById(containerId)\n        : containerId;\n\n    if (!container) {\n        throw new Error(\'Container not found: \' + containerId);\n    }\n\n    // Load Excalidraw CSS\n    const cssId = \'excalidraw-styles\';\n    if (!document.getElementById(cssId)) {\n        const link = document.createElement(\'link\');\n        link.id = cssId;\n        link.rel = \'stylesheet\';\n        link.href = \'/assets/excalidraw/excalidraw.min.css\';\n        document.head.appendChild(link);\n    }\n\n    // Load Excalidraw script\n    return new Promise((resolve, reject) => {\n        const scriptId = \'excalidraw-script\';\n        if (window.ExcalidrawLib) {\n            initExcalidrawInstance(container, options, resolve);\n            return;\n        }\n\n        if (!document.getElementById(scriptId)) {\n            const script = document.createElement(\'script\');\n            script.id = scriptId;\n            script.src = \'/assets/excalidraw/excalidraw.min.js\';\n            script.onload = () => {\n                initExcalidrawInstance(container, options, resolve);\n            };\n            script.onerror = reject;\n            document.head.appendChild(script);\n        }\n    });\n}\n\nfunction initExcalidrawInstance(container, options, callback) {\n    const {\n        initialData,\n        theme = \'light\',\n        onChange,\n        onReady\n    } = options;\n\n    // Wait for React and Excalidraw to be ready\n    if (typeof window.React === \'undefined\' || typeof window.ExcalidrawLib === \'undefined\') {\n        setTimeout(() => initExcalidrawInstance(container, options, callback), 100);\n        return;\n    }\n\n    const React = window.React;\n    const ReactDOM = window.ReactDOM;\n    const { Excalidraw, MainMenu } = window.ExcalidrawLib;\n\n    let excalidrawAPI = null;\n\n    const excalidrawElement = React.createElement(Excalidraw, {\n        initialData: initialData || { elements: [], appState: {} },\n        theme: theme,\n        onChange: (elements, appState, files) => {\n            if (onChange) onChange(elements, appState, files);\n        },\n        ref: (api) => {\n            if (api) {\n                excalidrawAPI = api;\n                if (onReady) onReady(api);\n            }\n        }\n    });\n\n    const root = ReactDOM.createRoot(container);\n    root.render(excalidrawElement);\n\n    callback({\n        api: excalidrawAPI,\n        root: root\n    });\n}\nEOF\n\n    echo -e \"${GREEN}✓ Wrapper created${NC}\"\n}\n\n# Main execution\nget_latest_version\nget_current_version\n\n# Check if update is needed\nif [ \"$FORCE_UPDATE\" = true ]; then\n    echo -e \"${YELLOW}Force update requested${NC}\"\n    download_excalidraw \"$LATEST_VERSION\"\n    create_wrapper\nelif [ \"$CURRENT_VERSION\" != \"$LATEST_VERSION\" ]; then\n    echo -e \"${YELLOW}Update available: $CURRENT_VERSION → $LATEST_VERSION${NC}\"\n    read -p \"Update now? (y/n) \" -n 1 -r\n    echo\n    if [[ $REPLY =~ ^[Yy]$ ]]; then\n        download_excalidraw \"$LATEST_VERSION\"\n        create_wrapper\n    else\n        echo \"Update skipped\"\n        exit 0\n    fi\nelse\n    echo -e \"${GREEN}✓ Already up to date (v$CURRENT_VERSION)${NC}\"\n\n    # Check if files exist\n    if [ ! -f \"$EXCALIDRAW_DIR/excalidraw.min.js\" ]; then\n        echo -e \"${YELLOW}Files missing, re-downloading...${NC}\"\n        download_excalidraw \"$LATEST_VERSION\"\n        create_wrapper\n    fi\nfi\n\necho \"\"\necho \"================================================\"\necho -e \"${GREEN}Excalidraw is ready for offline use!${NC}\"\necho \"Location: $EXCALIDRAW_DIR\"\necho \"Version: $(cat $CURRENT_VERSION_FILE)\"\necho \"================================================\"','Script executed successfully','2025-12-02 20:37:50');
/*!40000 ALTER TABLE `system_script_log` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `system_settings`
--

DROP TABLE IF EXISTS `system_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `system_settings` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `setting_key` varchar(100) NOT NULL,
  `setting_value` text DEFAULT NULL,
  `setting_type` varchar(50) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `ss_cap` decimal(12,2) DEFAULT 1051951.50,
  `ss_rate` decimal(5,2) DEFAULT 6.20,
  `futa_cap` decimal(12,2) DEFAULT 7000.00,
  `futa_rate` decimal(5,2) DEFAULT 0.60,
  `suta_cap` decimal(12,2) DEFAULT 7000.00,
  `suta_rate` decimal(5,2) DEFAULT 2.70,
  `match_cap` decimal(12,2) DEFAULT 69000.00,
  `match_rate` decimal(5,2) DEFAULT 2.00,
  `cola_rate` decimal(5,2) DEFAULT 4.00,
  `medicare_rate` decimal(5,2) DEFAULT 1.45,
  `health_ins` decimal(10,2) DEFAULT 700.00,
  `disability_ins` decimal(10,2) DEFAULT 40.00,
  `life_ins` decimal(10,2) DEFAULT 10.00,
  `pto_days` decimal(5,2) DEFAULT 0.04,
  `uniform_cost` decimal(10,2) DEFAULT 1.00,
  `wc_salary` decimal(5,2) DEFAULT 1.00,
  `protective_gear` decimal(10,2) DEFAULT 2.00,
  `overtime_rate` decimal(5,2) DEFAULT 1.50,
  `wc_hourly` decimal(5,2) DEFAULT 2.85,
  `overtime_hours` decimal(5,2) DEFAULT 10.00,
  `labor_utilization_rate` decimal(5,2) DEFAULT 95.00 COMMENT 'Expected labor utilization %',
  `hours_per_day` decimal(5,1) DEFAULT 24.0 COMMENT 'Total hours available per day',
  `facility_size_sqft` decimal(12,2) DEFAULT 0.00 COMMENT 'Default facility size in square feet',
  `capitalization_limit` decimal(12,2) DEFAULT 5000.00 COMMENT 'Min amount to capitalize vs expense',
  `cpi_increase_rate` decimal(5,2) DEFAULT 5.50 COMMENT 'Expected CPI increase %',
  `project_start_date` date DEFAULT NULL COMMENT 'Default project start date',
  `base_year` int(11) DEFAULT 2026 COMMENT 'Base year for projections',
  PRIMARY KEY (`id`),
  UNIQUE KEY `setting_key` (`setting_key`)
) ENGINE=InnoDB AUTO_INCREMENT=90 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `system_settings`
--

LOCK TABLES `system_settings` WRITE;
/*!40000 ALTER TABLE `system_settings` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `system_settings` VALUES
(1,'company_name','Mavrix1','company','','2025-11-11 14:04:03',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(2,'company_email','info@mavrix.one','company','','2025-11-11 14:04:03',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(3,'company_phone','906-555-4567','company','','2025-11-11 14:06:58',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(4,'currency_symbol','$','text','Currency symbol','2025-10-26 14:24:24',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(5,'currency_code','USD','text','Currency code','2025-10-26 14:24:24',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(6,'date_format','m/d/y','company','','2025-11-12 14:12:51',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(7,'tax_rate','10','number','Default tax rate percentage','2025-10-26 14:24:24',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(8,'items_per_page','25','number','Items per page in lists','2025-10-26 14:24:24',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(9,'product_categories','{\"electronics\":\"Electronics\",\"office-supplies\":\"Office Supplies\",\"raw-materials\":\"Raw Materials\",\"components\":\"Components\",\"drones\":\"Drones\",\"batteries\":\"Batteries\",\"motors\":\"Motors\"}','dropdown','Categories for organizing products','2025-10-27 16:21:06',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(10,'product_types','{\"digital\":\"Digital\",\"finished_goods\":\"Finished Goods\",\"goods\":\"Goods\",\"raw_material\":\"Raw Material\",\"service\":\"Service\"}','dropdown','Types of products (physical, service, digital, etc.)','2025-12-05 10:48:24',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(11,'product_units','{\"pcs\":\"Pieces\",\"kg\":\"Kilograms\",\"lb\":\"Pounds\",\"ltr\":\"Liters\",\"gal\":\"Gallons\",\"box\":\"Box\",\"dozen\":\"Dozen\",\"m\":\"Meters\",\"ft\":\"Feet\"}','dropdown','Units for measuring products (pcs, kg, liters, etc.)','2025-10-26 18:34:44',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(12,'customer_types','{\"retail\":\"Retail\",\"wholesale\":\"Wholesale\",\"distributor\":\"Distributor\",\"vip\":\"VIP\"}','dropdown','Types of customers (retail, wholesale, VIP, etc.)','2025-10-26 18:34:44',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(13,'customer_sources','{\"website\":\"Website\",\"referral\":\"Referral\",\"social-media\":\"Social Media\",\"advertisement\":\"Advertisement\",\"walk-in\":\"Walk-in\"}','dropdown','How customers found you (referral, website, etc.)','2025-10-26 18:34:44',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(14,'payment_methods','{\"cash\":\"Cash\",\"credit-card\":\"Credit Card\",\"bank-transfer\":\"Bank Transfer\",\"check\":\"Check\",\"paypal\":\"PayPal\"}','dropdown','Available payment methods','2025-10-26 18:34:44',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(15,'payment_terms','{\"cod\":\"Cash on Delivery\",\"net-30\":\"Net 30 Days\",\"net-60\":\"Net 60 Days\",\"prepaid\":\"Prepaid\",\"50-50\":\"50% Advance, 50% on Delivery\"}','dropdown','Standard payment terms (Net 30, COD, etc.)','2025-10-26 18:34:44',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(16,'departments','{\"sales\":\"Sales\",\"marketing\":\"Marketing\",\"operations\":\"Operations\",\"hr\":\"Human Resources\",\"finance\":\"Finance\",\"it\":\"IT\",\"warehouse\":\"Warehouse\",\"manufacturing\":\"Manufacturing\",\"resanddev\":\"Research and Development\",\"executive\":\"Executive Suite\"}','dropdown','Company departments for employees','2025-11-08 17:50:26',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(17,'job_titles','{\"manager\":\"Manager\",\"supervisor\":\"Supervisor\",\"specialist\":\"Specialist\",\"associate\":\"Associate\",\"intern\":\"Intern\",\"officer\":\"Officer\"}','dropdown','Standard job titles','2025-11-08 17:55:39',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(18,'company_address','3900 W. Coachman Ave. , Tampa, FL 33611','company','','2025-11-27 22:35:43',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(19,'company_tax_id','','company','','2025-10-26 18:35:11',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(20,'currency','USD','company','','2025-10-26 18:35:11',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(21,'timezone','America/New_York','company','','2025-11-01 12:06:57',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(22,'work_days_per_week','7','company','','2025-11-01 11:31:10',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(23,'work_hours_per_day','8','company','','2025-10-30 09:57:36',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(24,'working_weeks_per_year','52','company','','2025-10-30 09:57:36',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(25,'shifts_per_day','3','company','','2025-11-01 11:31:03',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(26,'weekend_days','Saturday,Sunday','company','','2025-10-30 09:57:36',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(27,'base_rent_year','1051951.5','company','','2025-11-01 11:05:58',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(28,'max_base_rent_increase','5.5','company','','2025-11-01 11:05:58',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(29,'nnn_year','309397.5','company','','2025-11-01 11:05:58',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(30,'nnn_increase','3.5','company','','2025-11-01 11:05:58',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(31,'energy_cost_year','235200','company','','2025-11-01 11:05:58',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(32,'energy_cost_increase','2','company','','2025-11-01 11:05:58',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(33,'insurance_year','174008','company','','2025-11-01 11:05:58',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(34,'insurance_increase','3','company','','2025-11-01 11:05:58',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(35,'utilities_year','198510','company','','2025-11-01 11:05:58',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(36,'utilities_increase','1','company','','2025-11-01 11:05:58',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(37,'ftz_costs_year','150000','company','','2025-11-01 11:05:58',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(38,'ftz_increase','2.5','company','','2025-11-01 11:05:58',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(39,'manufacturing_business_line_label','Business Line','string','Custom label for business lines (e.g., \"Production Line\", \"Department\", \"Division\")','2025-10-27 16:32:00',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(40,'manufacturing_business_line_label_plural','Business Lines','string','Plural form of business line label','2025-10-27 16:32:00',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(41,'manufacturing_equipment_type_label','Equipment Type','string','Custom label for equipment types','2025-10-27 16:32:00',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(42,'manufacturing_equipment_type_label_plural','Equipment Types','string','Plural form of equipment type label','2025-10-27 16:32:00',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(43,'manufacturing_equipment_label','Equipment','string','Custom label for equipment units','2025-10-27 16:32:00',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(44,'manufacturing_equipment_label_plural','Equipment','string','Plural form of equipment label','2025-10-27 16:32:00',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(53,'manufacturing_equipment_line_label','Equipment Line','string','Custom label for equipment lines','2025-10-27 18:13:03',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(54,'manufacturing_equipment_line_label_plural','Equipment Lines','string','Plural form of equipment line label','2025-10-27 18:13:03',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(59,'machine_api_key','b29a4b78-b460-11f0-9204-f23c92a35ef0','string','API key for machine data integration endpoints','2025-10-29 00:46:25',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(60,'company_logo','/uploads/company/logo_1762869843.png','company','','2025-11-11 14:04:03',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(61,'battery_cell_types','{\"lfp_280ah_prismatic\":\"LFP 280Ah Prismatic\",\"nmc_280ah_prismatic\":\"NMC 280Ah Prismatic\",\"lfp_26650_6ah\":\"LFP 26650 (6Ah)\",\"nmc_21700_5ah\":\"NMC 21700 (5Ah)\",\"lfp_50ah_pouch\":\"LFP 50Ah Pouch\",\"lfp_32650_50ah\":\"LFP 32650 (50Ah)\"}','dropdown','Battery cell types available for orders','2025-11-09 22:10:54',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(62,'battery_assembly_lines','{\"l_prismatic\":\"L. Prismatic\",\"small_cylindrical\":\"Small Cylindrical\",\"l_cylindrical\":\"L. Cylindrical\",\"soft_pack_pouch\":\"Soft Pack / Pouch\"}','dropdown','Battery assembly line types','2025-11-09 22:10:54',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(63,'battery_test_equipment','{\"60v200a\":\"60V200A\",\"400v400a\":\"400V400A\",\"1500v600a\":\"1500V600A\",\"1500v400a\":\"1500V400A\"}','dropdown','Battery test equipment specifications','2025-11-09 22:10:54',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(68,'mfa_enforcement','optional',NULL,'MFA enforcement policy: mandatory, optional, or disabled','2025-11-15 18:02:34',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(69,'mfa_otp_length','6',NULL,'Length of OTP codes','2025-11-15 17:46:36',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(70,'mfa_otp_expiry_minutes','5',NULL,'OTP expiry time in minutes','2025-11-15 17:46:36',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(71,'mfa_max_otp_attempts','5',NULL,'Maximum OTP verification attempts before lockout','2025-11-15 17:46:36',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(72,'password_reset_expiry_minutes','30',NULL,'Password reset token expiry time in minutes','2025-11-15 17:46:36',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(73,'max_login_attempts','5',NULL,'Maximum login attempts before account lockout','2025-11-15 17:46:36',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(74,'account_lockout_duration_minutes','30',NULL,'Account lockout duration in minutes','2025-11-15 17:46:36',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(75,'backup_codes_count','10',NULL,'Number of backup codes to generate','2025-11-15 17:46:36',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(76,'smtp_host','ipv6.nwpro5.fcomet.com','email','SMTP server hostname','2025-11-26 19:10:23',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(77,'smtp_port','587','email','SMTP server port','2025-11-26 19:04:47',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(78,'smtp_username','erp_system@mavrix.one','email','SMTP username','2025-11-26 17:39:39',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(79,'smtp_password','xyz8468RPMerkuri123!','email','SMTP password (encrypted)','2025-11-26 19:12:26',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(80,'smtp_encryption','tls','email','SMTP encryption type (tls/ssl/none)','2025-11-26 19:04:47',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(81,'smtp_from_email','contact@mavrix.one','email','Default From email address','2025-11-26 18:33:42',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(82,'smtp_from_name','Mavrix1','email','Default From name','2025-11-26 18:33:42',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(83,'company_website','https://mavrix1.com','company','','2025-11-27 02:56:24',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(84,'company_address_line1','3900 W. Coachman Ave.','company','','2025-11-27 22:35:44',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(85,'company_address_line2','','company','','2025-11-27 22:35:44',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(86,'company_city','Tampa','company','','2025-11-27 22:35:44',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(87,'company_state','FL','company','','2025-11-27 22:35:44',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(88,'company_zip','33611','company','','2025-11-27 22:35:44',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026),
(89,'company_country','United States','company','','2025-11-27 22:35:44',1051951.50,6.20,7000.00,0.60,7000.00,2.70,69000.00,2.00,4.00,1.45,700.00,40.00,10.00,0.04,1.00,1.00,2.00,1.50,2.85,10.00,95.00,24.0,0.00,5000.00,5.50,NULL,2026);
/*!40000 ALTER TABLE `system_settings` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `table_columns`
--

DROP TABLE IF EXISTS `table_columns`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `table_columns` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `table_config_id` int(10) unsigned NOT NULL,
  `column_key` varchar(100) NOT NULL,
  `column_label` varchar(255) NOT NULL,
  `data_field` varchar(100) NOT NULL COMMENT 'Database field or expression',
  `data_type` enum('text','number','currency','date','datetime','boolean','badge','link','image','html','action','buttons') DEFAULT 'text',
  `format_options` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Formatter options (e.g., currency symbol, date format)' CHECK (json_valid(`format_options`)),
  `is_sortable` tinyint(1) DEFAULT 1,
  `is_searchable` tinyint(1) DEFAULT 1,
  `is_visible` tinyint(1) DEFAULT 1,
  `width` varchar(20) DEFAULT NULL,
  `css_class` varchar(255) DEFAULT NULL,
  `align` enum('left','center','right') DEFAULT 'left',
  `display_order` int(11) DEFAULT 0,
  `permission_required` varchar(100) DEFAULT NULL,
  `hidden_roles` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Array of roles that cannot see this column' CHECK (json_valid(`hidden_roles`)),
  `is_active` tinyint(1) DEFAULT 1,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_table_config` (`table_config_id`),
  KEY `idx_display_order` (`display_order`),
  CONSTRAINT `table_columns_ibfk_1` FOREIGN KEY (`table_config_id`) REFERENCES `table_configurations` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=217 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `table_columns`
--

LOCK TABLES `table_columns` WRITE;
/*!40000 ALTER TABLE `table_columns` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `table_columns` VALUES
(1,1,'sku','SKU','sku','text',NULL,1,1,1,'120px',NULL,'left',1,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(2,1,'name','Product Name','name','link','{\"url_template\": \"/products/{id}\"}',1,1,1,NULL,NULL,'left',2,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(3,1,'category','Category','category_name','text',NULL,1,1,1,'150px',NULL,'left',3,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(4,1,'type','Type','product_type','badge','{\"badges\": {\"goods\": \"primary\", \"digital\": \"success\", \"service\": \"info\"}}',1,1,1,'100px',NULL,'left',4,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(5,1,'cost_price','Cost','cost_price','currency','{\"symbol\": \"$\"}',1,1,1,'100px',NULL,'left',5,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(6,1,'selling_price','Price','selling_price','currency','{\"symbol\": \"$\"}',1,1,1,'100px',NULL,'left',6,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(7,1,'status','Status','status','badge','{\"badges\": {\"active\": \"success\", \"inactive\": \"secondary\", \"discontinued\": \"danger\"}}',1,1,1,'100px',NULL,'left',7,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(8,1,'created_at','Created','created_at','date','{\"format\": \"m/d/y\"}',1,1,0,'120px',NULL,'left',8,NULL,NULL,1,'2025-11-11 00:36:47','2025-12-05 10:21:44'),
(26,4,'company_name','Company Name','company_name','link','{\"url_template\": \"/suppliers/{id}\"}',1,1,1,'250px',NULL,'left',1,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(27,4,'contact_person','Contact Person','contact_person','text',NULL,1,1,1,'200px',NULL,'left',2,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(28,4,'email','Email','email','link','{\"url_template\": \"mailto:{email}\"}',1,1,1,'200px',NULL,'left',3,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(29,4,'phone','Phone','phone','text',NULL,0,1,1,'130px',NULL,'left',4,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(30,4,'status','Status','status','badge','{\"badges\": {\"active\": \"success\", \"inactive\": \"secondary\"}}',1,1,1,'100px',NULL,'left',5,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(31,4,'created_at','Created','created_at','date','{\"format\": \"m/d/y\"}',1,1,1,'120px',NULL,'left',6,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-12 14:07:02'),
(32,5,'order_number','Order #','order_number','link','{\"url_template\": \"/salesorders/{id}\"}',1,1,1,'150px',NULL,'left',1,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(33,5,'customer_name','Customer','customer_name','text',NULL,1,1,1,'200px',NULL,'left',2,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(34,5,'order_date','Order Date','order_date','date','{\"format\": \"m/d/y\"}',1,1,1,'120px',NULL,'left',3,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-12 14:07:02'),
(35,5,'delivery_date','Delivery Date','delivery_date','date','{\"format\": \"m/d/y\"}',1,1,1,'120px',NULL,'left',4,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-12 14:07:02'),
(36,5,'total_amount','Total','total_amount','currency','{\"symbol\": \"$\"}',1,1,1,'120px',NULL,'left',5,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(37,5,'status','Status','status','badge','{\"badges\": {\"draft\": \"secondary\", \"pending\": \"warning\", \"cancelled\": \"danger\", \"completed\": \"success\", \"confirmed\": \"info\", \"processing\": \"primary\"}}',1,1,1,'100px',NULL,'left',6,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(38,5,'created_at','Created','created_at','date','{\"format\": \"m/d/y\"}',1,1,1,'120px',NULL,'left',7,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-12 14:07:02'),
(39,6,'po_number','PO #','po_number','link','{\"url_template\": \"/purchaseorders/{id}\"}',1,1,1,'150px',NULL,'left',1,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(40,6,'supplier_name','Supplier','supplier_name','text',NULL,1,1,1,'200px',NULL,'left',2,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(41,6,'order_date','Order Date','order_date','date','{\"format\": \"m/d/y\"}',1,1,1,'120px',NULL,'left',3,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-12 14:07:02'),
(42,6,'expected_delivery_date','Expected Delivery','expected_delivery_date','date','{\"format\": \"m/d/y\"}',1,1,1,'150px',NULL,'left',4,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-12 14:07:02'),
(43,6,'total_amount','Total','total_amount','currency','{\"symbol\": \"$\"}',1,1,1,'120px',NULL,'left',5,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(44,6,'status','Status','status','badge','{\"badges\": {\"draft\": \"secondary\", \"ordered\": \"primary\", \"pending\": \"warning\", \"approved\": \"info\", \"received\": \"success\", \"cancelled\": \"danger\"}}',1,1,1,'100px',NULL,'left',6,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(45,6,'created_at','Created','created_at','date','{\"format\": \"m/d/y\"}',1,1,1,'120px',NULL,'left',7,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-12 14:07:02'),
(46,7,'wo_number','WO #','wo_number','link','{\"url_template\": \"/workorders/{id}\"}',1,1,1,'150px',NULL,'left',1,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(47,7,'product_name','Product','product_name','text',NULL,1,1,1,'200px',NULL,'left',2,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(48,7,'quantity','Quantity','quantity','number','{\"decimals\": 0}',1,1,1,'100px',NULL,'left',3,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(49,7,'start_date','Start Date','start_date','date','{\"format\": \"m/d/y\"}',1,1,1,'120px',NULL,'left',4,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-12 14:07:02'),
(50,7,'end_date','End Date','end_date','date','{\"format\": \"m/d/y\"}',1,1,1,'120px',NULL,'left',5,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-12 14:07:02'),
(51,7,'priority','Priority','priority','badge','{\"badges\": {\"low\": \"secondary\", \"high\": \"warning\", \"normal\": \"info\", \"urgent\": \"danger\"}}',1,1,1,'100px',NULL,'left',6,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(52,7,'status','Status','status','badge','{\"badges\": {\"draft\": \"secondary\", \"cancelled\": \"danger\", \"completed\": \"success\", \"scheduled\": \"info\", \"in_progress\": \"primary\"}}',1,1,1,'100px',NULL,'left',7,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(53,7,'created_at','Created','created_at','date','{\"format\": \"m/d/y\"}',1,1,1,'120px',NULL,'left',8,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-12 14:07:02'),
(54,8,'invoice_number','Invoice #','invoice_number','link','{\"url_template\": \"/invoices/{id}\"}',1,1,1,'150px',NULL,'left',1,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(55,8,'customer_name','Customer','customer_name','text',NULL,1,1,1,'200px',NULL,'left',2,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(56,8,'invoice_date','Invoice Date','invoice_date','date','{\"format\": \"m/d/y\"}',1,1,1,'120px',NULL,'left',3,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-12 14:07:02'),
(57,8,'due_date','Due Date','due_date','date','{\"format\": \"m/d/y\"}',1,1,1,'120px',NULL,'left',4,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-12 14:07:02'),
(58,8,'total_amount','Total','total_amount','currency','{\"symbol\": \"$\"}',1,1,1,'120px',NULL,'left',5,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(59,8,'payment_status','Payment','payment_status','badge','{\"badges\": {\"paid\": \"success\", \"unpaid\": \"warning\", \"overdue\": \"danger\", \"partial\": \"info\"}}',1,1,1,'100px',NULL,'left',6,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(60,8,'status','Status','status','badge','{\"badges\": {\"paid\": \"success\", \"sent\": \"info\", \"draft\": \"secondary\", \"viewed\": \"primary\", \"cancelled\": \"danger\"}}',1,1,1,'100px',NULL,'left',7,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(61,8,'created_at','Created','created_at','date','{\"format\": \"m/d/y\"}',1,1,1,'120px',NULL,'left',8,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-12 14:07:02'),
(64,10,'email','Email','email','link','{\"url_template\": \"mailto:{email}\"}',1,1,1,'200px',NULL,'left',3,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(65,10,'phone','Phone','phone','text',NULL,0,1,1,'130px',NULL,'left',4,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(66,10,'position','Position','position','text',NULL,1,1,1,'150px',NULL,'left',5,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(67,10,'is_primary','Primary','is_primary','boolean','{\"true_label\": \"Yes\", \"false_label\": \"No\"}',0,1,1,'80px',NULL,'left',6,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(68,10,'created_at','Created','created_at','date','{\"format\": \"m/d/y\"}',1,1,1,'120px',NULL,'left',7,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-12 14:07:02'),
(69,10,'first_name','First Name','first_name','text',NULL,1,1,1,'150px',NULL,'left',1,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(70,10,'last_name','Last Name','last_name','text',NULL,1,1,1,'150px',NULL,'left',2,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(71,11,'name','Name','name','link','{\"url_template\": \"/inventory/categories/{id}\"}',1,1,1,'250px',NULL,'left',1,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(72,11,'description','Description','description','text',NULL,0,1,1,NULL,NULL,'left',2,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(73,11,'product_count','Products','product_count','badge','{\"badges\": {\"0\": \"secondary\", \"1\": \"info\"}}',1,1,1,'120px',NULL,'left',3,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(74,11,'total_stock','Total Stock','total_stock','number','{\"decimals\": 0}',1,1,1,'120px',NULL,'left',4,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(75,11,'is_active','Status','is_active','badge','{\"badges\": {\"0\": \"secondary\", \"1\": \"success\"}, \"true_label\": \"Active\", \"false_label\": \"Inactive\"}',1,1,1,'100px',NULL,'left',5,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(76,12,'lot_number','Lot Number','lot_number','link','{\"url_template\": \"inventory/lots/{id}\"}',1,1,1,NULL,NULL,'left',1,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(77,12,'serial_number','Serial Number','serial_number','text',NULL,1,1,1,NULL,NULL,'left',2,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(78,12,'product_sku','SKU','product_sku','text',NULL,1,1,1,NULL,NULL,'left',3,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(79,12,'product_name','Product','product_name','link','{\"url_template\": \"products/{product_id}\"}',1,1,1,NULL,NULL,'left',4,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(80,12,'location_name','Location','location_name','text',NULL,1,1,1,NULL,NULL,'left',5,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(81,12,'manufacture_date','Mfg Date','manufacture_date','date','{\"format\": \"m/d/y\"}',1,0,1,NULL,NULL,'left',6,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-12 14:07:02'),
(82,12,'expiration_date','Exp Date','expiration_date','date','{\"format\": \"m/d/y\"}',1,0,1,NULL,NULL,'left',7,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-12 14:07:02'),
(83,12,'quantity','Quantity','quantity','number',NULL,1,0,1,NULL,NULL,'left',8,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(84,12,'status','Status','status','badge','{\"badges\": {\"sold\": \"secondary\", \"active\": \"success\", \"expired\": \"danger\", \"reserved\": \"info\", \"returned\": \"warning\"}}',1,1,1,NULL,NULL,'left',9,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(85,12,'created_at','Created','created_at','datetime',NULL,1,0,1,NULL,NULL,'left',10,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(104,3,'employee_id','Employee ID','employee_id','text',NULL,1,1,1,NULL,'','left',1,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(105,3,'full_name','Name','full_name','link','{\"url_template\": \"employees/{id}\"}',1,1,1,NULL,'fw-bold','left',2,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(106,3,'email','Email','email','link','{\"url_template\": \"mailto:{email}\"}',1,1,1,NULL,'','left',3,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(107,3,'department','Department','department_name','text',NULL,1,1,1,NULL,'','left',4,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(108,3,'position','Position','position','text',NULL,1,1,1,NULL,'','left',5,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(109,3,'status','Status','status','badge','{\"badges\": {\"active\": \"success\", \"inactive\": \"secondary\", \"on_leave\": \"warning\", \"terminated\": \"danger\"}}',1,1,1,NULL,'','center',6,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(110,2,'customer_name','Customer','display_name','text',NULL,1,1,1,NULL,'fw-bold','left',1,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-26 15:42:15'),
(111,2,'type','Type','company_type','badge','{\"badges\": {\"company\": \"primary\", \"individual\": \"info\"}}',1,1,1,'100px','','center',2,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-24 15:49:09'),
(112,2,'client','Client','client_name','text',NULL,1,1,1,NULL,'','left',3,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(114,2,'phone','Phone','phone','text',NULL,1,1,1,NULL,'','left',5,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(115,2,'city','City','city','text',NULL,1,1,1,NULL,'','left',6,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(116,2,'status','Status','status','badge','{\"badges\": {\"active\": \"success\", \"inactive\": \"secondary\"}}',1,1,1,'100px','','center',7,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(136,21,'contact_name','Contact','full_name','text',NULL,1,1,1,NULL,'fw-bold','left',1,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-26 15:42:15'),
(137,21,'type','Type','contact_type','badge','{\"badges\": {\"Client\": \"primary\", \"General\": \"secondary\", \"Customer\": \"info\"}}',1,1,1,'100px','','center',2,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(138,21,'title','Title','title','text',NULL,1,1,1,NULL,'','left',3,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(139,21,'entity','Related To','entity_name','text',NULL,1,1,1,NULL,'','left',4,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(141,21,'phone','Phone','phone','text',NULL,1,1,1,NULL,'','left',6,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(142,20,'client_name','Client','display_name','link','{\"url_template\": \"clients/{id}\"}',1,1,1,NULL,'fw-bold','left',1,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(143,20,'type','Type','client_type','badge','{\"badges\": {\"company\": \"primary\", \"individual\": \"info\"}}',1,1,1,'100px','','center',2,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(144,20,'email','Email','email','link','{\"url_template\": \"mailto:{email}\"}',1,1,1,NULL,'','left',3,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(145,20,'phone','Phone','phone','text',NULL,1,1,1,NULL,'','left',4,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(146,20,'city','City','city','text',NULL,1,1,1,NULL,'','left',5,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(147,20,'customers','Customers','customer_count','number','{\"decimals\": 0}',1,0,1,'100px','','center',6,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(148,20,'status','Status','status','badge','{\"badges\": {\"active\": \"success\", \"inactive\": \"secondary\"}}',1,1,1,'100px','','center',7,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(149,25,'document_name','Document Name','document_name','link','{\"icon\": \"bi-file-earmark-pdf\", \"icon_color\": \"text-danger\", \"url_template\": \"crm/documents/{id}\"}',1,1,1,NULL,'','left',1,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(150,25,'type','Type','document_type','badge','{\"badges\": {\"nda\": \"warning\", \"other\": \"secondary\", \"invoice\": \"primary\", \"contract\": \"secondary\", \"proposal\": \"info\", \"agreement\": \"success\"}, \"transform\": \"ucfirst\"}',1,1,1,'100px','','left',2,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(151,25,'customer','Customer','customer_name','link','{\"url_template\": \"customers/{customer_id}\"}',1,1,1,NULL,'','left',3,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(152,25,'version','Version','version','text',NULL,1,0,1,'80px','','center',4,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(153,25,'status','Status','is_signed','badge','{\"icon\": {\"1\": \"bi-check-circle\"}, \"badges\": {\"0\": \"warning\", \"1\": \"success\"}, \"labels\": {\"0\": \"Unsigned\", \"1\": \"Signed\"}}',1,0,1,'120px','','left',5,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(154,25,'expiry_date','Expiry Date','expiry_date','date','{\"empty\": \"-\", \"format\": \"m/d/y\"}',1,0,1,'120px','','left',6,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-12 14:07:02'),
(155,25,'uploaded','Uploaded','created_at','date','{\"format\": \"m/d/y\", \"secondary_class\": \"small text-muted\", \"secondary_field\": \"uploader_name\", \"secondary_prefix\": \"by \"}',1,0,1,'150px','','left',7,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-12 14:07:02'),
(156,25,'actions','Actions','id','buttons','{\"buttons\": [{\"icon\": \"bi-eye\", \"class\": \"btn-sm btn-outline-theme\", \"title\": \"Preview\", \"url_template\": \"\", \"modal\": \"docPreview_{id}\"}, {\"icon\": \"bi-pencil\", \"class\": \"btn-sm btn-outline-theme\", \"title\": \"Edit\", \"url_template\": \"crm/documents/{id}/edit\"}, {\"icon\": \"bi-trash\", \"class\": \"btn-sm btn-outline-danger\", \"title\": \"Delete\", \"url_template\": \"crm/documents/{id}/delete\", \"confirm\": \"Are you sure you want to delete this document?\"}]}',0,0,1,NULL,'text-end','right',8,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-21 04:02:28'),
(163,26,'title','Position Title','title','link','{\"url_template\": \"hr/positions/{id}/edit\"}',1,1,1,'200px','fw-bold','left',1,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(164,26,'department','Department','department','text',NULL,1,1,1,'150px','','left',2,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(165,26,'level','Level','level','badge','{\"badges\": {\"Mid\": \"light\", \"Lead\": \"warning\", \"Entry\": \"light\", \"Other\": \"dark\", \"Junior\": \"light\", \"Senior\": \"secondary\", \"Manager\": \"success\", \"Director\": \"info\", \"Executive\": \"primary\"}}',1,1,1,'120px','','center',3,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(166,26,'reports_to','Reports To','reports_to','text',NULL,1,0,1,'180px','','left',4,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(167,26,'employee_count','Employees','employee_count','number',NULL,1,0,1,'100px','text-primary fw-bold','center',5,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(168,26,'is_active','Status','is_active','badge','{\"badges\": {\"0\": \"secondary\", \"1\": \"success\"}}',1,1,1,'100px','','center',6,NULL,NULL,1,'2025-11-11 00:36:47','2025-11-11 00:36:47'),
(169,29,'entry_date','Date','entry_date','date','{\"format\":\"m/d/y\"}',1,1,1,NULL,NULL,'left',1,NULL,NULL,1,'2025-11-12 00:31:55','2025-11-12 00:51:47'),
(170,29,'entry_number','Entry Number','entry_number','text',NULL,1,1,1,NULL,NULL,'left',2,NULL,NULL,1,'2025-11-12 00:31:55','2025-11-12 00:31:55'),
(172,29,'description','Description','description','text',NULL,1,1,1,NULL,NULL,'left',4,NULL,NULL,1,'2025-11-12 00:31:55','2025-11-12 00:31:55'),
(173,29,'name','Name','name','text',NULL,1,1,1,NULL,NULL,'left',5,NULL,NULL,1,'2025-11-12 00:31:55','2025-11-12 00:31:55'),
(174,29,'department','Department','department','text',NULL,1,1,1,NULL,NULL,'left',6,NULL,NULL,1,'2025-11-12 00:31:55','2025-11-12 00:31:55'),
(175,29,'location','Location','location','text',NULL,1,1,1,NULL,NULL,'left',7,NULL,NULL,1,'2025-11-12 00:31:55','2025-11-12 00:31:55'),
(176,29,'status','Status','status','badge','{\"badges\":{\"posted\":\"success\",\"draft\":\"secondary\"}}',1,1,1,NULL,NULL,'left',8,NULL,NULL,1,'2025-11-12 00:31:55','2025-11-12 00:31:55'),
(177,29,'actions','Actions','id','action','{\"url_template\":\"accounting/journal/{id}\",\"icon\":\"bi-eye\",\"title\":\"View\"}',0,0,1,NULL,NULL,'left',9,NULL,NULL,1,'2025-11-12 00:31:55','2025-11-12 00:55:32'),
(178,30,'date','Date','date','date','{\"format\":\"m/d/y\"}',1,1,1,NULL,NULL,'left',1,NULL,NULL,1,'2025-11-12 00:31:55','2025-11-12 00:55:32'),
(179,30,'journal_entry','Entry','entry_number','text',NULL,1,1,1,NULL,NULL,'left',2,NULL,NULL,1,'2025-11-12 00:31:55','2025-11-12 12:52:12'),
(180,30,'account_code','Account','account_code','text',NULL,1,1,1,NULL,NULL,'left',3,NULL,NULL,1,'2025-11-12 00:31:55','2025-11-12 12:52:12'),
(181,30,'account_name','Account Name','account_name','text',NULL,1,1,0,NULL,NULL,'left',4,NULL,NULL,1,'2025-11-12 00:31:55','2025-11-12 12:52:12'),
(182,30,'description','Description','description','text',NULL,1,1,1,NULL,NULL,'left',5,NULL,NULL,1,'2025-11-12 00:31:55','2025-11-12 00:31:55'),
(183,30,'debit','Debit','debit','currency','{\"symbol\":\"$\"}',1,0,1,NULL,NULL,'left',6,NULL,NULL,1,'2025-11-12 00:31:55','2025-11-12 00:31:55'),
(184,30,'credit','Credit','credit','currency','{\"symbol\":\"$\"}',1,0,1,NULL,NULL,'left',7,NULL,NULL,1,'2025-11-12 00:31:55','2025-11-12 00:31:55'),
(185,29,'amount','Amount','amount','currency','{\"symbol\":\"$\"}',1,0,1,NULL,NULL,'left',8,NULL,NULL,1,'2025-11-12 00:37:08','2025-11-12 00:37:08'),
(186,30,'actions','Actions','journal_entry_id','action','{\"url_template\":\"accounting/journal/{journal_entry_id}\",\"icon\":\"bi-eye\",\"title\":\"View\"}',0,0,1,NULL,NULL,'left',8,NULL,NULL,1,'2025-11-12 12:50:06','2025-11-12 12:50:06'),
(187,31,'reconciliation_date','Date','reconciliation_date','date','{\"format\":\"m/d/y\"}',1,1,1,NULL,NULL,'left',1,NULL,NULL,1,'2025-11-12 14:26:15','2025-11-12 14:26:15'),
(188,31,'account_name','Bank Account','account_name','text',NULL,1,1,1,NULL,NULL,'left',2,NULL,NULL,1,'2025-11-12 14:26:15','2025-11-12 14:26:15'),
(189,31,'statement_date','Statement Date','statement_date','date','{\"format\":\"m/d/y\"}',1,1,1,NULL,NULL,'left',3,NULL,NULL,1,'2025-11-12 14:26:15','2025-11-12 14:26:15'),
(190,31,'statement_balance','Statement Balance','statement_balance','currency','{\"symbol\":\"$\"}',1,0,1,NULL,NULL,'left',4,NULL,NULL,1,'2025-11-12 14:26:15','2025-11-12 14:26:15'),
(191,31,'book_balance','Book Balance','book_balance','currency','{\"symbol\":\"$\"}',1,0,1,NULL,NULL,'left',5,NULL,NULL,1,'2025-11-12 14:26:15','2025-11-12 14:26:15'),
(192,31,'difference','Difference','difference','currency','{\"symbol\":\"$\"}',1,0,1,NULL,NULL,'left',6,NULL,NULL,1,'2025-11-12 14:26:15','2025-11-12 14:26:15'),
(193,31,'status','Status','status','badge','{\"badges\":{\"completed\":\"success\",\"in_progress\":\"warning\",\"draft\":\"secondary\"}}',1,1,1,NULL,NULL,'left',7,NULL,NULL,1,'2025-11-12 14:26:15','2025-11-12 14:26:15'),
(194,31,'completed_by','Completed By','completed_by','text',NULL,1,1,1,NULL,NULL,'left',8,NULL,NULL,1,'2025-11-12 14:26:15','2025-11-12 14:26:15'),
(195,31,'actions','Actions','id','action','{\"url_template\":\"accounting/reconciliation/{id}\",\"icon\":\"bi-eye\",\"title\":\"View\"}',0,0,1,NULL,NULL,'left',9,NULL,NULL,1,'2025-11-12 14:26:15','2025-11-12 14:26:15'),
(196,32,'expense_date','Date','expense_date','date','{\"format\":\"m/d/y\"}',1,1,1,NULL,NULL,'left',1,NULL,NULL,1,'2025-11-12 14:42:10','2025-11-12 14:42:10'),
(197,32,'expense_number','Expense #','expense_number','text',NULL,1,1,1,NULL,NULL,'left',2,NULL,NULL,1,'2025-11-12 14:42:10','2025-11-12 14:42:10'),
(198,32,'category','Category','category','badge','{\"color\":\"secondary\"}',1,1,1,NULL,NULL,'left',3,NULL,NULL,1,'2025-11-12 14:42:10','2025-11-12 14:42:10'),
(199,32,'vendor','Vendor','vendor','text',NULL,1,1,1,NULL,NULL,'left',4,NULL,NULL,1,'2025-11-12 14:42:10','2025-11-12 14:42:10'),
(200,32,'employee_name','Employee','employee_name','text',NULL,1,1,1,NULL,NULL,'left',5,NULL,NULL,1,'2025-11-12 14:42:10','2025-11-12 14:42:10'),
(201,32,'total_amount','Amount','total_amount','currency',NULL,1,1,1,NULL,NULL,'right',6,NULL,NULL,1,'2025-11-12 14:42:10','2025-11-12 14:42:10'),
(202,32,'status','Status','status','badge','{\"color_map\":{\"paid\":\"success\",\"approved\":\"primary\",\"pending_approval\":\"warning\",\"rejected\":\"danger\",\"draft\":\"secondary\"}}',1,1,1,NULL,NULL,'left',7,NULL,NULL,1,'2025-11-12 14:42:10','2025-11-12 14:42:10'),
(203,32,'receipt_file','Receipt','receipt_file','boolean','{\"true_icon\":\"bi-paperclip\",\"false_icon\":\"bi-dash\",\"align\":\"center\"}',0,1,1,NULL,NULL,'center',8,NULL,NULL,1,'2025-11-12 14:42:10','2025-11-12 14:42:10'),
(204,32,'actions','Actions','id','action','{\"url_template\":\"accounting/expenses/{id}\",\"icon\":\"bi-eye\",\"title\":\"View\"}',0,1,1,NULL,NULL,'center',9,NULL,NULL,1,'2025-11-12 14:42:10','2025-11-12 14:42:10'),
(205,33,'budget_name','Budget Name','budget_name','text',NULL,1,1,1,NULL,NULL,'left',1,NULL,NULL,1,'2025-11-12 14:42:10','2025-11-12 14:42:10'),
(206,33,'department','Department','department','text',NULL,1,1,1,NULL,NULL,'left',2,NULL,NULL,1,'2025-11-12 14:42:10','2025-11-12 14:42:10'),
(207,33,'start_date','Start Date','start_date','date','{\"format\":\"m/d/y\"}',1,1,1,NULL,NULL,'left',3,NULL,NULL,1,'2025-11-12 14:42:10','2025-11-12 14:42:10'),
(208,33,'end_date','End Date','end_date','date','{\"format\":\"m/d/y\"}',1,1,1,NULL,NULL,'left',4,NULL,NULL,1,'2025-11-12 14:42:10','2025-11-12 14:42:10'),
(209,33,'budgeted_amount','Budgeted','budgeted_amount','currency',NULL,1,1,1,NULL,NULL,'right',5,NULL,NULL,1,'2025-11-12 14:42:10','2025-11-12 14:42:10'),
(210,33,'actual_spent','Spent','actual_spent','currency',NULL,1,1,1,NULL,NULL,'right',6,NULL,NULL,1,'2025-11-12 14:42:10','2025-11-12 14:42:10'),
(211,33,'status','Status','status','badge','{\"color_map\":{\"active\":\"success\",\"approved\":\"primary\",\"closed\":\"secondary\",\"draft\":\"warning\"}}',1,1,1,NULL,NULL,'left',7,NULL,NULL,1,'2025-11-12 14:42:10','2025-11-12 14:42:10'),
(212,33,'actions','Actions','id','action','{\"url_template\":\"accounting/budgets/{id}\",\"icon\":\"bi-eye\",\"title\":\"View\"}',0,1,1,NULL,NULL,'center',8,NULL,NULL,1,'2025-11-12 14:42:10','2025-11-12 14:42:10'),
(213,2,'actions','Actions','id','buttons','{\"buttons\": [{\"icon\": \"bi-envelope\", \"class\": \"btn-sm btn-outline-primary\", \"title\": \"Send Email\", \"url_template\": \"email/compose?to={email}&name={display_name}\"}, {\"icon\": \"bi-eye\", \"class\": \"btn-sm btn-outline-theme\", \"title\": \"View\", \"url_template\": \"companies/{id}\"}, {\"icon\": \"bi-pencil\", \"class\": \"btn-sm btn-outline-theme\", \"title\": \"Edit\", \"url_template\": \"companies/{id}/edit\"}]}',0,0,1,'100px',NULL,'center',100,NULL,NULL,1,'2025-11-26 15:35:30','2025-11-26 15:49:19'),
(214,21,'actions','Actions','id','buttons','{\"buttons\": [{\"icon\": \"bi-envelope\", \"class\": \"btn-sm btn-outline-primary\", \"title\": \"Send Email\", \"url_template\": \"email/compose?to={email}&name={full_name}\"}, {\"icon\": \"bi-eye\", \"class\": \"btn-sm btn-outline-theme\", \"title\": \"View\", \"url_template\": \"crm/contacts/{id}\"}, {\"icon\": \"bi-pencil\", \"class\": \"btn-sm btn-outline-theme\", \"title\": \"Edit\", \"url_template\": \"crm/contacts/{id}/edit\"}]}',0,0,1,'100px',NULL,'center',100,NULL,NULL,1,'2025-11-26 15:35:30','2025-11-26 15:49:19'),
(215,1,'actions','Actions','id','buttons','{\"buttons\": [{\"icon\": \"bi-eye\", \"class\": \"btn-sm btn-outline-theme\", \"title\": \"View\", \"url_template\": \"products/{id}\"}, {\"icon\": \"bi-pencil\", \"class\": \"btn-sm btn-outline-theme\", \"title\": \"Edit\", \"url_template\": \"products/{id}/edit\", \"permission\": \"inventory.edit\"}, {\"icon\": \"bi-trash\", \"class\": \"btn-sm btn-outline-danger\", \"title\": \"Delete\", \"url_template\": \"products/{id}/delete\", \"permission\": \"inventory.delete\", \"method\": \"POST\", \"confirm\": \"Are you sure you want to delete this product?\"}]}',0,0,1,'150px','text-end','right',100,NULL,NULL,1,'2025-12-05 10:23:36','2025-12-05 10:23:36'),
(216,11,'actions','Actions','id','buttons','{\n    \"buttons\": [\n        {\n            \"url_template\": \"inventory/categories/{id}\",\n            \"icon\": \"bi-eye\",\n            \"class\": \"btn-outline-theme\",\n            \"title\": \"View\"\n        },\n        {\n            \"url_template\": \"inventory/categories/{id}/edit\",\n            \"icon\": \"bi-pencil\",\n            \"class\": \"btn-outline-primary\",\n            \"title\": \"Edit\"\n        },\n        {\n            \"url_template\": \"inventory/categories/{id}/delete\",\n            \"icon\": \"bi-trash\",\n            \"class\": \"btn-outline-danger\",\n            \"title\": \"Delete\",\n            \"method\": \"POST\",\n            \"confirm\": \"Are you sure you want to delete this category?\"\n        }\n    ]\n}',0,0,1,'150px','','center',6,'',NULL,1,'2025-12-05 10:44:58','2025-12-05 10:51:33');
/*!40000 ALTER TABLE `table_columns` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `table_configurations`
--

DROP TABLE IF EXISTS `table_configurations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `table_configurations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `table_key` varchar(100) NOT NULL,
  `table_name` varchar(255) NOT NULL,
  `entity_name` varchar(100) NOT NULL,
  `base_query` text NOT NULL COMMENT 'Base SQL query for data',
  `default_sort_column` varchar(100) DEFAULT 'id',
  `default_sort_direction` enum('ASC','DESC') DEFAULT 'ASC',
  `per_page` int(11) DEFAULT 25,
  `enable_search` tinyint(1) DEFAULT 1,
  `enable_export` tinyint(1) DEFAULT 1,
  `enable_actions` tinyint(1) DEFAULT 1,
  `action_column_width` varchar(20) DEFAULT '150px',
  `permission_required` varchar(100) DEFAULT NULL,
  `css_class` varchar(255) DEFAULT 'table table-hover',
  `is_active` tinyint(1) DEFAULT 1,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `table_key` (`table_key`),
  KEY `idx_table_key` (`table_key`),
  KEY `idx_is_active` (`is_active`)
) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `table_configurations`
--

LOCK TABLES `table_configurations` WRITE;
/*!40000 ALTER TABLE `table_configurations` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `table_configurations` VALUES
(1,'products_list','Products','product','SELECT p.id, p.sku, p.name, p.product_type, c.name as category_name, p.selling_price, p.cost_price, p.status, p.created_at \r\n   FROM products p \r\n   LEFT JOIN product_categories c ON p.category_id = c.id','name','ASC',25,1,1,1,'150px','inventory.view','table table-hover',1,'2025-11-06 03:56:12','2025-11-06 03:56:12'),
(2,'customers_list','Customers','customer','SELECT c.id, c.customer_type, c.company_type, COALESCE(c.company_name, CONCAT(c.first_name, \" \", c.last_name)) as display_name, c.email, c.phone, c.billing_city as city, c.status, \"\" as client_name FROM customers c','display_name','ASC',25,1,1,1,'150px','crm.view','table table-hover',1,'2025-11-06 03:56:12','2025-11-26 15:28:13'),
(3,'employees_list','Employees','employee','SELECT e.id, e.employee_id, e.position, e.hire_date, e.status,\r\n            CONCAT(u.first_name, \" \", u.last_name) as full_name,\r\n            u.email,\r\n            d.name as department_name\r\n     FROM employees e\r\n     LEFT JOIN users u ON e.user_id = u.id\r\n     LEFT JOIN departments d ON e.department_id = d.id','employee_id','ASC',25,1,1,1,'150px','hr.view','table table-hover',1,'2025-11-06 03:56:12','2025-11-07 19:43:41'),
(4,'suppliers_list','Suppliers','supplier','SELECT s.id, s.company_name, s.contact_person, s.email, s.phone, s.status, s.created_at\r\n   FROM suppliers s','company_name','ASC',25,1,1,1,'150px','purchases.view','table table-hover',1,'2025-11-06 04:02:22','2025-11-06 04:02:22'),
(5,'salesorders_list','Sales Orders','sales_order','SELECT so.id, so.order_number, c.company_name as customer_name, so.order_date, so.delivery_date, \r\n   so.total_amount, so.status, so.created_at\r\n   FROM sales_orders so\r\n   LEFT JOIN customers c ON so.customer_id = c.id','order_date','DESC',25,1,1,1,'150px','sales.view','table table-hover',1,'2025-11-06 04:02:22','2025-11-06 04:02:22'),
(6,'purchaseorders_list','Purchase Orders','purchase_order','SELECT po.id, po.po_number, s.company_name as supplier_name, po.order_date, po.expected_delivery_date,\r\n   po.total_amount, po.status, po.created_at\r\n   FROM purchase_orders po\r\n   LEFT JOIN suppliers s ON po.supplier_id = s.id','order_date','DESC',25,1,1,1,'150px','purchases.view','table table-hover',1,'2025-11-06 04:02:22','2025-11-06 04:02:22'),
(7,'workorders_list','Work Orders','work_order','SELECT wo.id, wo.wo_number, p.name as product_name, wo.quantity, wo.start_date, wo.end_date,\r\n   wo.status, wo.priority, wo.created_at\r\n   FROM work_orders wo\r\n   LEFT JOIN products p ON wo.product_id = p.id','start_date','DESC',25,1,1,1,'150px','production.view','table table-hover',1,'2025-11-06 04:02:22','2025-11-06 04:02:22'),
(8,'invoices_list','Invoices','invoice','SELECT i.id, i.invoice_number, c.company_name as customer_name, i.invoice_date, i.due_date,\r\n   i.total_amount, i.status, i.payment_status, i.created_at\r\n   FROM invoices i\r\n   LEFT JOIN customers c ON i.customer_id = c.id','invoice_date','DESC',25,1,1,1,'150px','accounting.view','table table-hover',1,'2025-11-06 04:02:22','2025-11-06 04:02:22'),
(10,'customer_contacts_list','Customer Contacts','customer_contact','SELECT cc.id, cc.customer_id, cc.first_name, cc.last_name, cc.email, cc.phone, cc.position, cc.is_primary, cc.created_at\r\n   FROM customer_contacts cc\r\n   LEFT JOIN customers c ON cc.customer_id = c.id','first_name','ASC',25,1,1,1,'150px','crm.view','table table-hover',1,'2025-11-06 04:10:37','2025-11-06 04:17:54'),
(11,'product_categories_list','Product Categories','product_category','SELECT \n    c.id,\n    c.name,\n    c.description,\n    c.is_active,\n    COUNT(p.id) as product_count,\n    COALESCE(SUM(i.quantity), 0) as total_stock,\n    c.created_at,\n    c.updated_at\nFROM product_categories c\nLEFT JOIN products p ON c.id = p.category_id AND p.deleted_at IS NULL\nLEFT JOIN inventory i ON p.id = i.product_id\nWHERE c.deleted_at IS NULL\nGROUP BY c.id','name','ASC',25,1,1,1,'150px','inventory.view','table table-hover',1,'2025-11-06 11:34:01','2025-12-05 11:19:55'),
(12,'lot_serial_list','Lot/Serial Numbers','lot_serial','SELECT \r\n    ls.id,\r\n    ls.product_id,\r\n    ls.lot_number,\r\n    ls.serial_number,\r\n    p.name as product_name,\r\n    p.sku as product_sku,\r\n    l.name as location_name,\r\n    ls.manufacture_date,\r\n    ls.expiration_date,\r\n    ls.quantity,\r\n    ls.status,\r\n    ls.created_at\r\n  FROM lot_serial_numbers ls\r\n  LEFT JOIN products p ON ls.product_id = p.id\r\n  LEFT JOIN locations l ON ls.location_id = l.id','created_at','DESC',25,1,1,1,'150px','inventory.view','table table-hover',1,'2025-11-06 12:32:20','2025-11-06 12:32:20'),
(20,'clients_list','clients','Client','SELECT id, customer_type as client_type, company_name as display_name, email, phone, city, status, 0 as customer_count FROM customers WHERE company_type = \"client\"','display_name','ASC',25,1,1,0,'150px','crm.view','table table-hover',1,'2025-11-07 19:23:03','2025-11-26 15:15:23'),
(21,'contacts_list','customer_contacts','Contact','SELECT id, full_name, last_name, first_name, contact_type, entity_name, entity_id, position as title, email, phone, is_primary, company_type\n     FROM (\n         SELECT cc.id, \n                CONCAT(cc.first_name, \" \", cc.last_name) as full_name,\n                cc.last_name, cc.first_name,\n                \"company\" as contact_type,\n                COALESCE(c.company_name, CONCAT(c.first_name, \" \", c.last_name)) as entity_name,\n                c.id as entity_id,\n                cc.position, cc.email, cc.phone, cc.is_primary,\n                c.company_type\n         FROM customer_contacts cc\n         LEFT JOIN customers c ON cc.customer_id = c.id\n         \n         UNION ALL\n         \n         SELECT gc.id,\n                CONCAT(gc.first_name, \" \", gc.last_name) as full_name,\n                gc.last_name, gc.first_name,\n                \"general\" as contact_type,\n                gc.company as entity_name,\n                NULL as entity_id,\n                gc.position, gc.email, gc.phone, 0 as is_primary,\n                NULL as company_type\n         FROM general_contacts gc\n     ) all_contacts','full_name','ASC',25,1,1,0,'150px','crm.view','table table-hover',1,'2025-11-07 19:23:15','2025-11-24 17:48:41'),
(25,'documents_list','crm_documents','document','SELECT \r\n        d.id,\r\n        d.document_name,\r\n        d.document_type,\r\n        d.customer_id,\r\n        COALESCE(c.company_name, CONCAT(c.first_name, \" \", c.last_name)) as customer_name,\r\n        d.version,\r\n        d.is_signed,\r\n        d.signed_date,\r\n        d.expiry_date,\r\n        d.created_at,\r\n        CONCAT(u.first_name, \" \", u.last_name) as uploader_name,\r\n        d.description\r\n    FROM crm_documents d\r\n    LEFT JOIN customers c ON d.customer_id = c.id\r\n    LEFT JOIN users u ON d.uploaded_by = u.id','created_at','DESC',25,1,1,1,'150px','crm.view','table table-hover',1,'2025-11-08 10:40:41','2025-11-08 10:40:41'),
(26,'positions_list','positions','Position','SELECT p.id, p.title, p.department, p.level, p.description, pr.title as reports_to, p.is_active, COUNT(DISTINCT e.id) as employee_count\r\n     FROM positions p\r\n     LEFT JOIN positions pr ON p.reports_to_position_id = pr.id\r\n     LEFT JOIN employees e ON p.id = e.position_id\r\n     GROUP BY p.id, p.title, p.department, p.level, p.description, pr.title, p.is_active','title','ASC',25,1,1,1,'200px','hr.view','table table-hover',1,'2025-11-08 15:44:35','2025-11-15 12:18:24'),
(29,'journal_entries_list','Journal Entries','journal_entries','SELECT \n    je.id,\n    je.entry_number,\n    je.entry_date,\n    je.description,\n    je.name,\n    je.department,\n    je.location,\n    je.status,\n    COALESCE((SELECT SUM(debit) FROM journal_entry_lines WHERE entry_id = je.id), 0) as amount,\n    je.created_at\nFROM journal_entries je','entry_date','DESC',25,1,1,1,'150px',NULL,'table table-hover',1,'2025-11-12 00:31:55','2025-11-12 00:36:37'),
(30,'ledger_list','General Ledger','journal_entry_lines','SELECT \n    jel.id,\n    je.entry_date as date,\n    je.entry_number,\n    je.id as journal_entry_id,\n    je.description as journal_description,\n    coa.account_code,\n    coa.account_name,\n    jel.description,\n    jel.debit,\n    jel.credit,\n    CASE WHEN jel.debit > 0 THEN \"debit\" ELSE \"credit\" END as entry_type,\n    CASE WHEN jel.debit > 0 THEN jel.debit ELSE jel.credit END as amount\nFROM journal_entry_lines jel\nJOIN journal_entries je ON jel.entry_id = je.id\nJOIN chart_of_accounts coa ON jel.account_id = coa.id\nWHERE je.status = \"posted\"','date','DESC',50,1,1,1,'150px',NULL,'table table-hover',1,'2025-11-12 00:31:55','2025-11-12 15:24:20'),
(31,'reconciliation_list','Bank Reconciliations','bank_reconciliations','SELECT \n        br.id,\n        br.reconciliation_date,\n        br.statement_date,\n        br.statement_balance,\n        br.book_balance,\n        br.difference,\n        br.status,\n        br.completed_at,\n        ba.account_name,\n        ba.bank_name,\n        CONCAT(u.first_name, \" \", u.last_name) as completed_by\n    FROM bank_reconciliations br\n    LEFT JOIN bank_accounts ba ON br.bank_account_id = ba.id\n    LEFT JOIN users u ON br.completed_by = u.id','reconciliation_date','DESC',25,1,1,1,'150px',NULL,'table table-hover',1,'2025-11-12 14:26:15','2025-11-12 14:26:15'),
(32,'expenses_list','Expenses','expense','SELECT e.id, e.expense_date, e.expense_number, e.category, e.vendor, \n            CONCAT(emp.first_name, \" \", emp.last_name) as employee_name,\n            e.total_amount, e.status, e.receipt_file\n     FROM expenses e\n     LEFT JOIN users emp ON e.employee_id = emp.id\n     WHERE 1=1','expense_date','DESC',50,1,1,1,'150px',NULL,'table table-hover',1,'2025-11-12 14:42:10','2025-11-12 14:42:10'),
(33,'budgets_list','Budgets','budget','SELECT b.id, b.budget_name, b.department, b.start_date, b.end_date, \n            b.total_amount as budgeted_amount, b.status,\n            0 as actual_spent\n     FROM budgets b\n     WHERE 1=1','fiscal_year','DESC',50,1,1,1,'150px',NULL,'table table-hover',1,'2025-11-12 14:42:10','2025-11-12 14:42:10');
/*!40000 ALTER TABLE `table_configurations` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `task_resource_allocations`
--

DROP TABLE IF EXISTS `task_resource_allocations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `task_resource_allocations` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `task_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `allocation_date` date NOT NULL,
  `allocated_hours` decimal(5,2) NOT NULL DEFAULT 0.00,
  `actual_hours` decimal(5,2) DEFAULT NULL COMMENT 'Actual hours logged',
  `notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_task_user_date` (`task_id`,`user_id`,`allocation_date`),
  KEY `idx_user_date_alloc` (`user_id`,`allocation_date`),
  KEY `idx_task_alloc` (`task_id`),
  CONSTRAINT `task_resource_allocations_ibfk_1` FOREIGN KEY (`task_id`) REFERENCES `project_tasks` (`id`) ON DELETE CASCADE,
  CONSTRAINT `task_resource_allocations_ibfk_2` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `task_resource_allocations`
--

LOCK TABLES `task_resource_allocations` WRITE;
/*!40000 ALTER TABLE `task_resource_allocations` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `task_resource_allocations` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `tax_exemptions`
--

DROP TABLE IF EXISTS `tax_exemptions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `tax_exemptions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `customer_id` int(10) unsigned NOT NULL,
  `jurisdiction_id` int(10) unsigned DEFAULT NULL COMMENT 'Null means exempt from all jurisdictions',
  `exemption_type` enum('resale','government','nonprofit','agricultural','manufacturing','other') NOT NULL,
  `certificate_number` varchar(100) DEFAULT NULL,
  `certificate_file_path` varchar(500) DEFAULT NULL,
  `effective_date` date NOT NULL,
  `expiration_date` date DEFAULT NULL COMMENT 'Null if no expiration',
  `is_active` tinyint(1) DEFAULT 1,
  `notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `created_by` int(10) unsigned DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `updated_by` int(10) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_customer` (`customer_id`),
  KEY `idx_jurisdiction` (`jurisdiction_id`),
  KEY `idx_active` (`is_active`),
  KEY `idx_expiration` (`expiration_date`),
  KEY `created_by` (`created_by`),
  KEY `updated_by` (`updated_by`),
  CONSTRAINT `tax_exemptions_ibfk_1` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE,
  CONSTRAINT `tax_exemptions_ibfk_2` FOREIGN KEY (`jurisdiction_id`) REFERENCES `tax_jurisdictions` (`id`) ON DELETE CASCADE,
  CONSTRAINT `tax_exemptions_ibfk_3` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `tax_exemptions_ibfk_4` FOREIGN KEY (`updated_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tax_exemptions`
--

LOCK TABLES `tax_exemptions` WRITE;
/*!40000 ALTER TABLE `tax_exemptions` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `tax_exemptions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `tax_filings`
--

DROP TABLE IF EXISTS `tax_filings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `tax_filings` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `filing_number` varchar(50) NOT NULL,
  `tax_type` enum('income_tax','sales_tax','vat','payroll_tax','property_tax','other') NOT NULL,
  `filing_period` enum('monthly','quarterly','annually') NOT NULL,
  `period_start` date NOT NULL,
  `period_end` date NOT NULL,
  `due_date` date NOT NULL,
  `filing_date` date DEFAULT NULL,
  `tax_amount` decimal(15,2) NOT NULL,
  `paid_amount` decimal(15,2) DEFAULT 0.00,
  `payment_date` date DEFAULT NULL,
  `status` enum('draft','pending','filed','paid','overdue') DEFAULT 'draft',
  `payment_reference` varchar(100) DEFAULT NULL,
  `filing_reference` varchar(100) DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `attachments` text DEFAULT NULL COMMENT 'JSON array of file paths',
  `prepared_by` int(10) unsigned DEFAULT NULL,
  `filed_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `filing_number` (`filing_number`),
  KEY `idx_filing_number` (`filing_number`),
  KEY `idx_tax_type` (`tax_type`),
  KEY `idx_status` (`status`),
  KEY `idx_due_date` (`due_date`),
  KEY `idx_period` (`period_start`,`period_end`),
  KEY `prepared_by` (`prepared_by`),
  KEY `filed_by` (`filed_by`),
  CONSTRAINT `tax_filings_ibfk_1` FOREIGN KEY (`prepared_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `tax_filings_ibfk_2` FOREIGN KEY (`filed_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tax_filings`
--

LOCK TABLES `tax_filings` WRITE;
/*!40000 ALTER TABLE `tax_filings` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `tax_filings` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `tax_jurisdictions`
--

DROP TABLE IF EXISTS `tax_jurisdictions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `tax_jurisdictions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `jurisdiction_code` varchar(50) NOT NULL,
  `jurisdiction_name` varchar(200) NOT NULL,
  `jurisdiction_type` enum('federal','state','county','city','district') NOT NULL,
  `parent_jurisdiction_id` int(10) unsigned DEFAULT NULL,
  `default_rate` decimal(8,5) NOT NULL DEFAULT 0.00000 COMMENT 'Default tax rate (e.g., 0.0825 for 8.25%)',
  `state_code` varchar(2) DEFAULT NULL COMMENT 'US state abbreviation',
  `county_name` varchar(100) DEFAULT NULL,
  `city_name` varchar(100) DEFAULT NULL,
  `zip_code_pattern` varchar(20) DEFAULT NULL COMMENT 'Zip or zip range (e.g., "94102" or "94000-94999")',
  `tax_authority_name` varchar(200) DEFAULT NULL,
  `tax_authority_id` varchar(100) DEFAULT NULL COMMENT 'Official ID from tax authority',
  `filing_frequency` enum('monthly','quarterly','annual','other') DEFAULT 'quarterly',
  `due_day_of_month` int(11) DEFAULT NULL COMMENT 'Day payment is due (e.g., 20th of month)',
  `account_number` varchar(100) DEFAULT NULL COMMENT 'Account number with tax authority',
  `is_active` tinyint(1) DEFAULT 1,
  `effective_date` date NOT NULL COMMENT 'Date this rate became effective',
  `expiration_date` date DEFAULT NULL COMMENT 'Date this rate expires (null if current)',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `created_by` int(10) unsigned DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `updated_by` int(10) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `jurisdiction_code` (`jurisdiction_code`),
  KEY `idx_jurisdiction_type` (`jurisdiction_type`),
  KEY `idx_state` (`state_code`),
  KEY `idx_active` (`is_active`),
  KEY `idx_effective_dates` (`effective_date`,`expiration_date`),
  KEY `parent_jurisdiction_id` (`parent_jurisdiction_id`),
  KEY `created_by` (`created_by`),
  KEY `updated_by` (`updated_by`),
  CONSTRAINT `tax_jurisdictions_ibfk_1` FOREIGN KEY (`parent_jurisdiction_id`) REFERENCES `tax_jurisdictions` (`id`) ON DELETE SET NULL,
  CONSTRAINT `tax_jurisdictions_ibfk_2` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `tax_jurisdictions_ibfk_3` FOREIGN KEY (`updated_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tax_jurisdictions`
--

LOCK TABLES `tax_jurisdictions` WRITE;
/*!40000 ALTER TABLE `tax_jurisdictions` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `tax_jurisdictions` VALUES
(1,'US-FED','United States Federal','federal',NULL,0.00000,NULL,NULL,NULL,NULL,NULL,NULL,'quarterly',NULL,NULL,1,'2020-01-01',NULL,'2025-11-15 18:08:20',NULL,'2025-11-15 18:08:20',NULL),
(2,'US-CA','California State','state',NULL,0.07250,'CA',NULL,NULL,NULL,NULL,NULL,'quarterly',30,NULL,1,'2020-01-01',NULL,'2025-11-15 18:08:20',NULL,'2025-11-15 18:08:20',NULL),
(3,'US-TX','Texas State','state',NULL,0.06250,'TX',NULL,NULL,NULL,NULL,NULL,'quarterly',20,NULL,1,'2020-01-01',NULL,'2025-11-15 18:08:20',NULL,'2025-11-15 18:08:20',NULL),
(4,'US-NY','New York State','state',NULL,0.04000,'NY',NULL,NULL,NULL,NULL,NULL,'quarterly',20,NULL,1,'2020-01-01',NULL,'2025-11-15 18:08:20',NULL,'2025-11-15 18:08:20',NULL),
(5,'US-FL','Florida State','state',NULL,0.06000,'FL',NULL,NULL,NULL,NULL,NULL,'monthly',20,NULL,1,'2020-01-01',NULL,'2025-11-15 18:08:20',NULL,'2025-11-15 18:08:20',NULL),
(6,'US-IL','Illinois State','state',NULL,0.06250,'IL',NULL,NULL,NULL,NULL,NULL,'monthly',20,NULL,1,'2020-01-01',NULL,'2025-11-15 18:08:20',NULL,'2025-11-15 18:08:20',NULL),
(7,'US-CA-SF','San Francisco City','city',2,0.01250,'CA',NULL,'San Francisco',NULL,NULL,NULL,'quarterly',NULL,NULL,1,'2020-01-01',NULL,'2025-11-15 18:08:20',NULL,'2025-11-15 18:08:20',NULL),
(8,'US-TX-AUSTIN','Austin City','city',3,0.01000,'TX',NULL,'Austin',NULL,NULL,NULL,'quarterly',NULL,NULL,1,'2020-01-01',NULL,'2025-11-15 18:08:20',NULL,'2025-11-15 18:08:20',NULL);
/*!40000 ALTER TABLE `tax_jurisdictions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `tax_payments`
--

DROP TABLE IF EXISTS `tax_payments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `tax_payments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `payment_number` varchar(50) NOT NULL,
  `jurisdiction_id` int(10) unsigned NOT NULL,
  `period_start` date NOT NULL,
  `period_end` date NOT NULL,
  `filing_type` enum('monthly','quarterly','annual','amended') NOT NULL,
  `total_taxable_sales` decimal(15,2) NOT NULL DEFAULT 0.00,
  `total_tax_collected` decimal(15,2) NOT NULL DEFAULT 0.00,
  `adjustments` decimal(15,2) DEFAULT 0.00 COMMENT 'Penalties, interest, credits',
  `total_payment` decimal(15,2) NOT NULL,
  `payment_date` date DEFAULT NULL,
  `payment_method` enum('check','ach','wire','online','other') DEFAULT 'online',
  `reference_number` varchar(100) DEFAULT NULL COMMENT 'Check number or confirmation number',
  `confirmation_number` varchar(200) DEFAULT NULL,
  `journal_entry_id` int(11) DEFAULT NULL COMMENT 'Link to journal entry if posted',
  `status` enum('draft','filed','paid','late','amended') DEFAULT 'draft',
  `filed_date` date DEFAULT NULL,
  `due_date` date NOT NULL,
  `memo` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `created_by` int(10) unsigned DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `updated_by` int(10) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `payment_number` (`payment_number`),
  KEY `idx_jurisdiction` (`jurisdiction_id`),
  KEY `idx_period` (`period_start`,`period_end`),
  KEY `idx_status` (`status`),
  KEY `idx_due_date` (`due_date`),
  KEY `idx_payment_number` (`payment_number`),
  KEY `created_by` (`created_by`),
  KEY `updated_by` (`updated_by`),
  CONSTRAINT `tax_payments_ibfk_1` FOREIGN KEY (`jurisdiction_id`) REFERENCES `tax_jurisdictions` (`id`),
  CONSTRAINT `tax_payments_ibfk_2` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `tax_payments_ibfk_3` FOREIGN KEY (`updated_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tax_payments`
--

LOCK TABLES `tax_payments` WRITE;
/*!40000 ALTER TABLE `tax_payments` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `tax_payments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `tax_rate_history`
--

DROP TABLE IF EXISTS `tax_rate_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `tax_rate_history` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `jurisdiction_id` int(10) unsigned NOT NULL,
  `old_rate` decimal(8,5) DEFAULT NULL,
  `new_rate` decimal(8,5) NOT NULL,
  `effective_date` date NOT NULL,
  `change_reason` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `created_by` int(10) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_jurisdiction` (`jurisdiction_id`),
  KEY `idx_effective_date` (`effective_date`),
  KEY `created_by` (`created_by`),
  CONSTRAINT `tax_rate_history_ibfk_1` FOREIGN KEY (`jurisdiction_id`) REFERENCES `tax_jurisdictions` (`id`) ON DELETE CASCADE,
  CONSTRAINT `tax_rate_history_ibfk_2` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tax_rate_history`
--

LOCK TABLES `tax_rate_history` WRITE;
/*!40000 ALTER TABLE `tax_rate_history` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `tax_rate_history` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `tax_settings`
--

DROP TABLE IF EXISTS `tax_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `tax_settings` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `location_id` int(11) DEFAULT NULL COMMENT 'NULL = global default',
  `sales_tax_rate` decimal(5,2) DEFAULT 0.00 COMMENT 'Default sales tax rate %',
  `use_tax_rate` decimal(5,2) DEFAULT 0.00 COMMENT 'Use tax rate %',
  `tax_jurisdiction` varchar(100) DEFAULT NULL COMMENT 'Tax jurisdiction name',
  `tax_id_number` varchar(50) DEFAULT NULL COMMENT 'Tax ID/EIN for this jurisdiction',
  `collect_tax_on_shipping` tinyint(1) DEFAULT 0 COMMENT 'Charge tax on shipping',
  `tax_inclusive_pricing` tinyint(1) DEFAULT 0 COMMENT 'Prices include tax',
  `tax_rounding_method` enum('per_line','total') DEFAULT 'total' COMMENT 'When to round tax',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_location` (`location_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Sales and use tax configuration by location';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tax_settings`
--

LOCK TABLES `tax_settings` WRITE;
/*!40000 ALTER TABLE `tax_settings` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `tax_settings` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `temp_pipedrive_deal_map`
--

DROP TABLE IF EXISTS `temp_pipedrive_deal_map`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `temp_pipedrive_deal_map` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `pipedrive_deal_id` varchar(100) NOT NULL COMMENT 'Original Pipedrive Deal/Lead ID',
  `pipedrive_deal_title` varchar(255) NOT NULL COMMENT 'Deal title from Pipedrive',
  `opportunity_id` int(10) unsigned NOT NULL COMMENT 'Local opportunity table ID',
  `import_type` enum('deal','lead') NOT NULL COMMENT 'Whether from DEALS.csv or LEADS.csv',
  `import_status` enum('pending','imported','skipped','error') DEFAULT 'imported',
  `import_note` text DEFAULT NULL COMMENT 'Import notes or errors',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_pipedrive_deal` (`pipedrive_deal_id`),
  KEY `idx_opportunity_id` (`opportunity_id`),
  KEY `idx_deal_title` (`pipedrive_deal_title`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci COMMENT='Maps Pipedrive deal/lead IDs to opportunity IDs';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `temp_pipedrive_deal_map`
--

LOCK TABLES `temp_pipedrive_deal_map` WRITE;
/*!40000 ALTER TABLE `temp_pipedrive_deal_map` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `temp_pipedrive_deal_map` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `temp_pipedrive_import_log`
--

DROP TABLE IF EXISTS `temp_pipedrive_import_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `temp_pipedrive_import_log` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `import_phase` enum('organizations','deals','leads','notes','files') NOT NULL,
  `record_identifier` varchar(255) DEFAULT NULL COMMENT 'Pipedrive ID or name being imported',
  `status` enum('success','warning','error','skipped') NOT NULL,
  `message` text DEFAULT NULL,
  `data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'Additional context data' CHECK (json_valid(`data`)),
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_phase` (`import_phase`),
  KEY `idx_status` (`status`),
  KEY `idx_created` (`created_at`)
) ENGINE=InnoDB AUTO_INCREMENT=28013 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci COMMENT='Detailed log of Pipedrive import process';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `temp_pipedrive_import_log`
--

LOCK TABLES `temp_pipedrive_import_log` WRITE;
/*!40000 ALTER TABLE `temp_pipedrive_import_log` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `temp_pipedrive_import_log` VALUES
(1,'leads','6f361c30-2b5f-11f0-b07c-d722488bb431','error','Organization not found: ASPETTO INC',NULL,'2025-11-13 22:13:19'),
(2,'leads','fb866860-efba-11ef-9354-679a087e5dde','error','Organization not found: Analyticsystems',NULL,'2025-11-13 22:13:19'),
(3,'leads','ffe57cc0-efba-11ef-a25f-27af6aa53296','error','Organization not found: Analyticsystems',NULL,'2025-11-13 22:13:19'),
(4,'leads','0b43c180-d440-11ef-8a91-dd55c3e12ee5','error','Organization not found: Enginuity Innovation',NULL,'2025-11-13 22:13:19'),
(5,'leads','05230a40-efbb-11ef-89e4-8f6bc68f48ca','error','Organization not found: MIT',NULL,'2025-11-13 22:13:19'),
(6,'leads','ec25f6a0-1167-11f0-b0ea-9dcf99750a6f','error','Organization not found: Kippertool',NULL,'2025-11-13 22:13:19'),
(7,'leads','5a350db0-1169-11f0-8a93-f56042dc8e77','error','Organization not found: HumaNoid',NULL,'2025-11-13 22:13:19'),
(8,'leads','6cc1d900-4557-11f0-b7c8-dfe6c1885cc5','error','Organization not found: Applied Research Laboratories',NULL,'2025-11-13 22:13:19'),
(9,'leads','04ba3c30-c9f1-11ef-a932-67e1e8676586','error','Organization not found: Anirudh Sundar organization',NULL,'2025-11-13 22:13:19'),
(10,'leads','bea716a0-d9a4-11ef-a239-457311a42633','error','Organization not found: Alto Connect',NULL,'2025-11-13 22:13:19'),
(11,'leads','864d34e0-d9a6-11ef-9388-bd9b59a2c5c0','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(12,'leads','ed8db2f0-e965-11ef-b439-67371fcb719d','error','Organization not found: Mid Atlantic Drone Development, LLC',NULL,'2025-11-13 22:13:19'),
(13,'leads','19f446e0-e4a9-11ef-8386-6bcd4ee3c2c8','error','Organization not found: Bluetti',NULL,'2025-11-13 22:13:19'),
(14,'leads','213370c0-e4a9-11ef-a6d5-b7b59f53aff5','error','Organization not found: Inergysolar',NULL,'2025-11-13 22:13:19'),
(15,'leads','a380f520-d9aa-11ef-9388-bd9b59a2c5c0','error','Organization not found: Advanced Roofing',NULL,'2025-11-13 22:13:19'),
(16,'leads','2e7b4dd0-ea2f-11ef-9cfc-81286b7fb5b5','error','Organization not found: On Site Robotics',NULL,'2025-11-13 22:13:19'),
(17,'leads','dfed1230-fac2-11ef-8428-d3134bbcb217','error','Organization not found: Empirical Systems Aerospace',NULL,'2025-11-13 22:13:19'),
(18,'leads','f6b8fd20-fac3-11ef-9cb1-57d748d48e5a','error','Organization not found: Richard Root organization',NULL,'2025-11-13 22:13:19'),
(19,'leads','f74fa930-ee1d-11ef-9959-1b0e2676ae4b','error','Organization not found: Malloy Aeronautics',NULL,'2025-11-13 22:13:19'),
(20,'leads','18bfb060-ee1e-11ef-966d-c1c045126985','error','Organization not found: Nicolas Montoya organization',NULL,'2025-11-13 22:13:19'),
(21,'leads','af51b000-ff44-11ef-be17-0516b8e868aa','error','Organization not found: COTA Karting Battery',NULL,'2025-11-13 22:13:19'),
(22,'leads','b494bbc0-ff44-11ef-a1c9-01f10428b671','error','Organization not found: Six-15 Glasses',NULL,'2025-11-13 22:13:19'),
(23,'leads','46204050-4559-11f0-97a6-e1b74ced1001','error','Organization not found: RAILBLAZA',NULL,'2025-11-13 22:13:19'),
(24,'leads','4f43dd40-6287-11f0-9355-89f1a44fb036','error','Organization not found: Texas Marine',NULL,'2025-11-13 22:13:19'),
(25,'leads','d3775ee0-63ed-11f0-8072-a1e7c8df2cac','error','Organization not found: HV Diagnostics',NULL,'2025-11-13 22:13:19'),
(26,'leads','f064b940-829b-11f0-b332-31dbace912b4','error','Organization not found: Mirco Vehicle Technology LLC',NULL,'2025-11-13 22:13:19'),
(27,'leads','456f54c0-00da-11f0-9c97-276fd154ba62','error','Organization not found: Doble',NULL,'2025-11-13 22:13:19'),
(28,'leads','d7a78010-4559-11f0-a567-cbc2bb9c049d','error','Organization not found: Steve Statema organization',NULL,'2025-11-13 22:13:19'),
(29,'leads','aced73a0-1b03-11f0-a838-71ef90d7f1d9','error','Organization not found: Department of Homeland Security',NULL,'2025-11-13 22:13:19'),
(30,'leads','a4222bd0-829b-11f0-b332-31dbace912b4','error','Organization not found: Golf Cart OEM',NULL,'2025-11-13 22:13:19'),
(31,'leads','3f0b43d0-829b-11f0-a59e-cf7ab09132ac','error','Organization not found: Shaider Tech LLC',NULL,'2025-11-13 22:13:19'),
(32,'leads','0e81d440-6284-11f0-97b6-8b92c8e9e9e9','error','Organization not found: US Nacy CENSECFOR DET GULFPORT',NULL,'2025-11-13 22:13:19'),
(33,'leads','430506b0-829b-11f0-8479-f5fe35a5a21f','error','Organization not found: Trimverse - 72V',NULL,'2025-11-13 22:13:19'),
(34,'leads','2ddafdc0-4ae8-11f0-bb93-af18be670375','error','Organization not found: Havenhill Synergy Ltd',NULL,'2025-11-13 22:13:19'),
(35,'leads','951e6e50-6284-11f0-9355-89f1a44fb036','error','Organization not found: National Park Service',NULL,'2025-11-13 22:13:19'),
(36,'leads','24ec3e40-6285-11f0-9355-89f1a44fb036','error','Organization not found: Advance Boat',NULL,'2025-11-13 22:13:19'),
(37,'leads','679dc290-6285-11f0-93db-21362d29a27b','error','Organization not found: Dealers Electric Supply',NULL,'2025-11-13 22:13:19'),
(38,'leads','3f293410-6286-11f0-91a5-397fb148a72c','error','Organization not found: Dauer Manufacturing -',NULL,'2025-11-13 22:13:19'),
(39,'leads','c630c9b0-67d0-11f0-a2af-81f18c53c554','error','Organization not found: HubSpot, Inc.',NULL,'2025-11-13 22:13:19'),
(40,'leads','484ba720-79e3-11f0-9483-d3784b88346c','error','Organization not found: James  Kurczewski  organization',NULL,'2025-11-13 22:13:19'),
(41,'leads','2cec74f0-8294-11f0-a59e-cf7ab09132ac','error','Organization not found: Office of Commander Surgeon',NULL,'2025-11-13 22:13:19'),
(42,'leads','39f578b0-8292-11f0-a59e-cf7ab09132ac','error','Organization not found: Student',NULL,'2025-11-13 22:13:19'),
(43,'leads','800d1d50-8290-11f0-a59e-cf7ab09132ac','error','Organization not found: Propelemarine | Electric paddle',NULL,'2025-11-13 22:13:19'),
(44,'leads','581d2820-8291-11f0-ae40-4b6df05ef984','error','Organization not found: Electric Yacht',NULL,'2025-11-13 22:13:19'),
(45,'leads','5d22b5b0-8291-11f0-8479-f5fe35a5a21f','error','Organization not found: Tesla',NULL,'2025-11-13 22:13:19'),
(46,'leads','04013730-8292-11f0-8479-f5fe35a5a21f','error','Organization not found: SynDaver',NULL,'2025-11-13 22:13:19'),
(47,'leads','a4988360-8292-11f0-b9b4-9d43547fe062','error','Organization not found: Systems by Green Choice',NULL,'2025-11-13 22:13:19'),
(48,'leads','fa26e1c0-d9a8-11ef-8a2f-2704684e7441','error','Organization not found: ElectricFish',NULL,'2025-11-13 22:13:19'),
(49,'leads','bee916e0-ee17-11ef-9b54-fb8e43539ea2','error','Organization not found: Alex Ruiz organization',NULL,'2025-11-13 22:13:19'),
(50,'leads','f9630790-ee17-11ef-963e-2df1899fc200','error','Organization not found: US SOC POE MARATIME',NULL,'2025-11-13 22:13:19'),
(51,'leads','9d098f90-ee18-11ef-9b54-fb8e43539ea2','error','Organization not found: HTS AmeriTek',NULL,'2025-11-13 22:13:19'),
(52,'leads','a2fe8630-ee18-11ef-966d-c1c045126985','error','Organization not found: Optum',NULL,'2025-11-13 22:13:19'),
(53,'leads','309fad60-f9e6-11ef-ab1c-87e12a8bd78f','error','Organization not found: B E Marine Service',NULL,'2025-11-13 22:13:19'),
(54,'leads','f7420dd0-fac4-11ef-bfb3-0d53ac223cec','error','Organization not found: Project Canary',NULL,'2025-11-13 22:13:19'),
(55,'leads','1c7efb80-fac5-11ef-a8ce-438f90876d58','error','Organization not found: Grander Marine',NULL,'2025-11-13 22:13:19'),
(56,'leads','be6761c0-ff44-11ef-a1c9-01f10428b671','error','Organization not found: Mercurius Tech',NULL,'2025-11-13 22:13:19'),
(57,'leads','c99d26f0-ff54-11ef-b60c-49fa3e21c67c','error','Organization not found: ClearWorld',NULL,'2025-11-13 22:13:19'),
(58,'leads','6776c5d0-2b5f-11f0-953a-914460d42c56','error','Organization not found: Exfo',NULL,'2025-11-13 22:13:19'),
(59,'leads','6a9718a0-2b5f-11f0-a754-fb727b1d14ed','error','Organization not found: Swarmbotics AI',NULL,'2025-11-13 22:13:19'),
(60,'leads','97cbe2a0-455a-11f0-9b40-ef4957727fb6','error','Organization not found: Defense Threat Reduction Agency',NULL,'2025-11-13 22:13:19'),
(61,'leads','d17c5b40-457a-11f0-a78c-39ccd61f57dc','error','Organization not found: Black Saber Group',NULL,'2025-11-13 22:13:19'),
(62,'leads','0565e0f0-4631-11f0-ad09-951b989969ea','error','Organization not found: Bounce Imaging',NULL,'2025-11-13 22:13:19'),
(63,'leads','0a200da0-4631-11f0-895c-711eab65d642','error','Organization not found: JetSurf',NULL,'2025-11-13 22:13:19'),
(64,'leads','603fe290-6284-11f0-91a5-397fb148a72c','error','Organization not found: AIRBOSS DEFENSE GROUP LLC',NULL,'2025-11-13 22:13:19'),
(65,'leads','c874d370-6284-11f0-91a5-397fb148a72c','error','Organization not found: Aqua-Vu',NULL,'2025-11-13 22:13:19'),
(66,'leads','19317750-6285-11f0-9355-89f1a44fb036','error','Organization not found: Soundside Carts',NULL,'2025-11-13 22:13:19'),
(67,'leads','2488cea0-829c-11f0-a59e-cf7ab09132ac','error','Organization not found: BHI, CO',NULL,'2025-11-13 22:13:19'),
(68,'leads','27e54010-829c-11f0-ae40-4b6df05ef984','error','Organization not found: MR Miami',NULL,'2025-11-13 22:13:19'),
(69,'leads','9c8cfd40-829c-11f0-b332-31dbace912b4','error','Organization not found: Vanjen Group',NULL,'2025-11-13 22:13:19'),
(70,'leads','a8a1cb10-829c-11f0-a59e-cf7ab09132ac','error','Organization not found: Hydrants',NULL,'2025-11-13 22:13:19'),
(71,'leads','55687520-82a1-11f0-92ee-8dcbb1af7f0b','error','Organization not found: Batteries Plus',NULL,'2025-11-13 22:13:19'),
(72,'leads','dc3922d0-8a89-11f0-921a-57afd5b2529a','error','Organization not found: Streetleaf',NULL,'2025-11-13 22:13:19'),
(73,'leads','e25d3fc0-8a89-11f0-921a-57afd5b2529a','error','Organization not found: National Battery Supply',NULL,'2025-11-13 22:13:19'),
(74,'leads','e632ffe0-8a89-11f0-af93-ff2ea65fc23d','error','Organization not found: Fechheimer Brothers Co.',NULL,'2025-11-13 22:13:19'),
(75,'leads','aaaab360-54f1-11ef-99fa-b3cc65f4605b','error','Organization not found: Applied Physics Laboratory',NULL,'2025-11-13 22:13:19'),
(76,'leads','48b1b670-5b42-11ef-8d90-f5c271ae4e5d','error','Organization not found: n/A',NULL,'2025-11-13 22:13:19'),
(77,'leads','1fec77d0-063c-11ef-88af-1d5859aff86d','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(78,'leads','647e6290-63cb-11ef-b701-c5bea3976d00','error','Organization not found: Big Toe Engineering LLC',NULL,'2025-11-13 22:13:19'),
(79,'leads','88271310-5361-11ef-b44c-95f9bc766e6d','error','Organization not found: Aris Wind, LLC',NULL,'2025-11-13 22:13:19'),
(80,'leads','55fb8210-275e-11ef-8fa1-632a4d9ccf1c','error','Organization not found: https://www.paradigmrobotics.tech/',NULL,'2025-11-13 22:13:19'),
(81,'leads','af27e040-71ff-11ef-bfef-eb4c9f6f3a09','error','Organization not found: Genomekey',NULL,'2025-11-13 22:13:19'),
(82,'leads','7b346940-5967-11ee-a15e-8138d7a20f29','error','Organization not found: Advanced Aircraft',NULL,'2025-11-13 22:13:19'),
(83,'leads','7ce493e0-4045-11ee-a156-d58111db5cff','error','Organization not found: VDOT',NULL,'2025-11-13 22:13:19'),
(84,'leads','a0618210-4045-11ee-a41f-8946312ebb35','error','Organization not found: Feel Free Kayaks- Custom Battery',NULL,'2025-11-13 22:13:19'),
(85,'leads','38493030-4061-11ee-89c2-339bf2edd26b','error','Organization not found: Shimano- Custom Battery for Reel',NULL,'2025-11-13 22:13:19'),
(86,'leads','c364f740-4105-11ee-a41f-8946312ebb35','error','Organization not found: Pallet Shuttle - 24V 150',NULL,'2025-11-13 22:13:19'),
(87,'leads','089b78c0-4106-11ee-89c2-339bf2edd26b','error','Organization not found: World Fishing Tackle - 14.4V 8Ah-4AH',NULL,'2025-11-13 22:13:19'),
(88,'leads','c056db30-4dae-11ee-a7f5-859c9b8714a6','error','Organization not found: Practical Technology',NULL,'2025-11-13 22:13:19'),
(89,'leads','116ce240-4e76-11ee-b187-7323711a5671','error','Organization not found: Mayer Electric Inc.',NULL,'2025-11-13 22:13:19'),
(90,'leads','16c571d0-4e76-11ee-a8e5-5fd802a2c1bd','error','Organization not found: AGV America',NULL,'2025-11-13 22:13:19'),
(91,'leads','a63a2540-4e76-11ee-b187-7323711a5671','error','Organization not found: Sunshine Solar Services Inc.',NULL,'2025-11-13 22:13:19'),
(92,'leads','a9705490-4e77-11ee-a2c8-0181c13ca46c','error','Organization not found: DCS Corp',NULL,'2025-11-13 22:13:19'),
(93,'leads','206f8300-531d-11ee-9324-11d3355add0b','error','Organization not found: Ekozone Development',NULL,'2025-11-13 22:13:19'),
(94,'leads','bf676a60-572b-11ee-9a1a-fb22609a01aa','error','Organization not found: X, the moonshoot factory, Google',NULL,'2025-11-13 22:13:19'),
(95,'leads','7bbaece0-6795-11ee-b93f-63c9bb229d58','error','Organization not found: Hatteras',NULL,'2025-11-13 22:13:19'),
(96,'leads','9ed03680-7344-11ee-b195-bd18778d2562','error','Organization not found: Gcc-Na',NULL,'2025-11-13 22:13:19'),
(97,'leads','9e34ecb0-9e8d-11ee-be68-c1e203ae4ffd','error','Organization not found: Howeandhowe',NULL,'2025-11-13 22:13:19'),
(98,'leads','4f94cbc0-a0f4-11ee-b2c3-6d13ad8bd97c','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(99,'leads','38048f00-bad4-11ee-b122-9d9a49454552','error','Organization not found: Solis Energy',NULL,'2025-11-13 22:13:19'),
(100,'leads','71c31ef0-bad4-11ee-b68f-f367d5a5e9a2','error','Organization not found: Nabeel Perfumes',NULL,'2025-11-13 22:13:19'),
(101,'leads','95f2bb50-bad4-11ee-b122-9d9a49454552','error','Organization not found: Ecosense Lighting',NULL,'2025-11-13 22:13:19'),
(102,'leads','9bcf47f0-bad4-11ee-b68f-f367d5a5e9a2','error','Organization not found: Elements to Energy (E2E)',NULL,'2025-11-13 22:13:19'),
(103,'leads','a23b1c40-bad4-11ee-b68f-f367d5a5e9a2','error','Organization not found: Process Integration',NULL,'2025-11-13 22:13:19'),
(104,'leads','c15f85c0-bad4-11ee-b68f-f367d5a5e9a2','error','Organization not found: Sartorius',NULL,'2025-11-13 22:13:19'),
(105,'leads','c7c31cb0-bad4-11ee-a67a-21e2d0399d09','error','Organization not found: QinetiQ Group PLC',NULL,'2025-11-13 22:13:19'),
(106,'leads','e8877a90-bad4-11ee-b122-9d9a49454552','error','Organization not found: Intercomp USA',NULL,'2025-11-13 22:13:19'),
(107,'leads','ee1523e0-bad4-11ee-b122-9d9a49454552','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(108,'leads','f69d96a0-bad4-11ee-b68f-f367d5a5e9a2','error','Organization not found: RAILBLAZA',NULL,'2025-11-13 22:13:19'),
(109,'leads','3ba0d320-bad5-11ee-b122-9d9a49454552','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(110,'leads','5b8cf970-bad5-11ee-a67a-21e2d0399d09','error','Organization not found: Doug Shelby Engineering',NULL,'2025-11-13 22:13:19'),
(111,'leads','6fe23480-bad5-11ee-b122-9d9a49454552','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(112,'leads','955e4e10-bad5-11ee-a67a-21e2d0399d09','error','Organization not found: Environmentum',NULL,'2025-11-13 22:13:19'),
(113,'leads','5c0b34b0-bad6-11ee-b122-9d9a49454552','error','Organization not found: Volatus Aerospace',NULL,'2025-11-13 22:13:19'),
(114,'leads','cd1da0b0-bad7-11ee-b68f-f367d5a5e9a2','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(115,'leads','d367e340-bad7-11ee-b68f-f367d5a5e9a2','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(116,'leads','e6ad0de0-bad7-11ee-b68f-f367d5a5e9a2','error','Organization not found: Gcc-Na',NULL,'2025-11-13 22:13:19'),
(117,'leads','90522970-bad8-11ee-a67a-21e2d0399d09','error','Organization not found: Vallen Distribution INC.',NULL,'2025-11-13 22:13:19'),
(118,'leads','97a32da0-bad8-11ee-a67a-21e2d0399d09','error','Organization not found: Alumacart,',NULL,'2025-11-13 22:13:19'),
(119,'leads','bb90b7f0-bad8-11ee-b68f-f367d5a5e9a2','error','Organization not found: U.S. Navy NCIS',NULL,'2025-11-13 22:13:19'),
(120,'leads','ea059240-bad8-11ee-b122-9d9a49454552','error','Organization not found: Mayer Electric Supply',NULL,'2025-11-13 22:13:19'),
(121,'leads','5b7b4960-bad9-11ee-b68f-f367d5a5e9a2','error','Organization not found: VIRGINIA DEPARTMENT OF TRANSPORTATION',NULL,'2025-11-13 22:13:19'),
(122,'leads','af8bac20-bad9-11ee-a67a-21e2d0399d09','error','Organization not found: Anglers Choice Marine-MART',NULL,'2025-11-13 22:13:19'),
(123,'leads','7c040ed0-bc8f-11ee-b68f-f367d5a5e9a2','error','Organization not found: Offworld',NULL,'2025-11-13 22:13:19'),
(124,'leads','5df33900-c141-11ee-9f06-899b6c712b6e','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(125,'leads','3c8ac2c0-c43d-11ee-9f06-899b6c712b6e','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(126,'leads','ddcedd90-c9cb-11ee-9385-5593ab22350e','error','Organization not found: Project Canary',NULL,'2025-11-13 22:13:19'),
(127,'leads','48dccd10-ca92-11ee-a52a-1f4c71091bd4','error','Organization not found: Personal - 48V 5Kwh Powerwalls',NULL,'2025-11-13 22:13:19'),
(128,'leads','05484910-d4d5-11ee-8db7-f1722cfa26ee','error','Organization not found: MIB',NULL,'2025-11-13 22:13:19'),
(129,'leads','9c183f00-d587-11ee-8889-d1da495a3273','error','Organization not found: Blueline Video surveillance',NULL,'2025-11-13 22:13:19'),
(130,'leads','100f2d20-da46-11ee-9a5a-79c7439886bc','error','Organization not found: Forms inc.',NULL,'2025-11-13 22:13:19'),
(131,'leads','bc35a010-e541-11ee-8cb7-e57c04ba7b5d','error','Organization not found: SDMS Robotics',NULL,'2025-11-13 22:13:19'),
(132,'leads','3a0ad210-eab2-11ee-ba2c-b7d818aab9f9','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(133,'leads','6b029660-eb65-11ee-8fcc-0585346bdbe4','error','Organization not found: Silicon Techno Circuits',NULL,'2025-11-13 22:13:19'),
(134,'leads','ec0a0f40-eb74-11ee-b5da-f35f012d50d9','error','Organization not found: Emerson Ornstein organization',NULL,'2025-11-13 22:13:19'),
(135,'leads','16b962b0-ed0d-11ee-8a15-b13982013ab3','error','Organization not found: JettWatt',NULL,'2025-11-13 22:13:19'),
(136,'leads','a579e570-f03b-11ee-b746-7917a4a0bc4f','error','Organization not found: Global Concept',NULL,'2025-11-13 22:13:19'),
(137,'leads','6a8948b0-f03c-11ee-89ff-679ba970e042','error','Organization not found: University of Wisconsin Madison',NULL,'2025-11-13 22:13:19'),
(138,'leads','e5567070-f03e-11ee-89ff-679ba970e042','error','Organization not found: Emerson Ornstein organization',NULL,'2025-11-13 22:13:19'),
(139,'leads','b0425920-f067-11ee-820c-33dab0a80226','error','Organization not found: Abay organization',NULL,'2025-11-13 22:13:19'),
(140,'leads','8987b8c0-f0ee-11ee-951a-d70139889d2e','error','Organization not found: James  Kurczewski  organization',NULL,'2025-11-13 22:13:19'),
(141,'leads','00149990-f103-11ee-a1f1-47e4a2743c8f','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(142,'leads','6e447480-f103-11ee-bca9-956007a2c12d','error','Organization not found: Intovision',NULL,'2025-11-13 22:13:19'),
(143,'leads','107894e0-f111-11ee-bca9-956007a2c12d','error','Organization not found: Steve Statema organization',NULL,'2025-11-13 22:13:19'),
(144,'leads','75a596c0-f12e-11ee-a59f-47efee9cdae4','error','Organization not found: Scott Messick  organization',NULL,'2025-11-13 22:13:19'),
(145,'leads','4adc26e0-f681-11ee-9c2c-b796f5528e02','error','Organization not found: CU Boulder',NULL,'2025-11-13 22:13:19'),
(146,'leads','39ac9290-f741-11ee-88d2-675f5687e930','error','Organization not found: Menno T Bauman organization',NULL,'2025-11-13 22:13:19'),
(147,'leads','f26b9f20-fb32-11ee-833f-b763a46c6611','error','Organization not found: Ethan Rowe organization',NULL,'2025-11-13 22:13:19'),
(148,'leads','b516d800-fb51-11ee-9fbb-3b479f4719b7','error','Organization not found: Next Level Automotive',NULL,'2025-11-13 22:13:19'),
(149,'leads','7d403000-fb53-11ee-b2b9-1b356a63ceac','error','Organization not found: Dario Dentes organization',NULL,'2025-11-13 22:13:19'),
(150,'leads','cacaaba0-0186-11ef-a951-e10196e4111c','error','Organization not found: Globus Medical',NULL,'2025-11-13 22:13:19'),
(151,'leads','d822e400-03f9-11ef-96d0-3b2b639686a3','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(152,'leads','aa7b1c50-062b-11ef-bec7-91fd24d17c88','error','Organization not found: Teresa Moore organization',NULL,'2025-11-13 22:13:19'),
(153,'leads','9aa311b0-063b-11ef-af12-e5a2924242d9','error','Organization not found: Ocutrap',NULL,'2025-11-13 22:13:19'),
(154,'leads','cf917bf0-063b-11ef-8b5e-d990dc5b5e43','error','Organization not found: Chand brilliance',NULL,'2025-11-13 22:13:19'),
(155,'leads','fd0b0fe0-0647-11ef-96d0-3b2b639686a3','error','Organization not found: Steven Salter organization',NULL,'2025-11-13 22:13:19'),
(156,'leads','d3895950-0657-11ef-b9ea-b137f71f6a60','error','Organization not found: EZ Kruiser Golf Cart',NULL,'2025-11-13 22:13:19'),
(157,'leads','a05ea390-0711-11ef-a68e-dff3f93acbc4','error','Organization not found: Dueitts Battery Supply Inc.',NULL,'2025-11-13 22:13:19'),
(158,'leads','cce03830-0968-11ef-b3ba-e7336aadab95','error','Organization not found: Xworx Inc',NULL,'2025-11-13 22:13:19'),
(159,'leads','6ef43950-0969-11ef-97b7-1717425e0835','error','Organization not found: Bajaj',NULL,'2025-11-13 22:13:19'),
(160,'leads','b2b9f1c0-0e14-11ef-9b70-d91355cad6f6','error','Organization not found: Delmer & Associates, LCC',NULL,'2025-11-13 22:13:19'),
(161,'leads','584c60d0-0efd-11ef-b6b2-9354883a4197','error','Organization not found: Anthony Thomas organization',NULL,'2025-11-13 22:13:19'),
(162,'leads','04473340-12cf-11ef-a699-4d714b2a54f2','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(163,'leads','a0e73f10-1347-11ef-9e11-c101c1b0a59d','error','Organization not found: Ryan Somai organization',NULL,'2025-11-13 22:13:19'),
(164,'leads','031614f0-138d-11ef-b59a-f5796a9a3e88','error','Organization not found: nano power a.s.',NULL,'2025-11-13 22:13:19'),
(165,'leads','9593f5d0-13f2-11ef-9e11-c101c1b0a59d','error','Organization not found: Kiang Loong Ng organization',NULL,'2025-11-13 22:13:19'),
(166,'leads','8c9da370-145d-11ef-8d00-b3d319f4b9b9','error','Organization not found: PICODE',NULL,'2025-11-13 22:13:19'),
(167,'leads','c230d930-145d-11ef-9df3-191803d8bc06','error','Organization not found: Accesshardware Inc.',NULL,'2025-11-13 22:13:19'),
(168,'leads','ee1f4190-1790-11ef-87d1-bd61cc9f3289','error','Organization not found: Discovery Ford',NULL,'2025-11-13 22:13:19'),
(169,'leads','b1e004c0-1791-11ef-a1e7-514068a29cd4','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(170,'leads','1e8aa270-1796-11ef-a1e7-514068a29cd4','error','Organization not found: Encore Boat Works',NULL,'2025-11-13 22:13:19'),
(171,'leads','a34cf4a0-184e-11ef-a498-5bb397ef0249','error','Organization not found: Good Luck LLC',NULL,'2025-11-13 22:13:19'),
(172,'leads','a6bdea50-1910-11ef-9688-b1d73b6a5dcf','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(173,'leads','a675c0f0-1914-11ef-9a6b-71055cc5f8fb','error','Organization not found: Segway Hollywood',NULL,'2025-11-13 22:13:19'),
(174,'leads','12856d30-19d4-11ef-aa27-9bcd37a14e94','error','Organization not found: WSSA',NULL,'2025-11-13 22:13:19'),
(175,'leads','d4e60510-1cfe-11ef-b8cf-1fbf5e5198f8','error','Organization not found: Martin Rebuilds',NULL,'2025-11-13 22:13:19'),
(176,'leads','28ba2fe0-1d04-11ef-b8cf-1fbf5e5198f8','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(177,'leads','9e554fe0-1dd7-11ef-a841-8f0ae69dba57','error','Organization not found: Bill Daniels organization',NULL,'2025-11-13 22:13:19'),
(178,'leads','5bfcab30-1eee-11ef-b2cf-5fa52f512284','error','Organization not found: Martin Meek organization',NULL,'2025-11-13 22:13:19'),
(179,'leads','3d9fa890-1f6b-11ef-9a19-59a18cd49924','error','Organization not found: Track Master Mobility',NULL,'2025-11-13 22:13:19'),
(180,'leads','e3b1bbe0-1f77-11ef-9a19-59a18cd49924','error','Organization not found: Telecom Battery',NULL,'2025-11-13 22:13:19'),
(181,'leads','1ee93030-1f78-11ef-aa4e-4f4e2660fd7b','error','Organization not found: Vishwaracers',NULL,'2025-11-13 22:13:19'),
(182,'leads','59188350-1f78-11ef-9a19-59a18cd49924','error','Organization not found: Network Experts',NULL,'2025-11-13 22:13:19'),
(183,'leads','35f02fe0-1f9b-11ef-aa4e-4f4e2660fd7b','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(184,'leads','cf722ea0-228b-11ef-b2cf-5fa52f512284','error','Organization not found: General RV Center',NULL,'2025-11-13 22:13:19'),
(185,'leads','30dcfe90-228c-11ef-9923-0f43df108a4b','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(186,'leads','2446fd60-228d-11ef-9923-0f43df108a4b','error','Organization not found: Zakian Rugs',NULL,'2025-11-13 22:13:19'),
(187,'leads','6b48a1f0-228d-11ef-bf85-dd911e2a6349','error','Organization not found: EMB Motorsport',NULL,'2025-11-13 22:13:19'),
(188,'leads','b28d77c0-2292-11ef-9cb4-994a5793db83','error','Organization not found: M&P Security',NULL,'2025-11-13 22:13:19'),
(189,'leads','8da4c850-2305-11ef-b2cf-5fa52f512284','error','Organization not found: Anatolii organization',NULL,'2025-11-13 22:13:19'),
(190,'leads','5fc4d320-2446-11ef-946f-13b75546807f','error','Organization not found: Atomic Cool Kartz',NULL,'2025-11-13 22:13:19'),
(191,'leads','11e401f0-24e9-11ef-8ccb-ff8532d8e9f8','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(192,'leads','93c41370-24eb-11ef-b74f-6f6461a13fe8','error','Organization not found: Reid-Ashman Mfg.',NULL,'2025-11-13 22:13:19'),
(193,'leads','29e009a0-2504-11ef-8534-4d08477509db','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(194,'leads','205f16d0-2759-11ef-8fa1-632a4d9ccf1c','error','Organization not found: Advance Boat',NULL,'2025-11-13 22:13:19'),
(195,'leads','db0e11c0-2803-11ef-9bef-cd12d9a9d969','error','Organization not found: Mystery Flight',NULL,'2025-11-13 22:13:19'),
(196,'leads','3b5cc670-28cc-11ef-9c05-13f52b414c93','error','Organization not found: Roush',NULL,'2025-11-13 22:13:19'),
(197,'leads','ac30b5f0-28e5-11ef-a0ab-43b9a7fa6a42','error','Organization not found: Electric Yacht',NULL,'2025-11-13 22:13:19'),
(198,'leads','e9b21fa0-28f8-11ef-a841-8f0ae69dba57','error','Organization not found: Price Electronics',NULL,'2025-11-13 22:13:19'),
(199,'leads','beda6bf0-2cab-11ef-b680-91ad9d1991a4','error','Organization not found: Thomas Wadsworth organization',NULL,'2025-11-13 22:13:19'),
(200,'leads','045acf20-2e56-11ef-b69b-f170eca3ee31','error','Organization not found: Leidos',NULL,'2025-11-13 22:13:19'),
(201,'leads','949b1400-3248-11ef-99a4-d3346253e2c6','error','Organization not found: Navia Energy Inc.',NULL,'2025-11-13 22:13:19'),
(202,'leads','d93782f0-3249-11ef-9e56-a5bdc7b7d8d8','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(203,'leads','466f1b30-324a-11ef-91a5-ddf712cba00f','error','Organization not found: Soaring Concepts Aerospace',NULL,'2025-11-13 22:13:19'),
(204,'leads','31185930-324b-11ef-8f87-2febb96654ea','error','Organization not found: JP Equipment & Service Co.',NULL,'2025-11-13 22:13:19'),
(205,'leads','7d3d4c80-324b-11ef-99a4-d3346253e2c6','error','Organization not found: Chris Grondman organization',NULL,'2025-11-13 22:13:19'),
(206,'leads','9d198f20-325d-11ef-9866-edd510b5f338','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(207,'leads','cc4d50d0-34c7-11ef-ae44-b93f5d4649fe','error','Organization not found: Jay Rasi organization',NULL,'2025-11-13 22:13:19'),
(208,'leads','c99db420-388b-11ef-9e56-a5bdc7b7d8d8','error','Organization not found: Concept DD Inc',NULL,'2025-11-13 22:13:19'),
(209,'leads','5c223fa0-388c-11ef-849f-8b74dc1802d9','error','Organization not found: LFP Consumer Power Tool',NULL,'2025-11-13 22:13:19'),
(210,'leads','e97aad80-38b2-11ef-849f-8b74dc1802d9','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(211,'leads','b68ceb40-3e02-11ef-a02e-79dbbbddf863','error','Organization not found: Lotuccusa Inc',NULL,'2025-11-13 22:13:19'),
(212,'leads','5da3a090-3fc0-11ef-8975-2d5057077cbf','error','Organization not found: Scott Blew organization',NULL,'2025-11-13 22:13:19'),
(213,'leads','440ef8e0-3fe4-11ef-88e7-cf0db74c6016','error','Organization not found: Scott Blew organization',NULL,'2025-11-13 22:13:19'),
(214,'leads','c4a4d270-439c-11ef-a493-852435243172','error','Organization not found: Personal',NULL,'2025-11-13 22:13:19'),
(215,'leads','b6755210-45f9-11ef-901d-25624c1d8a42','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(216,'leads','e0a325f0-4840-11ef-8f97-c1c5192a041d','error','Organization not found: Operation Send it',NULL,'2025-11-13 22:13:19'),
(217,'leads','80ab0df0-4842-11ef-8f97-c1c5192a041d','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(218,'leads','190c5560-49bd-11ef-9388-b9dff8bd2fab','error','Organization not found: Majesty AI',NULL,'2025-11-13 22:13:19'),
(219,'leads','8967dc60-49dd-11ef-81ac-5b2abd8371f8','error','Organization not found: Blue Water Battery',NULL,'2025-11-13 22:13:19'),
(220,'leads','d168b680-4aa3-11ef-b910-03284540ed82','error','Organization not found: Repsol International',NULL,'2025-11-13 22:13:19'),
(221,'leads','c936f890-4b4e-11ef-8563-cb0a2734e89d','error','Organization not found: HumaNoid',NULL,'2025-11-13 22:13:19'),
(222,'leads','d5f47120-4e7d-11ef-99a6-4bf71821d30b','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(223,'leads','96c68430-5331-11ef-bf32-81d389b181df','error','Organization not found: Battery Bills LLC',NULL,'2025-11-13 22:13:19'),
(224,'leads','abc756a0-5333-11ef-9d17-c51e9e5fa5ca','error','Organization not found: ABA Marine Consulting INC.',NULL,'2025-11-13 22:13:19'),
(225,'leads','a75f1cc0-54ef-11ef-8794-03a7a8ec6de8','error','Organization not found: Marine Customer',NULL,'2025-11-13 22:13:19'),
(226,'leads','fbacba20-54f0-11ef-9113-8d86bb63387c','error','Organization not found: Integrated Marine Solutions',NULL,'2025-11-13 22:13:19'),
(227,'leads','ab109be0-55c7-11ef-adce-b5c0deaed1fd','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(228,'leads','ce114960-58e1-11ef-9941-17650adb0418','error','Organization not found: VJF',NULL,'2025-11-13 22:13:19'),
(229,'leads','2f3f1e00-59ab-11ef-9e31-bb24ab08945d','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(230,'leads','47f94750-5f31-11ef-8ac2-cd51ff4693d5','error','Organization not found: ',NULL,'2025-11-13 22:13:19'),
(231,'leads','1d1ee5c0-618a-11ef-a702-659adcbee65a','error','Organization not found: Profound Home Improvement',NULL,'2025-11-13 22:13:19'),
(232,'leads','1b21a730-64a0-11ef-b4cc-13d3d3de7ea0','error','Organization not found: Advanced Green Technologies',NULL,'2025-11-13 22:13:19'),
(233,'leads','a5a78b40-6612-11ef-acf7-cfad48ddfff8','error','Organization not found: Hayatcomm.net',NULL,'2025-11-13 22:13:19'),
(234,'leads','46396240-6eb0-11ef-b2c1-ed044c57f72b','error','Organization not found: Swarmbotics AI',NULL,'2025-11-13 22:13:19'),
(235,'leads','6b7aba80-7447-11ef-9e80-a9fcb8936b1d','error','Organization not found: EnergyX',NULL,'2025-11-13 22:13:19'),
(236,'leads','9a16caf0-cde3-11ef-8263-7fe51e11e07f','error','Organization not found: METABOTS',NULL,'2025-11-13 22:13:19'),
(237,'organizations','Bottom Feeder','success','Imported as customer ID: 109',NULL,'2025-11-13 22:13:38'),
(238,'organizations','LBC','success','Imported as customer ID: 110',NULL,'2025-11-13 22:13:38'),
(239,'organizations','Toca Football','success','Imported as customer ID: 111',NULL,'2025-11-13 22:13:38'),
(240,'organizations','Hyde Park Partners','success','Imported as customer ID: 112',NULL,'2025-11-13 22:13:38'),
(241,'organizations','VIU Global','success','Imported as customer ID: 113',NULL,'2025-11-13 22:13:38'),
(242,'organizations','Acme (Sample)','success','Imported as customer ID: 114',NULL,'2025-11-13 22:13:38'),
(243,'organizations','General Dynamics Land Systems','success','Imported as customer ID: 115',NULL,'2025-11-13 22:13:38'),
(244,'organizations','HawkTV','success','Imported as customer ID: 116',NULL,'2025-11-13 22:13:38'),
(245,'organizations','Power Pole Geoff Contact','success','Imported as customer ID: 117',NULL,'2025-11-13 22:13:38'),
(246,'organizations','Cirnapro','success','Imported as customer ID: 118',NULL,'2025-11-13 22:13:38'),
(247,'organizations','Ontario Drive & Gear Limited','success','Imported as customer ID: 119',NULL,'2025-11-13 22:13:38'),
(248,'organizations','Retired','success','Imported as customer ID: 120',NULL,'2025-11-13 22:13:38'),
(249,'organizations','YRC Freight— Urbandale, Iowa','success','Imported as customer ID: 121',NULL,'2025-11-13 22:13:38'),
(250,'organizations','Night Fishing Buoy','success','Imported as customer ID: 122',NULL,'2025-11-13 22:13:38'),
(251,'organizations','Immigration and Customs Enforcment','success','Imported as customer ID: 123',NULL,'2025-11-13 22:13:38'),
(252,'organizations','Tough Signal','success','Imported as customer ID: 124',NULL,'2025-11-13 22:13:38'),
(253,'organizations','Booz Allen Hamilton Inc.','success','Imported as customer ID: 125',NULL,'2025-11-13 22:13:38'),
(254,'organizations','HV Diagnostics','success','Imported as customer ID: 126',NULL,'2025-11-13 22:13:38'),
(255,'organizations','Obsidian Intergration','success','Imported as customer ID: 127',NULL,'2025-11-13 22:13:38'),
(256,'organizations','Andretti Autosports','success','Imported as customer ID: 128',NULL,'2025-11-13 22:13:38'),
(257,'organizations','GCC','success','Imported as customer ID: 129',NULL,'2025-11-13 22:13:38'),
(258,'organizations','AGV America','success','Imported as customer ID: 130',NULL,'2025-11-13 22:13:38'),
(259,'organizations','Toronto Coach Terminal Inc.','success','Imported as customer ID: 131',NULL,'2025-11-13 22:13:38'),
(260,'organizations','IMPORT','error','Fatal error: SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry \'Booz Allen Hamilton Inc.\' for key \'unique_pipedrive_org\'',NULL,'2025-11-13 22:13:38'),
(261,'organizations','IMPORT','error','Fatal error: SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry \'Bottom Feeder\' for key \'unique_pipedrive_org\'',NULL,'2025-11-13 22:13:38'),
(262,'organizations','IMPORT','error','Fatal error: SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry \'Bottom Feeder\' for key \'unique_pipedrive_org\'',NULL,'2025-11-13 23:11:18'),
(263,'deals','4','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(264,'deals','14','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(265,'deals','19','error','Organization not found: Federal Bureau of Investigation',NULL,'2025-11-14 00:11:03'),
(266,'deals','20','error','Organization not found: Solar Stik',NULL,'2025-11-14 00:11:03'),
(267,'deals','21','error','Organization not found: Crunchcycle',NULL,'2025-11-14 00:11:03'),
(268,'deals','22','error','Organization not found: Hydrants',NULL,'2025-11-14 00:11:03'),
(269,'deals','23','error','Organization not found: Volatusaerospace -UAV',NULL,'2025-11-14 00:11:03'),
(270,'deals','24','error','Organization not found: Defense Research Canada- Electric Argo',NULL,'2025-11-14 00:11:03'),
(271,'deals','26','error','Organization not found: NCIS',NULL,'2025-11-14 00:11:03'),
(272,'deals','27','error','Organization not found: West Marine',NULL,'2025-11-14 00:11:03'),
(273,'deals','28','error','Organization not found: Caymas Boats',NULL,'2025-11-14 00:11:03'),
(274,'deals','33','error','Organization not found: Seasats Inc. - 6S32P',NULL,'2025-11-14 00:11:03'),
(275,'deals','40','error','Organization not found: Pallet Shuttle',NULL,'2025-11-14 00:11:03'),
(276,'deals','46','error','Organization not found: Advanced Roofing',NULL,'2025-11-14 00:11:03'),
(277,'deals','49','error','Organization not found: Custom Boat Set Up',NULL,'2025-11-14 00:11:03'),
(278,'deals','50','error','Organization not found: Sol Circuits',NULL,'2025-11-14 00:11:03'),
(279,'deals','51','error','Organization not found: SynDaver',NULL,'2025-11-14 00:11:03'),
(280,'deals','52','error','Organization not found: World Fishing Tackle - 14.4V 8Ah-4AH',NULL,'2025-11-14 00:11:03'),
(281,'deals','53','error','Organization not found: Fujitsu- 48V 20AH',NULL,'2025-11-14 00:11:03'),
(282,'deals','54','error','Organization not found: Lake County Sheriff',NULL,'2025-11-14 00:11:03'),
(283,'deals','55','error','Organization not found: Don Coffey',NULL,'2025-11-14 00:11:03'),
(284,'deals','56','error','Organization not found: Solar Stik',NULL,'2025-11-14 00:11:03'),
(285,'deals','58','error','Organization not found: Saleen',NULL,'2025-11-14 00:11:03'),
(286,'deals','61','error','Organization not found: Century Boats',NULL,'2025-11-14 00:11:03'),
(287,'deals','90','error','Organization not found: lighttacklecharters.com',NULL,'2025-11-14 00:11:03'),
(288,'deals','147','error','Organization not found: Bay Area Yacht Services',NULL,'2025-11-14 00:11:03'),
(289,'deals','150','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(290,'deals','178','error','Organization not found: Marine Metals Custom components, Inc.',NULL,'2025-11-14 00:11:03'),
(291,'deals','183','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(292,'deals','186','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(293,'deals','192','error','Organization not found: Central Gulf Coast Marine Services',NULL,'2025-11-14 00:11:03'),
(294,'deals','193','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(295,'deals','196','error','Organization not found: Bayfront Yachtworks & Marina',NULL,'2025-11-14 00:11:03'),
(296,'deals','197','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(297,'deals','199','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(298,'deals','200','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(299,'deals','203','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(300,'deals','204','error','Organization not found: Toho Marine & Outdoors',NULL,'2025-11-14 00:11:03'),
(301,'deals','212','error','Organization not found: Reverence Outdoors',NULL,'2025-11-14 00:11:03'),
(302,'deals','213','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(303,'deals','222','error','Organization not found: Johnson Outdoors Inc.',NULL,'2025-11-14 00:11:03'),
(304,'deals','223','error','Organization not found: Gregg Orr Marine- Hot Springs',NULL,'2025-11-14 00:11:03'),
(305,'deals','230','error','Organization not found: Johnson Outdoors Inc.',NULL,'2025-11-14 00:11:03'),
(306,'deals','231','error','Organization not found: WEST COAST MARINE',NULL,'2025-11-14 00:11:03'),
(307,'deals','234','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(308,'deals','235','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(309,'deals','239','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(310,'deals','240','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(311,'deals','244','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(312,'deals','245','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(313,'deals','249','error','Organization not found: Nibrico Marine',NULL,'2025-11-14 00:11:03'),
(314,'deals','251','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(315,'deals','252','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(316,'deals','256','error','Organization not found: 2 Gauge Marine & Trailer LLC',NULL,'2025-11-14 00:11:03'),
(317,'deals','257','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(318,'deals','263','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(319,'deals','265','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(320,'deals','268','error','Organization not found: Zaragoza Marine',NULL,'2025-11-14 00:11:03'),
(321,'deals','273','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(322,'deals','277','error','Organization not found: Third Coast Marine',NULL,'2025-11-14 00:11:03'),
(323,'deals','278','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(324,'deals','280','error','Organization not found: WEST COAST MARINE',NULL,'2025-11-14 00:11:03'),
(325,'deals','282','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(326,'deals','283','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(327,'deals','287','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(328,'deals','288','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(329,'deals','291','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(330,'deals','292','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(331,'deals','296','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(332,'deals','301','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(333,'deals','303','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(334,'deals','305','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(335,'deals','307','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(336,'deals','310','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(337,'deals','313','error','Organization not found: South Texas Trolling Motors',NULL,'2025-11-14 00:11:03'),
(338,'deals','315','error','Organization not found: CALOOSA RIVER, INC',NULL,'2025-11-14 00:11:03'),
(339,'deals','320','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(340,'deals','323','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(341,'deals','325','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(342,'deals','326','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(343,'deals','327','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(344,'deals','329','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(345,'deals','331','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(346,'deals','333','error','Organization not found: Graphite Corp',NULL,'2025-11-14 00:11:03'),
(347,'deals','334','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(348,'deals','337','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(349,'deals','338','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(350,'deals','339','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(351,'deals','341','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(352,'deals','343','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(353,'deals','345','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(354,'deals','349','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(355,'deals','350','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(356,'deals','352','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(357,'deals','356','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(358,'deals','357','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(359,'deals','362','error','Organization not found: Fat Cat Boatworks',NULL,'2025-11-14 00:11:03'),
(360,'deals','363','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(361,'deals','367','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(362,'deals','372','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(363,'deals','375','error','Organization not found: Family Boating Center',NULL,'2025-11-14 00:11:03'),
(364,'deals','376','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(365,'deals','380','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(366,'deals','381','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(367,'deals','385','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(368,'deals','390','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(369,'deals','393','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(370,'deals','397','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(371,'deals','402','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(372,'deals','403','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(373,'deals','407','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(374,'deals','410','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(375,'deals','412','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(376,'deals','414','error','Organization not found: Rapala VMC Corporation',NULL,'2025-11-14 00:11:03'),
(377,'deals','416','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(378,'deals','417','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(379,'deals','418','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(380,'deals','420','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(381,'deals','423','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(382,'deals','426','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(383,'deals','427','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(384,'deals','428','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(385,'deals','429','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(386,'deals','430','error','Organization not found: Ab2Nautica',NULL,'2025-11-14 00:11:03'),
(387,'deals','431','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(388,'deals','432','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(389,'deals','433','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(390,'deals','434','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(391,'deals','435','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(392,'deals','436','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(393,'deals','438','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(394,'deals','439','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(395,'deals','440','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(396,'deals','442','error','Organization not found: CED Marine Wholesale Marine Electronics',NULL,'2025-11-14 00:11:03'),
(397,'deals','443','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(398,'deals','444','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(399,'deals','445','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(400,'deals','447','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(401,'deals','448','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(402,'deals','450','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(403,'deals','451','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(404,'deals','453','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(405,'deals','454','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(406,'deals','457','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(407,'deals','458','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(408,'deals','460','error','Organization not found: Wholesale Batteries',NULL,'2025-11-14 00:11:03'),
(409,'deals','462','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(410,'deals','463','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(411,'deals','465','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(412,'deals','466','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(413,'deals','468','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(414,'deals','469','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(415,'deals','470','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(416,'deals','472','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(417,'deals','476','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(418,'deals','477','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(419,'deals','479','error','Organization not found: Sugar Creek Marina, Inc',NULL,'2025-11-14 00:11:03'),
(420,'deals','481','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(421,'deals','482','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(422,'deals','483','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(423,'deals','484','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(424,'deals','486','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(425,'deals','487','error','Organization not found: Weyn LLC',NULL,'2025-11-14 00:11:03'),
(426,'deals','488','error','Organization not found: Barton Specialty Services',NULL,'2025-11-14 00:11:03'),
(427,'deals','489','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(428,'deals','490','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(429,'deals','492','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(430,'deals','494','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(431,'deals','495','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(432,'deals','497','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(433,'deals','498','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(434,'deals','499','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(435,'deals','501','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(436,'deals','502','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(437,'deals','503','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(438,'deals','505','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(439,'deals','506','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(440,'deals','507','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(441,'deals','508','error','Organization not found: Performance East - Cedar Point',NULL,'2025-11-14 00:11:03'),
(442,'deals','509','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(443,'deals','510','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(444,'deals','512','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(445,'deals','515','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(446,'deals','516','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(447,'deals','517','error','Organization not found: Ingman Marine-Port Charlotte',NULL,'2025-11-14 00:11:03'),
(448,'deals','518','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(449,'deals','519','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(450,'deals','520','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(451,'deals','523','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(452,'deals','524','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(453,'deals','525','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(454,'deals','526','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(455,'deals','527','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(456,'deals','528','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(457,'deals','530','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(458,'deals','531','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(459,'deals','532','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(460,'deals','533','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(461,'deals','534','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(462,'deals','535','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(463,'deals','536','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(464,'deals','539','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(465,'deals','540','error','Organization not found: Suncoast Auto and Marine',NULL,'2025-11-14 00:11:03'),
(466,'deals','541','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(467,'deals','542','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(468,'deals','543','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(469,'deals','544','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(470,'deals','545','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(471,'deals','546','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(472,'deals','548','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(473,'deals','549','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(474,'deals','550','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(475,'deals','551','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(476,'deals','552','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(477,'deals','553','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(478,'deals','554','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(479,'deals','555','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(480,'deals','556','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(481,'deals','557','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(482,'deals','558','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(483,'deals','559','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(484,'deals','560','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(485,'deals','561','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(486,'deals','562','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(487,'deals','563','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(488,'deals','564','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(489,'deals','565','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(490,'deals','566','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(491,'deals','567','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(492,'deals','568','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(493,'deals','569','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(494,'deals','570','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(495,'deals','572','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(496,'deals','573','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(497,'deals','574','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(498,'deals','576','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(499,'deals','578','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(500,'deals','580','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(501,'deals','581','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(502,'deals','582','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(503,'deals','583','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(504,'deals','584','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(505,'deals','585','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(506,'deals','586','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(507,'deals','587','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(508,'deals','588','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(509,'deals','589','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(510,'deals','590','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(511,'deals','591','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(512,'deals','592','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(513,'deals','593','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(514,'deals','594','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(515,'deals','595','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(516,'deals','596','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(517,'deals','597','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(518,'deals','598','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(519,'deals','599','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(520,'deals','600','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(521,'deals','601','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(522,'deals','602','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(523,'deals','603','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(524,'deals','604','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(525,'deals','605','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(526,'deals','606','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(527,'deals','607','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(528,'deals','608','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(529,'deals','609','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(530,'deals','610','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(531,'deals','611','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(532,'deals','612','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(533,'deals','613','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(534,'deals','614','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(535,'deals','615','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(536,'deals','616','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(537,'deals','617','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(538,'deals','618','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(539,'deals','619','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(540,'deals','620','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(541,'deals','621','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(542,'deals','622','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(543,'deals','623','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(544,'deals','624','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(545,'deals','625','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(546,'deals','626','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(547,'deals','627','error','Organization not found: Carolinaboatco',NULL,'2025-11-14 00:11:03'),
(548,'deals','628','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(549,'deals','629','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(550,'deals','630','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(551,'deals','631','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(552,'deals','633','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(553,'deals','635','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(554,'deals','636','error','Organization not found: NuCanoe',NULL,'2025-11-14 00:11:03'),
(555,'deals','637','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(556,'deals','639','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(557,'deals','640','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(558,'deals','641','error','Organization not found: Amblogistic',NULL,'2025-11-14 00:11:03'),
(559,'deals','642','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(560,'deals','643','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(561,'deals','645','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(562,'deals','646','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(563,'deals','647','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(564,'deals','648','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(565,'deals','649','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(566,'deals','650','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(567,'deals','652','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(568,'deals','653','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(569,'deals','654','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(570,'deals','655','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(571,'deals','656','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(572,'deals','657','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(573,'deals','659','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(574,'deals','660','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(575,'deals','661','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(576,'deals','663','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(577,'deals','664','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(578,'deals','665','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(579,'deals','667','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(580,'deals','668','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(581,'deals','669','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(582,'deals','670','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(583,'deals','671','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(584,'deals','672','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(585,'deals','674','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(586,'deals','675','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(587,'deals','676','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(588,'deals','677','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(589,'deals','678','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(590,'deals','679','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(591,'deals','680','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(592,'deals','681','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(593,'deals','682','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(594,'deals','683','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(595,'deals','684','error','Organization not found: Lake and Trail USA',NULL,'2025-11-14 00:11:03'),
(596,'deals','685','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(597,'deals','686','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(598,'deals','687','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(599,'deals','689','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(600,'deals','690','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(601,'deals','691','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(602,'deals','692','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(603,'deals','693','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(604,'deals','695','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(605,'deals','696','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(606,'deals','698','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(607,'deals','699','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(608,'deals','700','error','Organization not found: Central Florida Trolling Motor & Phillips Bait & Tackle Shop',NULL,'2025-11-14 00:11:03'),
(609,'deals','701','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(610,'deals','702','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(611,'deals','703','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(612,'deals','704','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(613,'deals','706','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(614,'deals','707','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(615,'deals','708','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(616,'deals','709','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(617,'deals','710','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(618,'deals','711','error','Organization not found: Watersports West',NULL,'2025-11-14 00:11:03'),
(619,'deals','712','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(620,'deals','713','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(621,'deals','714','error','Organization not found: 44 Tackle',NULL,'2025-11-14 00:11:03'),
(622,'deals','715','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(623,'deals','716','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(624,'deals','717','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(625,'deals','718','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(626,'deals','719','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(627,'deals','721','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(628,'deals','723','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(629,'deals','724','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(630,'deals','726','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(631,'deals','727','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(632,'deals','728','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(633,'deals','729','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(634,'deals','730','error','Organization not found: R&R Marine',NULL,'2025-11-14 00:11:03'),
(635,'deals','731','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(636,'deals','732','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(637,'deals','733','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(638,'deals','734','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(639,'deals','735','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(640,'deals','736','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(641,'deals','737','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(642,'deals','738','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(643,'deals','739','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(644,'deals','740','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(645,'deals','741','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(646,'deals','742','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(647,'deals','743','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(648,'deals','744','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(649,'deals','745','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(650,'deals','746','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(651,'deals','747','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(652,'deals','748','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(653,'deals','750','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(654,'deals','751','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(655,'deals','752','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(656,'deals','753','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(657,'deals','754','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(658,'deals','755','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(659,'deals','756','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(660,'deals','757','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(661,'deals','758','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(662,'deals','759','error','Organization not found: Plantation Boat Mart & Marina, Inc.',NULL,'2025-11-14 00:11:03'),
(663,'deals','760','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(664,'deals','761','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(665,'deals','762','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(666,'deals','763','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(667,'deals','764','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(668,'deals','766','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(669,'deals','767','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(670,'deals','769','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(671,'deals','770','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(672,'deals','771','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(673,'deals','772','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(674,'deals','773','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(675,'deals','774','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(676,'deals','775','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(677,'deals','776','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(678,'deals','777','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(679,'deals','778','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(680,'deals','779','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(681,'deals','780','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(682,'deals','781','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(683,'deals','782','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(684,'deals','783','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(685,'deals','784','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(686,'deals','785','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(687,'deals','786','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(688,'deals','787','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(689,'deals','788','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(690,'deals','789','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(691,'deals','790','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(692,'deals','791','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(693,'deals','793','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(694,'deals','794','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(695,'deals','795','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(696,'deals','796','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(697,'deals','797','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(698,'deals','798','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(699,'deals','799','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(700,'deals','800','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(701,'deals','801','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(702,'deals','803','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(703,'deals','805','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(704,'deals','806','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(705,'deals','807','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(706,'deals','808','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(707,'deals','810','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(708,'deals','811','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(709,'deals','812','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(710,'deals','814','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(711,'deals','815','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(712,'deals','816','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(713,'deals','818','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(714,'deals','820','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(715,'deals','821','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(716,'deals','823','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(717,'deals','824','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(718,'deals','827','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(719,'deals','828','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(720,'deals','829','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(721,'deals','830','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(722,'deals','832','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(723,'deals','834','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(724,'deals','836','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(725,'deals','837','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(726,'deals','838','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(727,'deals','839','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(728,'deals','841','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(729,'deals','842','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(730,'deals','843','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(731,'deals','844','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(732,'deals','845','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(733,'deals','846','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(734,'deals','847','error','Organization not found: River Raptor Jetboats',NULL,'2025-11-14 00:11:03'),
(735,'deals','848','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(736,'deals','849','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(737,'deals','850','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(738,'deals','851','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(739,'deals','852','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(740,'deals','854','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(741,'deals','855','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(742,'deals','856','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(743,'deals','858','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(744,'deals','859','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(745,'deals','860','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(746,'deals','863','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(747,'deals','864','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(748,'deals','866','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(749,'deals','867','error','Organization not found: Caribee Boat Sales & Marina',NULL,'2025-11-14 00:11:03'),
(750,'deals','868','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(751,'deals','869','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(752,'deals','871','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(753,'deals','872','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(754,'deals','874','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(755,'deals','875','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(756,'deals','876','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(757,'deals','877','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(758,'deals','879','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(759,'deals','880','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(760,'deals','881','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(761,'deals','882','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(762,'deals','883','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(763,'deals','885','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(764,'deals','887','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(765,'deals','889','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(766,'deals','890','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(767,'deals','892','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(768,'deals','893','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(769,'deals','894','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(770,'deals','896','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(771,'deals','897','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(772,'deals','899','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(773,'deals','900','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(774,'deals','902','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(775,'deals','903','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(776,'deals','904','error','Organization not found: eMarine Systems',NULL,'2025-11-14 00:11:03'),
(777,'deals','905','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(778,'deals','906','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(779,'deals','907','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(780,'deals','909','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(781,'deals','910','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(782,'deals','912','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(783,'deals','913','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(784,'deals','914','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(785,'deals','915','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(786,'deals','916','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(787,'deals','917','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(788,'deals','919','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(789,'deals','920','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(790,'deals','921','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(791,'deals','922','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(792,'deals','924','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(793,'deals','925','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(794,'deals','926','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(795,'deals','928','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(796,'deals','929','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(797,'deals','930','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(798,'deals','931','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(799,'deals','933','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(800,'deals','934','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(801,'deals','937','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(802,'deals','939','error','Organization not found: Lynn’s West Side Marine',NULL,'2025-11-14 00:11:03'),
(803,'deals','940','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(804,'deals','942','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(805,'deals','943','error','Organization not found: Royal Marine Service & Management LLC',NULL,'2025-11-14 00:11:03'),
(806,'deals','944','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(807,'deals','946','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(808,'deals','947','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(809,'deals','948','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(810,'deals','949','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(811,'deals','951','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(812,'deals','953','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(813,'deals','955','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(814,'deals','956','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(815,'deals','957','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(816,'deals','959','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(817,'deals','960','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(818,'deals','961','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(819,'deals','963','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(820,'deals','964','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(821,'deals','965','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(822,'deals','966','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(823,'deals','967','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(824,'deals','970','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(825,'deals','971','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(826,'deals','972','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(827,'deals','973','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(828,'deals','974','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(829,'deals','975','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(830,'deals','976','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(831,'deals','978','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(832,'deals','979','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(833,'deals','980','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(834,'deals','981','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(835,'deals','982','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(836,'deals','983','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(837,'deals','984','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(838,'deals','985','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(839,'deals','986','error','Organization not found: Legendary Marine, Inc.-Destin',NULL,'2025-11-14 00:11:03'),
(840,'deals','987','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(841,'deals','988','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(842,'deals','989','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(843,'deals','990','error','Organization not found: Legendary Marine, Inc.-Gulf Shores',NULL,'2025-11-14 00:11:03'),
(844,'deals','991','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(845,'deals','992','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(846,'deals','993','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(847,'deals','994','error','Organization not found: sunrisemarineofalabama.com',NULL,'2025-11-14 00:11:03'),
(848,'deals','995','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(849,'deals','996','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(850,'deals','997','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(851,'deals','998','error','Organization not found: Legendary Marine, Inc.-PC',NULL,'2025-11-14 00:11:03'),
(852,'deals','999','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(853,'deals','1000','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(854,'deals','1001','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(855,'deals','1003','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(856,'deals','1004','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(857,'deals','1005','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(858,'deals','1006','error','Organization not found: Legendary Marine, Inc - Pensacola',NULL,'2025-11-14 00:11:03'),
(859,'deals','1007','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(860,'deals','1008','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(861,'deals','1009','error','Organization not found: Sunrise Marine Destin',NULL,'2025-11-14 00:11:03'),
(862,'deals','1010','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(863,'deals','1012','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(864,'deals','1013','error','Organization not found: Marina Mikes',NULL,'2025-11-14 00:11:03'),
(865,'deals','1014','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(866,'deals','1015','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(867,'deals','1016','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(868,'deals','1017','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(869,'deals','1018','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(870,'deals','1019','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(871,'deals','1020','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(872,'deals','1021','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(873,'deals','1023','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(874,'deals','1024','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(875,'deals','1027','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(876,'deals','1028','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(877,'deals','1029','error','Organization not found: Boatersworld',NULL,'2025-11-14 00:11:03'),
(878,'deals','1030','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(879,'deals','1031','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(880,'deals','1032','error','Organization not found: Reelsouthernmarine',NULL,'2025-11-14 00:11:03'),
(881,'deals','1033','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(882,'deals','1034','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(883,'deals','1036','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(884,'deals','1037','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(885,'deals','1038','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(886,'deals','1039','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(887,'deals','1040','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(888,'deals','1041','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(889,'deals','1042','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(890,'deals','1043','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(891,'deals','1044','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(892,'deals','1045','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(893,'deals','1046','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(894,'deals','1047','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(895,'deals','1048','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(896,'deals','1049','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(897,'deals','1050','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(898,'deals','1051','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(899,'deals','1052','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(900,'deals','1053','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(901,'deals','1054','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(902,'deals','1056','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(903,'deals','1057','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(904,'deals','1058','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(905,'deals','1059','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(906,'deals','1060','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(907,'deals','1061','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(908,'deals','1062','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(909,'deals','1063','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(910,'deals','1064','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(911,'deals','1065','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(912,'deals','1066','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(913,'deals','1067','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(914,'deals','1068','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(915,'deals','1069','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(916,'deals','1070','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(917,'deals','1071','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(918,'deals','1072','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(919,'deals','1073','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(920,'deals','1074','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(921,'deals','1075','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(922,'deals','1076','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(923,'deals','1077','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(924,'deals','1078','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(925,'deals','1079','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(926,'deals','1080','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(927,'deals','1081','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(928,'deals','1082','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(929,'deals','1083','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(930,'deals','1084','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(931,'deals','1085','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(932,'deals','1086','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(933,'deals','1088','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(934,'deals','1089','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(935,'deals','1091','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(936,'deals','1092','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(937,'deals','1093','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(938,'deals','1094','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(939,'deals','1095','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(940,'deals','1096','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(941,'deals','1097','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(942,'deals','1098','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(943,'deals','1099','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(944,'deals','1101','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(945,'deals','1102','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(946,'deals','1103','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(947,'deals','1104','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(948,'deals','1105','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(949,'deals','1106','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(950,'deals','1107','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(951,'deals','1108','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(952,'deals','1109','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(953,'deals','1110','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(954,'deals','1111','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(955,'deals','1112','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(956,'deals','1114','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(957,'deals','1115','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(958,'deals','1116','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(959,'deals','1117','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(960,'deals','1118','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(961,'deals','1120','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(962,'deals','1121','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(963,'deals','1123','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(964,'deals','1124','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(965,'deals','1125','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(966,'deals','1126','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(967,'deals','1127','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(968,'deals','1128','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(969,'deals','1129','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(970,'deals','1131','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(971,'deals','1132','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(972,'deals','1133','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(973,'deals','1135','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(974,'deals','1136','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(975,'deals','1137','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(976,'deals','1139','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(977,'deals','1141','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(978,'deals','1143','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(979,'deals','1144','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(980,'deals','1146','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(981,'deals','1147','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(982,'deals','1148','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(983,'deals','1149','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(984,'deals','1150','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(985,'deals','1151','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(986,'deals','1152','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(987,'deals','1153','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(988,'deals','1154','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(989,'deals','1155','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(990,'deals','1156','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(991,'deals','1157','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(992,'deals','1158','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(993,'deals','1159','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(994,'deals','1160','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(995,'deals','1161','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(996,'deals','1162','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(997,'deals','1163','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(998,'deals','1165','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(999,'deals','1166','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1000,'deals','1167','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1001,'deals','1168','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1002,'deals','1169','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1003,'deals','1170','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1004,'deals','1171','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1005,'deals','1172','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1006,'deals','1173','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1007,'deals','1174','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1008,'deals','1175','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1009,'deals','1176','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1010,'deals','1177','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1011,'deals','1178','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1012,'deals','1179','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1013,'deals','1180','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1014,'deals','1181','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1015,'deals','1182','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1016,'deals','1183','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1017,'deals','1184','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1018,'deals','1185','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1019,'deals','1186','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1020,'deals','1187','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1021,'deals','1188','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1022,'deals','1189','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1023,'deals','1190','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1024,'deals','1191','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1025,'deals','1192','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1026,'deals','1193','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1027,'deals','1194','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1028,'deals','1195','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1029,'deals','1196','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1030,'deals','1197','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1031,'deals','1198','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1032,'deals','1199','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1033,'deals','1200','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1034,'deals','1201','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1035,'deals','1202','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1036,'deals','1203','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1037,'deals','1204','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1038,'deals','1205','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1039,'deals','1206','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1040,'deals','1207','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1041,'deals','1208','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1042,'deals','1209','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1043,'deals','1210','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1044,'deals','1211','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1045,'deals','1213','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1046,'deals','1215','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1047,'deals','1216','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1048,'deals','1217','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1049,'deals','1218','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1050,'deals','1220','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1051,'deals','1221','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1052,'deals','1222','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1053,'deals','1223','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1054,'deals','1224','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1055,'deals','1225','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1056,'deals','1227','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1057,'deals','1229','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1058,'deals','1230','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1059,'deals','1231','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1060,'deals','1233','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1061,'deals','1234','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1062,'deals','1235','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1063,'deals','1236','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1064,'deals','1237','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1065,'deals','1238','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1066,'deals','1239','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1067,'deals','1240','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1068,'deals','1241','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1069,'deals','1242','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1070,'deals','1243','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1071,'deals','1245','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1072,'deals','1246','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1073,'deals','1247','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1074,'deals','1248','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1075,'deals','1250','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1076,'deals','1253','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1077,'deals','1255','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1078,'deals','1256','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1079,'deals','1257','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1080,'deals','1258','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1081,'deals','1259','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1082,'deals','1261','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1083,'deals','1262','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1084,'deals','1263','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1085,'deals','1264','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1086,'deals','1265','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1087,'deals','1266','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1088,'deals','1267','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1089,'deals','1268','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1090,'deals','1269','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1091,'deals','1271','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1092,'deals','1273','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1093,'deals','1274','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1094,'deals','1275','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1095,'deals','1276','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1096,'deals','1277','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1097,'deals','1278','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1098,'deals','1279','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1099,'deals','1281','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1100,'deals','1282','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1101,'deals','1283','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1102,'deals','1284','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1103,'deals','1285','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1104,'deals','1287','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1105,'deals','1288','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1106,'deals','1289','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1107,'deals','1290','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1108,'deals','1291','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1109,'deals','1292','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1110,'deals','1293','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1111,'deals','1294','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1112,'deals','1295','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1113,'deals','1296','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1114,'deals','1297','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1115,'deals','1300','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1116,'deals','1301','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1117,'deals','1302','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1118,'deals','1303','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1119,'deals','1304','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1120,'deals','1305','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1121,'deals','1307','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1122,'deals','1308','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1123,'deals','1310','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1124,'deals','1311','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1125,'deals','1312','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1126,'deals','1314','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1127,'deals','1315','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1128,'deals','1316','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1129,'deals','1317','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1130,'deals','1318','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1131,'deals','1319','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1132,'deals','1321','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1133,'deals','1322','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1134,'deals','1326','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1135,'deals','1327','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1136,'deals','1330','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1137,'deals','1331','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1138,'deals','1333','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1139,'deals','1335','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1140,'deals','1337','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1141,'deals','1338','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1142,'deals','1339','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1143,'deals','1341','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1144,'deals','1343','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1145,'deals','1344','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1146,'deals','1345','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1147,'deals','1346','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1148,'deals','1348','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1149,'deals','1349','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1150,'deals','1350','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1151,'deals','1351','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1152,'deals','1352','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1153,'deals','1353','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1154,'deals','1355','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1155,'deals','1358','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1156,'deals','1359','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1157,'deals','1360','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1158,'deals','1362','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1159,'deals','1365','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1160,'deals','1367','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1161,'deals','1369','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1162,'deals','1370','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1163,'deals','1371','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1164,'deals','1372','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1165,'deals','1374','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1166,'deals','1375','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1167,'deals','1376','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1168,'deals','1377','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1169,'deals','1378','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1170,'deals','1379','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1171,'deals','1380','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1172,'deals','1384','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1173,'deals','1385','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1174,'deals','1386','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1175,'deals','1387','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1176,'deals','1388','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1177,'deals','1389','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1178,'deals','1390','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1179,'deals','1391','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1180,'deals','1393','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1181,'deals','1394','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1182,'deals','1395','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1183,'deals','1396','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1184,'deals','1400','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1185,'deals','1401','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1186,'deals','1402','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1187,'deals','1403','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1188,'deals','1404','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1189,'deals','1405','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1190,'deals','1406','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1191,'deals','1407','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1192,'deals','1409','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1193,'deals','1410','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1194,'deals','1411','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1195,'deals','1412','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1196,'deals','1413','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1197,'deals','1416','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1198,'deals','1417','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1199,'deals','1418','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1200,'deals','1420','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1201,'deals','1421','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1202,'deals','1422','error','Organization not found: Solar Stik',NULL,'2025-11-14 00:11:03'),
(1203,'deals','1423','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1204,'deals','1424','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1205,'deals','1425','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1206,'deals','1426','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1207,'deals','1427','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1208,'deals','1428','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1209,'deals','1429','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1210,'deals','1430','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1211,'deals','1431','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1212,'deals','1432','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1213,'deals','1433','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1214,'deals','1434','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1215,'deals','1435','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1216,'deals','1436','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1217,'deals','1437','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1218,'deals','1438','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1219,'deals','1439','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1220,'deals','1440','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1221,'deals','1441','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1222,'deals','1442','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1223,'deals','1443','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1224,'deals','1444','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1225,'deals','1445','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1226,'deals','1446','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1227,'deals','1447','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1228,'deals','1448','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1229,'deals','1449','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1230,'deals','1450','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1231,'deals','1451','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1232,'deals','1452','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1233,'deals','1453','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1234,'deals','1454','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1235,'deals','1455','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1236,'deals','1456','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1237,'deals','1457','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1238,'deals','1458','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1239,'deals','1459','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1240,'deals','1460','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1241,'deals','1462','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1242,'deals','1463','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1243,'deals','1464','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1244,'deals','1466','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1245,'deals','1468','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1246,'deals','1469','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1247,'deals','1470','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1248,'deals','1471','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1249,'deals','1472','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1250,'deals','1473','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1251,'deals','1474','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1252,'deals','1475','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1253,'deals','1476','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1254,'deals','1477','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1255,'deals','1478','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1256,'deals','1481','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1257,'deals','1482','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1258,'deals','1483','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1259,'deals','1485','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1260,'deals','1486','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1261,'deals','1487','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1262,'deals','1488','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1263,'deals','1489','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1264,'deals','1490','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1265,'deals','1491','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1266,'deals','1492','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1267,'deals','1493','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1268,'deals','1495','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1269,'deals','1496','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1270,'deals','1497','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1271,'deals','1499','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1272,'deals','1501','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1273,'deals','1503','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1274,'deals','1505','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1275,'deals','1507','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1276,'deals','1508','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1277,'deals','1509','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1278,'deals','1510','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1279,'deals','1511','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1280,'deals','1512','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1281,'deals','1513','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1282,'deals','1514','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1283,'deals','1515','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1284,'deals','1516','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1285,'deals','1517','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1286,'deals','1518','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1287,'deals','1519','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1288,'deals','1520','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1289,'deals','1522','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1290,'deals','1523','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1291,'deals','1524','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1292,'deals','1525','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1293,'deals','1526','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1294,'deals','1527','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1295,'deals','1528','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1296,'deals','1529','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1297,'deals','1530','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1298,'deals','1531','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1299,'deals','1532','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1300,'deals','1533','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1301,'deals','1534','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1302,'deals','1535','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1303,'deals','1536','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1304,'deals','1547','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1305,'deals','1548','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1306,'deals','1549','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1307,'deals','1550','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1308,'deals','1551','error','Organization not found: 24V Brushless DC Motor- Endless Pools',NULL,'2025-11-14 00:11:03'),
(1309,'deals','1553','error','Organization not found: Mud Buddy, LLC',NULL,'2025-11-14 00:11:03'),
(1310,'deals','1555','error','Organization not found: Healthlight Engineering',NULL,'2025-11-14 00:11:03'),
(1311,'deals','1556','error','Organization not found: U.S. Geological Survery',NULL,'2025-11-14 00:11:03'),
(1312,'deals','1557','error','Organization not found: Jeneer Group',NULL,'2025-11-14 00:11:03'),
(1313,'deals','1558','error','Organization not found: Avada',NULL,'2025-11-14 00:11:03'),
(1314,'deals','1559','error','Organization not found: Obsidian Integration',NULL,'2025-11-14 00:11:03'),
(1315,'deals','1563','error','Organization not found: Dominion Rods',NULL,'2025-11-14 00:11:03'),
(1316,'deals','1566','error','Organization not found: Pacmartech',NULL,'2025-11-14 00:11:03'),
(1317,'deals','1570','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1318,'deals','1572','error','Organization not found: Back Haul Engineering',NULL,'2025-11-14 00:11:03'),
(1319,'deals','1573','error','Organization not found: Umn',NULL,'2025-11-14 00:11:03'),
(1320,'deals','1574','error','Organization not found: Howeandhowe',NULL,'2025-11-14 00:11:03'),
(1321,'deals','1575','error','Organization not found: Tritonsubs',NULL,'2025-11-14 00:11:03'),
(1322,'deals','1576','error','Organization not found: WESCO',NULL,'2025-11-14 00:11:03'),
(1323,'deals','1577','error','Organization not found: Unknown',NULL,'2025-11-14 00:11:03'),
(1324,'deals','1578','error','Organization not found: Elnfochips',NULL,'2025-11-14 00:11:03'),
(1325,'deals','1580','error','Organization not found: Shaider Tech LLC',NULL,'2025-11-14 00:11:03'),
(1326,'deals','1581','error','Organization not found: Solar Stik',NULL,'2025-11-14 00:11:03'),
(1327,'deals','1582','error','Organization not found: Roystonllc',NULL,'2025-11-14 00:11:03'),
(1328,'deals','1583','error','Organization not found: Idexx',NULL,'2025-11-14 00:11:03'),
(1329,'deals','1584','error','Organization not found: Gd-ms',NULL,'2025-11-14 00:11:03'),
(1330,'deals','1586','error','Organization not found: Analyticsystems',NULL,'2025-11-14 00:11:03'),
(1331,'deals','1589','error','Organization not found: E2companies',NULL,'2025-11-14 00:11:03'),
(1332,'deals','1590','error','Organization not found: Cirrussystemsus',NULL,'2025-11-14 00:11:03'),
(1333,'deals','1591','error','Organization not found: Faa',NULL,'2025-11-14 00:11:03'),
(1334,'deals','1592','error','Organization not found: Espicorp',NULL,'2025-11-14 00:11:03'),
(1335,'deals','1593','error','Organization not found: Uni-tell',NULL,'2025-11-14 00:11:03'),
(1336,'deals','1594','error','Organization not found: James Schwalm organization',NULL,'2025-11-14 00:11:03'),
(1337,'deals','1595','error','Organization not found: Martin Land',NULL,'2025-11-14 00:11:03'),
(1338,'deals','1596','error','Organization not found: Lupa Tecnologia e Sistemas S.A.',NULL,'2025-11-14 00:11:03'),
(1339,'deals','1597','error','Organization not found: dominionrods',NULL,'2025-11-14 00:11:03'),
(1340,'deals','1598','error','Organization not found: Mars Robotics',NULL,'2025-11-14 00:11:03'),
(1341,'deals','1600','error','Organization not found: Nasa',NULL,'2025-11-14 00:11:03'),
(1342,'deals','1604','error','Organization not found: George Binu organization',NULL,'2025-11-14 00:11:03'),
(1343,'deals','1605','error','Organization not found: Livaq',NULL,'2025-11-14 00:11:03'),
(1344,'deals','1608','error','Organization not found: OnSight Technology Inc.',NULL,'2025-11-14 00:11:03'),
(1345,'deals','1609','error','Organization not found: Florida Atlantic University',NULL,'2025-11-14 00:11:03'),
(1346,'deals','1610','error','Organization not found: Genesis Marine Technologies',NULL,'2025-11-14 00:11:03'),
(1347,'deals','1611','error','Organization not found: Progress Solar Solutions',NULL,'2025-11-14 00:11:03'),
(1348,'deals','1612','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1349,'deals','1613','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1350,'deals','1614','error','Organization not found: Crunchcycle',NULL,'2025-11-14 00:11:03'),
(1351,'deals','1616','error','Organization not found: Blueline Video Surveillance',NULL,'2025-11-14 00:11:03'),
(1352,'deals','1617','error','Organization not found: Shaider Tech LLC',NULL,'2025-11-14 00:11:03'),
(1353,'deals','1622','error','Organization not found: Dominion Rods',NULL,'2025-11-14 00:11:03'),
(1354,'deals','1623','error','Organization not found: Mesa Solutions',NULL,'2025-11-14 00:11:03'),
(1355,'deals','1625','error','Organization not found: Scewo AG',NULL,'2025-11-14 00:11:03'),
(1356,'deals','1626','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1357,'deals','1627','error','Organization not found: Ben Cox',NULL,'2025-11-14 00:11:03'),
(1358,'deals','1628','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1359,'deals','1629','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1360,'deals','1630','error','Organization not found: Avnon Group',NULL,'2025-11-14 00:11:03'),
(1361,'deals','1631','error','Organization not found: Fuel Trax',NULL,'2025-11-14 00:11:03'),
(1362,'deals','1632','error','Organization not found: LotWitness | Sentriforce',NULL,'2025-11-14 00:11:03'),
(1363,'deals','1634','error','Organization not found: JL Marine Systems',NULL,'2025-11-14 00:11:03'),
(1364,'deals','1635','error','Organization not found: Pacmartech',NULL,'2025-11-14 00:11:03'),
(1365,'deals','1638','error','Organization not found: US Geological Services - USGS',NULL,'2025-11-14 00:11:03'),
(1366,'deals','1639','error','Organization not found: London Machinery Inc.',NULL,'2025-11-14 00:11:03'),
(1367,'deals','1640','error','Organization not found: Climate Robotics',NULL,'2025-11-14 00:11:03'),
(1368,'deals','1641','error','Organization not found: Acufore',NULL,'2025-11-14 00:11:03'),
(1369,'deals','1642','error','Organization not found: Electric Chair- 2430 in parallel',NULL,'2025-11-14 00:11:03'),
(1370,'deals','1643','error','Organization not found: U.S. Navy NCIS',NULL,'2025-11-14 00:11:03'),
(1371,'deals','1647','error','Organization not found: Houston Career and Technology Education Center',NULL,'2025-11-14 00:11:03'),
(1372,'deals','1648','error','Organization not found: AirTech Innovations',NULL,'2025-11-14 00:11:03'),
(1373,'deals','1650','error','Organization not found: Phoenix Tactical',NULL,'2025-11-14 00:11:03'),
(1374,'deals','1651','error','Organization not found: BIT Solutions LLC',NULL,'2025-11-14 00:11:03'),
(1375,'deals','1653','error','Organization not found: Bering Global Solutions',NULL,'2025-11-14 00:11:03'),
(1376,'deals','1654','error','Organization not found: AEVEX',NULL,'2025-11-14 00:11:03'),
(1377,'deals','1655','error','Organization not found: Ganassi Racing',NULL,'2025-11-14 00:11:03'),
(1378,'deals','1657','error','Organization not found: United States Army Special Operations Command',NULL,'2025-11-14 00:11:03'),
(1379,'deals','1658','error','Organization not found: Department of Defense Office of Inspector General',NULL,'2025-11-14 00:11:03'),
(1380,'deals','1659','error','Organization not found: Astronics Test Systems',NULL,'2025-11-14 00:11:03'),
(1381,'deals','1660','error','Organization not found: Supplynet Inc',NULL,'2025-11-14 00:11:03'),
(1382,'deals','1661','error','Organization not found: Turtle Corporation',NULL,'2025-11-14 00:11:03'),
(1383,'deals','1664','error','Organization not found: Leidos',NULL,'2025-11-14 00:11:03'),
(1384,'deals','1665','error','Organization not found: DTV Arms',NULL,'2025-11-14 00:11:03'),
(1385,'deals','1666','error','Organization not found: Air Force SOC',NULL,'2025-11-14 00:11:03'),
(1386,'deals','1667','error','Organization not found: Polaris Government & Defense',NULL,'2025-11-14 00:11:03'),
(1387,'deals','1668','error','Organization not found: Raptor Photonics',NULL,'2025-11-14 00:11:03'),
(1388,'deals','1669','error','Organization not found: Rolls Royce LibertyWorks',NULL,'2025-11-14 00:11:03'),
(1389,'deals','1670','error','Organization not found: AV INC',NULL,'2025-11-14 00:11:03'),
(1390,'deals','1672','error','Organization not found: G-Way Microwave',NULL,'2025-11-14 00:11:03'),
(1391,'deals','1676','error','Organization not found: Joint Acquisition Task Force',NULL,'2025-11-14 00:11:03'),
(1392,'deals','1678','error','Organization not found: Helios Remote Sensing',NULL,'2025-11-14 00:11:03'),
(1393,'deals','1679','error','Organization not found: MGI Medical',NULL,'2025-11-14 00:11:03'),
(1394,'deals','1681','error','Organization not found: Expeditionary Services',NULL,'2025-11-14 00:11:03'),
(1395,'deals','1682','error','Organization not found: Samarthya Investment Advisors',NULL,'2025-11-14 00:11:03'),
(1396,'deals','1683','error','Organization not found: Lockheed Martin',NULL,'2025-11-14 00:11:03'),
(1397,'deals','1685','error','Organization not found: GEIST Robotics',NULL,'2025-11-14 00:11:03'),
(1398,'deals','1686','error','Organization not found: Pratt / Miller',NULL,'2025-11-14 00:11:03'),
(1399,'deals','1688','error','Organization not found: SOCOM.MIL',NULL,'2025-11-14 00:11:03'),
(1400,'deals','1689','error','Organization not found: Mistral Inc',NULL,'2025-11-14 00:11:03'),
(1401,'deals','1690','error','Organization not found: Patriot3',NULL,'2025-11-14 00:11:03'),
(1402,'deals','1691','error','Organization not found: Brentronics Battery',NULL,'2025-11-14 00:11:03'),
(1403,'deals','1692','error','Organization not found: Boeing',NULL,'2025-11-14 00:11:03'),
(1404,'deals','1693','error','Organization not found: 24V Brushless DC Motor- Endless Pools',NULL,'2025-11-14 00:11:03'),
(1405,'deals','1695','error','Organization not found: Marsrobot',NULL,'2025-11-14 00:11:03'),
(1406,'deals','1696','error','Organization not found: Pallet Shuttle',NULL,'2025-11-14 00:11:03'),
(1407,'deals','1697','error','Organization not found: Celektronix',NULL,'2025-11-14 00:11:03'),
(1408,'deals','1698','error','Organization not found: Berry Aviation',NULL,'2025-11-14 00:11:03'),
(1409,'deals','1699','error','Organization not found: Velozity Technology Solutions',NULL,'2025-11-14 00:11:03'),
(1410,'deals','1700','error','Organization not found: NexTech Solutions, LLC',NULL,'2025-11-14 00:11:03'),
(1411,'deals','1702','error','Organization not found: Segway Hollywood',NULL,'2025-11-14 00:11:03'),
(1412,'deals','1703','error','Organization not found: Newlands',NULL,'2025-11-14 00:11:03'),
(1413,'deals','1706','error','Organization not found: Track Master',NULL,'2025-11-14 00:11:03'),
(1414,'deals','1707','error','Organization not found: Marcus Portillo',NULL,'2025-11-14 00:11:03'),
(1415,'deals','1708','error','Organization not found: James Truman organization',NULL,'2025-11-14 00:11:03'),
(1416,'deals','1712','error','Organization not found: Ocean Rescue Alliance International',NULL,'2025-11-14 00:11:03'),
(1417,'deals','1713','error','Organization not found: Super Color Digital',NULL,'2025-11-14 00:11:03'),
(1418,'deals','1714','error','Organization not found: Marine Customer',NULL,'2025-11-14 00:11:03'),
(1419,'deals','1716','error','Organization not found: Optum',NULL,'2025-11-14 00:11:03'),
(1420,'deals','1718','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1421,'deals','1722','error','Organization not found: Sol Circuits',NULL,'2025-11-14 00:11:03'),
(1422,'deals','1723','error','Organization not found: Fujitsu- 48V 20AH',NULL,'2025-11-14 00:11:03'),
(1423,'deals','1724','error','Organization not found: US Traffic Systems',NULL,'2025-11-14 00:11:03'),
(1424,'deals','1725','error','Organization not found: Ohio Attorney Generals Office',NULL,'2025-11-14 00:11:03'),
(1425,'deals','1726','error','Organization not found: Vallen Distribution',NULL,'2025-11-14 00:11:03'),
(1426,'deals','1727','error','Organization not found: Lake County Sheriff-12V100',NULL,'2025-11-14 00:11:03'),
(1427,'deals','1730','error','Organization not found: Cicese',NULL,'2025-11-14 00:11:03'),
(1428,'deals','1733','error','Organization not found: Stream Techno',NULL,'2025-11-14 00:11:03'),
(1429,'deals','1734','error','Organization not found: Fuchs Electronics',NULL,'2025-11-14 00:11:03'),
(1430,'deals','1738','error','Organization not found: https://www.paradigmrobotics.tech/',NULL,'2025-11-14 00:11:03'),
(1431,'deals','1740','error','Organization not found: SDMS Robotics',NULL,'2025-11-14 00:11:03'),
(1432,'deals','1744','error','Organization not found: Alumacart',NULL,'2025-11-14 00:11:03'),
(1433,'deals','1745','error','Organization not found: Robotic Parking Systems',NULL,'2025-11-14 00:11:03'),
(1434,'deals','1749','error','Organization not found: EO Solutions-LBC R30K',NULL,'2025-11-14 00:11:03'),
(1435,'deals','1750','error','Organization not found: Price Electronics',NULL,'2025-11-14 00:11:03'),
(1436,'deals','1751','error','Organization not found: Stanley Robotics',NULL,'2025-11-14 00:11:03'),
(1437,'deals','1752','error','Organization not found: Residential ESS System',NULL,'2025-11-14 00:11:03'),
(1438,'deals','1753','error','Organization not found: Apellix',NULL,'2025-11-14 00:11:03'),
(1439,'deals','1755','error','Organization not found: Roush',NULL,'2025-11-14 00:11:03'),
(1440,'deals','1758','error','Organization not found: EV Power Boats',NULL,'2025-11-14 00:11:03'),
(1441,'deals','1763','error','Organization not found: Marine Customer',NULL,'2025-11-14 00:11:03'),
(1442,'deals','1764','error','Organization not found: Agility Robotics',NULL,'2025-11-14 00:11:03'),
(1443,'deals','1765','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1444,'deals','1766','error','Organization not found: FBI',NULL,'2025-11-14 00:11:03'),
(1445,'deals','1767','error','Organization not found: Solar Stik',NULL,'2025-11-14 00:11:03'),
(1446,'deals','1768','error','Organization not found: Airobotics',NULL,'2025-11-14 00:11:03'),
(1447,'deals','1771','error','Organization not found: Marine Customer',NULL,'2025-11-14 00:11:03'),
(1448,'deals','1773','error','Organization not found: Swarmbotics AI',NULL,'2025-11-14 00:11:03'),
(1449,'deals','1774','error','Organization not found: Schneider Electric',NULL,'2025-11-14 00:11:03'),
(1450,'deals','1776','error','Organization not found: Mud Buddy, LLC',NULL,'2025-11-14 00:11:03'),
(1451,'deals','1778','error','Organization not found: Dominion Rods',NULL,'2025-11-14 00:11:03'),
(1452,'deals','1779','error','Organization not found: Obsidian Integration',NULL,'2025-11-14 00:11:03'),
(1453,'deals','1780','error','Organization not found: Figure AI',NULL,'2025-11-14 00:11:03'),
(1454,'deals','1781','error','Organization not found: Marine 36V50 - Yellowfin',NULL,'2025-11-14 00:11:03'),
(1455,'deals','1782','error','Organization not found: Pallet Shuttle',NULL,'2025-11-14 00:11:03'),
(1456,'deals','1784','error','Organization not found: Grander Marine',NULL,'2025-11-14 00:11:03'),
(1457,'deals','1792','error','Organization not found: DBTech Prodcut',NULL,'2025-11-14 00:11:03'),
(1458,'deals','1797','error','Organization not found: Supernoid Robotics',NULL,'2025-11-14 00:11:03'),
(1459,'deals','1798','error','Organization not found: Federal Bureau of Investigation (FBI)',NULL,'2025-11-14 00:11:03'),
(1460,'deals','1799','error','Organization not found: nxtgencleanenergy',NULL,'2025-11-14 00:11:03'),
(1461,'deals','1800','error','Organization not found: Vector Climate',NULL,'2025-11-14 00:11:03'),
(1462,'deals','1802','error','Organization not found: Hydrants',NULL,'2025-11-14 00:11:03'),
(1463,'deals','1803','error','Organization not found: Tenacious International',NULL,'2025-11-14 00:11:03'),
(1464,'deals','1804','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1465,'deals','1805','error','Organization not found: Jeneer Group',NULL,'2025-11-14 00:11:03'),
(1466,'deals','1806','error','Organization not found: Profound Home Improvement',NULL,'2025-11-14 00:11:03'),
(1467,'deals','1810','error','Organization not found: Solar Stik',NULL,'2025-11-14 00:11:03'),
(1468,'deals','1811','error','Organization not found: Robotics Plus',NULL,'2025-11-14 00:11:03'),
(1469,'deals','1812','error','Organization not found: Universal Solutions Internaitonal',NULL,'2025-11-14 00:11:03'),
(1470,'deals','1818','error','Organization not found: Tanner . com',NULL,'2025-11-14 00:11:03'),
(1471,'deals','1820','error','Organization not found: Muhammad Zia Ullah organization',NULL,'2025-11-14 00:11:03'),
(1472,'deals','1823','error','Organization not found: Idexx',NULL,'2025-11-14 00:11:03'),
(1473,'deals','1827','error','Organization not found: Hayatcomm.net',NULL,'2025-11-14 00:11:03'),
(1474,'deals','1842','error','Organization not found: 4 Patriots',NULL,'2025-11-14 00:11:03'),
(1475,'deals','1843','error','Organization not found: Optiphase Aerospace & Drive Systems',NULL,'2025-11-14 00:11:03'),
(1476,'deals','1852','error','Organization not found: Sun Power Energy',NULL,'2025-11-14 00:11:03'),
(1477,'deals','1853','error','Organization not found: Belco Bermuda Light Company',NULL,'2025-11-14 00:11:03'),
(1478,'deals','1866','error','Organization not found: Pallet Shuttle',NULL,'2025-11-14 00:11:03'),
(1479,'deals','1867','error','Organization not found: Kupferle Water Solutions',NULL,'2025-11-14 00:11:03'),
(1480,'deals','1869','error','Organization not found: Meagan Donovan organization',NULL,'2025-11-14 00:11:03'),
(1481,'deals','1872','error','Organization not found: TTHOMAS    EDMONDS organization',NULL,'2025-11-14 00:11:03'),
(1482,'deals','1873','error','Organization not found: Electric Game Cart',NULL,'2025-11-14 00:11:03'),
(1483,'deals','1874','error','Organization not found: Jhonatan Chan organization',NULL,'2025-11-14 00:11:03'),
(1484,'deals','1876','error','Organization not found: DPI Labs Inc.',NULL,'2025-11-14 00:11:03'),
(1485,'deals','1877','error','Organization not found: Stream Techno',NULL,'2025-11-14 00:11:03'),
(1486,'deals','1880','error','Organization not found: Kavuma John organization',NULL,'2025-11-14 00:11:03'),
(1487,'deals','1883','error','Organization not found: James K. Donaghy organization',NULL,'2025-11-14 00:11:03'),
(1488,'deals','1885','error','Organization not found: World Fishing Tackle',NULL,'2025-11-14 00:11:03'),
(1489,'deals','1923','error','Organization not found: dominionrods',NULL,'2025-11-14 00:11:03'),
(1490,'deals','1925','error','Organization not found: Chapman/Leopard',NULL,'2025-11-14 00:11:03'),
(1491,'deals','1937','error','Organization not found: Newlands',NULL,'2025-11-14 00:11:03'),
(1492,'deals','1938','error','Organization not found: L3 Harris',NULL,'2025-11-14 00:11:03'),
(1493,'deals','1939','error','Organization not found: Eagle Picher Technologies',NULL,'2025-11-14 00:11:03'),
(1494,'deals','1940','error','Organization not found: ',NULL,'2025-11-14 00:11:03'),
(1495,'deals','1943','error','Organization not found: AirBus',NULL,'2025-11-14 00:11:03'),
(1496,'deals','1944','error','Organization not found: Collins Aerospace',NULL,'2025-11-14 00:11:03'),
(1497,'deals','1945','error','Organization not found: Prevalon Energy',NULL,'2025-11-14 00:11:03'),
(1498,'deals','1946','error','Organization not found: Power Sonic Corporation',NULL,'2025-11-14 00:11:03'),
(1499,'deals','1947','error','Organization not found: Curtiss-Wright',NULL,'2025-11-14 00:11:03'),
(1500,'deals','1948','error','Organization not found: Bluetti',NULL,'2025-11-14 00:11:03'),
(1501,'deals','1950','error','Organization not found: BAE Systems',NULL,'2025-11-14 00:11:03'),
(1502,'deals','1951','error','Organization not found: Powin',NULL,'2025-11-14 00:11:03'),
(1503,'deals','1952','error','Organization not found: Sonnen Inc',NULL,'2025-11-14 00:11:03'),
(1504,'deals','1953','error','Organization not found: Resistacap',NULL,'2025-11-14 00:11:03'),
(1505,'deals','1955','error','Organization not found: PowerPole',NULL,'2025-11-14 00:11:03'),
(1506,'deals','1956','error','Organization not found: Cubic Corporation',NULL,'2025-11-14 00:11:03'),
(1507,'deals','1957','error','Organization not found: XCharge',NULL,'2025-11-14 00:11:03'),
(1508,'deals','1958','error','Organization not found: Lithionics Battery',NULL,'2025-11-14 00:11:03'),
(1509,'deals','1959','error','Organization not found: PCClean Energy',NULL,'2025-11-14 00:11:03'),
(1510,'deals','1960','error','Organization not found: Avnon Group',NULL,'2025-11-14 00:11:03'),
(1511,'deals','1961','error','Organization not found: Practical Technology',NULL,'2025-11-14 00:11:03'),
(1512,'deals','1963','error','Organization not found: Lockeed Martin',NULL,'2025-11-14 00:11:03'),
(1513,'deals','1965','error','Organization not found: Northrop Grumman',NULL,'2025-11-14 00:11:03'),
(1514,'deals','1966','error','Organization not found: Siemens Energy',NULL,'2025-11-14 00:11:03'),
(1515,'deals','1967','error','Organization not found: Special Services Group',NULL,'2025-11-14 00:11:03'),
(1516,'deals','1968','error','Organization not found: Dauer Manufacturing -',NULL,'2025-11-14 00:11:03'),
(1517,'deals','1969','error','Organization not found: CDTI',NULL,'2025-11-14 00:11:03'),
(1518,'deals','1970','error','Organization not found: Enphase Energy',NULL,'2025-11-14 00:11:03'),
(1519,'deals','1972','error','Organization not found: TBD',NULL,'2025-11-14 00:11:03'),
(1520,'deals','1973','error','Organization not found: Outrider USA',NULL,'2025-11-14 00:11:03'),
(1521,'deals','1974','error','Organization not found: Security View',NULL,'2025-11-14 00:11:03'),
(1522,'deals','1975','error','Organization not found: PARAON TVOL',NULL,'2025-11-14 00:11:03'),
(1523,'deals','1976','error','Organization not found: Newlands',NULL,'2025-11-14 00:11:03'),
(1524,'deals','1985','error','Organization not found: Expro group',NULL,'2025-11-14 00:11:03'),
(1525,'deals','1986','error','Organization not found: Parker Hannifin Corporation',NULL,'2025-11-14 00:11:03'),
(1526,'deals','1987','error','Organization not found: Parker Hannifin Corporation',NULL,'2025-11-14 00:11:03'),
(1527,'deals','1988','error','Organization not found: Boeing',NULL,'2025-11-14 00:11:03'),
(1528,'deals','1989','error','Organization not found: CASES2GO',NULL,'2025-11-14 00:11:03'),
(1529,'deals','1990','error','Organization not found: Aeromarine\'s Leopard',NULL,'2025-11-14 00:11:03'),
(1530,'deals','1991','error','Organization not found: AJ\'S POWERSOURCE',NULL,'2025-11-14 00:11:03'),
(1531,'deals','1992','error','Organization not found: McAllister & Quin',NULL,'2025-11-14 00:11:03'),
(1532,'deals','1993','error','Organization not found: STS-MINIGUN',NULL,'2025-11-14 00:11:03'),
(1533,'deals','1994','error','Organization not found: STÜKEN',NULL,'2025-11-14 00:11:03'),
(1534,'deals','1995','error','Organization not found: IDEX Fire & Safety',NULL,'2025-11-14 00:11:03'),
(1535,'deals','1996','error','Organization not found: LEACH',NULL,'2025-11-14 00:11:03'),
(1536,'deals','1997','error','Organization not found: NORTHROP GRUMMAN',NULL,'2025-11-14 00:11:03'),
(1537,'deals','1998','error','Organization not found: TRELLEBORG',NULL,'2025-11-14 00:11:03'),
(1538,'deals','1999','error','Organization not found: FORGE',NULL,'2025-11-14 00:11:03'),
(1539,'deals','2000','error','Organization not found: MPInarada',NULL,'2025-11-14 00:11:03'),
(1540,'deals','2001','error','Organization not found: Vertex Imaging Solutions',NULL,'2025-11-14 00:11:03'),
(1541,'deals','2002','error','Organization not found: i2k Defense',NULL,'2025-11-14 00:11:03'),
(1542,'deals','2003','error','Organization not found: Ace Electronics Defense Systems, LLC',NULL,'2025-11-14 00:11:03'),
(1543,'deals','2004','error','Organization not found: WAVE AEROSPACE',NULL,'2025-11-14 00:11:03'),
(1544,'deals','2006','error','Organization not found: Whisper Aero',NULL,'2025-11-14 00:11:03'),
(1545,'deals','2007','error','Organization not found: Closedloop Cybernetics Inc.',NULL,'2025-11-14 00:11:03'),
(1546,'deals','2008','error','Organization not found: Firestorm Labs',NULL,'2025-11-14 00:11:03'),
(1547,'deals','2009','error','Organization not found: ACIC',NULL,'2025-11-14 00:11:03'),
(1548,'deals','2010','error','Organization not found: ASD',NULL,'2025-11-14 00:11:03'),
(1549,'deals','2011','error','Organization not found: HDT Global',NULL,'2025-11-14 00:11:03'),
(1550,'deals','2012','error','Organization not found: RAPID COMPOSITES',NULL,'2025-11-14 00:11:03'),
(1551,'deals','2013','error','Organization not found: Canine Defense Technologies',NULL,'2025-11-14 00:11:03'),
(1552,'deals','2015','error','Organization not found: Hoverfly Technologies, Inc',NULL,'2025-11-14 00:11:03'),
(1553,'deals','2016','error','Organization not found: Edge Autonomy',NULL,'2025-11-14 00:11:03'),
(1554,'deals','2017','error','Organization not found: Sandia National Laboratories',NULL,'2025-11-14 00:11:03'),
(1555,'deals','2018','error','Organization not found: H3X - Electric Motors',NULL,'2025-11-14 00:11:03'),
(1556,'deals','2019','error','Organization not found: Völund',NULL,'2025-11-14 00:11:03'),
(1557,'deals','2020','error','Organization not found: Morningstar Corporation',NULL,'2025-11-14 00:11:03'),
(1558,'deals','2021','error','Organization not found: U.S. Commercial Service, U.S. Department of Commerce',NULL,'2025-11-14 00:11:03'),
(1559,'deals','2022','error','Organization not found: US DHS HSI',NULL,'2025-11-14 00:11:03'),
(1560,'deals','2024','error','Organization not found: ModalAI, Inc.',NULL,'2025-11-14 00:11:03'),
(1561,'deals','2025','error','Organization not found: ZeroAlpha Solutions Ltd',NULL,'2025-11-14 00:11:03'),
(1562,'deals','2027','error','Organization not found: Amprius Technologies',NULL,'2025-11-14 00:11:03'),
(1563,'deals','2028','error','Organization not found: Cuattro Imaging',NULL,'2025-11-14 00:11:03'),
(1564,'deals','2029','error','Organization not found: Orange County Sheriff\'s Office',NULL,'2025-11-14 00:11:03'),
(1565,'deals','2030','error','Organization not found: 123 CRG',NULL,'2025-11-14 00:11:03'),
(1566,'deals','2031','error','Organization not found: Persistent Systems LLC',NULL,'2025-11-14 00:11:03'),
(1567,'deals','2032','error','Organization not found: SOF AT&L',NULL,'2025-11-14 00:11:03'),
(1568,'deals','2033','error','Organization not found: Maxar Technologies',NULL,'2025-11-14 00:11:03'),
(1569,'deals','2036','error','Organization not found: American Power Systems, Inc',NULL,'2025-11-14 00:11:03'),
(1570,'deals','2037','error','Organization not found: Carroll International',NULL,'2025-11-14 00:11:03'),
(1571,'deals','2038','error','Organization not found: Northrop Grumman',NULL,'2025-11-14 00:11:03'),
(1572,'deals','2039','error','Organization not found: Department of State',NULL,'2025-11-14 00:11:03'),
(1573,'deals','2040','error','Organization not found: DATRON MILITARY COMMUNICATIONS',NULL,'2025-11-14 00:11:03'),
(1574,'deals','2041','error','Organization not found: ICR',NULL,'2025-11-14 00:11:03'),
(1575,'deals','2042','error','Organization not found: Hitachi',NULL,'2025-11-14 00:11:03'),
(1576,'deals','2043','error','Organization not found: B&H Photo',NULL,'2025-11-14 00:11:03'),
(1577,'deals','2044','error','Organization not found: 5th Special Forces Group',NULL,'2025-11-14 00:11:03'),
(1578,'deals','2045','error','Organization not found: USSOCOM',NULL,'2025-11-14 00:11:03'),
(1579,'deals','2046','error','Organization not found: Atolla Tech',NULL,'2025-11-14 00:11:03'),
(1580,'deals','2047','error','Organization not found: EIZO Rugged Solutions',NULL,'2025-11-14 00:11:03'),
(1581,'deals','2049','error','Organization not found: Michael Peters Yacht Design',NULL,'2025-11-14 00:11:03'),
(1582,'deals','2050','error','Organization not found: EIC Labs',NULL,'2025-11-14 00:11:03'),
(1583,'deals','2051','error','Organization not found: Renegade UXS',NULL,'2025-11-14 00:11:03'),
(1584,'deals','2052','error','Organization not found: Patriot 3',NULL,'2025-11-14 00:11:03'),
(1585,'deals','2053','error','Organization not found: COTS',NULL,'2025-11-14 00:11:03'),
(1586,'deals','2054','error','Organization not found: ASPEN WATER INC',NULL,'2025-11-14 00:11:03'),
(1587,'deals','2055','error','Organization not found: Li-S Energy',NULL,'2025-11-14 00:11:03'),
(1588,'deals','2056','error','Organization not found: Michael Peters Yacht Design',NULL,'2025-11-14 00:11:03'),
(1589,'deals','2057','error','Organization not found: QRC (Parsons Company)',NULL,'2025-11-14 00:11:03'),
(1590,'deals','2058','error','Organization not found: MARA',NULL,'2025-11-14 00:11:03'),
(1591,'deals','2059','error','Organization not found: Northrop Grumman (ASGS)',NULL,'2025-11-14 00:11:03'),
(1592,'deals','2060','error','Organization not found: Conamix',NULL,'2025-11-14 00:11:03'),
(1593,'deals','2061','error','Organization not found: Fuses Unlimited',NULL,'2025-11-14 00:11:03'),
(1594,'deals','2062','error','Organization not found: EP Systems',NULL,'2025-11-14 00:11:03'),
(1595,'deals','2063','error','Organization not found: Expanse Labs',NULL,'2025-11-14 00:11:03'),
(1596,'deals','2064','error','Organization not found: Victory Six Advisors',NULL,'2025-11-14 00:11:03'),
(1597,'deals','2065','error','Organization not found: Sky-Watch',NULL,'2025-11-14 00:11:03'),
(1598,'deals','2066','error','Organization not found: Forge Group LLC',NULL,'2025-11-14 00:11:03'),
(1599,'deals','2067','error','Organization not found: SOCOM',NULL,'2025-11-14 00:11:03'),
(1600,'deals','2068','error','Organization not found: Jaia Robotics, Inc.',NULL,'2025-11-14 00:11:03'),
(1601,'deals','2069','error','Organization not found: Military Systems Group, Inc.',NULL,'2025-11-14 00:11:03'),
(1602,'deals','2070','error','Organization not found: 2d Special Operations Squadron',NULL,'2025-11-14 00:11:03'),
(1603,'deals','2071','error','Organization not found: SOCCENT/SPARTAN FORGE',NULL,'2025-11-14 00:11:03'),
(1604,'deals','2072','error','Organization not found: 919th SOW / 2 SOS',NULL,'2025-11-14 00:11:03'),
(1605,'deals','2073','error','Organization not found: Pelican Products, Inc.',NULL,'2025-11-14 00:11:03'),
(1606,'deals','2074','error','Organization not found: TestMart',NULL,'2025-11-14 00:11:03'),
(1607,'deals','2075','error','Organization not found: Ceebus Technologies',NULL,'2025-11-14 00:11:03'),
(1608,'deals','2076','error','Organization not found: Marlborough Communications Ltd',NULL,'2025-11-14 00:11:03'),
(1609,'deals','2077','error','Organization not found: TargetX LLC',NULL,'2025-11-14 00:11:03'),
(1610,'deals','2078','error','Organization not found: Redara Labs',NULL,'2025-11-14 00:11:03'),
(1611,'deals','2079','error','Organization not found: Coda Octopus Engineering',NULL,'2025-11-14 00:11:03'),
(1612,'deals','2080','error','Organization not found: USSOCOM',NULL,'2025-11-14 00:11:03'),
(1613,'deals','2081','error','Organization not found: USSOCOM',NULL,'2025-11-14 00:11:03'),
(1614,'deals','2082','error','Organization not found: Zero Point, Inc.',NULL,'2025-11-14 00:11:03'),
(1615,'deals','2083','error','Organization not found: USCENTCOM CCJ6',NULL,'2025-11-14 00:11:03'),
(1616,'deals','2084','error','Organization not found: Bhawin Technologies',NULL,'2025-11-14 00:11:03'),
(1617,'deals','2085','error','Organization not found: Fire Line',NULL,'2025-11-14 00:11:03'),
(1618,'deals','2086','error','Organization not found: Rapid Imaging Solutions',NULL,'2025-11-14 00:11:03'),
(1619,'deals','2087','error','Organization not found: High Ground Defense',NULL,'2025-11-14 00:11:03'),
(1620,'deals','2088','error','Organization not found: LEONARDO DRS',NULL,'2025-11-14 00:11:03'),
(1621,'deals','2089','error','Organization not found: ANDURIL',NULL,'2025-11-14 00:11:03'),
(1622,'deals','2090','error','Organization not found: MARATHON',NULL,'2025-11-14 00:11:03'),
(1623,'deals','2091','error','Organization not found: COMMAND HOLDINGS GROUP/DPM',NULL,'2025-11-14 00:11:03'),
(1624,'deals','2092','error','Organization not found: Edge Autonomy',NULL,'2025-11-14 00:11:03'),
(1625,'deals','2093','error','Organization not found: AimLock',NULL,'2025-11-14 00:11:03'),
(1626,'deals','2094','error','Organization not found: Milanion Group',NULL,'2025-11-14 00:11:03'),
(1627,'deals','2095','error','Organization not found: ODU-USA',NULL,'2025-11-14 00:11:03'),
(1628,'deals','2096','error','Organization not found: Sila Nanotechnologies, Inc',NULL,'2025-11-14 00:11:03'),
(1629,'deals','2097','error','Organization not found: Falcon Power LLC',NULL,'2025-11-14 00:11:03'),
(1630,'deals','2098','error','Organization not found: Raider Outboards',NULL,'2025-11-14 00:11:03'),
(1631,'deals','2099','error','Organization not found: Gorilla Weapons Systems',NULL,'2025-11-14 00:11:03'),
(1632,'deals','2100','error','Organization not found: American Technologies Network Corp.',NULL,'2025-11-14 00:11:03'),
(1633,'deals','2101','error','Organization not found: Terminal Autonomy',NULL,'2025-11-14 00:11:03'),
(1634,'deals','2102','error','Organization not found: SYPAQ',NULL,'2025-11-14 00:11:03'),
(1635,'deals','2103','error','Organization not found: UMD International, Inc',NULL,'2025-11-14 00:11:03'),
(1636,'deals','2104','error','Organization not found: Teledyne FLIR',NULL,'2025-11-14 00:11:03'),
(1637,'deals','2106','error','Organization not found: UK MOD (DES)',NULL,'2025-11-14 00:11:03'),
(1638,'deals','2107','error','Organization not found: Hoverfly Technologies Inc.',NULL,'2025-11-14 00:11:03'),
(1639,'deals','2108','error','Organization not found: Aristeias',NULL,'2025-11-14 00:11:03'),
(1640,'deals','2109','error','Organization not found: AlphaBravo',NULL,'2025-11-14 00:11:03'),
(1641,'deals','2110','error','Organization not found: AlphaBravo',NULL,'2025-11-14 00:11:03'),
(1642,'deals','2111','error','Organization not found: Triangle Aviation',NULL,'2025-11-14 00:11:03'),
(1643,'deals','2112','error','Organization not found: AeroVironment',NULL,'2025-11-14 00:11:03'),
(1644,'deals','2113','error','Organization not found: Booz Allen Hamilton',NULL,'2025-11-14 00:11:03'),
(1645,'deals','2114','error','Organization not found: Modus21, LLC',NULL,'2025-11-14 00:11:03'),
(1646,'deals','2115','error','Organization not found: ODU-USA',NULL,'2025-11-14 00:11:03'),
(1647,'deals','2116','error','Organization not found: Red Berry Innovations, Inc.',NULL,'2025-11-14 00:11:03'),
(1648,'deals','2117','error','Organization not found: APS',NULL,'2025-11-14 00:11:03'),
(1649,'deals','2119','error','Organization not found: Motivo Engineering',NULL,'2025-11-14 00:11:03'),
(1650,'deals','2120','error','Organization not found: US NAVY',NULL,'2025-11-14 00:11:03'),
(1651,'deals','2122','error','Organization not found: Engoplanet',NULL,'2025-11-14 00:11:03'),
(1652,'deals','2123','error','Organization not found: Industrial Pro LLC',NULL,'2025-11-14 00:11:03'),
(1653,'deals','2124','error','Organization not found: Byte & Word',NULL,'2025-11-14 00:11:03'),
(1654,'deals','2125','error','Organization not found: US Army',NULL,'2025-11-14 00:11:03'),
(1655,'deals','2127','error','Organization not found: Fortress Power',NULL,'2025-11-14 00:11:03'),
(1656,'deals','2128','error','Organization not found: Our Next Energy (ONE)',NULL,'2025-11-14 00:11:03'),
(1657,'deals','2129','error','Organization not found: RoboPave',NULL,'2025-11-14 00:11:03'),
(1658,'deals','2131','error','Organization not found: NeoVolta',NULL,'2025-11-14 00:11:03'),
(1659,'deals','2132','error','Organization not found: Nevados',NULL,'2025-11-14 00:11:03'),
(1660,'deals','2133','error','Organization not found: Etica AG',NULL,'2025-11-14 00:11:03'),
(1661,'deals','2134','error','Organization not found: Fuse Energy',NULL,'2025-11-14 00:11:03'),
(1662,'deals','2135','error','Organization not found: Siemens Energy',NULL,'2025-11-14 00:11:03'),
(1663,'deals','2136','error','Organization not found: AeroVironment',NULL,'2025-11-14 00:11:03'),
(1664,'deals','2137','error','Organization not found: AgEagle Aerial Systems',NULL,'2025-11-14 00:11:03'),
(1665,'deals','2138','error','Organization not found: Sol-Ark',NULL,'2025-11-14 00:11:03'),
(1666,'deals','2139','error','Organization not found: Eagle Picher Technologies',NULL,'2025-11-14 00:11:03'),
(1667,'deals','2140','error','Organization not found: Ultion Technology',NULL,'2025-11-14 00:11:03'),
(1668,'deals','2141','error','Organization not found: Forge Nano',NULL,'2025-11-14 00:11:03'),
(1669,'deals','2142','error','Organization not found: World Micro',NULL,'2025-11-14 00:11:03'),
(1670,'deals','2143','error','Organization not found: EV Designs',NULL,'2025-11-14 00:11:03'),
(1671,'deals','2144','error','Organization not found: Sonwil',NULL,'2025-11-14 00:11:03'),
(1672,'deals','2145','error','Organization not found: World Micro',NULL,'2025-11-14 00:11:03'),
(1673,'deals','2146','error','Organization not found: Eckley Energies',NULL,'2025-11-14 00:11:03'),
(1674,'deals','2147','error','Organization not found: One AI',NULL,'2025-11-14 00:11:03'),
(1675,'deals','2148','error','Organization not found: Energy Vault',NULL,'2025-11-14 00:11:03'),
(1676,'deals','2149','error','Organization not found: Unmanned Systems Technology',NULL,'2025-11-14 00:11:03'),
(1677,'deals','2150','error','Organization not found: Energy Vault',NULL,'2025-11-14 00:11:03'),
(1678,'deals','2151','error','Organization not found: Vertiv',NULL,'2025-11-14 00:11:03'),
(1679,'deals','2152','error','Organization not found: Etica AG',NULL,'2025-11-14 00:11:03'),
(1680,'deals','2153','error','Organization not found: Generac',NULL,'2025-11-14 00:11:03'),
(1681,'deals','2154','error','Organization not found: Lockheed Martin',NULL,'2025-11-14 00:11:03'),
(1682,'deals','2155','error','Organization not found: Panasonic Energy',NULL,'2025-11-14 00:11:03'),
(1683,'deals','2156','error','Organization not found: Fisca',NULL,'2025-11-14 00:11:03'),
(1684,'deals','2157','error','Organization not found: Fisica Inc',NULL,'2025-11-14 00:11:03'),
(1685,'deals','2158','error','Organization not found: Microvast',NULL,'2025-11-14 00:11:03'),
(1686,'deals','2159','error','Organization not found: Microvast',NULL,'2025-11-14 00:11:03'),
(1687,'deals','2160','error','Organization not found: Sol-Ark',NULL,'2025-11-14 00:11:03'),
(1688,'deals','2161','error','Organization not found: Inventus Power',NULL,'2025-11-14 00:11:03'),
(1689,'deals','2162','error','Organization not found: GM Defense',NULL,'2025-11-14 00:11:03'),
(1690,'deals','2163','error','Organization not found: EcoFlow',NULL,'2025-11-14 00:11:03'),
(1691,'deals','2164','error','Organization not found: Traxxas',NULL,'2025-11-14 00:11:03'),
(1692,'deals','2165','error','Organization not found: Tennant Company',NULL,'2025-11-14 00:11:03'),
(1693,'deals','2166','error','Organization not found: Stryten Energy',NULL,'2025-11-14 00:11:03'),
(1694,'deals','2167','error','Organization not found: Coulomb Technology',NULL,'2025-11-14 00:11:03'),
(1695,'deals','2168','error','Organization not found: Motive Energy',NULL,'2025-11-14 00:11:03'),
(1696,'deals','2169','error','Organization not found: Stryten Energy',NULL,'2025-11-14 00:11:03'),
(1697,'deals','2171','error','Organization not found: EcoFlow',NULL,'2025-11-14 00:11:03'),
(1698,'deals','2172','error','Organization not found: Swarmbotics AI',NULL,'2025-11-14 00:11:03'),
(1699,'leads','6f361c30-2b5f-11f0-b07c-d722488bb431','error','Organization not found: ASPETTO INC',NULL,'2025-11-14 00:11:07'),
(1700,'leads','fb866860-efba-11ef-9354-679a087e5dde','error','Organization not found: Analyticsystems',NULL,'2025-11-14 00:11:07'),
(1701,'leads','ffe57cc0-efba-11ef-a25f-27af6aa53296','error','Organization not found: Analyticsystems',NULL,'2025-11-14 00:11:07'),
(1702,'leads','0b43c180-d440-11ef-8a91-dd55c3e12ee5','error','Organization not found: Enginuity Innovation',NULL,'2025-11-14 00:11:07'),
(1703,'leads','05230a40-efbb-11ef-89e4-8f6bc68f48ca','error','Organization not found: MIT',NULL,'2025-11-14 00:11:07'),
(1704,'leads','ec25f6a0-1167-11f0-b0ea-9dcf99750a6f','error','Organization not found: Kippertool',NULL,'2025-11-14 00:11:07'),
(1705,'leads','5a350db0-1169-11f0-8a93-f56042dc8e77','error','Organization not found: HumaNoid',NULL,'2025-11-14 00:11:07'),
(1706,'leads','6cc1d900-4557-11f0-b7c8-dfe6c1885cc5','error','Organization not found: Applied Research Laboratories',NULL,'2025-11-14 00:11:07'),
(1707,'leads','04ba3c30-c9f1-11ef-a932-67e1e8676586','error','Organization not found: Anirudh Sundar organization',NULL,'2025-11-14 00:11:07'),
(1708,'leads','bea716a0-d9a4-11ef-a239-457311a42633','error','Organization not found: Alto Connect',NULL,'2025-11-14 00:11:07'),
(1709,'leads','864d34e0-d9a6-11ef-9388-bd9b59a2c5c0','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1710,'leads','ed8db2f0-e965-11ef-b439-67371fcb719d','error','Organization not found: Mid Atlantic Drone Development, LLC',NULL,'2025-11-14 00:11:07'),
(1711,'leads','19f446e0-e4a9-11ef-8386-6bcd4ee3c2c8','error','Organization not found: Bluetti',NULL,'2025-11-14 00:11:07'),
(1712,'leads','213370c0-e4a9-11ef-a6d5-b7b59f53aff5','error','Organization not found: Inergysolar',NULL,'2025-11-14 00:11:07'),
(1713,'leads','a380f520-d9aa-11ef-9388-bd9b59a2c5c0','error','Organization not found: Advanced Roofing',NULL,'2025-11-14 00:11:07'),
(1714,'leads','2e7b4dd0-ea2f-11ef-9cfc-81286b7fb5b5','error','Organization not found: On Site Robotics',NULL,'2025-11-14 00:11:07'),
(1715,'leads','dfed1230-fac2-11ef-8428-d3134bbcb217','error','Organization not found: Empirical Systems Aerospace',NULL,'2025-11-14 00:11:07'),
(1716,'leads','f6b8fd20-fac3-11ef-9cb1-57d748d48e5a','error','Organization not found: Richard Root organization',NULL,'2025-11-14 00:11:07'),
(1717,'leads','f74fa930-ee1d-11ef-9959-1b0e2676ae4b','error','Organization not found: Malloy Aeronautics',NULL,'2025-11-14 00:11:07'),
(1718,'leads','18bfb060-ee1e-11ef-966d-c1c045126985','error','Organization not found: Nicolas Montoya organization',NULL,'2025-11-14 00:11:07'),
(1719,'leads','af51b000-ff44-11ef-be17-0516b8e868aa','error','Organization not found: COTA Karting Battery',NULL,'2025-11-14 00:11:07'),
(1720,'leads','b494bbc0-ff44-11ef-a1c9-01f10428b671','error','Organization not found: Six-15 Glasses',NULL,'2025-11-14 00:11:07'),
(1721,'leads','46204050-4559-11f0-97a6-e1b74ced1001','error','Organization not found: RAILBLAZA',NULL,'2025-11-14 00:11:07'),
(1722,'leads','4f43dd40-6287-11f0-9355-89f1a44fb036','error','Organization not found: Texas Marine',NULL,'2025-11-14 00:11:07'),
(1723,'leads','f064b940-829b-11f0-b332-31dbace912b4','error','Organization not found: Mirco Vehicle Technology LLC',NULL,'2025-11-14 00:11:07'),
(1724,'leads','456f54c0-00da-11f0-9c97-276fd154ba62','error','Organization not found: Doble',NULL,'2025-11-14 00:11:07'),
(1725,'leads','d7a78010-4559-11f0-a567-cbc2bb9c049d','error','Organization not found: Steve Statema organization',NULL,'2025-11-14 00:11:07'),
(1726,'leads','aced73a0-1b03-11f0-a838-71ef90d7f1d9','error','Organization not found: Department of Homeland Security',NULL,'2025-11-14 00:11:07'),
(1727,'leads','a4222bd0-829b-11f0-b332-31dbace912b4','error','Organization not found: Golf Cart OEM',NULL,'2025-11-14 00:11:07'),
(1728,'leads','3f0b43d0-829b-11f0-a59e-cf7ab09132ac','error','Organization not found: Shaider Tech LLC',NULL,'2025-11-14 00:11:07'),
(1729,'leads','0e81d440-6284-11f0-97b6-8b92c8e9e9e9','error','Organization not found: US Nacy CENSECFOR DET GULFPORT',NULL,'2025-11-14 00:11:07'),
(1730,'leads','430506b0-829b-11f0-8479-f5fe35a5a21f','error','Organization not found: Trimverse - 72V',NULL,'2025-11-14 00:11:07'),
(1731,'leads','2ddafdc0-4ae8-11f0-bb93-af18be670375','error','Organization not found: Havenhill Synergy Ltd',NULL,'2025-11-14 00:11:07'),
(1732,'leads','951e6e50-6284-11f0-9355-89f1a44fb036','error','Organization not found: National Park Service',NULL,'2025-11-14 00:11:07'),
(1733,'leads','24ec3e40-6285-11f0-9355-89f1a44fb036','error','Organization not found: Advance Boat',NULL,'2025-11-14 00:11:07'),
(1734,'leads','679dc290-6285-11f0-93db-21362d29a27b','error','Organization not found: Dealers Electric Supply',NULL,'2025-11-14 00:11:07'),
(1735,'leads','3f293410-6286-11f0-91a5-397fb148a72c','error','Organization not found: Dauer Manufacturing -',NULL,'2025-11-14 00:11:07'),
(1736,'leads','c630c9b0-67d0-11f0-a2af-81f18c53c554','error','Organization not found: HubSpot, Inc.',NULL,'2025-11-14 00:11:07'),
(1737,'leads','484ba720-79e3-11f0-9483-d3784b88346c','error','Organization not found: James  Kurczewski  organization',NULL,'2025-11-14 00:11:07'),
(1738,'leads','2cec74f0-8294-11f0-a59e-cf7ab09132ac','error','Organization not found: Office of Commander Surgeon',NULL,'2025-11-14 00:11:07'),
(1739,'leads','39f578b0-8292-11f0-a59e-cf7ab09132ac','error','Organization not found: Student',NULL,'2025-11-14 00:11:07'),
(1740,'leads','800d1d50-8290-11f0-a59e-cf7ab09132ac','error','Organization not found: Propelemarine | Electric paddle',NULL,'2025-11-14 00:11:07'),
(1741,'leads','581d2820-8291-11f0-ae40-4b6df05ef984','error','Organization not found: Electric Yacht',NULL,'2025-11-14 00:11:07'),
(1742,'leads','5d22b5b0-8291-11f0-8479-f5fe35a5a21f','error','Organization not found: Tesla',NULL,'2025-11-14 00:11:07'),
(1743,'leads','04013730-8292-11f0-8479-f5fe35a5a21f','error','Organization not found: SynDaver',NULL,'2025-11-14 00:11:07'),
(1744,'leads','a4988360-8292-11f0-b9b4-9d43547fe062','error','Organization not found: Systems by Green Choice',NULL,'2025-11-14 00:11:07'),
(1745,'leads','fa26e1c0-d9a8-11ef-8a2f-2704684e7441','error','Organization not found: ElectricFish',NULL,'2025-11-14 00:11:07'),
(1746,'leads','bee916e0-ee17-11ef-9b54-fb8e43539ea2','error','Organization not found: Alex Ruiz organization',NULL,'2025-11-14 00:11:07'),
(1747,'leads','f9630790-ee17-11ef-963e-2df1899fc200','error','Organization not found: US SOC POE MARATIME',NULL,'2025-11-14 00:11:07'),
(1748,'leads','9d098f90-ee18-11ef-9b54-fb8e43539ea2','error','Organization not found: HTS AmeriTek',NULL,'2025-11-14 00:11:07'),
(1749,'leads','a2fe8630-ee18-11ef-966d-c1c045126985','error','Organization not found: Optum',NULL,'2025-11-14 00:11:07'),
(1750,'leads','309fad60-f9e6-11ef-ab1c-87e12a8bd78f','error','Organization not found: B E Marine Service',NULL,'2025-11-14 00:11:07'),
(1751,'leads','f7420dd0-fac4-11ef-bfb3-0d53ac223cec','error','Organization not found: Project Canary',NULL,'2025-11-14 00:11:07'),
(1752,'leads','1c7efb80-fac5-11ef-a8ce-438f90876d58','error','Organization not found: Grander Marine',NULL,'2025-11-14 00:11:07'),
(1753,'leads','be6761c0-ff44-11ef-a1c9-01f10428b671','error','Organization not found: Mercurius Tech',NULL,'2025-11-14 00:11:07'),
(1754,'leads','c99d26f0-ff54-11ef-b60c-49fa3e21c67c','error','Organization not found: ClearWorld',NULL,'2025-11-14 00:11:07'),
(1755,'leads','6776c5d0-2b5f-11f0-953a-914460d42c56','error','Organization not found: Exfo',NULL,'2025-11-14 00:11:07'),
(1756,'leads','6a9718a0-2b5f-11f0-a754-fb727b1d14ed','error','Organization not found: Swarmbotics AI',NULL,'2025-11-14 00:11:07'),
(1757,'leads','97cbe2a0-455a-11f0-9b40-ef4957727fb6','error','Organization not found: Defense Threat Reduction Agency',NULL,'2025-11-14 00:11:07'),
(1758,'leads','d17c5b40-457a-11f0-a78c-39ccd61f57dc','error','Organization not found: Black Saber Group',NULL,'2025-11-14 00:11:07'),
(1759,'leads','0565e0f0-4631-11f0-ad09-951b989969ea','error','Organization not found: Bounce Imaging',NULL,'2025-11-14 00:11:07'),
(1760,'leads','0a200da0-4631-11f0-895c-711eab65d642','error','Organization not found: JetSurf',NULL,'2025-11-14 00:11:07'),
(1761,'leads','603fe290-6284-11f0-91a5-397fb148a72c','error','Organization not found: AIRBOSS DEFENSE GROUP LLC',NULL,'2025-11-14 00:11:07'),
(1762,'leads','c874d370-6284-11f0-91a5-397fb148a72c','error','Organization not found: Aqua-Vu',NULL,'2025-11-14 00:11:07'),
(1763,'leads','19317750-6285-11f0-9355-89f1a44fb036','error','Organization not found: Soundside Carts',NULL,'2025-11-14 00:11:07'),
(1764,'leads','2488cea0-829c-11f0-a59e-cf7ab09132ac','error','Organization not found: BHI, CO',NULL,'2025-11-14 00:11:07'),
(1765,'leads','27e54010-829c-11f0-ae40-4b6df05ef984','error','Organization not found: MR Miami',NULL,'2025-11-14 00:11:07'),
(1766,'leads','9c8cfd40-829c-11f0-b332-31dbace912b4','error','Organization not found: Vanjen Group',NULL,'2025-11-14 00:11:07'),
(1767,'leads','a8a1cb10-829c-11f0-a59e-cf7ab09132ac','error','Organization not found: Hydrants',NULL,'2025-11-14 00:11:07'),
(1768,'leads','55687520-82a1-11f0-92ee-8dcbb1af7f0b','error','Organization not found: Batteries Plus',NULL,'2025-11-14 00:11:07'),
(1769,'leads','dc3922d0-8a89-11f0-921a-57afd5b2529a','error','Organization not found: Streetleaf',NULL,'2025-11-14 00:11:07'),
(1770,'leads','e25d3fc0-8a89-11f0-921a-57afd5b2529a','error','Organization not found: National Battery Supply',NULL,'2025-11-14 00:11:07'),
(1771,'leads','e632ffe0-8a89-11f0-af93-ff2ea65fc23d','error','Organization not found: Fechheimer Brothers Co.',NULL,'2025-11-14 00:11:07'),
(1772,'leads','aaaab360-54f1-11ef-99fa-b3cc65f4605b','error','Organization not found: Applied Physics Laboratory',NULL,'2025-11-14 00:11:07'),
(1773,'leads','48b1b670-5b42-11ef-8d90-f5c271ae4e5d','error','Organization not found: n/A',NULL,'2025-11-14 00:11:07'),
(1774,'leads','1fec77d0-063c-11ef-88af-1d5859aff86d','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1775,'leads','647e6290-63cb-11ef-b701-c5bea3976d00','error','Organization not found: Big Toe Engineering LLC',NULL,'2025-11-14 00:11:07'),
(1776,'leads','88271310-5361-11ef-b44c-95f9bc766e6d','error','Organization not found: Aris Wind, LLC',NULL,'2025-11-14 00:11:07'),
(1777,'leads','55fb8210-275e-11ef-8fa1-632a4d9ccf1c','error','Organization not found: https://www.paradigmrobotics.tech/',NULL,'2025-11-14 00:11:07'),
(1778,'leads','af27e040-71ff-11ef-bfef-eb4c9f6f3a09','error','Organization not found: Genomekey',NULL,'2025-11-14 00:11:07'),
(1779,'leads','7b346940-5967-11ee-a15e-8138d7a20f29','error','Organization not found: Advanced Aircraft',NULL,'2025-11-14 00:11:07'),
(1780,'leads','7ce493e0-4045-11ee-a156-d58111db5cff','error','Organization not found: VDOT',NULL,'2025-11-14 00:11:07'),
(1781,'leads','a0618210-4045-11ee-a41f-8946312ebb35','error','Organization not found: Feel Free Kayaks- Custom Battery',NULL,'2025-11-14 00:11:07'),
(1782,'leads','38493030-4061-11ee-89c2-339bf2edd26b','error','Organization not found: Shimano- Custom Battery for Reel',NULL,'2025-11-14 00:11:07'),
(1783,'leads','c364f740-4105-11ee-a41f-8946312ebb35','error','Organization not found: Pallet Shuttle - 24V 150',NULL,'2025-11-14 00:11:07'),
(1784,'leads','089b78c0-4106-11ee-89c2-339bf2edd26b','error','Organization not found: World Fishing Tackle - 14.4V 8Ah-4AH',NULL,'2025-11-14 00:11:07'),
(1785,'leads','c056db30-4dae-11ee-a7f5-859c9b8714a6','error','Organization not found: Practical Technology',NULL,'2025-11-14 00:11:07'),
(1786,'leads','116ce240-4e76-11ee-b187-7323711a5671','error','Organization not found: Mayer Electric Inc.',NULL,'2025-11-14 00:11:07'),
(1787,'leads','a63a2540-4e76-11ee-b187-7323711a5671','error','Organization not found: Sunshine Solar Services Inc.',NULL,'2025-11-14 00:11:07'),
(1788,'leads','a9705490-4e77-11ee-a2c8-0181c13ca46c','error','Organization not found: DCS Corp',NULL,'2025-11-14 00:11:07'),
(1789,'leads','206f8300-531d-11ee-9324-11d3355add0b','error','Organization not found: Ekozone Development',NULL,'2025-11-14 00:11:07'),
(1790,'leads','bf676a60-572b-11ee-9a1a-fb22609a01aa','error','Organization not found: X, the moonshoot factory, Google',NULL,'2025-11-14 00:11:07'),
(1791,'leads','7bbaece0-6795-11ee-b93f-63c9bb229d58','error','Organization not found: Hatteras',NULL,'2025-11-14 00:11:07'),
(1792,'leads','9ed03680-7344-11ee-b195-bd18778d2562','error','Organization not found: Gcc-Na',NULL,'2025-11-14 00:11:07'),
(1793,'leads','9e34ecb0-9e8d-11ee-be68-c1e203ae4ffd','error','Organization not found: Howeandhowe',NULL,'2025-11-14 00:11:07'),
(1794,'leads','4f94cbc0-a0f4-11ee-b2c3-6d13ad8bd97c','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1795,'leads','38048f00-bad4-11ee-b122-9d9a49454552','error','Organization not found: Solis Energy',NULL,'2025-11-14 00:11:07'),
(1796,'leads','71c31ef0-bad4-11ee-b68f-f367d5a5e9a2','error','Organization not found: Nabeel Perfumes',NULL,'2025-11-14 00:11:07'),
(1797,'leads','95f2bb50-bad4-11ee-b122-9d9a49454552','error','Organization not found: Ecosense Lighting',NULL,'2025-11-14 00:11:07'),
(1798,'leads','9bcf47f0-bad4-11ee-b68f-f367d5a5e9a2','error','Organization not found: Elements to Energy (E2E)',NULL,'2025-11-14 00:11:07'),
(1799,'leads','a23b1c40-bad4-11ee-b68f-f367d5a5e9a2','error','Organization not found: Process Integration',NULL,'2025-11-14 00:11:07'),
(1800,'leads','c15f85c0-bad4-11ee-b68f-f367d5a5e9a2','error','Organization not found: Sartorius',NULL,'2025-11-14 00:11:07'),
(1801,'leads','c7c31cb0-bad4-11ee-a67a-21e2d0399d09','error','Organization not found: QinetiQ Group PLC',NULL,'2025-11-14 00:11:07'),
(1802,'leads','e8877a90-bad4-11ee-b122-9d9a49454552','error','Organization not found: Intercomp USA',NULL,'2025-11-14 00:11:07'),
(1803,'leads','ee1523e0-bad4-11ee-b122-9d9a49454552','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1804,'leads','f69d96a0-bad4-11ee-b68f-f367d5a5e9a2','error','Organization not found: RAILBLAZA',NULL,'2025-11-14 00:11:07'),
(1805,'leads','3ba0d320-bad5-11ee-b122-9d9a49454552','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1806,'leads','5b8cf970-bad5-11ee-a67a-21e2d0399d09','error','Organization not found: Doug Shelby Engineering',NULL,'2025-11-14 00:11:07'),
(1807,'leads','6fe23480-bad5-11ee-b122-9d9a49454552','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1808,'leads','955e4e10-bad5-11ee-a67a-21e2d0399d09','error','Organization not found: Environmentum',NULL,'2025-11-14 00:11:07'),
(1809,'leads','5c0b34b0-bad6-11ee-b122-9d9a49454552','error','Organization not found: Volatus Aerospace',NULL,'2025-11-14 00:11:07'),
(1810,'leads','cd1da0b0-bad7-11ee-b68f-f367d5a5e9a2','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1811,'leads','d367e340-bad7-11ee-b68f-f367d5a5e9a2','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1812,'leads','e6ad0de0-bad7-11ee-b68f-f367d5a5e9a2','error','Organization not found: Gcc-Na',NULL,'2025-11-14 00:11:07'),
(1813,'leads','90522970-bad8-11ee-a67a-21e2d0399d09','error','Organization not found: Vallen Distribution INC.',NULL,'2025-11-14 00:11:07'),
(1814,'leads','97a32da0-bad8-11ee-a67a-21e2d0399d09','error','Organization not found: Alumacart,',NULL,'2025-11-14 00:11:07'),
(1815,'leads','bb90b7f0-bad8-11ee-b68f-f367d5a5e9a2','error','Organization not found: U.S. Navy NCIS',NULL,'2025-11-14 00:11:07'),
(1816,'leads','ea059240-bad8-11ee-b122-9d9a49454552','error','Organization not found: Mayer Electric Supply',NULL,'2025-11-14 00:11:07'),
(1817,'leads','5b7b4960-bad9-11ee-b68f-f367d5a5e9a2','error','Organization not found: VIRGINIA DEPARTMENT OF TRANSPORTATION',NULL,'2025-11-14 00:11:07'),
(1818,'leads','af8bac20-bad9-11ee-a67a-21e2d0399d09','error','Organization not found: Anglers Choice Marine-MART',NULL,'2025-11-14 00:11:07'),
(1819,'leads','7c040ed0-bc8f-11ee-b68f-f367d5a5e9a2','error','Organization not found: Offworld',NULL,'2025-11-14 00:11:07'),
(1820,'leads','5df33900-c141-11ee-9f06-899b6c712b6e','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1821,'leads','3c8ac2c0-c43d-11ee-9f06-899b6c712b6e','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1822,'leads','ddcedd90-c9cb-11ee-9385-5593ab22350e','error','Organization not found: Project Canary',NULL,'2025-11-14 00:11:07'),
(1823,'leads','48dccd10-ca92-11ee-a52a-1f4c71091bd4','error','Organization not found: Personal - 48V 5Kwh Powerwalls',NULL,'2025-11-14 00:11:07'),
(1824,'leads','05484910-d4d5-11ee-8db7-f1722cfa26ee','error','Organization not found: MIB',NULL,'2025-11-14 00:11:07'),
(1825,'leads','9c183f00-d587-11ee-8889-d1da495a3273','error','Organization not found: Blueline Video surveillance',NULL,'2025-11-14 00:11:07'),
(1826,'leads','100f2d20-da46-11ee-9a5a-79c7439886bc','error','Organization not found: Forms inc.',NULL,'2025-11-14 00:11:07'),
(1827,'leads','bc35a010-e541-11ee-8cb7-e57c04ba7b5d','error','Organization not found: SDMS Robotics',NULL,'2025-11-14 00:11:07'),
(1828,'leads','3a0ad210-eab2-11ee-ba2c-b7d818aab9f9','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1829,'leads','6b029660-eb65-11ee-8fcc-0585346bdbe4','error','Organization not found: Silicon Techno Circuits',NULL,'2025-11-14 00:11:07'),
(1830,'leads','ec0a0f40-eb74-11ee-b5da-f35f012d50d9','error','Organization not found: Emerson Ornstein organization',NULL,'2025-11-14 00:11:07'),
(1831,'leads','16b962b0-ed0d-11ee-8a15-b13982013ab3','error','Organization not found: JettWatt',NULL,'2025-11-14 00:11:07'),
(1832,'leads','a579e570-f03b-11ee-b746-7917a4a0bc4f','error','Organization not found: Global Concept',NULL,'2025-11-14 00:11:07'),
(1833,'leads','6a8948b0-f03c-11ee-89ff-679ba970e042','error','Organization not found: University of Wisconsin Madison',NULL,'2025-11-14 00:11:07'),
(1834,'leads','e5567070-f03e-11ee-89ff-679ba970e042','error','Organization not found: Emerson Ornstein organization',NULL,'2025-11-14 00:11:07'),
(1835,'leads','b0425920-f067-11ee-820c-33dab0a80226','error','Organization not found: Abay organization',NULL,'2025-11-14 00:11:07'),
(1836,'leads','8987b8c0-f0ee-11ee-951a-d70139889d2e','error','Organization not found: James  Kurczewski  organization',NULL,'2025-11-14 00:11:07'),
(1837,'leads','00149990-f103-11ee-a1f1-47e4a2743c8f','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1838,'leads','6e447480-f103-11ee-bca9-956007a2c12d','error','Organization not found: Intovision',NULL,'2025-11-14 00:11:07'),
(1839,'leads','107894e0-f111-11ee-bca9-956007a2c12d','error','Organization not found: Steve Statema organization',NULL,'2025-11-14 00:11:07'),
(1840,'leads','75a596c0-f12e-11ee-a59f-47efee9cdae4','error','Organization not found: Scott Messick  organization',NULL,'2025-11-14 00:11:07'),
(1841,'leads','4adc26e0-f681-11ee-9c2c-b796f5528e02','error','Organization not found: CU Boulder',NULL,'2025-11-14 00:11:07'),
(1842,'leads','39ac9290-f741-11ee-88d2-675f5687e930','error','Organization not found: Menno T Bauman organization',NULL,'2025-11-14 00:11:07'),
(1843,'leads','f26b9f20-fb32-11ee-833f-b763a46c6611','error','Organization not found: Ethan Rowe organization',NULL,'2025-11-14 00:11:07'),
(1844,'leads','b516d800-fb51-11ee-9fbb-3b479f4719b7','error','Organization not found: Next Level Automotive',NULL,'2025-11-14 00:11:07'),
(1845,'leads','7d403000-fb53-11ee-b2b9-1b356a63ceac','error','Organization not found: Dario Dentes organization',NULL,'2025-11-14 00:11:07'),
(1846,'leads','cacaaba0-0186-11ef-a951-e10196e4111c','error','Organization not found: Globus Medical',NULL,'2025-11-14 00:11:07'),
(1847,'leads','d822e400-03f9-11ef-96d0-3b2b639686a3','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1848,'leads','aa7b1c50-062b-11ef-bec7-91fd24d17c88','error','Organization not found: Teresa Moore organization',NULL,'2025-11-14 00:11:07'),
(1849,'leads','9aa311b0-063b-11ef-af12-e5a2924242d9','error','Organization not found: Ocutrap',NULL,'2025-11-14 00:11:07'),
(1850,'leads','cf917bf0-063b-11ef-8b5e-d990dc5b5e43','error','Organization not found: Chand brilliance',NULL,'2025-11-14 00:11:07'),
(1851,'leads','fd0b0fe0-0647-11ef-96d0-3b2b639686a3','error','Organization not found: Steven Salter organization',NULL,'2025-11-14 00:11:07'),
(1852,'leads','d3895950-0657-11ef-b9ea-b137f71f6a60','error','Organization not found: EZ Kruiser Golf Cart',NULL,'2025-11-14 00:11:07'),
(1853,'leads','a05ea390-0711-11ef-a68e-dff3f93acbc4','error','Organization not found: Dueitts Battery Supply Inc.',NULL,'2025-11-14 00:11:07'),
(1854,'leads','cce03830-0968-11ef-b3ba-e7336aadab95','error','Organization not found: Xworx Inc',NULL,'2025-11-14 00:11:07'),
(1855,'leads','6ef43950-0969-11ef-97b7-1717425e0835','error','Organization not found: Bajaj',NULL,'2025-11-14 00:11:07'),
(1856,'leads','b2b9f1c0-0e14-11ef-9b70-d91355cad6f6','error','Organization not found: Delmer & Associates, LCC',NULL,'2025-11-14 00:11:07'),
(1857,'leads','584c60d0-0efd-11ef-b6b2-9354883a4197','error','Organization not found: Anthony Thomas organization',NULL,'2025-11-14 00:11:07'),
(1858,'leads','04473340-12cf-11ef-a699-4d714b2a54f2','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1859,'leads','a0e73f10-1347-11ef-9e11-c101c1b0a59d','error','Organization not found: Ryan Somai organization',NULL,'2025-11-14 00:11:07'),
(1860,'leads','031614f0-138d-11ef-b59a-f5796a9a3e88','error','Organization not found: nano power a.s.',NULL,'2025-11-14 00:11:07'),
(1861,'leads','9593f5d0-13f2-11ef-9e11-c101c1b0a59d','error','Organization not found: Kiang Loong Ng organization',NULL,'2025-11-14 00:11:07'),
(1862,'leads','8c9da370-145d-11ef-8d00-b3d319f4b9b9','error','Organization not found: PICODE',NULL,'2025-11-14 00:11:07'),
(1863,'leads','c230d930-145d-11ef-9df3-191803d8bc06','error','Organization not found: Accesshardware Inc.',NULL,'2025-11-14 00:11:07'),
(1864,'leads','ee1f4190-1790-11ef-87d1-bd61cc9f3289','error','Organization not found: Discovery Ford',NULL,'2025-11-14 00:11:07'),
(1865,'leads','b1e004c0-1791-11ef-a1e7-514068a29cd4','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1866,'leads','1e8aa270-1796-11ef-a1e7-514068a29cd4','error','Organization not found: Encore Boat Works',NULL,'2025-11-14 00:11:07'),
(1867,'leads','a34cf4a0-184e-11ef-a498-5bb397ef0249','error','Organization not found: Good Luck LLC',NULL,'2025-11-14 00:11:07'),
(1868,'leads','a6bdea50-1910-11ef-9688-b1d73b6a5dcf','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1869,'leads','a675c0f0-1914-11ef-9a6b-71055cc5f8fb','error','Organization not found: Segway Hollywood',NULL,'2025-11-14 00:11:07'),
(1870,'leads','12856d30-19d4-11ef-aa27-9bcd37a14e94','error','Organization not found: WSSA',NULL,'2025-11-14 00:11:07'),
(1871,'leads','d4e60510-1cfe-11ef-b8cf-1fbf5e5198f8','error','Organization not found: Martin Rebuilds',NULL,'2025-11-14 00:11:07'),
(1872,'leads','28ba2fe0-1d04-11ef-b8cf-1fbf5e5198f8','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1873,'leads','9e554fe0-1dd7-11ef-a841-8f0ae69dba57','error','Organization not found: Bill Daniels organization',NULL,'2025-11-14 00:11:07'),
(1874,'leads','5bfcab30-1eee-11ef-b2cf-5fa52f512284','error','Organization not found: Martin Meek organization',NULL,'2025-11-14 00:11:07'),
(1875,'leads','3d9fa890-1f6b-11ef-9a19-59a18cd49924','error','Organization not found: Track Master Mobility',NULL,'2025-11-14 00:11:07'),
(1876,'leads','e3b1bbe0-1f77-11ef-9a19-59a18cd49924','error','Organization not found: Telecom Battery',NULL,'2025-11-14 00:11:07'),
(1877,'leads','1ee93030-1f78-11ef-aa4e-4f4e2660fd7b','error','Organization not found: Vishwaracers',NULL,'2025-11-14 00:11:07'),
(1878,'leads','59188350-1f78-11ef-9a19-59a18cd49924','error','Organization not found: Network Experts',NULL,'2025-11-14 00:11:07'),
(1879,'leads','35f02fe0-1f9b-11ef-aa4e-4f4e2660fd7b','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1880,'leads','cf722ea0-228b-11ef-b2cf-5fa52f512284','error','Organization not found: General RV Center',NULL,'2025-11-14 00:11:07'),
(1881,'leads','30dcfe90-228c-11ef-9923-0f43df108a4b','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1882,'leads','2446fd60-228d-11ef-9923-0f43df108a4b','error','Organization not found: Zakian Rugs',NULL,'2025-11-14 00:11:07'),
(1883,'leads','6b48a1f0-228d-11ef-bf85-dd911e2a6349','error','Organization not found: EMB Motorsport',NULL,'2025-11-14 00:11:07'),
(1884,'leads','b28d77c0-2292-11ef-9cb4-994a5793db83','error','Organization not found: M&P Security',NULL,'2025-11-14 00:11:07'),
(1885,'leads','8da4c850-2305-11ef-b2cf-5fa52f512284','error','Organization not found: Anatolii organization',NULL,'2025-11-14 00:11:07'),
(1886,'leads','5fc4d320-2446-11ef-946f-13b75546807f','error','Organization not found: Atomic Cool Kartz',NULL,'2025-11-14 00:11:07'),
(1887,'leads','11e401f0-24e9-11ef-8ccb-ff8532d8e9f8','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1888,'leads','93c41370-24eb-11ef-b74f-6f6461a13fe8','error','Organization not found: Reid-Ashman Mfg.',NULL,'2025-11-14 00:11:07'),
(1889,'leads','29e009a0-2504-11ef-8534-4d08477509db','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1890,'leads','205f16d0-2759-11ef-8fa1-632a4d9ccf1c','error','Organization not found: Advance Boat',NULL,'2025-11-14 00:11:07'),
(1891,'leads','db0e11c0-2803-11ef-9bef-cd12d9a9d969','error','Organization not found: Mystery Flight',NULL,'2025-11-14 00:11:07'),
(1892,'leads','3b5cc670-28cc-11ef-9c05-13f52b414c93','error','Organization not found: Roush',NULL,'2025-11-14 00:11:07'),
(1893,'leads','ac30b5f0-28e5-11ef-a0ab-43b9a7fa6a42','error','Organization not found: Electric Yacht',NULL,'2025-11-14 00:11:07'),
(1894,'leads','e9b21fa0-28f8-11ef-a841-8f0ae69dba57','error','Organization not found: Price Electronics',NULL,'2025-11-14 00:11:07'),
(1895,'leads','beda6bf0-2cab-11ef-b680-91ad9d1991a4','error','Organization not found: Thomas Wadsworth organization',NULL,'2025-11-14 00:11:07'),
(1896,'leads','045acf20-2e56-11ef-b69b-f170eca3ee31','error','Organization not found: Leidos',NULL,'2025-11-14 00:11:07'),
(1897,'leads','949b1400-3248-11ef-99a4-d3346253e2c6','error','Organization not found: Navia Energy Inc.',NULL,'2025-11-14 00:11:07'),
(1898,'leads','d93782f0-3249-11ef-9e56-a5bdc7b7d8d8','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1899,'leads','466f1b30-324a-11ef-91a5-ddf712cba00f','error','Organization not found: Soaring Concepts Aerospace',NULL,'2025-11-14 00:11:07'),
(1900,'leads','31185930-324b-11ef-8f87-2febb96654ea','error','Organization not found: JP Equipment & Service Co.',NULL,'2025-11-14 00:11:07'),
(1901,'leads','7d3d4c80-324b-11ef-99a4-d3346253e2c6','error','Organization not found: Chris Grondman organization',NULL,'2025-11-14 00:11:07'),
(1902,'leads','9d198f20-325d-11ef-9866-edd510b5f338','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1903,'leads','cc4d50d0-34c7-11ef-ae44-b93f5d4649fe','error','Organization not found: Jay Rasi organization',NULL,'2025-11-14 00:11:07'),
(1904,'leads','c99db420-388b-11ef-9e56-a5bdc7b7d8d8','error','Organization not found: Concept DD Inc',NULL,'2025-11-14 00:11:07'),
(1905,'leads','5c223fa0-388c-11ef-849f-8b74dc1802d9','error','Organization not found: LFP Consumer Power Tool',NULL,'2025-11-14 00:11:07'),
(1906,'leads','e97aad80-38b2-11ef-849f-8b74dc1802d9','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1907,'leads','b68ceb40-3e02-11ef-a02e-79dbbbddf863','error','Organization not found: Lotuccusa Inc',NULL,'2025-11-14 00:11:07'),
(1908,'leads','5da3a090-3fc0-11ef-8975-2d5057077cbf','error','Organization not found: Scott Blew organization',NULL,'2025-11-14 00:11:07'),
(1909,'leads','440ef8e0-3fe4-11ef-88e7-cf0db74c6016','error','Organization not found: Scott Blew organization',NULL,'2025-11-14 00:11:07'),
(1910,'leads','c4a4d270-439c-11ef-a493-852435243172','error','Organization not found: Personal',NULL,'2025-11-14 00:11:07'),
(1911,'leads','b6755210-45f9-11ef-901d-25624c1d8a42','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1912,'leads','e0a325f0-4840-11ef-8f97-c1c5192a041d','error','Organization not found: Operation Send it',NULL,'2025-11-14 00:11:07'),
(1913,'leads','80ab0df0-4842-11ef-8f97-c1c5192a041d','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1914,'leads','190c5560-49bd-11ef-9388-b9dff8bd2fab','error','Organization not found: Majesty AI',NULL,'2025-11-14 00:11:07'),
(1915,'leads','8967dc60-49dd-11ef-81ac-5b2abd8371f8','error','Organization not found: Blue Water Battery',NULL,'2025-11-14 00:11:07'),
(1916,'leads','d168b680-4aa3-11ef-b910-03284540ed82','error','Organization not found: Repsol International',NULL,'2025-11-14 00:11:07'),
(1917,'leads','c936f890-4b4e-11ef-8563-cb0a2734e89d','error','Organization not found: HumaNoid',NULL,'2025-11-14 00:11:07'),
(1918,'leads','d5f47120-4e7d-11ef-99a6-4bf71821d30b','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1919,'leads','96c68430-5331-11ef-bf32-81d389b181df','error','Organization not found: Battery Bills LLC',NULL,'2025-11-14 00:11:07'),
(1920,'leads','abc756a0-5333-11ef-9d17-c51e9e5fa5ca','error','Organization not found: ABA Marine Consulting INC.',NULL,'2025-11-14 00:11:07'),
(1921,'leads','a75f1cc0-54ef-11ef-8794-03a7a8ec6de8','error','Organization not found: Marine Customer',NULL,'2025-11-14 00:11:07'),
(1922,'leads','fbacba20-54f0-11ef-9113-8d86bb63387c','error','Organization not found: Integrated Marine Solutions',NULL,'2025-11-14 00:11:07'),
(1923,'leads','ab109be0-55c7-11ef-adce-b5c0deaed1fd','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1924,'leads','ce114960-58e1-11ef-9941-17650adb0418','error','Organization not found: VJF',NULL,'2025-11-14 00:11:07'),
(1925,'leads','2f3f1e00-59ab-11ef-9e31-bb24ab08945d','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1926,'leads','47f94750-5f31-11ef-8ac2-cd51ff4693d5','error','Organization not found: ',NULL,'2025-11-14 00:11:07'),
(1927,'leads','1d1ee5c0-618a-11ef-a702-659adcbee65a','error','Organization not found: Profound Home Improvement',NULL,'2025-11-14 00:11:07'),
(1928,'leads','1b21a730-64a0-11ef-b4cc-13d3d3de7ea0','error','Organization not found: Advanced Green Technologies',NULL,'2025-11-14 00:11:07'),
(1929,'leads','a5a78b40-6612-11ef-acf7-cfad48ddfff8','error','Organization not found: Hayatcomm.net',NULL,'2025-11-14 00:11:07'),
(1930,'leads','46396240-6eb0-11ef-b2c1-ed044c57f72b','error','Organization not found: Swarmbotics AI',NULL,'2025-11-14 00:11:07'),
(1931,'leads','6b7aba80-7447-11ef-9e80-a9fcb8936b1d','error','Organization not found: EnergyX',NULL,'2025-11-14 00:11:07'),
(1932,'leads','9a16caf0-cde3-11ef-8263-7fe51e11e07f','error','Organization not found: METABOTS',NULL,'2025-11-14 00:11:07'),
(1933,'notes','1','error','Deal not found: 2',NULL,'2025-11-14 00:11:11'),
(1934,'notes','2','error','Deal not found: 7',NULL,'2025-11-14 00:11:11'),
(1935,'notes','3','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1936,'notes','4','error','Deal not found: 8',NULL,'2025-11-14 00:11:11'),
(1937,'notes','5','error','Deal not found: 9',NULL,'2025-11-14 00:11:11'),
(1938,'notes','6','error','Deal not found: 2',NULL,'2025-11-14 00:11:11'),
(1939,'notes','7','error','Deal not found: 10',NULL,'2025-11-14 00:11:11'),
(1940,'notes','8','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1941,'notes','9','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1942,'notes','10','error','Deal not found: 14',NULL,'2025-11-14 00:11:11'),
(1943,'notes','11','error','Deal not found: 15',NULL,'2025-11-14 00:11:11'),
(1944,'notes','12','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1945,'notes','13','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1946,'notes','14','error','Deal not found: 2',NULL,'2025-11-14 00:11:11'),
(1947,'notes','15','error','Deal not found: 19',NULL,'2025-11-14 00:11:11'),
(1948,'notes','16','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1949,'notes','17','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1950,'notes','18','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1951,'notes','19','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1952,'notes','20','error','Deal not found: 4',NULL,'2025-11-14 00:11:11'),
(1953,'notes','21','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1954,'notes','22','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1955,'notes','23','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1956,'notes','24','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1957,'notes','25','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1958,'notes','26','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1959,'notes','27','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1960,'notes','28','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1961,'notes','29','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1962,'notes','30','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1963,'notes','31','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1964,'notes','32','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1965,'notes','33','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1966,'notes','34','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1967,'notes','35','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1968,'notes','36','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1969,'notes','37','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1970,'notes','38','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1971,'notes','39','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1972,'notes','40','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1973,'notes','41','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1974,'notes','42','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1975,'notes','43','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1976,'notes','44','error','Deal not found: 58',NULL,'2025-11-14 00:11:11'),
(1977,'notes','45','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1978,'notes','46','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1979,'notes','47','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1980,'notes','48','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1981,'notes','49','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1982,'notes','50','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1983,'notes','51','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1984,'notes','52','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1985,'notes','53','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1986,'notes','54','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1987,'notes','55','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1988,'notes','56','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1989,'notes','57','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1990,'notes','58','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1991,'notes','59','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1992,'notes','60','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1993,'notes','61','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1994,'notes','62','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1995,'notes','63','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1996,'notes','64','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1997,'notes','65','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1998,'notes','66','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(1999,'notes','67','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2000,'notes','68','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2001,'notes','69','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2002,'notes','70','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2003,'notes','71','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2004,'notes','72','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2005,'notes','73','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2006,'notes','74','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2007,'notes','75','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2008,'notes','76','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2009,'notes','77','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2010,'notes','78','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2011,'notes','79','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2012,'notes','80','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2013,'notes','81','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2014,'notes','82','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2015,'notes','83','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2016,'notes','84','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2017,'notes','85','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2018,'notes','86','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2019,'notes','87','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2020,'notes','88','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2021,'notes','89','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2022,'notes','90','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2023,'notes','91','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2024,'notes','92','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2025,'notes','93','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2026,'notes','94','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2027,'notes','95','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2028,'notes','96','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2029,'notes','97','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2030,'notes','98','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2031,'notes','99','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2032,'notes','100','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2033,'notes','101','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2034,'notes','102','error','Deal not found: 61',NULL,'2025-11-14 00:11:11'),
(2035,'notes','103','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2036,'notes','104','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2037,'notes','105','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2038,'notes','106','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2039,'notes','107','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2040,'notes','108','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2041,'notes','109','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2042,'notes','110','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2043,'notes','111','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2044,'notes','112','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2045,'notes','113','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2046,'notes','114','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2047,'notes','115','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2048,'notes','116','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2049,'notes','117','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2050,'notes','118','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2051,'notes','119','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2052,'notes','120','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2053,'notes','121','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2054,'notes','122','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2055,'notes','123','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2056,'notes','124','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2057,'notes','125','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2058,'notes','126','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2059,'notes','127','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2060,'notes','128','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2061,'notes','129','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2062,'notes','130','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2063,'notes','131','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2064,'notes','132','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2065,'notes','133','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2066,'notes','134','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2067,'notes','135','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2068,'notes','136','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2069,'notes','137','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2070,'notes','138','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2071,'notes','139','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2072,'notes','140','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2073,'notes','141','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2074,'notes','142','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2075,'notes','143','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2076,'notes','144','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2077,'notes','145','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2078,'notes','146','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2079,'notes','148','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2080,'notes','149','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2081,'notes','150','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2082,'notes','151','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2083,'notes','152','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2084,'notes','153','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2085,'notes','154','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2086,'notes','155','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2087,'notes','156','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2088,'notes','157','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2089,'notes','158','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2090,'notes','159','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2091,'notes','160','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2092,'notes','161','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2093,'notes','162','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2094,'notes','163','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2095,'notes','164','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2096,'notes','165','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2097,'notes','166','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2098,'notes','167','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2099,'notes','168','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2100,'notes','169','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2101,'notes','170','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2102,'notes','171','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2103,'notes','172','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2104,'notes','173','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2105,'notes','174','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2106,'notes','175','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2107,'notes','176','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2108,'notes','177','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2109,'notes','178','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2110,'notes','179','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2111,'notes','180','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2112,'notes','181','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2113,'notes','182','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2114,'notes','183','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2115,'notes','184','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2116,'notes','185','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2117,'notes','186','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2118,'notes','187','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2119,'notes','188','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2120,'notes','189','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2121,'notes','190','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2122,'notes','191','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2123,'notes','192','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2124,'notes','193','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2125,'notes','194','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2126,'notes','195','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2127,'notes','196','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2128,'notes','197','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2129,'notes','198','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2130,'notes','199','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2131,'notes','200','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2132,'notes','201','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2133,'notes','202','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2134,'notes','203','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2135,'notes','204','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2136,'notes','205','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2137,'notes','206','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2138,'notes','207','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2139,'notes','208','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2140,'notes','209','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2141,'notes','210','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2142,'notes','211','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2143,'notes','212','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2144,'notes','213','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2145,'notes','214','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2146,'notes','215','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2147,'notes','216','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2148,'notes','217','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2149,'notes','218','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2150,'notes','219','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2151,'notes','220','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2152,'notes','221','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2153,'notes','222','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2154,'notes','223','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2155,'notes','224','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2156,'notes','225','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2157,'notes','226','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2158,'notes','227','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2159,'notes','228','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2160,'notes','229','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2161,'notes','230','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2162,'notes','231','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2163,'notes','232','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2164,'notes','233','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2165,'notes','234','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2166,'notes','235','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2167,'notes','236','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2168,'notes','237','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2169,'notes','238','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2170,'notes','239','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2171,'notes','240','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2172,'notes','241','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2173,'notes','242','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2174,'notes','243','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2175,'notes','244','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2176,'notes','245','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2177,'notes','246','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2178,'notes','247','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2179,'notes','248','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2180,'notes','249','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2181,'notes','250','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2182,'notes','251','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2183,'notes','252','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2184,'notes','253','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2185,'notes','254','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2186,'notes','255','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2187,'notes','256','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2188,'notes','257','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2189,'notes','258','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2190,'notes','259','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2191,'notes','260','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2192,'notes','261','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2193,'notes','262','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2194,'notes','263','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2195,'notes','264','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2196,'notes','265','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2197,'notes','266','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2198,'notes','267','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2199,'notes','268','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2200,'notes','269','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2201,'notes','270','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2202,'notes','271','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2203,'notes','272','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2204,'notes','273','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2205,'notes','274','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2206,'notes','275','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2207,'notes','276','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2208,'notes','277','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2209,'notes','278','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2210,'notes','279','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2211,'notes','280','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2212,'notes','281','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2213,'notes','282','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2214,'notes','283','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2215,'notes','284','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2216,'notes','285','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2217,'notes','286','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2218,'notes','287','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2219,'notes','288','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2220,'notes','289','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2221,'notes','290','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2222,'notes','291','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2223,'notes','292','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2224,'notes','293','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2225,'notes','294','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2226,'notes','295','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2227,'notes','296','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2228,'notes','297','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2229,'notes','298','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2230,'notes','299','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2231,'notes','300','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2232,'notes','301','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2233,'notes','302','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2234,'notes','303','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2235,'notes','304','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2236,'notes','305','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2237,'notes','306','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2238,'notes','307','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2239,'notes','308','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2240,'notes','309','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2241,'notes','310','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2242,'notes','311','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2243,'notes','312','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2244,'notes','313','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2245,'notes','314','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2246,'notes','315','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2247,'notes','316','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2248,'notes','317','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2249,'notes','318','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2250,'notes','319','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2251,'notes','320','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2252,'notes','321','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2253,'notes','322','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2254,'notes','323','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2255,'notes','324','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2256,'notes','325','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2257,'notes','326','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2258,'notes','327','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2259,'notes','328','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2260,'notes','329','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2261,'notes','330','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2262,'notes','331','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2263,'notes','332','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2264,'notes','333','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2265,'notes','334','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2266,'notes','335','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2267,'notes','336','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2268,'notes','337','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2269,'notes','338','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2270,'notes','339','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2271,'notes','340','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2272,'notes','341','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2273,'notes','342','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2274,'notes','343','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2275,'notes','344','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2276,'notes','345','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2277,'notes','346','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2278,'notes','347','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2279,'notes','348','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2280,'notes','349','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2281,'notes','350','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2282,'notes','351','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2283,'notes','352','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2284,'notes','353','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2285,'notes','354','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2286,'notes','355','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2287,'notes','356','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2288,'notes','357','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2289,'notes','358','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2290,'notes','359','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2291,'notes','360','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2292,'notes','361','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2293,'notes','362','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2294,'notes','363','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2295,'notes','364','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2296,'notes','365','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2297,'notes','366','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2298,'notes','367','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2299,'notes','368','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2300,'notes','369','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2301,'notes','370','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2302,'notes','371','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2303,'notes','372','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2304,'notes','373','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2305,'notes','374','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2306,'notes','375','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2307,'notes','376','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2308,'notes','377','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2309,'notes','378','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2310,'notes','379','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2311,'notes','380','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2312,'notes','381','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2313,'notes','382','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2314,'notes','383','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2315,'notes','384','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2316,'notes','385','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2317,'notes','386','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2318,'notes','387','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2319,'notes','388','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2320,'notes','389','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2321,'notes','390','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2322,'notes','391','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2323,'notes','392','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2324,'notes','393','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2325,'notes','394','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2326,'notes','395','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2327,'notes','396','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2328,'notes','397','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2329,'notes','398','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2330,'notes','399','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2331,'notes','400','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2332,'notes','402','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2333,'notes','403','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2334,'notes','404','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2335,'notes','405','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2336,'notes','406','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2337,'notes','407','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2338,'notes','408','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2339,'notes','409','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2340,'notes','410','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2341,'notes','411','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2342,'notes','412','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2343,'notes','413','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2344,'notes','414','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2345,'notes','415','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2346,'notes','416','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2347,'notes','417','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2348,'notes','418','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2349,'notes','419','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2350,'notes','420','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2351,'notes','421','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2352,'notes','422','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2353,'notes','423','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2354,'notes','424','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2355,'notes','425','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2356,'notes','426','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2357,'notes','427','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2358,'notes','428','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2359,'notes','429','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2360,'notes','430','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2361,'notes','431','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2362,'notes','432','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2363,'notes','433','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2364,'notes','434','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2365,'notes','435','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2366,'notes','436','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2367,'notes','437','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2368,'notes','438','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2369,'notes','439','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2370,'notes','440','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2371,'notes','441','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2372,'notes','442','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2373,'notes','443','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2374,'notes','444','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2375,'notes','445','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2376,'notes','446','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2377,'notes','447','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2378,'notes','448','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2379,'notes','449','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2380,'notes','450','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2381,'notes','451','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2382,'notes','452','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2383,'notes','453','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2384,'notes','454','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2385,'notes','455','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2386,'notes','456','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2387,'notes','457','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2388,'notes','458','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2389,'notes','459','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2390,'notes','460','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2391,'notes','461','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2392,'notes','462','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2393,'notes','463','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2394,'notes','464','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2395,'notes','465','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2396,'notes','466','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2397,'notes','467','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2398,'notes','468','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2399,'notes','469','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2400,'notes','470','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2401,'notes','471','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2402,'notes','472','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2403,'notes','473','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2404,'notes','474','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2405,'notes','475','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2406,'notes','476','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2407,'notes','477','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2408,'notes','478','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2409,'notes','479','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2410,'notes','480','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2411,'notes','481','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2412,'notes','482','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2413,'notes','483','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2414,'notes','484','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2415,'notes','485','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2416,'notes','486','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2417,'notes','487','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2418,'notes','488','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2419,'notes','489','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2420,'notes','490','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2421,'notes','491','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2422,'notes','492','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2423,'notes','493','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2424,'notes','494','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2425,'notes','495','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2426,'notes','496','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2427,'notes','497','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2428,'notes','498','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2429,'notes','499','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2430,'notes','500','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2431,'notes','501','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2432,'notes','502','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2433,'notes','503','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2434,'notes','504','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2435,'notes','505','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2436,'notes','507','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2437,'notes','508','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2438,'notes','509','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2439,'notes','510','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2440,'notes','511','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2441,'notes','512','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2442,'notes','513','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2443,'notes','514','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2444,'notes','515','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2445,'notes','516','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2446,'notes','517','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2447,'notes','518','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2448,'notes','519','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2449,'notes','520','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2450,'notes','521','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2451,'notes','522','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2452,'notes','523','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2453,'notes','524','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2454,'notes','525','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2455,'notes','526','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2456,'notes','527','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2457,'notes','528','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2458,'notes','529','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2459,'notes','530','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2460,'notes','531','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2461,'notes','532','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2462,'notes','533','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2463,'notes','534','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2464,'notes','535','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2465,'notes','536','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2466,'notes','537','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2467,'notes','538','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2468,'notes','539','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2469,'notes','540','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2470,'notes','542','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2471,'notes','543','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2472,'notes','544','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2473,'notes','545','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2474,'notes','546','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2475,'notes','547','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2476,'notes','548','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2477,'notes','549','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2478,'notes','550','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2479,'notes','551','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2480,'notes','552','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2481,'notes','553','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2482,'notes','554','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2483,'notes','555','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2484,'notes','556','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2485,'notes','557','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2486,'notes','558','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2487,'notes','559','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2488,'notes','560','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2489,'notes','561','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2490,'notes','562','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2491,'notes','563','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2492,'notes','564','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2493,'notes','565','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2494,'notes','566','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2495,'notes','567','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2496,'notes','568','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2497,'notes','570','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2498,'notes','571','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2499,'notes','572','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2500,'notes','573','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2501,'notes','574','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2502,'notes','575','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2503,'notes','576','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2504,'notes','577','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2505,'notes','578','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2506,'notes','579','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2507,'notes','580','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2508,'notes','581','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2509,'notes','582','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2510,'notes','583','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2511,'notes','584','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2512,'notes','585','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2513,'notes','586','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2514,'notes','587','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2515,'notes','588','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2516,'notes','589','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2517,'notes','590','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2518,'notes','591','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2519,'notes','592','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2520,'notes','593','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2521,'notes','594','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2522,'notes','595','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2523,'notes','596','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2524,'notes','597','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2525,'notes','599','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2526,'notes','600','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2527,'notes','601','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2528,'notes','602','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2529,'notes','603','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2530,'notes','604','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2531,'notes','605','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2532,'notes','606','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2533,'notes','607','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2534,'notes','608','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2535,'notes','609','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2536,'notes','610','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2537,'notes','611','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2538,'notes','612','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2539,'notes','614','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2540,'notes','615','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2541,'notes','616','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2542,'notes','617','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2543,'notes','618','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2544,'notes','619','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2545,'notes','620','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2546,'notes','621','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2547,'notes','622','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2548,'notes','623','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2549,'notes','624','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2550,'notes','625','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2551,'notes','626','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2552,'notes','627','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2553,'notes','628','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2554,'notes','629','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2555,'notes','630','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2556,'notes','631','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2557,'notes','632','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2558,'notes','633','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2559,'notes','634','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2560,'notes','635','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2561,'notes','636','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2562,'notes','637','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2563,'notes','638','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2564,'notes','639','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2565,'notes','641','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2566,'notes','643','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2567,'notes','644','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2568,'notes','645','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2569,'notes','646','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2570,'notes','647','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2571,'notes','648','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2572,'notes','650','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2573,'notes','651','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2574,'notes','652','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2575,'notes','653','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2576,'notes','654','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2577,'notes','656','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2578,'notes','657','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2579,'notes','658','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2580,'notes','659','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2581,'notes','660','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2582,'notes','661','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2583,'notes','662','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2584,'notes','663','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2585,'notes','664','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2586,'notes','665','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2587,'notes','666','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2588,'notes','667','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2589,'notes','668','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2590,'notes','669','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2591,'notes','670','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2592,'notes','673','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2593,'notes','674','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2594,'notes','675','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2595,'notes','676','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2596,'notes','677','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2597,'notes','678','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2598,'notes','679','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2599,'notes','680','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2600,'notes','681','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2601,'notes','682','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2602,'notes','684','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2603,'notes','685','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2604,'notes','686','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2605,'notes','688','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2606,'notes','689','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2607,'notes','690','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2608,'notes','691','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2609,'notes','692','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2610,'notes','693','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2611,'notes','694','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2612,'notes','695','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2613,'notes','696','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2614,'notes','698','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2615,'notes','699','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2616,'notes','700','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2617,'notes','701','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2618,'notes','702','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2619,'notes','703','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2620,'notes','704','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2621,'notes','705','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2622,'notes','706','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2623,'notes','707','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2624,'notes','708','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2625,'notes','709','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2626,'notes','710','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2627,'notes','711','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2628,'notes','712','error','Deal not found: 147',NULL,'2025-11-14 00:11:11'),
(2629,'notes','713','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2630,'notes','714','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2631,'notes','715','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2632,'notes','716','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2633,'notes','717','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2634,'notes','718','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2635,'notes','719','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2636,'notes','720','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2637,'notes','721','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2638,'notes','722','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2639,'notes','723','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2640,'notes','724','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2641,'notes','725','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2642,'notes','726','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2643,'notes','727','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2644,'notes','728','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2645,'notes','730','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2646,'notes','731','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2647,'notes','732','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2648,'notes','733','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2649,'notes','734','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2650,'notes','735','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2651,'notes','736','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2652,'notes','738','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2653,'notes','739','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2654,'notes','740','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2655,'notes','741','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2656,'notes','742','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2657,'notes','743','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2658,'notes','744','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2659,'notes','745','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2660,'notes','746','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2661,'notes','747','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2662,'notes','748','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2663,'notes','749','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2664,'notes','750','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2665,'notes','751','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2666,'notes','752','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2667,'notes','753','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2668,'notes','754','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2669,'notes','755','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2670,'notes','756','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2671,'notes','757','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2672,'notes','758','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2673,'notes','759','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2674,'notes','760','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2675,'notes','761','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2676,'notes','762','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2677,'notes','763','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2678,'notes','764','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2679,'notes','765','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2680,'notes','766','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2681,'notes','767','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2682,'notes','768','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2683,'notes','769','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2684,'notes','770','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2685,'notes','771','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2686,'notes','772','error','Deal not found: 717',NULL,'2025-11-14 00:11:11'),
(2687,'notes','773','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2688,'notes','774','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2689,'notes','775','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2690,'notes','776','error','Deal not found: 717',NULL,'2025-11-14 00:11:11'),
(2691,'notes','777','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2692,'notes','778','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2693,'notes','779','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2694,'notes','780','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2695,'notes','781','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2696,'notes','782','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2697,'notes','783','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2698,'notes','784','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2699,'notes','785','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2700,'notes','786','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2701,'notes','787','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2702,'notes','788','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2703,'notes','789','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2704,'notes','790','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2705,'notes','791','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2706,'notes','792','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2707,'notes','793','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2708,'notes','794','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2709,'notes','795','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2710,'notes','796','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2711,'notes','797','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2712,'notes','798','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2713,'notes','799','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2714,'notes','800','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2715,'notes','801','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2716,'notes','802','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2717,'notes','803','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2718,'notes','804','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2719,'notes','805','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2720,'notes','806','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2721,'notes','807','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2722,'notes','808','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2723,'notes','809','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2724,'notes','810','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2725,'notes','811','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2726,'notes','812','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2727,'notes','813','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2728,'notes','815','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2729,'notes','816','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2730,'notes','817','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2731,'notes','818','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2732,'notes','819','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2733,'notes','820','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2734,'notes','821','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2735,'notes','822','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2736,'notes','823','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2737,'notes','824','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2738,'notes','825','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2739,'notes','826','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2740,'notes','827','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2741,'notes','829','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2742,'notes','830','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2743,'notes','831','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2744,'notes','832','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2745,'notes','833','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2746,'notes','834','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2747,'notes','835','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2748,'notes','836','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2749,'notes','839','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2750,'notes','840','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2751,'notes','841','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2752,'notes','842','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2753,'notes','843','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2754,'notes','844','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2755,'notes','845','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2756,'notes','846','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2757,'notes','847','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2758,'notes','848','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2759,'notes','849','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2760,'notes','850','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2761,'notes','852','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2762,'notes','853','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2763,'notes','854','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2764,'notes','855','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2765,'notes','856','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2766,'notes','857','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2767,'notes','858','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2768,'notes','859','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2769,'notes','860','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2770,'notes','861','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2771,'notes','862','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2772,'notes','863','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2773,'notes','864','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2774,'notes','865','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2775,'notes','866','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2776,'notes','867','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2777,'notes','868','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2778,'notes','869','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2779,'notes','870','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2780,'notes','871','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2781,'notes','872','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2782,'notes','874','error','Deal not found: 717',NULL,'2025-11-14 00:11:11'),
(2783,'notes','875','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2784,'notes','876','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2785,'notes','877','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2786,'notes','878','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2787,'notes','879','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2788,'notes','880','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2789,'notes','881','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2790,'notes','882','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2791,'notes','883','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2792,'notes','884','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2793,'notes','885','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2794,'notes','886','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2795,'notes','887','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2796,'notes','888','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2797,'notes','889','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2798,'notes','890','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2799,'notes','892','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2800,'notes','893','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2801,'notes','894','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2802,'notes','895','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2803,'notes','896','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2804,'notes','897','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2805,'notes','898','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2806,'notes','899','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2807,'notes','900','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2808,'notes','901','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2809,'notes','902','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2810,'notes','903','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2811,'notes','904','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2812,'notes','905','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2813,'notes','906','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2814,'notes','907','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2815,'notes','908','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2816,'notes','909','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2817,'notes','910','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2818,'notes','911','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2819,'notes','912','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2820,'notes','913','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2821,'notes','914','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2822,'notes','915','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2823,'notes','916','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2824,'notes','917','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2825,'notes','918','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2826,'notes','919','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2827,'notes','920','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2828,'notes','921','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2829,'notes','923','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2830,'notes','924','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2831,'notes','925','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2832,'notes','926','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2833,'notes','927','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2834,'notes','928','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2835,'notes','929','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2836,'notes','930','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2837,'notes','931','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2838,'notes','932','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2839,'notes','933','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2840,'notes','934','error','Deal not found: 517',NULL,'2025-11-14 00:11:11'),
(2841,'notes','935','error','Deal not found: 508',NULL,'2025-11-14 00:11:11'),
(2842,'notes','936','error','Deal not found: 508',NULL,'2025-11-14 00:11:11'),
(2843,'notes','937','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2844,'notes','938','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2845,'notes','939','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2846,'notes','940','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2847,'notes','941','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2848,'notes','942','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2849,'notes','943','error','Deal not found: 508',NULL,'2025-11-14 00:11:11'),
(2850,'notes','944','error','Deal not found: 508',NULL,'2025-11-14 00:11:11'),
(2851,'notes','945','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2852,'notes','946','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2853,'notes','947','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2854,'notes','948','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2855,'notes','949','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2856,'notes','950','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2857,'notes','951','error','Deal not found: 508',NULL,'2025-11-14 00:11:11'),
(2858,'notes','952','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2859,'notes','953','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2860,'notes','954','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2861,'notes','955','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2862,'notes','956','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2863,'notes','957','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2864,'notes','958','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2865,'notes','959','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2866,'notes','960','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2867,'notes','961','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2868,'notes','962','error','Deal not found: 196',NULL,'2025-11-14 00:11:11'),
(2869,'notes','963','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2870,'notes','964','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2871,'notes','965','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2872,'notes','966','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2873,'notes','967','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2874,'notes','968','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2875,'notes','969','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2876,'notes','970','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2877,'notes','971','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2878,'notes','972','error','Deal not found: 203',NULL,'2025-11-14 00:11:11'),
(2879,'notes','973','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2880,'notes','974','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2881,'notes','975','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2882,'notes','976','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2883,'notes','977','error','Deal not found: 212',NULL,'2025-11-14 00:11:11'),
(2884,'notes','978','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2885,'notes','979','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2886,'notes','980','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2887,'notes','981','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2888,'notes','982','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2889,'notes','983','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2890,'notes','984','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2891,'notes','985','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2892,'notes','986','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2893,'notes','988','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2894,'notes','989','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2895,'notes','990','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2896,'notes','991','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2897,'notes','992','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2898,'notes','993','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2899,'notes','994','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2900,'notes','995','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2901,'notes','996','error','Deal not found: 251',NULL,'2025-11-14 00:11:11'),
(2902,'notes','997','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2903,'notes','998','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2904,'notes','999','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2905,'notes','1000','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2906,'notes','1001','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2907,'notes','1002','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2908,'notes','1003','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2909,'notes','1004','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2910,'notes','1005','error','Deal not found: 256',NULL,'2025-11-14 00:11:11'),
(2911,'notes','1006','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2912,'notes','1007','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2913,'notes','1008','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2914,'notes','1009','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2915,'notes','1010','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2916,'notes','1011','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2917,'notes','1012','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2918,'notes','1013','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2919,'notes','1014','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2920,'notes','1015','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2921,'notes','1016','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2922,'notes','1017','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2923,'notes','1018','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2924,'notes','1019','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2925,'notes','1020','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2926,'notes','1021','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2927,'notes','1022','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2928,'notes','1023','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2929,'notes','1024','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2930,'notes','1025','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2931,'notes','1026','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2932,'notes','1027','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2933,'notes','1028','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2934,'notes','1029','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2935,'notes','1030','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2936,'notes','1031','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2937,'notes','1032','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2938,'notes','1033','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2939,'notes','1034','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2940,'notes','1035','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2941,'notes','1036','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2942,'notes','1037','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2943,'notes','1038','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2944,'notes','1039','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2945,'notes','1040','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2946,'notes','1041','error','Deal not found: 313',NULL,'2025-11-14 00:11:11'),
(2947,'notes','1042','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2948,'notes','1043','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2949,'notes','1044','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2950,'notes','1045','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2951,'notes','1046','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2952,'notes','1047','error','Deal not found: 338',NULL,'2025-11-14 00:11:11'),
(2953,'notes','1048','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2954,'notes','1049','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2955,'notes','1050','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2956,'notes','1051','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2957,'notes','1052','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2958,'notes','1053','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2959,'notes','1054','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2960,'notes','1055','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2961,'notes','1056','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2962,'notes','1057','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2963,'notes','1059','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2964,'notes','1060','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2965,'notes','1061','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2966,'notes','1062','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2967,'notes','1063','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2968,'notes','1064','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2969,'notes','1065','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2970,'notes','1066','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2971,'notes','1067','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2972,'notes','1068','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2973,'notes','1069','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2974,'notes','1070','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2975,'notes','1071','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2976,'notes','1072','error','Deal not found: 418',NULL,'2025-11-14 00:11:11'),
(2977,'notes','1073','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2978,'notes','1074','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(2979,'notes','1075','error','Deal not found: 448',NULL,'2025-11-14 00:11:11'),
(2980,'notes','1076','error','Deal not found: 193',NULL,'2025-11-14 00:11:11'),
(2981,'notes','1077','error','Deal not found: 542',NULL,'2025-11-14 00:11:11'),
(2982,'notes','1078','error','Deal not found: 542',NULL,'2025-11-14 00:11:11'),
(2983,'notes','1079','error','Deal not found: 540',NULL,'2025-11-14 00:11:11'),
(2984,'notes','1080','error','Deal not found: 542',NULL,'2025-11-14 00:11:11'),
(2985,'notes','1081','error','Deal not found: 542',NULL,'2025-11-14 00:11:11'),
(2986,'notes','1082','error','Deal not found: 291',NULL,'2025-11-14 00:11:11'),
(2987,'notes','1083','error','Deal not found: 540',NULL,'2025-11-14 00:11:11'),
(2988,'notes','1084','error','Deal not found: 381',NULL,'2025-11-14 00:11:11'),
(2989,'notes','1085','error','Deal not found: 430',NULL,'2025-11-14 00:11:11'),
(2990,'notes','1086','error','Deal not found: 497',NULL,'2025-11-14 00:11:11'),
(2991,'notes','1087','error','Deal not found: 476',NULL,'2025-11-14 00:11:11'),
(2992,'notes','1088','error','Deal not found: 546',NULL,'2025-11-14 00:11:11'),
(2993,'notes','1089','error','Deal not found: 257',NULL,'2025-11-14 00:11:11'),
(2994,'notes','1090','error','Deal not found: 443',NULL,'2025-11-14 00:11:11'),
(2995,'notes','1091','error','Deal not found: 268',NULL,'2025-11-14 00:11:11'),
(2996,'notes','1092','error','Deal not found: 430',NULL,'2025-11-14 00:11:11'),
(2997,'notes','1093','error','Deal not found: 407',NULL,'2025-11-14 00:11:11'),
(2998,'notes','1094','error','Deal not found: 505',NULL,'2025-11-14 00:11:11'),
(2999,'notes','1095','error','Deal not found: 315',NULL,'2025-11-14 00:11:11'),
(3000,'notes','1096','error','Deal not found: 532',NULL,'2025-11-14 00:11:11'),
(3001,'notes','1097','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3002,'notes','1098','error','Deal not found: 234',NULL,'2025-11-14 00:11:11'),
(3003,'notes','1099','error','Deal not found: 249',NULL,'2025-11-14 00:11:11'),
(3004,'notes','1100','error','Deal not found: 431',NULL,'2025-11-14 00:11:11'),
(3005,'notes','1101','error','Deal not found: 520',NULL,'2025-11-14 00:11:11'),
(3006,'notes','1102','error','Deal not found: 543',NULL,'2025-11-14 00:11:11'),
(3007,'notes','1103','error','Deal not found: 462',NULL,'2025-11-14 00:11:11'),
(3008,'notes','1104','error','Deal not found: 200',NULL,'2025-11-14 00:11:11'),
(3009,'notes','1105','error','Deal not found: 519',NULL,'2025-11-14 00:11:11'),
(3010,'notes','1106','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3011,'notes','1107','error','Deal not found: 197',NULL,'2025-11-14 00:11:11'),
(3012,'notes','1108','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3013,'notes','1109','error','Deal not found: 509',NULL,'2025-11-14 00:11:11'),
(3014,'notes','1110','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3015,'notes','1111','error','Deal not found: 315',NULL,'2025-11-14 00:11:11'),
(3016,'notes','1112','error','Deal not found: 531',NULL,'2025-11-14 00:11:11'),
(3017,'notes','1113','error','Deal not found: 490',NULL,'2025-11-14 00:11:11'),
(3018,'notes','1114','error','Deal not found: 310',NULL,'2025-11-14 00:11:11'),
(3019,'notes','1115','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3020,'notes','1116','error','Deal not found: 481',NULL,'2025-11-14 00:11:11'),
(3021,'notes','1117','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3022,'notes','1118','error','Deal not found: 249',NULL,'2025-11-14 00:11:11'),
(3023,'notes','1119','error','Deal not found: 525',NULL,'2025-11-14 00:11:11'),
(3024,'notes','1120','error','Deal not found: 568',NULL,'2025-11-14 00:11:11'),
(3025,'notes','1121','error','Deal not found: 426',NULL,'2025-11-14 00:11:11'),
(3026,'notes','1122','error','Deal not found: 305',NULL,'2025-11-14 00:11:11'),
(3027,'notes','1123','error','Deal not found: 530',NULL,'2025-11-14 00:11:11'),
(3028,'notes','1124','error','Deal not found: 483',NULL,'2025-11-14 00:11:11'),
(3029,'notes','1125','error','Deal not found: 431',NULL,'2025-11-14 00:11:11'),
(3030,'notes','1126','error','Deal not found: 465',NULL,'2025-11-14 00:11:11'),
(3031,'notes','1127','error','Deal not found: 431',NULL,'2025-11-14 00:11:11'),
(3032,'notes','1128','error','Deal not found: 518',NULL,'2025-11-14 00:11:11'),
(3033,'notes','1129','error','Deal not found: 477',NULL,'2025-11-14 00:11:11'),
(3034,'notes','1130','error','Deal not found: 528',NULL,'2025-11-14 00:11:11'),
(3035,'notes','1131','error','Deal not found: 477',NULL,'2025-11-14 00:11:11'),
(3036,'notes','1132','error','Deal not found: 431',NULL,'2025-11-14 00:11:11'),
(3037,'notes','1133','error','Deal not found: 463',NULL,'2025-11-14 00:11:11'),
(3038,'notes','1134','error','Deal not found: 533',NULL,'2025-11-14 00:11:11'),
(3039,'notes','1135','error','Deal not found: 372',NULL,'2025-11-14 00:11:11'),
(3040,'notes','1136','error','Deal not found: 533',NULL,'2025-11-14 00:11:11'),
(3041,'notes','1137','error','Deal not found: 372',NULL,'2025-11-14 00:11:11'),
(3042,'notes','1138','error','Deal not found: 457',NULL,'2025-11-14 00:11:11'),
(3043,'notes','1139','error','Deal not found: 460',NULL,'2025-11-14 00:11:11'),
(3044,'notes','1140','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3045,'notes','1141','error','Deal not found: 193',NULL,'2025-11-14 00:11:11'),
(3046,'notes','1142','error','Deal not found: 515',NULL,'2025-11-14 00:11:11'),
(3047,'notes','1143','error','Deal not found: 193',NULL,'2025-11-14 00:11:11'),
(3048,'notes','1144','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3049,'notes','1145','error','Deal not found: 492',NULL,'2025-11-14 00:11:11'),
(3050,'notes','1146','error','Deal not found: 526',NULL,'2025-11-14 00:11:11'),
(3051,'notes','1147','error','Deal not found: 539',NULL,'2025-11-14 00:11:11'),
(3052,'notes','1148','error','Deal not found: 257',NULL,'2025-11-14 00:11:11'),
(3053,'notes','1149','error','Deal not found: 463',NULL,'2025-11-14 00:11:11'),
(3054,'notes','1150','error','Deal not found: 447',NULL,'2025-11-14 00:11:11'),
(3055,'notes','1151','error','Deal not found: 489',NULL,'2025-11-14 00:11:11'),
(3056,'notes','1152','error','Deal not found: 463',NULL,'2025-11-14 00:11:11'),
(3057,'notes','1153','error','Deal not found: 397',NULL,'2025-11-14 00:11:11'),
(3058,'notes','1154','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3059,'notes','1155','error','Deal not found: 430',NULL,'2025-11-14 00:11:11'),
(3060,'notes','1156','error','Deal not found: 462',NULL,'2025-11-14 00:11:11'),
(3061,'notes','1157','error','Deal not found: 542',NULL,'2025-11-14 00:11:11'),
(3062,'notes','1158','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3063,'notes','1159','error','Deal not found: 509',NULL,'2025-11-14 00:11:11'),
(3064,'notes','1160','error','Deal not found: 296',NULL,'2025-11-14 00:11:11'),
(3065,'notes','1161','error','Deal not found: 460',NULL,'2025-11-14 00:11:11'),
(3066,'notes','1162','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3067,'notes','1164','error','Deal not found: 472',NULL,'2025-11-14 00:11:11'),
(3068,'notes','1165','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3069,'notes','1166','error','Deal not found: 469',NULL,'2025-11-14 00:11:11'),
(3070,'notes','1167','error','Deal not found: 472',NULL,'2025-11-14 00:11:11'),
(3071,'notes','1168','error','Deal not found: 213',NULL,'2025-11-14 00:11:11'),
(3072,'notes','1169','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3073,'notes','1170','error','Deal not found: 472',NULL,'2025-11-14 00:11:11'),
(3074,'notes','1171','error','Deal not found: 427',NULL,'2025-11-14 00:11:11'),
(3075,'notes','1172','error','Deal not found: 200',NULL,'2025-11-14 00:11:11'),
(3076,'notes','1173','error','Deal not found: 604',NULL,'2025-11-14 00:11:11'),
(3077,'notes','1174','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3078,'notes','1175','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3079,'notes','1176','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3080,'notes','1177','error','Deal not found: 584',NULL,'2025-11-14 00:11:11'),
(3081,'notes','1179','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3082,'notes','1180','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3083,'notes','1181','error','Deal not found: 536',NULL,'2025-11-14 00:11:11'),
(3084,'notes','1182','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3085,'notes','1183','error','Deal not found: 385',NULL,'2025-11-14 00:11:11'),
(3086,'notes','1184','error','Deal not found: 427',NULL,'2025-11-14 00:11:11'),
(3087,'notes','1185','error','Deal not found: 427',NULL,'2025-11-14 00:11:11'),
(3088,'notes','1186','error','Deal not found: 427',NULL,'2025-11-14 00:11:11'),
(3089,'notes','1187','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3090,'notes','1188','error','Deal not found: 427',NULL,'2025-11-14 00:11:11'),
(3091,'notes','1189','error','Deal not found: 380',NULL,'2025-11-14 00:11:11'),
(3092,'notes','1190','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3093,'notes','1191','error','Deal not found: 627',NULL,'2025-11-14 00:11:11'),
(3094,'notes','1192','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3095,'notes','1193','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3096,'notes','1194','error','Deal not found: 442',NULL,'2025-11-14 00:11:11'),
(3097,'notes','1195','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3098,'notes','1196','error','Deal not found: 532',NULL,'2025-11-14 00:11:11'),
(3099,'notes','1197','error','Deal not found: 287',NULL,'2025-11-14 00:11:11'),
(3100,'notes','1198','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3101,'notes','1199','error','Deal not found: 542',NULL,'2025-11-14 00:11:11'),
(3102,'notes','1200','error','Deal not found: 497',NULL,'2025-11-14 00:11:11'),
(3103,'notes','1201','error','Deal not found: 287',NULL,'2025-11-14 00:11:11'),
(3104,'notes','1202','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3105,'notes','1203','error','Deal not found: 497',NULL,'2025-11-14 00:11:11'),
(3106,'notes','1204','error','Deal not found: 636',NULL,'2025-11-14 00:11:11'),
(3107,'notes','1205','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3108,'notes','1206','error','Deal not found: 469',NULL,'2025-11-14 00:11:11'),
(3109,'notes','1207','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3110,'notes','1208','error','Deal not found: 249',NULL,'2025-11-14 00:11:11'),
(3111,'notes','1209','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3112,'notes','1210','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3113,'notes','1211','error','Deal not found: 526',NULL,'2025-11-14 00:11:11'),
(3114,'notes','1212','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3115,'notes','1213','error','Deal not found: 498',NULL,'2025-11-14 00:11:11'),
(3116,'notes','1214','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3117,'notes','1215','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3118,'notes','1216','error','Deal not found: 601',NULL,'2025-11-14 00:11:11'),
(3119,'notes','1217','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3120,'notes','1218','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3121,'notes','1219','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3122,'notes','1220','error','Deal not found: 257',NULL,'2025-11-14 00:11:11'),
(3123,'notes','1221','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3124,'notes','1222','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3125,'notes','1223','error','Deal not found: 655',NULL,'2025-11-14 00:11:11'),
(3126,'notes','1224','error','Deal not found: 323',NULL,'2025-11-14 00:11:11'),
(3127,'notes','1225','error','Deal not found: 301',NULL,'2025-11-14 00:11:11'),
(3128,'notes','1226','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3129,'notes','1227','error','Deal not found: 487',NULL,'2025-11-14 00:11:11'),
(3130,'notes','1228','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3131,'notes','1229','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3132,'notes','1230','error','Deal not found: 315',NULL,'2025-11-14 00:11:11'),
(3133,'notes','1231','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3134,'notes','1232','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3135,'notes','1233','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3136,'notes','1234','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3137,'notes','1235','error','Deal not found: 223',NULL,'2025-11-14 00:11:11'),
(3138,'notes','1236','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3139,'notes','1237','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3140,'notes','1238','error','Deal not found: 315',NULL,'2025-11-14 00:11:11'),
(3141,'notes','1239','error','Deal not found: 479',NULL,'2025-11-14 00:11:11'),
(3142,'notes','1240','error','Deal not found: 684',NULL,'2025-11-14 00:11:11'),
(3143,'notes','1242','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3144,'notes','1243','error','Deal not found: 542',NULL,'2025-11-14 00:11:11'),
(3145,'notes','1244','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3146,'notes','1245','error','Deal not found: 147',NULL,'2025-11-14 00:11:11'),
(3147,'notes','1246','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3148,'notes','1247','error','Deal not found: 249',NULL,'2025-11-14 00:11:11'),
(3149,'notes','1248','error','Deal not found: 147',NULL,'2025-11-14 00:11:11'),
(3150,'notes','1249','error','Deal not found: 313',NULL,'2025-11-14 00:11:11'),
(3151,'notes','1250','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3152,'notes','1251','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3153,'notes','1252','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3154,'notes','1253','error','Deal not found: 287',NULL,'2025-11-14 00:11:11'),
(3155,'notes','1254','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3156,'notes','1255','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3157,'notes','1256','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3158,'notes','1257','error','Deal not found: 636',NULL,'2025-11-14 00:11:11'),
(3159,'notes','1258','error','Deal not found: 636',NULL,'2025-11-14 00:11:11'),
(3160,'notes','1259','error','Deal not found: 636',NULL,'2025-11-14 00:11:11'),
(3161,'notes','1260','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3162,'notes','1261','error','Deal not found: 150',NULL,'2025-11-14 00:11:11'),
(3163,'notes','1262','error','Deal not found: 150',NULL,'2025-11-14 00:11:11'),
(3164,'notes','1263','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3165,'notes','1264','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3166,'notes','1265','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3167,'notes','1266','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3168,'notes','1267','error','Deal not found: 540',NULL,'2025-11-14 00:11:11'),
(3169,'notes','1268','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3170,'notes','1269','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3171,'notes','1270','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3172,'notes','1271','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3173,'notes','1272','error','Deal not found: 249',NULL,'2025-11-14 00:11:11'),
(3174,'notes','1273','error','Deal not found: 385',NULL,'2025-11-14 00:11:11'),
(3175,'notes','1274','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3176,'notes','1275','error','Deal not found: 492',NULL,'2025-11-14 00:11:11'),
(3177,'notes','1276','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3178,'notes','1277','error','Deal not found: 627',NULL,'2025-11-14 00:11:11'),
(3179,'notes','1278','error','Deal not found: 385',NULL,'2025-11-14 00:11:11'),
(3180,'notes','1279','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3181,'notes','1280','error','Deal not found: 385',NULL,'2025-11-14 00:11:11'),
(3182,'notes','1281','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3183,'notes','1282','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3184,'notes','1283','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3185,'notes','1284','error','Deal not found: 700',NULL,'2025-11-14 00:11:11'),
(3186,'notes','1285','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3187,'notes','1286','error','Deal not found: 636',NULL,'2025-11-14 00:11:11'),
(3188,'notes','1287','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3189,'notes','1288','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3190,'notes','1289','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3191,'notes','1290','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3192,'notes','1291','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3193,'notes','1292','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3194,'notes','1293','error','Deal not found: 204',NULL,'2025-11-14 00:11:11'),
(3195,'notes','1294','error','Deal not found: 427',NULL,'2025-11-14 00:11:11'),
(3196,'notes','1295','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3197,'notes','1296','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3198,'notes','1297','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3199,'notes','1298','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3200,'notes','1299','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3201,'notes','1300','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3202,'notes','1301','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3203,'notes','1302','error','Deal not found: 443',NULL,'2025-11-14 00:11:11'),
(3204,'notes','1303','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3205,'notes','1304','error','Deal not found: 403',NULL,'2025-11-14 00:11:11'),
(3206,'notes','1305','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3207,'notes','1306','error','Deal not found: 542',NULL,'2025-11-14 00:11:11'),
(3208,'notes','1307','error','Deal not found: 730',NULL,'2025-11-14 00:11:11'),
(3209,'notes','1308','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3210,'notes','1309','error','Deal not found: 442',NULL,'2025-11-14 00:11:11'),
(3211,'notes','1310','error','Deal not found: 204',NULL,'2025-11-14 00:11:11'),
(3212,'notes','1311','error','Deal not found: 403',NULL,'2025-11-14 00:11:11'),
(3213,'notes','1312','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3214,'notes','1313','error','Deal not found: 442',NULL,'2025-11-14 00:11:11'),
(3215,'notes','1314','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3216,'notes','1315','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3217,'notes','1316','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3218,'notes','1317','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3219,'notes','1318','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3220,'notes','1319','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3221,'notes','1320','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3222,'notes','1321','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3223,'notes','1322','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3224,'notes','1323','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3225,'notes','1324','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3226,'notes','1325','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3227,'notes','1326','error','Deal not found: 403',NULL,'2025-11-14 00:11:11'),
(3228,'notes','1327','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3229,'notes','1328','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3230,'notes','1329','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3231,'notes','1330','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3232,'notes','1331','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3233,'notes','1332','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3234,'notes','1333','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3235,'notes','1334','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3236,'notes','1335','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3237,'notes','1336','error','Deal not found: 403',NULL,'2025-11-14 00:11:11'),
(3238,'notes','1338','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3239,'notes','1339','error','Deal not found: 627',NULL,'2025-11-14 00:11:11'),
(3240,'notes','1341','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3241,'notes','1342','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3242,'notes','1343','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3243,'notes','1344','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3244,'notes','1345','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3245,'notes','1346','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3246,'notes','1347','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3247,'notes','1348','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3248,'notes','1349','error','Deal not found: 542',NULL,'2025-11-14 00:11:11'),
(3249,'notes','1350','error','Deal not found: 508',NULL,'2025-11-14 00:11:11'),
(3250,'notes','1351','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3251,'notes','1352','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3252,'notes','1353','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3253,'notes','1354','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3254,'notes','1355','error','Deal not found: 733',NULL,'2025-11-14 00:11:11'),
(3255,'notes','1356','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3256,'notes','1357','error','Deal not found: 708',NULL,'2025-11-14 00:11:11'),
(3257,'notes','1358','error','Deal not found: 730',NULL,'2025-11-14 00:11:11'),
(3258,'notes','1359','error','Deal not found: 730',NULL,'2025-11-14 00:11:11'),
(3259,'notes','1361','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3260,'notes','1362','error','Deal not found: 684',NULL,'2025-11-14 00:11:11'),
(3261,'notes','1363','error','Deal not found: 443',NULL,'2025-11-14 00:11:11'),
(3262,'notes','1364','error','Deal not found: 147',NULL,'2025-11-14 00:11:11'),
(3263,'notes','1365','error','Deal not found: 315',NULL,'2025-11-14 00:11:11'),
(3264,'notes','1366','error','Deal not found: 727',NULL,'2025-11-14 00:11:11'),
(3265,'notes','1367','error','Deal not found: 256',NULL,'2025-11-14 00:11:11'),
(3266,'notes','1368','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3267,'notes','1369','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3268,'notes','1370','error','Deal not found: 251',NULL,'2025-11-14 00:11:11'),
(3269,'notes','1371','error','Deal not found: 847',NULL,'2025-11-14 00:11:11'),
(3270,'notes','1372','error','Deal not found: 362',NULL,'2025-11-14 00:11:11'),
(3271,'notes','1373','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3272,'notes','1374','error','Deal not found: 192',NULL,'2025-11-14 00:11:11'),
(3273,'notes','1375','error','Deal not found: 212',NULL,'2025-11-14 00:11:11'),
(3274,'notes','1376','error','Deal not found: 61',NULL,'2025-11-14 00:11:11'),
(3275,'notes','1377','error','Deal not found: 61',NULL,'2025-11-14 00:11:11'),
(3276,'notes','1378','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3277,'notes','1379','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3278,'notes','1380','error','Deal not found: 943',NULL,'2025-11-14 00:11:11'),
(3279,'notes','1381','error','Deal not found: 517',NULL,'2025-11-14 00:11:11'),
(3280,'notes','1382','error','Deal not found: 986',NULL,'2025-11-14 00:11:11'),
(3281,'notes','1383','error','Deal not found: 986',NULL,'2025-11-14 00:11:11'),
(3282,'notes','1384','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3283,'notes','1385','error','Deal not found: 1013',NULL,'2025-11-14 00:11:11'),
(3284,'notes','1386','error','Deal not found: 990',NULL,'2025-11-14 00:11:11'),
(3285,'notes','1387','error','Deal not found: 990',NULL,'2025-11-14 00:11:11'),
(3286,'notes','1388','error','Deal not found: 998',NULL,'2025-11-14 00:11:11'),
(3287,'notes','1389','error','Deal not found: 994',NULL,'2025-11-14 00:11:11'),
(3288,'notes','1390','error','Deal not found: 1006',NULL,'2025-11-14 00:11:11'),
(3289,'notes','1391','error','Deal not found: 1009',NULL,'2025-11-14 00:11:11'),
(3290,'notes','1392','error','Deal not found: 867',NULL,'2025-11-14 00:11:11'),
(3291,'notes','1393','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3292,'notes','1394','error','Deal not found: 994',NULL,'2025-11-14 00:11:11'),
(3293,'notes','1395','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3294,'notes','1396','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3295,'notes','1397','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3296,'notes','1398','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3297,'notes','1399','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3298,'notes','1400','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3299,'notes','1401','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3300,'notes','1402','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3301,'notes','1403','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3302,'notes','1404','error','Deal not found: 61',NULL,'2025-11-14 00:11:11'),
(3303,'notes','1405','error','Deal not found: 442',NULL,'2025-11-14 00:11:11'),
(3304,'notes','1406','error','Deal not found: 249',NULL,'2025-11-14 00:11:11'),
(3305,'notes','1407','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3306,'notes','1408','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3307,'notes','1409','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3308,'notes','1410','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3309,'notes','1411','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3310,'notes','1412','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3311,'notes','1413','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3312,'notes','1414','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3313,'notes','1415','error','Deal not found: 1724',NULL,'2025-11-14 00:11:11'),
(3314,'notes','1416','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3315,'notes','1417','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3316,'notes','1418','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3317,'notes','1419','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3318,'notes','1420','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3319,'notes','1421','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3320,'notes','1422','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3321,'notes','1423','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3322,'notes','1424','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3323,'notes','1425','error','Deal not found: 1724',NULL,'2025-11-14 00:11:11'),
(3324,'notes','1426','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3325,'notes','1427','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3326,'notes','1428','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3327,'notes','1429','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3328,'notes','1430','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3329,'notes','1431','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3330,'notes','1432','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3331,'notes','1434','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3332,'notes','1435','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3333,'notes','1436','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3334,'notes','1437','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3335,'notes','1438','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3336,'notes','1439','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3337,'notes','1440','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3338,'notes','1441','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3339,'notes','1442','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3340,'notes','1443','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3341,'notes','1444','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3342,'notes','1445','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3343,'notes','1446','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3344,'notes','1447','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3345,'notes','1448','error','Deal not found: 1724',NULL,'2025-11-14 00:11:11'),
(3346,'notes','1449','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3347,'notes','1450','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3348,'notes','1451','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3349,'notes','1452','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3350,'notes','1453','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3351,'notes','1454','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3352,'notes','1455','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3353,'notes','1456','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3354,'notes','1457','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3355,'notes','1458','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3356,'notes','1459','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3357,'notes','1460','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3358,'notes','1461','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3359,'notes','1462','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3360,'notes','1463','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3361,'notes','1464','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3362,'notes','1465','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3363,'notes','1466','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3364,'notes','1467','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3365,'notes','1468','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3366,'notes','1469','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3367,'notes','1470','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3368,'notes','1471','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3369,'notes','1472','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3370,'notes','1473','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3371,'notes','1474','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3372,'notes','1475','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3373,'notes','1476','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3374,'notes','1477','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3375,'notes','1478','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3376,'notes','1479','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3377,'notes','1480','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3378,'notes','1481','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3379,'notes','1482','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3380,'notes','1483','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3381,'notes','1484','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3382,'notes','1485','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3383,'notes','1486','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3384,'notes','1487','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3385,'notes','1488','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3386,'notes','1489','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3387,'notes','1490','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3388,'notes','1491','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3389,'notes','1492','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3390,'notes','1493','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3391,'notes','1494','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3392,'notes','1495','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3393,'notes','1496','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3394,'notes','1497','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3395,'notes','1498','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3396,'notes','1499','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3397,'notes','1500','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3398,'notes','1501','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3399,'notes','1502','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3400,'notes','1504','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3401,'notes','1505','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3402,'notes','1506','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3403,'notes','1507','error','Deal not found: 1358',NULL,'2025-11-14 00:11:11'),
(3404,'notes','1508','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3405,'notes','1509','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3406,'notes','1510','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3407,'notes','1511','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3408,'notes','1512','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3409,'notes','1513','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3410,'notes','1514','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3411,'notes','1515','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3412,'notes','1516','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3413,'notes','1517','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3414,'notes','1518','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3415,'notes','1519','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3416,'notes','1520','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3417,'notes','1523','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3418,'notes','1524','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3419,'notes','1525','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3420,'notes','1526','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3421,'notes','1527','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3422,'notes','1528','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3423,'notes','1529','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3424,'notes','1530','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3425,'notes','1531','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3426,'notes','1532','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3427,'notes','1533','error','Deal not found: 1442',NULL,'2025-11-14 00:11:11'),
(3428,'notes','1534','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3429,'notes','1535','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3430,'notes','1536','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3431,'notes','1537','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3432,'notes','1538','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3433,'notes','1539','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3434,'notes','1540','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3435,'notes','1541','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3436,'notes','1542','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3437,'notes','1543','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3438,'notes','1544','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3439,'notes','1545','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3440,'notes','1546','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3441,'notes','1547','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3442,'notes','1548','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3443,'notes','1549','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3444,'notes','1550','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3445,'notes','1551','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3446,'notes','1552','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3447,'notes','1553','error','Deal not found: 4',NULL,'2025-11-14 00:11:11'),
(3448,'notes','1554','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3449,'notes','1555','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3450,'notes','1556','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3451,'notes','1557','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3452,'notes','1558','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3453,'notes','1559','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3454,'notes','1560','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3455,'notes','1561','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3456,'notes','1562','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3457,'notes','1563','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3458,'notes','1564','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3459,'notes','1565','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3460,'notes','1566','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3461,'notes','1567','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3462,'notes','1568','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3463,'notes','1569','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3464,'notes','1570','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3465,'notes','1571','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3466,'notes','1572','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3467,'notes','1573','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3468,'notes','1574','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3469,'notes','1575','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3470,'notes','1576','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3471,'notes','1577','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3472,'notes','1578','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3473,'notes','1579','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3474,'notes','1580','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3475,'notes','1581','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3476,'notes','1582','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3477,'notes','1583','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3478,'notes','1584','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3479,'notes','1585','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3480,'notes','1586','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3481,'notes','1587','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3482,'notes','1588','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3483,'notes','1589','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3484,'notes','1590','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3485,'notes','1591','error','Deal not found: 1570',NULL,'2025-11-14 00:11:11'),
(3486,'notes','1592','error','Deal not found: 14',NULL,'2025-11-14 00:11:11'),
(3487,'notes','1593','error','Deal not found: 1557',NULL,'2025-11-14 00:11:11'),
(3488,'notes','1594','error','Deal not found: 1557',NULL,'2025-11-14 00:11:11'),
(3489,'notes','1595','error','Deal not found: 1551',NULL,'2025-11-14 00:11:11'),
(3490,'notes','1597','error','Deal not found: 1551',NULL,'2025-11-14 00:11:11'),
(3491,'notes','1598','error','Deal not found: 1551',NULL,'2025-11-14 00:11:11'),
(3492,'notes','1599','error','Deal not found: 1555',NULL,'2025-11-14 00:11:11'),
(3493,'notes','1600','error','Deal not found: 1555',NULL,'2025-11-14 00:11:11'),
(3494,'notes','1601','error','Deal not found: 1555',NULL,'2025-11-14 00:11:11'),
(3495,'notes','1602','error','Deal not found: 1555',NULL,'2025-11-14 00:11:11'),
(3496,'notes','1603','error','Deal not found: 1555',NULL,'2025-11-14 00:11:11'),
(3497,'notes','1604','error','Deal not found: 1555',NULL,'2025-11-14 00:11:11'),
(3498,'notes','1605','error','Deal not found: 1553',NULL,'2025-11-14 00:11:11'),
(3499,'notes','1606','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3500,'notes','1607','error','Deal not found: 58',NULL,'2025-11-14 00:11:11'),
(3501,'notes','1608','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3502,'notes','1609','error','Deal not found: 56',NULL,'2025-11-14 00:11:11'),
(3503,'notes','1610','error','Deal not found: 1559',NULL,'2025-11-14 00:11:11'),
(3504,'notes','1611','error','Deal not found: 1563',NULL,'2025-11-14 00:11:11'),
(3505,'notes','1612','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3506,'notes','1613','error','Deal not found: 1563',NULL,'2025-11-14 00:11:11'),
(3507,'notes','1614','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3508,'notes','1618','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3509,'notes','1619','error','Deal not found: 1563',NULL,'2025-11-14 00:11:11'),
(3510,'notes','1620','error','Deal not found: 1559',NULL,'2025-11-14 00:11:11'),
(3511,'notes','1621','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3512,'notes','1622','error','Deal not found: 1965',NULL,'2025-11-14 00:11:11'),
(3513,'notes','1623','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3514,'notes','1624','error','Deal not found: 1572',NULL,'2025-11-14 00:11:11'),
(3515,'notes','1625','error','Deal not found: 1576',NULL,'2025-11-14 00:11:11'),
(3516,'notes','1626','error','Deal not found: 1577',NULL,'2025-11-14 00:11:11'),
(3517,'notes','1627','error','Deal not found: 1578',NULL,'2025-11-14 00:11:11'),
(3518,'notes','1628','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3519,'notes','1629','error','Deal not found: 1965',NULL,'2025-11-14 00:11:11'),
(3520,'notes','1630','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3521,'notes','1631','error','Deal not found: 4',NULL,'2025-11-14 00:11:11'),
(3522,'notes','1632','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3523,'notes','1633','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3524,'notes','1634','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3525,'notes','1635','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3526,'notes','1636','error','Deal not found: 1566',NULL,'2025-11-14 00:11:11'),
(3527,'notes','1637','error','Deal not found: 1582',NULL,'2025-11-14 00:11:11'),
(3528,'notes','1638','error','Deal not found: 1584',NULL,'2025-11-14 00:11:11'),
(3529,'notes','1639','error','Deal not found: 1582',NULL,'2025-11-14 00:11:11'),
(3530,'notes','1640','error','Deal not found: 1566',NULL,'2025-11-14 00:11:11'),
(3531,'notes','1641','error','Deal not found: 1582',NULL,'2025-11-14 00:11:11'),
(3532,'notes','1642','error','Deal not found: 1580',NULL,'2025-11-14 00:11:11'),
(3533,'notes','1643','error','Deal not found: 33',NULL,'2025-11-14 00:11:11'),
(3534,'notes','1644','error','Deal not found: 1582',NULL,'2025-11-14 00:11:11'),
(3535,'notes','1645','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3536,'notes','1646','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3537,'notes','1647','error','Deal not found: 1582',NULL,'2025-11-14 00:11:11'),
(3538,'notes','1648','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3539,'notes','1650','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3540,'notes','1651','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3541,'notes','1652','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3542,'notes','1653','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3543,'notes','1654','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3544,'notes','1655','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3545,'notes','1656','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3546,'notes','1657','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3547,'notes','1658','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3548,'notes','1659','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3549,'notes','1660','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3550,'notes','1661','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3551,'notes','1662','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3552,'notes','1663','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3553,'notes','1664','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3554,'notes','1665','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3555,'notes','1666','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3556,'notes','1667','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3557,'notes','1668','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3558,'notes','1669','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3559,'notes','1670','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3560,'notes','1671','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3561,'notes','1672','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3562,'notes','1673','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3563,'notes','1674','error','Deal not found: 1718',NULL,'2025-11-14 00:11:11'),
(3564,'notes','1675','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3565,'notes','1676','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3566,'notes','1677','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3567,'notes','1678','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3568,'notes','1679','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3569,'notes','1680','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3570,'notes','1681','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3571,'notes','1682','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3572,'notes','1683','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3573,'notes','1684','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3574,'notes','1685','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3575,'notes','1686','error','Deal not found: 1563',NULL,'2025-11-14 00:11:11'),
(3576,'notes','1687','error','Deal not found: 58',NULL,'2025-11-14 00:11:11'),
(3577,'notes','1688','error','Deal not found: 1563',NULL,'2025-11-14 00:11:11'),
(3578,'notes','1689','error','Deal not found: 1563',NULL,'2025-11-14 00:11:11'),
(3579,'notes','1690','error','Deal not found: 1582',NULL,'2025-11-14 00:11:11'),
(3580,'notes','1691','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3581,'notes','1692','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3582,'notes','1693','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3583,'notes','1694','error','Deal not found: 1595',NULL,'2025-11-14 00:11:11'),
(3584,'notes','1695','error','Deal not found: 1595',NULL,'2025-11-14 00:11:11'),
(3585,'notes','1696','error','Deal not found: 1595',NULL,'2025-11-14 00:11:11'),
(3586,'notes','1697','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3587,'notes','1698','error','Deal not found: 1596',NULL,'2025-11-14 00:11:11'),
(3588,'notes','1699','error','Deal not found: 1597',NULL,'2025-11-14 00:11:11'),
(3589,'notes','1700','error','Deal not found: 1594',NULL,'2025-11-14 00:11:11'),
(3590,'notes','1701','error','Deal not found: 1598',NULL,'2025-11-14 00:11:11'),
(3591,'notes','1702','error','Deal not found: 1600',NULL,'2025-11-14 00:11:11'),
(3592,'notes','1703','error','Deal not found: 1580',NULL,'2025-11-14 00:11:11'),
(3593,'notes','1704','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3594,'notes','1705','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3595,'notes','1706','error','Deal not found: 1597',NULL,'2025-11-14 00:11:11'),
(3596,'notes','1707','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3597,'notes','1708','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3598,'notes','1709','error','Deal not found: 1605',NULL,'2025-11-14 00:11:11'),
(3599,'notes','1710','error','Deal not found: 1577',NULL,'2025-11-14 00:11:11'),
(3600,'notes','1711','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3601,'notes','1712','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3602,'notes','1713','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3603,'notes','1714','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3604,'notes','1715','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3605,'notes','1716','error','Deal not found: 1604',NULL,'2025-11-14 00:11:11'),
(3606,'notes','1717','error','Deal not found: 1604',NULL,'2025-11-14 00:11:11'),
(3607,'notes','1718','error','Deal not found: 1597',NULL,'2025-11-14 00:11:11'),
(3608,'notes','1719','error','Deal not found: 1605',NULL,'2025-11-14 00:11:11'),
(3609,'notes','1720','error','Deal not found: 1597',NULL,'2025-11-14 00:11:11'),
(3610,'notes','1721','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3611,'notes','1722','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3612,'notes','1723','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3613,'notes','1724','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3614,'notes','1725','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3615,'notes','1726','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3616,'notes','1727','error','Deal not found: 1608',NULL,'2025-11-14 00:11:11'),
(3617,'notes','1728','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3618,'notes','1729','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3619,'notes','1730','error','Deal not found: 1608',NULL,'2025-11-14 00:11:11'),
(3620,'notes','1731','error','Deal not found: 1611',NULL,'2025-11-14 00:11:11'),
(3621,'notes','1732','error','Deal not found: 1611',NULL,'2025-11-14 00:11:11'),
(3622,'notes','1733','error','Deal not found: 1611',NULL,'2025-11-14 00:11:11'),
(3623,'notes','1734','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3624,'notes','1735','error','Deal not found: 1604',NULL,'2025-11-14 00:11:11'),
(3625,'notes','1736','error','Deal not found: 1584',NULL,'2025-11-14 00:11:11'),
(3626,'notes','1737','error','Deal not found: 1613',NULL,'2025-11-14 00:11:11'),
(3627,'notes','1738','error','Deal not found: 1582',NULL,'2025-11-14 00:11:11'),
(3628,'notes','1739','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3629,'notes','1740','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3630,'notes','1741','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3631,'notes','1742','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3632,'notes','1743','error','Deal not found: 1584',NULL,'2025-11-14 00:11:11'),
(3633,'notes','1744','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3634,'notes','1745','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3635,'notes','1746','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3636,'notes','1747','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3637,'notes','1748','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3638,'notes','1749','error','Deal not found: 1577',NULL,'2025-11-14 00:11:11'),
(3639,'notes','1750','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3640,'notes','1751','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3641,'notes','1752','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3642,'notes','1753','error','Deal not found: 1613',NULL,'2025-11-14 00:11:11'),
(3643,'notes','1754','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3644,'notes','1755','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3645,'notes','1756','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3646,'notes','1757','error','Deal not found: 1616',NULL,'2025-11-14 00:11:11'),
(3647,'notes','1758','error','Deal not found: 1616',NULL,'2025-11-14 00:11:11'),
(3648,'notes','1759','error','Deal not found: 1613',NULL,'2025-11-14 00:11:11'),
(3649,'notes','1760','error','Deal not found: 1613',NULL,'2025-11-14 00:11:11'),
(3650,'notes','1761','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3651,'notes','1762','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3652,'notes','1763','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3653,'notes','1764','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3654,'notes','1766','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3655,'notes','1767','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3656,'notes','1768','error','Deal not found: 1589',NULL,'2025-11-14 00:11:11'),
(3657,'notes','1769','error','Deal not found: 1622',NULL,'2025-11-14 00:11:11'),
(3658,'notes','1770','error','Deal not found: 1960',NULL,'2025-11-14 00:11:11'),
(3659,'notes','1772','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3660,'notes','1773','error','Deal not found: 1623',NULL,'2025-11-14 00:11:11'),
(3661,'notes','1774','error','Deal not found: 1625',NULL,'2025-11-14 00:11:11'),
(3662,'notes','1775','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3663,'notes','1776','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3664,'notes','1777','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3665,'notes','1778','error','Deal not found: 1626',NULL,'2025-11-14 00:11:11'),
(3666,'notes','1779','error','Deal not found: 1627',NULL,'2025-11-14 00:11:11'),
(3667,'notes','1780','error','Deal not found: 1627',NULL,'2025-11-14 00:11:11'),
(3668,'notes','1781','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3669,'notes','1782','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3670,'notes','1783','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3671,'notes','1784','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3672,'notes','1785','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3673,'notes','1786','error','Deal not found: 1628',NULL,'2025-11-14 00:11:11'),
(3674,'notes','1787','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3675,'notes','1788','error','Deal not found: 1594',NULL,'2025-11-14 00:11:11'),
(3676,'notes','1789','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3677,'notes','1790','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3678,'notes','1791','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3679,'notes','1792','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3680,'notes','1793','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3681,'notes','1794','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3682,'notes','1795','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3683,'notes','1796','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3684,'notes','1797','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3685,'notes','1798','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3686,'notes','1799','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3687,'notes','1800','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3688,'notes','1801','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3689,'notes','1802','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3690,'notes','1803','error','Deal not found: 1629',NULL,'2025-11-14 00:11:11'),
(3691,'notes','1804','error','Deal not found: 1760',NULL,'2025-11-14 00:11:11'),
(3692,'notes','1805','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3693,'notes','1806','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3694,'notes','1807','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3695,'notes','1808','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3696,'notes','1809','error','Deal not found: 1629',NULL,'2025-11-14 00:11:11'),
(3697,'notes','1810','error','Deal not found: 1632',NULL,'2025-11-14 00:11:11'),
(3698,'notes','1811','error','Deal not found: 1574',NULL,'2025-11-14 00:11:11'),
(3699,'notes','1812','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3700,'notes','1816','error','Deal not found: 1634',NULL,'2025-11-14 00:11:11'),
(3701,'notes','1817','error','Deal not found: 1634',NULL,'2025-11-14 00:11:11'),
(3702,'notes','1818','error','Deal not found: 1635',NULL,'2025-11-14 00:11:11'),
(3703,'notes','1819','error','Deal not found: 1634',NULL,'2025-11-14 00:11:11'),
(3704,'notes','1820','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3705,'notes','1821','error','Deal not found: 1641',NULL,'2025-11-14 00:11:11'),
(3706,'notes','1822','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3707,'notes','1823','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3708,'notes','1824','error','Deal not found: 1635',NULL,'2025-11-14 00:11:11'),
(3709,'notes','1825','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3710,'notes','1826','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3711,'notes','1827','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3712,'notes','1828','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3713,'notes','1829','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3714,'notes','1830','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3715,'notes','1831','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3716,'notes','1832','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3717,'notes','1833','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3718,'notes','1834','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3719,'notes','1835','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3720,'notes','1836','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3721,'notes','1837','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3722,'notes','1838','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3723,'notes','1839','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3724,'notes','1840','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3725,'notes','1841','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3726,'notes','1842','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3727,'notes','1843','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3728,'notes','1844','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3729,'notes','1845','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3730,'notes','1846','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3731,'notes','1847','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3732,'notes','1848','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3733,'notes','1849','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3734,'notes','1850','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3735,'notes','1851','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3736,'notes','1852','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3737,'notes','1853','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3738,'notes','1854','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3739,'notes','1855','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3740,'notes','1856','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3741,'notes','1857','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3742,'notes','1858','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3743,'notes','1859','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3744,'notes','1860','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3745,'notes','1861','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3746,'notes','1862','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3747,'notes','1863','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3748,'notes','1864','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3749,'notes','1865','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3750,'notes','1866','error','Deal not found: 1641',NULL,'2025-11-14 00:11:11'),
(3751,'notes','1867','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3752,'notes','1868','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3753,'notes','1869','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3754,'notes','1870','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3755,'notes','1871','error','Deal not found: 1873',NULL,'2025-11-14 00:11:11'),
(3756,'notes','1872','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3757,'notes','1873','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3758,'notes','1874','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3759,'notes','1875','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3760,'notes','1876','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3761,'notes','1877','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3762,'notes','1878','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3763,'notes','1879','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3764,'notes','1880','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3765,'notes','1881','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3766,'notes','1882','error','Deal not found: 1725',NULL,'2025-11-14 00:11:11'),
(3767,'notes','1883','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3768,'notes','1884','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3769,'notes','1885','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3770,'notes','1886','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3771,'notes','1887','error','Deal not found: 1635',NULL,'2025-11-14 00:11:11'),
(3772,'notes','1888','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3773,'notes','1889','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3774,'notes','1890','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3775,'notes','1891','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3776,'notes','1892','error','Deal not found: 1623',NULL,'2025-11-14 00:11:11'),
(3777,'notes','1893','error','Deal not found: 1640',NULL,'2025-11-14 00:11:11'),
(3778,'notes','1894','error','Deal not found: 1591',NULL,'2025-11-14 00:11:11'),
(3779,'notes','1895','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3780,'notes','1896','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3781,'notes','1897','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3782,'notes','1898','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3783,'notes','1899','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3784,'notes','1900','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3785,'notes','1901','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3786,'notes','1902','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3787,'notes','1903','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3788,'notes','1904','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3789,'notes','1905','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3790,'notes','1906','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3791,'notes','1907','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3792,'notes','1908','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3793,'notes','1909','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3794,'notes','1910','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3795,'notes','1911','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3796,'notes','1912','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3797,'notes','1913','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3798,'notes','1914','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3799,'notes','1915','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3800,'notes','1916','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3801,'notes','1917','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3802,'notes','1918','error','Deal not found: 1643',NULL,'2025-11-14 00:11:11'),
(3803,'notes','1919','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3804,'notes','1920','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3805,'notes','1921','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3806,'notes','1922','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3807,'notes','1923','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3808,'notes','1924','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3809,'notes','1925','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3810,'notes','1926','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3811,'notes','1927','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3812,'notes','1928','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3813,'notes','1929','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3814,'notes','1930','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3815,'notes','1931','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3816,'notes','1932','error','Deal not found: 1597',NULL,'2025-11-14 00:11:11'),
(3817,'notes','1933','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3818,'notes','1934','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3819,'notes','1935','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3820,'notes','1936','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3821,'notes','1937','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3822,'notes','1938','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3823,'notes','1939','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3824,'notes','1940','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3825,'notes','1941','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3826,'notes','1942','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3827,'notes','1943','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3828,'notes','1944','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3829,'notes','1945','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3830,'notes','1946','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3831,'notes','1947','error','Deal not found: 1648',NULL,'2025-11-14 00:11:11'),
(3832,'notes','1948','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3833,'notes','1949','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3834,'notes','1950','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3835,'notes','1951','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3836,'notes','1952','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3837,'notes','1953','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3838,'notes','1954','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3839,'notes','1955','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3840,'notes','1956','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3841,'notes','1957','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3842,'notes','1958','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3843,'notes','1959','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3844,'notes','1960','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3845,'notes','1961','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3846,'notes','1962','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3847,'notes','1963','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3848,'notes','1964','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3849,'notes','1965','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3850,'notes','1966','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3851,'notes','1967','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3852,'notes','1968','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3853,'notes','1969','error','Deal not found: 1577',NULL,'2025-11-14 00:11:11'),
(3854,'notes','1970','error','Deal not found: 1638',NULL,'2025-11-14 00:11:11'),
(3855,'notes','1971','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3856,'notes','1972','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3857,'notes','1973','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3858,'notes','1974','error','Deal not found: 1650',NULL,'2025-11-14 00:11:11'),
(3859,'notes','1975','error','Deal not found: 1651',NULL,'2025-11-14 00:11:11'),
(3860,'notes','1976','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3861,'notes','1977','error','Deal not found: 1653',NULL,'2025-11-14 00:11:11'),
(3862,'notes','1978','error','Deal not found: 1654',NULL,'2025-11-14 00:11:11'),
(3863,'notes','1979','error','Deal not found: 1655',NULL,'2025-11-14 00:11:11'),
(3864,'notes','1980','error','Deal not found: 1656',NULL,'2025-11-14 00:11:11'),
(3865,'notes','1981','error','Deal not found: 1657',NULL,'2025-11-14 00:11:11'),
(3866,'notes','1982','error','Deal not found: 1658',NULL,'2025-11-14 00:11:11'),
(3867,'notes','1983','error','Deal not found: 1658',NULL,'2025-11-14 00:11:11'),
(3868,'notes','1984','error','Deal not found: 1659',NULL,'2025-11-14 00:11:11'),
(3869,'notes','1985','error','Deal not found: 1660',NULL,'2025-11-14 00:11:11'),
(3870,'notes','1986','error','Deal not found: 1661',NULL,'2025-11-14 00:11:11'),
(3871,'notes','1987','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3872,'notes','1988','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3873,'notes','1989','error','Deal not found: 1664',NULL,'2025-11-14 00:11:11'),
(3874,'notes','1990','error','Deal not found: 1665',NULL,'2025-11-14 00:11:11'),
(3875,'notes','1991','error','Deal not found: 1666',NULL,'2025-11-14 00:11:11'),
(3876,'notes','1992','error','Deal not found: 1667',NULL,'2025-11-14 00:11:11'),
(3877,'notes','1993','error','Deal not found: 1668',NULL,'2025-11-14 00:11:11'),
(3878,'notes','1994','error','Deal not found: 1669',NULL,'2025-11-14 00:11:11'),
(3879,'notes','1995','error','Deal not found: 1670',NULL,'2025-11-14 00:11:11'),
(3880,'notes','1996','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3881,'notes','1997','error','Deal not found: 1672',NULL,'2025-11-14 00:11:11'),
(3882,'notes','1998','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3883,'notes','1999','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3884,'notes','2000','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3885,'notes','2001','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3886,'notes','2002','error','Deal not found: 1676',NULL,'2025-11-14 00:11:11'),
(3887,'notes','2003','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3888,'notes','2004','error','Deal not found: 1678',NULL,'2025-11-14 00:11:11'),
(3889,'notes','2005','error','Deal not found: 1679',NULL,'2025-11-14 00:11:11'),
(3890,'notes','2006','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3891,'notes','2007','error','Deal not found: 1681',NULL,'2025-11-14 00:11:11'),
(3892,'notes','2008','error','Deal not found: 1682',NULL,'2025-11-14 00:11:11'),
(3893,'notes','2009','error','Deal not found: 1683',NULL,'2025-11-14 00:11:11'),
(3894,'notes','2010','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3895,'notes','2011','error','Deal not found: 1685',NULL,'2025-11-14 00:11:11'),
(3896,'notes','2012','error','Deal not found: 1686',NULL,'2025-11-14 00:11:11'),
(3897,'notes','2013','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3898,'notes','2014','error','Deal not found: 1688',NULL,'2025-11-14 00:11:11'),
(3899,'notes','2015','error','Deal not found: 1689',NULL,'2025-11-14 00:11:11'),
(3900,'notes','2016','error','Deal not found: 1690',NULL,'2025-11-14 00:11:11'),
(3901,'notes','2017','error','Deal not found: 1691',NULL,'2025-11-14 00:11:11'),
(3902,'notes','2018','error','Deal not found: 1692',NULL,'2025-11-14 00:11:11'),
(3903,'notes','2019','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3904,'notes','2020','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3905,'notes','2021','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3906,'notes','2022','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3907,'notes','2023','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3908,'notes','2024','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3909,'notes','2025','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3910,'notes','2026','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3911,'notes','2028','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3912,'notes','2029','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3913,'notes','2030','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3914,'notes','2031','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3915,'notes','2032','error','Deal not found: 1734',NULL,'2025-11-14 00:11:11'),
(3916,'notes','2033','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3917,'notes','2034','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3918,'notes','2035','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3919,'notes','2036','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3920,'notes','2037','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3921,'notes','2038','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3922,'notes','2039','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3923,'notes','2040','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3924,'notes','2041','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3925,'notes','2042','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3926,'notes','2043','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3927,'notes','2044','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3928,'notes','2045','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3929,'notes','2046','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3930,'notes','2047','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3931,'notes','2048','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3932,'notes','2049','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3933,'notes','2050','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3934,'notes','2051','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3935,'notes','2052','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3936,'notes','2053','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3937,'notes','2054','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3938,'notes','2055','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3939,'notes','2056','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3940,'notes','2057','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3941,'notes','2058','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3942,'notes','2059','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3943,'notes','2060','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3944,'notes','2061','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3945,'notes','2062','error','Deal not found: 1695',NULL,'2025-11-14 00:11:11'),
(3946,'notes','2063','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3947,'notes','2064','error','Deal not found: 1635',NULL,'2025-11-14 00:11:11'),
(3948,'notes','2065','error','Deal not found: 1696',NULL,'2025-11-14 00:11:11'),
(3949,'notes','2066','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3950,'notes','2067','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3951,'notes','2068','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3952,'notes','2069','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3953,'notes','2070','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3954,'notes','2071','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3955,'notes','2072','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3956,'notes','2073','error','Deal not found: 1697',NULL,'2025-11-14 00:11:11'),
(3957,'notes','2074','error','Deal not found: 1698',NULL,'2025-11-14 00:11:11'),
(3958,'notes','2075','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3959,'notes','2076','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3960,'notes','2077','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3961,'notes','2078','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3962,'notes','2079','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3963,'notes','2080','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3964,'notes','2081','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3965,'notes','2082','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3966,'notes','2083','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3967,'notes','2084','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3968,'notes','2085','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3969,'notes','2086','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3970,'notes','2087','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3971,'notes','2088','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3972,'notes','2089','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3973,'notes','2090','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3974,'notes','2091','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3975,'notes','2092','error','Deal not found: 1665',NULL,'2025-11-14 00:11:11'),
(3976,'notes','2093','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3977,'notes','2094','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3978,'notes','2095','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3979,'notes','2096','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3980,'notes','2097','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3981,'notes','2098','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3982,'notes','2099','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3983,'notes','2100','error','Deal not found: 1686',NULL,'2025-11-14 00:11:11'),
(3984,'notes','2101','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3985,'notes','2102','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3986,'notes','2103','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3987,'notes','2104','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3988,'notes','2105','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3989,'notes','2106','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3990,'notes','2107','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3991,'notes','2108','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3992,'notes','2109','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3993,'notes','2110','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3994,'notes','2111','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3995,'notes','2112','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3996,'notes','2113','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3997,'notes','2114','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3998,'notes','2115','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(3999,'notes','2116','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4000,'notes','2117','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4001,'notes','2118','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4002,'notes','2119','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4003,'notes','2120','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4004,'notes','2121','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4005,'notes','2122','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4006,'notes','2123','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4007,'notes','2124','error','Deal not found: 1733',NULL,'2025-11-14 00:11:11'),
(4008,'notes','2125','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4009,'notes','2126','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4010,'notes','2127','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4011,'notes','2128','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4012,'notes','2129','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4013,'notes','2130','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4014,'notes','2131','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4015,'notes','2132','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4016,'notes','2133','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4017,'notes','2134','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4018,'notes','2135','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4019,'notes','2136','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4020,'notes','2137','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4021,'notes','2138','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4022,'notes','2139','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4023,'notes','2140','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4024,'notes','2141','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4025,'notes','2142','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4026,'notes','2143','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4027,'notes','2144','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4028,'notes','2145','error','Deal not found: 1755',NULL,'2025-11-14 00:11:11'),
(4029,'notes','2146','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4030,'notes','2147','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4031,'notes','2148','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4032,'notes','2149','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4033,'notes','2150','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4034,'notes','2151','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4035,'notes','2152','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4036,'notes','2153','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4037,'notes','2154','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4038,'notes','2155','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4039,'notes','2156','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4040,'notes','2157','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4041,'notes','2158','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4042,'notes','2159','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4043,'notes','2160','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4044,'notes','2161','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4045,'notes','2162','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4046,'notes','2163','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4047,'notes','2164','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4048,'notes','2165','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4049,'notes','2166','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4050,'notes','2167','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4051,'notes','2168','error','Deal not found: 1708',NULL,'2025-11-14 00:11:11'),
(4052,'notes','2169','error','Deal not found: 1708',NULL,'2025-11-14 00:11:11'),
(4053,'notes','2170','error','Deal not found: 1708',NULL,'2025-11-14 00:11:11'),
(4054,'notes','2171','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4055,'notes','2172','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4056,'notes','2173','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4057,'notes','2174','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4058,'notes','2175','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4059,'notes','2176','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4060,'notes','2177','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4061,'notes','2178','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4062,'notes','2179','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4063,'notes','2180','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4064,'notes','2181','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4065,'notes','2182','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4066,'notes','2183','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4067,'notes','2184','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4068,'notes','2185','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4069,'notes','2186','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4070,'notes','2187','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4071,'notes','2188','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4072,'notes','2189','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4073,'notes','2190','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4074,'notes','2191','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4075,'notes','2192','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4076,'notes','2193','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4077,'notes','2195','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4078,'notes','2196','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4079,'notes','2197','error','Deal not found: 1664',NULL,'2025-11-14 00:11:11'),
(4080,'notes','2198','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4081,'notes','2199','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4082,'notes','2200','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4083,'notes','2201','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4084,'notes','2202','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4085,'notes','2203','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4086,'notes','2204','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4087,'notes','2205','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4088,'notes','2206','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4089,'notes','2207','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4090,'notes','2208','error','Deal not found: 1665',NULL,'2025-11-14 00:11:11'),
(4091,'notes','2209','error','Deal not found: 1665',NULL,'2025-11-14 00:11:11'),
(4092,'notes','2210','error','Deal not found: 1597',NULL,'2025-11-14 00:11:11'),
(4093,'notes','2211','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4094,'notes','2212','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4095,'notes','2213','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4096,'notes','2214','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4097,'notes','2215','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4098,'notes','2216','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4099,'notes','2217','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4100,'notes','2218','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4101,'notes','2219','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4102,'notes','2220','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4103,'notes','2221','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4104,'notes','2222','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4105,'notes','2223','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4106,'notes','2224','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4107,'notes','2225','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4108,'notes','2226','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4109,'notes','2227','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4110,'notes','2228','error','Deal not found: 1713',NULL,'2025-11-14 00:11:11'),
(4111,'notes','2229','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4112,'notes','2230','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4113,'notes','2231','error','Deal not found: 1713',NULL,'2025-11-14 00:11:11'),
(4114,'notes','2232','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4115,'notes','2233','error','Deal not found: 1597',NULL,'2025-11-14 00:11:11'),
(4116,'notes','2234','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4117,'notes','2235','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4118,'notes','2236','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4119,'notes','2237','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4120,'notes','2238','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4121,'notes','2239','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4122,'notes','2240','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4123,'notes','2241','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4124,'notes','2242','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4125,'notes','2243','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4126,'notes','2244','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4127,'notes','2245','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4128,'notes','2246','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4129,'notes','2247','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4130,'notes','2248','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4131,'notes','2249','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4132,'notes','2250','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4133,'notes','2251','error','Deal not found: 1714',NULL,'2025-11-14 00:11:11'),
(4134,'notes','2252','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4135,'notes','2253','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4136,'notes','2254','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4137,'notes','2255','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4138,'notes','2256','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4139,'notes','2257','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4140,'notes','2258','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4141,'notes','2259','error','Deal not found: 1617',NULL,'2025-11-14 00:11:11'),
(4142,'notes','2260','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4143,'notes','2261','error','Deal not found: 1608',NULL,'2025-11-14 00:11:11'),
(4144,'notes','2262','error','Deal not found: 1693',NULL,'2025-11-14 00:11:11'),
(4145,'notes','2263','error','Deal not found: 1632',NULL,'2025-11-14 00:11:11'),
(4146,'notes','2264','error','Deal not found: 1582',NULL,'2025-11-14 00:11:11'),
(4147,'notes','2265','error','Deal not found: 6',NULL,'2025-11-14 00:11:11'),
(4148,'notes','2266','error','Deal not found: 1577',NULL,'2025-11-14 00:11:11'),
(4149,'notes','2267','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4150,'notes','2268','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4151,'notes','2269','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4152,'notes','2270','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4153,'notes','2271','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4154,'notes','2272','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4155,'notes','2273','error','Deal not found: 1620',NULL,'2025-11-14 00:11:11'),
(4156,'notes','2274','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4157,'notes','2275','error','Deal not found: 1557',NULL,'2025-11-14 00:11:11'),
(4158,'notes','2276','error','Deal not found: 1730',NULL,'2025-11-14 00:11:11'),
(4159,'notes','2277','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4160,'notes','2278','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4161,'notes','2279','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4162,'notes','2280','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4163,'notes','2281','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4164,'notes','2282','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4165,'notes','2283','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4166,'notes','2284','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4167,'notes','2285','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4168,'notes','2286','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4169,'notes','2287','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4170,'notes','2288','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4171,'notes','2290','error','Deal not found: 1744',NULL,'2025-11-14 00:11:11'),
(4172,'notes','2291','error','Deal not found: 1745',NULL,'2025-11-14 00:11:11'),
(4173,'notes','2292','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4174,'notes','2293','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4175,'notes','2294','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4176,'notes','2295','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4177,'notes','2296','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4178,'notes','2297','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4179,'notes','2298','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4180,'notes','2299','error','Deal not found: 1733',NULL,'2025-11-14 00:11:11'),
(4181,'notes','2300','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4182,'notes','2301','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4183,'notes','2302','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4184,'notes','2303','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4185,'notes','2304','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4186,'notes','2305','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4187,'notes','2306','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4188,'notes','2307','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4189,'notes','2308','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4190,'notes','2309','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4191,'notes','2310','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4192,'notes','2311','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4193,'notes','2312','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4194,'notes','2313','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4195,'notes','2314','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4196,'notes','2315','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4197,'notes','2316','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4198,'notes','2317','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4199,'notes','2318','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4200,'notes','2319','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4201,'notes','2320','error','Deal not found: 1714',NULL,'2025-11-14 00:11:11'),
(4202,'notes','2321','error','Deal not found: 1763',NULL,'2025-11-14 00:11:11'),
(4203,'notes','2322','error','Deal not found: 1714',NULL,'2025-11-14 00:11:11'),
(4204,'notes','2323','error','Deal not found: 1622',NULL,'2025-11-14 00:11:11'),
(4205,'notes','2324','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4206,'notes','2325','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4207,'notes','2326','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4208,'notes','2327','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4209,'notes','2328','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4210,'notes','2329','error','Deal not found: 1765',NULL,'2025-11-14 00:11:11'),
(4211,'notes','2330','error','Deal not found: 1766',NULL,'2025-11-14 00:11:11'),
(4212,'notes','2331','error','Deal not found: 1766',NULL,'2025-11-14 00:11:11'),
(4213,'notes','2332','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4214,'notes','2333','error','Deal not found: 1767',NULL,'2025-11-14 00:11:11'),
(4215,'notes','2334','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4216,'notes','2335','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4217,'notes','2337','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4218,'notes','2338','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4219,'notes','2339','error','Deal not found: 1771',NULL,'2025-11-14 00:11:11'),
(4220,'notes','2340','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4221,'notes','2341','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4222,'notes','2342','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4223,'notes','2343','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4224,'notes','2344','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4225,'notes','2345','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4226,'notes','2346','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4227,'notes','2347','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4228,'notes','2348','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4229,'notes','2349','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4230,'notes','2350','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4231,'notes','2351','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4232,'notes','2352','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4233,'notes','2353','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4234,'notes','2354','error','Deal not found: 1765',NULL,'2025-11-14 00:11:11'),
(4235,'notes','2355','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4236,'notes','2356','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4237,'notes','2357','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4238,'notes','2358','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4239,'notes','2359','error','Deal not found: 1755',NULL,'2025-11-14 00:11:11'),
(4240,'notes','2360','error','Deal not found: 1755',NULL,'2025-11-14 00:11:11'),
(4241,'notes','2361','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4242,'notes','2362','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4243,'notes','2363','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4244,'notes','2364','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4245,'notes','2365','error','Deal not found: 1751',NULL,'2025-11-14 00:11:11'),
(4246,'notes','2366','error','Deal not found: 1751',NULL,'2025-11-14 00:11:11'),
(4247,'notes','2367','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4248,'notes','2368','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4249,'notes','2369','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4250,'notes','2370','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4251,'notes','2371','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4252,'notes','2372','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4253,'notes','2373','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4254,'notes','2374','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4255,'notes','2375','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4256,'notes','2376','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4257,'notes','2377','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4258,'notes','2378','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4259,'notes','2379','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4260,'notes','2380','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4261,'notes','2381','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4262,'notes','2382','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4263,'notes','2383','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4264,'notes','2385','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4265,'notes','2386','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4266,'notes','2387','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4267,'notes','2388','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4268,'notes','2389','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4269,'notes','2390','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4270,'notes','2391','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4271,'notes','2392','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4272,'notes','2393','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4273,'notes','2394','error','Deal not found: 1775',NULL,'2025-11-14 00:11:11'),
(4274,'notes','2395','error','Deal not found: 1773',NULL,'2025-11-14 00:11:11'),
(4275,'notes','2396','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4276,'notes','2397','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4277,'notes','2398','error','Deal not found: 1708',NULL,'2025-11-14 00:11:11'),
(4278,'notes','2399','error','Deal not found: 1706',NULL,'2025-11-14 00:11:11'),
(4279,'notes','2400','error','Deal not found: 1665',NULL,'2025-11-14 00:11:11'),
(4280,'notes','2401','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4281,'notes','2402','error','Deal not found: 1781',NULL,'2025-11-14 00:11:11'),
(4282,'notes','2403','error','Deal not found: 1765',NULL,'2025-11-14 00:11:11'),
(4283,'notes','2404','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4284,'notes','2405','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4285,'notes','2406','error','Deal not found: 1784',NULL,'2025-11-14 00:11:11'),
(4286,'notes','2407','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4287,'notes','2408','error','Deal not found: 1622',NULL,'2025-11-14 00:11:11'),
(4288,'notes','2409','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4289,'notes','2410','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4290,'notes','2411','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4291,'notes','2412','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4292,'notes','2413','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4293,'notes','2414','error','Deal not found: 1780',NULL,'2025-11-14 00:11:11'),
(4294,'notes','2415','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4295,'notes','2416','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4296,'notes','2417','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4297,'notes','2418','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4298,'notes','2419','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4299,'notes','2420','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4300,'notes','2423','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4301,'notes','2424','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4302,'notes','2425','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4303,'notes','2426','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4304,'notes','2427','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4305,'notes','2428','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4306,'notes','2429','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4307,'notes','2430','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4308,'notes','2431','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4309,'notes','2432','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4310,'notes','2433','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4311,'notes','2434','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4312,'notes','2435','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4313,'notes','2436','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4314,'notes','2437','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4315,'notes','2438','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4316,'notes','2440','error','Deal not found: 1779',NULL,'2025-11-14 00:11:11'),
(4317,'notes','2441','error','Deal not found: 1776',NULL,'2025-11-14 00:11:11'),
(4318,'notes','2442','error','Deal not found: 1780',NULL,'2025-11-14 00:11:11'),
(4319,'notes','2443','error','Deal not found: 1792',NULL,'2025-11-14 00:11:11'),
(4320,'notes','2444','error','Deal not found: 1766',NULL,'2025-11-14 00:11:11'),
(4321,'notes','2445','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4322,'notes','2446','error','Deal not found: 1753',NULL,'2025-11-14 00:11:11'),
(4323,'notes','2447','error','Deal not found: 1733',NULL,'2025-11-14 00:11:11'),
(4324,'notes','2448','error','Deal not found: 1703',NULL,'2025-11-14 00:11:11'),
(4325,'notes','2449','error','Deal not found: 1647',NULL,'2025-11-14 00:11:11'),
(4326,'notes','2450','error','Deal not found: 1750',NULL,'2025-11-14 00:11:11'),
(4327,'notes','2451','error','Deal not found: 1778',NULL,'2025-11-14 00:11:11'),
(4328,'notes','2452','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4329,'notes','2453','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4330,'notes','2454','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4331,'notes','2455','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4332,'notes','2456','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4333,'notes','2457','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4334,'notes','2458','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4335,'notes','2459','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4336,'notes','2460','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4337,'notes','2463','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4338,'notes','2464','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4339,'notes','2465','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4340,'notes','2466','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4341,'notes','2467','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4342,'notes','2468','error','Deal not found: 1784',NULL,'2025-11-14 00:11:11'),
(4343,'notes','2469','error','Deal not found: 1798',NULL,'2025-11-14 00:11:11'),
(4344,'notes','2470','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4345,'notes','2471','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4346,'notes','2473','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4347,'notes','2474','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4348,'notes','2475','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4349,'notes','2476','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4350,'notes','2477','error','Deal not found: 1775',NULL,'2025-11-14 00:11:11'),
(4351,'notes','2478','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4352,'notes','2479','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4353,'notes','2480','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4354,'notes','2481','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4355,'notes','2482','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4356,'notes','2483','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4357,'notes','2484','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4358,'notes','2485','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4359,'notes','2486','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4360,'notes','2487','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4361,'notes','2488','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4362,'notes','2489','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4363,'notes','2490','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4364,'notes','2491','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4365,'notes','2492','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4366,'notes','2493','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4367,'notes','2494','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4368,'notes','2495','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4369,'notes','2496','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4370,'notes','2497','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4371,'notes','2498','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4372,'notes','2499','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4373,'notes','2500','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4374,'notes','2501','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4375,'notes','2502','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4376,'notes','2503','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4377,'notes','2504','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4378,'notes','2505','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4379,'notes','2506','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4380,'notes','2507','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4381,'notes','2508','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4382,'notes','2509','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4383,'notes','2510','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4384,'notes','2511','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4385,'notes','2512','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4386,'notes','2513','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4387,'notes','2514','error','Deal not found: 1776',NULL,'2025-11-14 00:11:11'),
(4388,'notes','2515','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4389,'notes','2516','error','Deal not found: 1642',NULL,'2025-11-14 00:11:11'),
(4390,'notes','2517','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4391,'notes','2518','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4392,'notes','2519','error','Deal not found: 1630',NULL,'2025-11-14 00:11:11'),
(4393,'notes','2520','error','Deal not found: 1713',NULL,'2025-11-14 00:11:11'),
(4394,'notes','2521','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4395,'notes','2522','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4396,'notes','2523','error','Deal not found: 1614',NULL,'2025-11-14 00:11:11'),
(4397,'notes','2524','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4398,'notes','2525','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4399,'notes','2526','error','Deal not found: 1595',NULL,'2025-11-14 00:11:11'),
(4400,'notes','2527','error','Deal not found: 1572',NULL,'2025-11-14 00:11:11'),
(4401,'notes','2528','error','Deal not found: 1584',NULL,'2025-11-14 00:11:11'),
(4402,'notes','2529','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4403,'notes','2530','error','Deal not found: 1664',NULL,'2025-11-14 00:11:11'),
(4404,'notes','2531','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4405,'notes','2532','error','Deal not found: 24',NULL,'2025-11-14 00:11:11'),
(4406,'notes','2533','error','Deal not found: 1596',NULL,'2025-11-14 00:11:11'),
(4407,'notes','2534','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4408,'notes','2535','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4409,'notes','2536','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4410,'notes','2537','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4411,'notes','2538','error','Deal not found: 1818',NULL,'2025-11-14 00:11:11'),
(4412,'notes','2539','error','Deal not found: 1818',NULL,'2025-11-14 00:11:11'),
(4413,'notes','2540','error','Deal not found: 1818',NULL,'2025-11-14 00:11:11'),
(4414,'notes','2541','error','Deal not found: 1818',NULL,'2025-11-14 00:11:11'),
(4415,'notes','2542','error','Deal not found: 1818',NULL,'2025-11-14 00:11:11'),
(4416,'notes','2543','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4417,'notes','2544','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4418,'notes','2545','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4419,'notes','2546','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4420,'notes','2547','error','Deal not found: 1810',NULL,'2025-11-14 00:11:11'),
(4421,'notes','2548','error','Deal not found: 1811',NULL,'2025-11-14 00:11:11'),
(4422,'notes','2549','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4423,'notes','2550','error','Deal not found: 1812',NULL,'2025-11-14 00:11:11'),
(4424,'notes','2551','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4425,'notes','2552','error','Deal not found: 1711',NULL,'2025-11-14 00:11:11'),
(4426,'notes','2553','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4427,'notes','2554','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4428,'notes','2555','error','Deal not found: 1638',NULL,'2025-11-14 00:11:11'),
(4429,'notes','2556','error','Deal not found: 1622',NULL,'2025-11-14 00:11:11'),
(4430,'notes','2557','error','Deal not found: 1600',NULL,'2025-11-14 00:11:11'),
(4431,'notes','2558','error','Deal not found: 1597',NULL,'2025-11-14 00:11:11'),
(4432,'notes','2559','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4433,'notes','2560','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4434,'notes','2561','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4435,'notes','2562','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4436,'notes','2563','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4437,'notes','2564','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4438,'notes','2565','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4439,'notes','2566','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4440,'notes','2567','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4441,'notes','2568','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4442,'notes','2569','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4443,'notes','2570','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4444,'notes','2571','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4445,'notes','2572','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4446,'notes','2573','error','Deal not found: 1820',NULL,'2025-11-14 00:11:11'),
(4447,'notes','2574','error','Deal not found: 1648',NULL,'2025-11-14 00:11:11'),
(4448,'notes','2576','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4449,'notes','2577','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4450,'notes','2578','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4451,'notes','2579','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4452,'notes','2580','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4453,'notes','2581','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4454,'notes','2582','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4455,'notes','2583','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4456,'notes','2584','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4457,'notes','2585','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4458,'notes','2586','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4459,'notes','2587','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4460,'notes','2588','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4461,'notes','2589','error','Deal not found: 1566',NULL,'2025-11-14 00:11:11'),
(4462,'notes','2590','error','Deal not found: 4',NULL,'2025-11-14 00:11:11'),
(4463,'notes','2591','error','Deal not found: 1707',NULL,'2025-11-14 00:11:11'),
(4464,'notes','2592','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4465,'notes','2593','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4466,'notes','2594','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4467,'notes','2595','error','Deal not found: 1665',NULL,'2025-11-14 00:11:11'),
(4468,'notes','2598','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4469,'notes','2599','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4470,'notes','2600','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4471,'notes','2601','error','Deal not found: 1767',NULL,'2025-11-14 00:11:11'),
(4472,'notes','2602','error','Deal not found: 1766',NULL,'2025-11-14 00:11:11'),
(4473,'notes','2603','error','Deal not found: 1753',NULL,'2025-11-14 00:11:11'),
(4474,'notes','2604','error','Deal not found: 1750',NULL,'2025-11-14 00:11:11'),
(4475,'notes','2605','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4476,'notes','2606','error','Deal not found: 1648',NULL,'2025-11-14 00:11:11'),
(4477,'notes','2607','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4478,'notes','2608','error','Deal not found: 1827',NULL,'2025-11-14 00:11:11'),
(4479,'notes','2609','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4480,'notes','2610','error','Deal not found: 1792',NULL,'2025-11-14 00:11:11'),
(4481,'notes','2611','error','Deal not found: 1703',NULL,'2025-11-14 00:11:11'),
(4482,'notes','2612','error','Deal not found: 1775',NULL,'2025-11-14 00:11:11'),
(4483,'notes','2613','error','Deal not found: 1802',NULL,'2025-11-14 00:11:11'),
(4484,'notes','2614','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4485,'notes','2615','error','Deal not found: 1778',NULL,'2025-11-14 00:11:11'),
(4486,'notes','2616','error','Deal not found: 1706',NULL,'2025-11-14 00:11:11'),
(4487,'notes','2617','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4488,'notes','2618','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4489,'notes','2619','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4490,'notes','2620','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4491,'notes','2621','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4492,'notes','2622','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4493,'notes','2623','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4494,'notes','2624','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4495,'notes','2625','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4496,'notes','2626','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4497,'notes','2627','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4498,'notes','2628','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4499,'notes','2629','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4500,'notes','2630','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4501,'notes','2631','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4502,'notes','2632','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4503,'notes','2633','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4504,'notes','2634','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4505,'notes','2635','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4506,'notes','2636','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4507,'notes','2637','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4508,'notes','2638','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4509,'notes','2639','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4510,'notes','2640','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4511,'notes','2641','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4512,'notes','2642','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4513,'notes','2643','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4514,'notes','2644','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4515,'notes','2645','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4516,'notes','2646','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4517,'notes','2647','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4518,'notes','2648','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4519,'notes','2649','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4520,'notes','2650','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4521,'notes','2651','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4522,'notes','2652','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4523,'notes','2653','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4524,'notes','2654','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4525,'notes','2655','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4526,'notes','2656','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4527,'notes','2657','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4528,'notes','2658','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4529,'notes','2659','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4530,'notes','2660','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4531,'notes','2661','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4532,'notes','2662','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4533,'notes','2663','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4534,'notes','2664','error','Deal not found: 1869',NULL,'2025-11-14 00:11:11'),
(4535,'notes','2665','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4536,'notes','2666','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4537,'notes','2667','error','Deal not found: 1872',NULL,'2025-11-14 00:11:11'),
(4538,'notes','2668','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4539,'notes','2669','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4540,'notes','2670','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4541,'notes','2671','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4542,'notes','2672','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4543,'notes','2673','error','Deal not found: 1874',NULL,'2025-11-14 00:11:11'),
(4544,'notes','2674','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4545,'notes','2675','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4546,'notes','2676','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4547,'notes','2677','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4548,'notes','2678','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4549,'notes','2679','error','Deal not found: 1880',NULL,'2025-11-14 00:11:11'),
(4550,'notes','2680','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4551,'notes','2681','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4552,'notes','2682','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4553,'notes','2683','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4554,'notes','2684','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4555,'notes','2685','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4556,'notes','2686','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4557,'notes','2687','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4558,'notes','2688','error','Deal not found: 1883',NULL,'2025-11-14 00:11:11'),
(4559,'notes','2689','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4560,'notes','2690','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4561,'notes','2691','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4562,'notes','2692','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4563,'notes','2693','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4564,'notes','2694','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4565,'notes','2695','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4566,'notes','2696','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4567,'notes','2697','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4568,'notes','2698','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4569,'notes','2699','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4570,'notes','2700','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4571,'notes','2701','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4572,'notes','2702','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4573,'notes','2703','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4574,'notes','2704','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4575,'notes','2705','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4576,'notes','2706','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4577,'notes','2707','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4578,'notes','2708','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4579,'notes','2709','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4580,'notes','2710','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4581,'notes','2711','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4582,'notes','2712','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4583,'notes','2713','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4584,'notes','2714','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4585,'notes','2715','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4586,'notes','2716','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4587,'notes','2717','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4588,'notes','2718','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4589,'notes','2719','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4590,'notes','2720','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4591,'notes','2721','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4592,'notes','2722','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4593,'notes','2723','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4594,'notes','2724','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4595,'notes','2725','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4596,'notes','2726','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4597,'notes','2727','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4598,'notes','2728','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4599,'notes','2729','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4600,'notes','2730','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4601,'notes','2731','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4602,'notes','2732','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4603,'notes','2733','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4604,'notes','2734','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4605,'notes','2737','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4606,'notes','2738','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4607,'notes','2739','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4608,'notes','2740','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4609,'notes','2741','error','Deal not found: 1689',NULL,'2025-11-14 00:11:11'),
(4610,'notes','2742','error','Deal not found: 1730',NULL,'2025-11-14 00:11:11'),
(4611,'notes','2743','error','Deal not found: 1780',NULL,'2025-11-14 00:11:11'),
(4612,'notes','2744','error','Deal not found: 1708',NULL,'2025-11-14 00:11:11'),
(4613,'notes','2745','error','Deal not found: 1699',NULL,'2025-11-14 00:11:11'),
(4614,'notes','2746','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4615,'notes','2747','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4616,'notes','2748','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4617,'notes','2749','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4618,'notes','2751','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4619,'notes','2752','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4620,'notes','2753','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4621,'notes','2754','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4622,'notes','2755','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4623,'notes','2756','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4624,'notes','2757','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4625,'notes','2758','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4626,'notes','2759','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4627,'notes','2760','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4628,'notes','2761','error','Deal not found: 1689',NULL,'2025-11-14 00:11:11'),
(4629,'notes','2762','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4630,'notes','2763','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4631,'notes','2764','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4632,'notes','2765','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4633,'notes','2766','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4634,'notes','2767','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4635,'notes','2768','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4636,'notes','2769','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4637,'notes','2770','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4638,'notes','2771','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4639,'notes','2772','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4640,'notes','2773','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4641,'notes','2774','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4642,'notes','2775','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4643,'notes','2776','error','Deal not found: 1697',NULL,'2025-11-14 00:11:11'),
(4644,'notes','2777','error','Deal not found: 1938',NULL,'2025-11-14 00:11:11'),
(4645,'notes','2778','error','Deal not found: 1943',NULL,'2025-11-14 00:11:11'),
(4646,'notes','2779','error','Deal not found: 1803',NULL,'2025-11-14 00:11:11'),
(4647,'notes','2780','error','Deal not found: 1944',NULL,'2025-11-14 00:11:11'),
(4648,'notes','2781','error','Deal not found: 1842',NULL,'2025-11-14 00:11:11'),
(4649,'notes','2782','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4650,'notes','2783','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4651,'notes','2784','error','Deal not found: 1945',NULL,'2025-11-14 00:11:11'),
(4652,'notes','2785','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4653,'notes','2786','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4654,'notes','2787','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4655,'notes','2788','error','Deal not found: 1948',NULL,'2025-11-14 00:11:11'),
(4656,'notes','2789','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4657,'notes','2790','error','Deal not found: 1686',NULL,'2025-11-14 00:11:11'),
(4658,'notes','2791','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4659,'notes','2792','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4660,'notes','2793','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4661,'notes','2794','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4662,'notes','2795','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4663,'notes','2796','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4664,'notes','2797','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4665,'notes','2798','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4666,'notes','2799','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4667,'notes','2800','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4668,'notes','2802','error','Deal not found: 1947',NULL,'2025-11-14 00:11:11'),
(4669,'notes','2803','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4670,'notes','2804','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4671,'notes','2805','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4672,'notes','2808','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4673,'notes','2809','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4674,'notes','2810','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4675,'notes','2811','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4676,'notes','2812','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4677,'notes','2813','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4678,'notes','2814','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4679,'notes','2815','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4680,'notes','2816','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4681,'notes','2817','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4682,'notes','2818','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4683,'notes','2819','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4684,'notes','2820','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4685,'notes','2821','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4686,'notes','2822','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4687,'notes','2823','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4688,'notes','2824','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4689,'notes','2825','error','Deal not found: 1951',NULL,'2025-11-14 00:11:11'),
(4690,'notes','2827','error','Deal not found: 1952',NULL,'2025-11-14 00:11:11'),
(4691,'notes','2828','error','Deal not found: 1957',NULL,'2025-11-14 00:11:11'),
(4692,'notes','2829','error','Deal not found: 1959',NULL,'2025-11-14 00:11:11'),
(4693,'notes','2830','error','Deal not found: 1958',NULL,'2025-11-14 00:11:11'),
(4694,'notes','2831','error','Deal not found: 1950',NULL,'2025-11-14 00:11:11'),
(4695,'notes','2832','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4696,'notes','2833','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4697,'notes','2835','error','Deal not found: 1958',NULL,'2025-11-14 00:11:11'),
(4698,'notes','2836','error','Deal not found: 1946',NULL,'2025-11-14 00:11:11'),
(4699,'notes','2837','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4700,'notes','2838','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4701,'notes','2839','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4702,'notes','2841','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4703,'notes','2842','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4704,'notes','2843','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4705,'notes','2844','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4706,'notes','2845','error','Deal not found: 1665',NULL,'2025-11-14 00:11:11'),
(4707,'notes','2846','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4708,'notes','2847','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4709,'notes','2848','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4710,'notes','2849','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4711,'notes','2850','error','Deal not found: 1998',NULL,'2025-11-14 00:11:11'),
(4712,'notes','2851','error','Deal not found: 1999',NULL,'2025-11-14 00:11:11'),
(4713,'notes','2852','error','Deal not found: 2001',NULL,'2025-11-14 00:11:11'),
(4714,'notes','2853','error','Deal not found: 2003',NULL,'2025-11-14 00:11:11'),
(4715,'notes','2854','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4716,'notes','2855','error','Deal not found: 2002',NULL,'2025-11-14 00:11:11'),
(4717,'notes','2856','error','Deal not found: 1996',NULL,'2025-11-14 00:11:11'),
(4718,'notes','2857','error','Deal not found: 1995',NULL,'2025-11-14 00:11:11'),
(4719,'notes','2858','error','Deal not found: 1994',NULL,'2025-11-14 00:11:11'),
(4720,'notes','2859','error','Deal not found: 1993',NULL,'2025-11-14 00:11:11'),
(4721,'notes','2860','error','Deal not found: 1992',NULL,'2025-11-14 00:11:11'),
(4722,'notes','2861','error','Deal not found: 1991',NULL,'2025-11-14 00:11:11'),
(4723,'notes','2862','error','Deal not found: 1990',NULL,'2025-11-14 00:11:11'),
(4724,'notes','2863','error','Deal not found: 1989',NULL,'2025-11-14 00:11:11'),
(4725,'notes','2864','error','Deal not found: 1987',NULL,'2025-11-14 00:11:11'),
(4726,'notes','2865','error','Deal not found: 1986',NULL,'2025-11-14 00:11:11'),
(4727,'notes','2866','error','Deal not found: 2004',NULL,'2025-11-14 00:11:11'),
(4728,'notes','2867','error','Deal not found: 2006',NULL,'2025-11-14 00:11:11'),
(4729,'notes','2868','error','Deal not found: 2007',NULL,'2025-11-14 00:11:11'),
(4730,'notes','2869','error','Deal not found: 2008',NULL,'2025-11-14 00:11:11'),
(4731,'notes','2870','error','Deal not found: 2009',NULL,'2025-11-14 00:11:11'),
(4732,'notes','2871','error','Deal not found: 2010',NULL,'2025-11-14 00:11:11'),
(4733,'notes','2872','error','Deal not found: 2011',NULL,'2025-11-14 00:11:11'),
(4734,'notes','2873','error','Deal not found: 2012',NULL,'2025-11-14 00:11:11'),
(4735,'notes','2874','error','Deal not found: 2013',NULL,'2025-11-14 00:11:11'),
(4736,'notes','2875','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4737,'notes','2876','error','Deal not found: 2015',NULL,'2025-11-14 00:11:11'),
(4738,'notes','2877','error','Deal not found: 2016',NULL,'2025-11-14 00:11:11'),
(4739,'notes','2878','error','Deal not found: 2017',NULL,'2025-11-14 00:11:11'),
(4740,'notes','2879','error','Deal not found: 2018',NULL,'2025-11-14 00:11:11'),
(4741,'notes','2880','error','Deal not found: 2019',NULL,'2025-11-14 00:11:11'),
(4742,'notes','2881','error','Deal not found: 2020',NULL,'2025-11-14 00:11:11'),
(4743,'notes','2882','error','Deal not found: 2021',NULL,'2025-11-14 00:11:11'),
(4744,'notes','2883','error','Deal not found: 2022',NULL,'2025-11-14 00:11:11'),
(4745,'notes','2884','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4746,'notes','2885','error','Deal not found: 2024',NULL,'2025-11-14 00:11:11'),
(4747,'notes','2886','error','Deal not found: 2025',NULL,'2025-11-14 00:11:11'),
(4748,'notes','2887','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4749,'notes','2888','error','Deal not found: 2027',NULL,'2025-11-14 00:11:11'),
(4750,'notes','2889','error','Deal not found: 1997',NULL,'2025-11-14 00:11:11'),
(4751,'notes','2891','error','Deal not found: 2028',NULL,'2025-11-14 00:11:11'),
(4752,'notes','2892','error','Deal not found: 2029',NULL,'2025-11-14 00:11:11'),
(4753,'notes','2893','error','Deal not found: 2030',NULL,'2025-11-14 00:11:11'),
(4754,'notes','2894','error','Deal not found: 2031',NULL,'2025-11-14 00:11:11'),
(4755,'notes','2895','error','Deal not found: 2032',NULL,'2025-11-14 00:11:11'),
(4756,'notes','2896','error','Deal not found: 2033',NULL,'2025-11-14 00:11:11'),
(4757,'notes','2897','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4758,'notes','2898','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4759,'notes','2899','error','Deal not found: 2036',NULL,'2025-11-14 00:11:11'),
(4760,'notes','2900','error','Deal not found: 2037',NULL,'2025-11-14 00:11:11'),
(4761,'notes','2901','error','Deal not found: 2038',NULL,'2025-11-14 00:11:11'),
(4762,'notes','2902','error','Deal not found: 2039',NULL,'2025-11-14 00:11:11'),
(4763,'notes','2903','error','Deal not found: 2040',NULL,'2025-11-14 00:11:11'),
(4764,'notes','2904','error','Deal not found: 2041',NULL,'2025-11-14 00:11:11'),
(4765,'notes','2905','error','Deal not found: 2042',NULL,'2025-11-14 00:11:11'),
(4766,'notes','2907','error','Deal not found: 2044',NULL,'2025-11-14 00:11:11'),
(4767,'notes','2908','error','Deal not found: 2045',NULL,'2025-11-14 00:11:11'),
(4768,'notes','2909','error','Deal not found: 2046',NULL,'2025-11-14 00:11:11'),
(4769,'notes','2910','error','Deal not found: 2047',NULL,'2025-11-14 00:11:11'),
(4770,'notes','2911','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4771,'notes','2912','error','Deal not found: 2049',NULL,'2025-11-14 00:11:11'),
(4772,'notes','2913','error','Deal not found: 1988',NULL,'2025-11-14 00:11:11'),
(4773,'notes','2915','error','Deal not found: 2050',NULL,'2025-11-14 00:11:11'),
(4774,'notes','2916','error','Deal not found: 2051',NULL,'2025-11-14 00:11:11'),
(4775,'notes','2917','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4776,'notes','2918','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4777,'notes','2919','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4778,'notes','2920','error','Deal not found: 2052',NULL,'2025-11-14 00:11:11'),
(4779,'notes','2921','error','Deal not found: 2053',NULL,'2025-11-14 00:11:11'),
(4780,'notes','2922','error','Deal not found: 2054',NULL,'2025-11-14 00:11:11'),
(4781,'notes','2923','error','Deal not found: 2055',NULL,'2025-11-14 00:11:11'),
(4782,'notes','2924','error','Deal not found: 2056',NULL,'2025-11-14 00:11:11'),
(4783,'notes','2925','error','Deal not found: 2057',NULL,'2025-11-14 00:11:11'),
(4784,'notes','2926','error','Deal not found: 2058',NULL,'2025-11-14 00:11:11'),
(4785,'notes','2927','error','Deal not found: 2059',NULL,'2025-11-14 00:11:11'),
(4786,'notes','2928','error','Deal not found: 2060',NULL,'2025-11-14 00:11:11'),
(4787,'notes','2929','error','Deal not found: 2061',NULL,'2025-11-14 00:11:11'),
(4788,'notes','2930','error','Deal not found: 2062',NULL,'2025-11-14 00:11:11'),
(4789,'notes','2931','error','Deal not found: 2063',NULL,'2025-11-14 00:11:11'),
(4790,'notes','2932','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4791,'notes','2933','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4792,'notes','2934','error','Deal not found: 2064',NULL,'2025-11-14 00:11:11'),
(4793,'notes','2935','error','Deal not found: 2065',NULL,'2025-11-14 00:11:11'),
(4794,'notes','2936','error','Deal not found: 2066',NULL,'2025-11-14 00:11:11'),
(4795,'notes','2937','error','Deal not found: 2067',NULL,'2025-11-14 00:11:11'),
(4796,'notes','2938','error','Deal not found: 2068',NULL,'2025-11-14 00:11:11'),
(4797,'notes','2939','error','Deal not found: 2069',NULL,'2025-11-14 00:11:11'),
(4798,'notes','2940','error','Deal not found: 2070',NULL,'2025-11-14 00:11:11'),
(4799,'notes','2941','error','Deal not found: 2071',NULL,'2025-11-14 00:11:11'),
(4800,'notes','2942','error','Deal not found: 2072',NULL,'2025-11-14 00:11:11'),
(4801,'notes','2943','error','Deal not found: 2073',NULL,'2025-11-14 00:11:11'),
(4802,'notes','2944','error','Deal not found: 2074',NULL,'2025-11-14 00:11:11'),
(4803,'notes','2945','error','Deal not found: 2075',NULL,'2025-11-14 00:11:11'),
(4804,'notes','2946','error','Deal not found: 2076',NULL,'2025-11-14 00:11:11'),
(4805,'notes','2947','error','Deal not found: 2077',NULL,'2025-11-14 00:11:11'),
(4806,'notes','2948','error','Deal not found: 2078',NULL,'2025-11-14 00:11:11'),
(4807,'notes','2949','error','Deal not found: 2079',NULL,'2025-11-14 00:11:11'),
(4808,'notes','2950','error','Deal not found: 2080',NULL,'2025-11-14 00:11:11'),
(4809,'notes','2951','error','Deal not found: 2081',NULL,'2025-11-14 00:11:11'),
(4810,'notes','2952','error','Deal not found: 2082',NULL,'2025-11-14 00:11:11'),
(4811,'notes','2953','error','Deal not found: 2083',NULL,'2025-11-14 00:11:11'),
(4812,'notes','2954','error','Deal not found: 2084',NULL,'2025-11-14 00:11:11'),
(4813,'notes','2955','error','Deal not found: 2085',NULL,'2025-11-14 00:11:11'),
(4814,'notes','2956','error','Deal not found: 2086',NULL,'2025-11-14 00:11:11'),
(4815,'notes','2957','error','Deal not found: 2087',NULL,'2025-11-14 00:11:11'),
(4816,'notes','2958','error','Deal not found: 2088',NULL,'2025-11-14 00:11:11'),
(4817,'notes','2959','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4818,'notes','2960','error','Deal not found: 2089',NULL,'2025-11-14 00:11:11'),
(4819,'notes','2961','error','Deal not found: 2090',NULL,'2025-11-14 00:11:11'),
(4820,'notes','2962','error','Deal not found: 2091',NULL,'2025-11-14 00:11:11'),
(4821,'notes','2963','error','Deal not found: 2092',NULL,'2025-11-14 00:11:11'),
(4822,'notes','2964','error','Deal not found: 2093',NULL,'2025-11-14 00:11:11'),
(4823,'notes','2965','error','Deal not found: 2094',NULL,'2025-11-14 00:11:11'),
(4824,'notes','2966','error','Deal not found: 2095',NULL,'2025-11-14 00:11:11'),
(4825,'notes','2967','error','Deal not found: 2096',NULL,'2025-11-14 00:11:11'),
(4826,'notes','2968','error','Deal not found: 2097',NULL,'2025-11-14 00:11:11'),
(4827,'notes','2969','error','Deal not found: 2098',NULL,'2025-11-14 00:11:11'),
(4828,'notes','2970','error','Deal not found: 2099',NULL,'2025-11-14 00:11:11'),
(4829,'notes','2971','error','Deal not found: 2100',NULL,'2025-11-14 00:11:11'),
(4830,'notes','2972','error','Deal not found: 2101',NULL,'2025-11-14 00:11:11'),
(4831,'notes','2973','error','Deal not found: 2102',NULL,'2025-11-14 00:11:11'),
(4832,'notes','2974','error','Deal not found: 2103',NULL,'2025-11-14 00:11:11'),
(4833,'notes','2975','error','Deal not found: 2104',NULL,'2025-11-14 00:11:11'),
(4834,'notes','2976','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4835,'notes','2977','error','Deal not found: 2106',NULL,'2025-11-14 00:11:11'),
(4836,'notes','2978','error','Deal not found: 2107',NULL,'2025-11-14 00:11:11'),
(4837,'notes','2979','error','Deal not found: 2108',NULL,'2025-11-14 00:11:11'),
(4838,'notes','2980','error','Deal not found: 2109',NULL,'2025-11-14 00:11:11'),
(4839,'notes','2981','error','Deal not found: 2110',NULL,'2025-11-14 00:11:11'),
(4840,'notes','2982','error','Deal not found: 2111',NULL,'2025-11-14 00:11:11'),
(4841,'notes','2983','error','Deal not found: 2112',NULL,'2025-11-14 00:11:11'),
(4842,'notes','2984','error','Deal not found: 2113',NULL,'2025-11-14 00:11:11'),
(4843,'notes','2985','error','Deal not found: 2114',NULL,'2025-11-14 00:11:11'),
(4844,'notes','2986','error','Deal not found: 2115',NULL,'2025-11-14 00:11:11'),
(4845,'notes','2987','error','Deal not found: 2116',NULL,'2025-11-14 00:11:11'),
(4846,'notes','2988','error','Deal not found: 2117',NULL,'2025-11-14 00:11:11'),
(4847,'notes','2989','error','Deal not found: 2043',NULL,'2025-11-14 00:11:11'),
(4848,'notes','2990','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4849,'notes','2991','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4850,'notes','2992','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4851,'notes','2993','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4852,'notes','2994','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4853,'notes','2995','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4854,'notes','2996','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4855,'notes','2997','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4856,'notes','2998','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4857,'notes','2999','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4858,'notes','3000','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4859,'notes','3001','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4860,'notes','3002','error','Deal not found: 1955',NULL,'2025-11-14 00:11:11'),
(4861,'notes','3003','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4862,'notes','3004','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4863,'notes','3005','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4864,'notes','3006','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4865,'notes','3007','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4866,'notes','3008','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4867,'notes','3009','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4868,'notes','3010','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4869,'notes','3011','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4870,'notes','3012','error','Deal not found: 1997',NULL,'2025-11-14 00:11:11'),
(4871,'notes','3013','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4872,'notes','3014','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4873,'notes','3015','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4874,'notes','3016','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4875,'notes','3017','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4876,'notes','3018','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4877,'notes','3019','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4878,'notes','3020','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4879,'notes','3021','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4880,'notes','3022','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4881,'notes','3023','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4882,'notes','3024','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4883,'notes','3025','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4884,'notes','3026','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4885,'notes','3027','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4886,'notes','3028','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4887,'notes','3029','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4888,'notes','3030','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4889,'notes','3031','error','Deal not found: 2131',NULL,'2025-11-14 00:11:11'),
(4890,'notes','3032','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4891,'notes','3033','error','Deal not found: 2133',NULL,'2025-11-14 00:11:11'),
(4892,'notes','3034','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4893,'notes','3035','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4894,'notes','3036','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4895,'notes','3037','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4896,'notes','3038','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4897,'notes','3039','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4898,'notes','3040','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4899,'notes','3041','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4900,'notes','3042','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4901,'notes','3043','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4902,'notes','3044','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4903,'notes','3045','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4904,'notes','3046','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4905,'notes','3047','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4906,'notes','3048','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4907,'notes','3049','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4908,'notes','3050','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4909,'notes','3051','error','Deal not found: 1951',NULL,'2025-11-14 00:11:11'),
(4910,'notes','3052','error','Deal not found: 1970',NULL,'2025-11-14 00:11:11'),
(4911,'notes','3053','error','Deal not found: 1966',NULL,'2025-11-14 00:11:11'),
(4912,'notes','3054','error','Deal not found: 1943',NULL,'2025-11-14 00:11:11'),
(4913,'notes','3055','error','Deal not found: 1997',NULL,'2025-11-14 00:11:11'),
(4914,'notes','3056','error','Deal not found: 1997',NULL,'2025-11-14 00:11:11'),
(4915,'notes','3057','error','Deal not found: 2000',NULL,'2025-11-14 00:11:11'),
(4916,'notes','3058','error','Deal not found: 2000',NULL,'2025-11-14 00:11:11'),
(4917,'notes','3059','error','Deal not found: 2131',NULL,'2025-11-14 00:11:11'),
(4918,'notes','3060','error','Deal not found: 2131',NULL,'2025-11-14 00:11:11'),
(4919,'notes','3061','error','Deal not found: 1952',NULL,'2025-11-14 00:11:11'),
(4920,'notes','3062','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4921,'notes','3063','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4922,'notes','3064','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4923,'notes','3065','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4924,'notes','3066','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4925,'notes','3067','error','Deal not found: 2141',NULL,'2025-11-14 00:11:11'),
(4926,'notes','3068','error','Deal not found: 2140',NULL,'2025-11-14 00:11:11'),
(4927,'notes','3069','error','Deal not found: 2145',NULL,'2025-11-14 00:11:11'),
(4928,'notes','3070','error','Deal not found: 2147',NULL,'2025-11-14 00:11:11'),
(4929,'notes','3071','error','Deal not found: 2150',NULL,'2025-11-14 00:11:11'),
(4930,'notes','3072','error','Deal not found: 2141',NULL,'2025-11-14 00:11:11'),
(4931,'notes','3073','error','Deal not found: 2127',NULL,'2025-11-14 00:11:11'),
(4932,'notes','3074','error','Deal not found: 2147',NULL,'2025-11-14 00:11:11'),
(4933,'notes','3075','error','Deal not found: 2151',NULL,'2025-11-14 00:11:11'),
(4934,'notes','3076','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4935,'notes','3077','error','Deal not found: 2152',NULL,'2025-11-14 00:11:11'),
(4936,'notes','3078','error','Deal not found: 2150',NULL,'2025-11-14 00:11:11'),
(4937,'notes','3079','error','Deal not found: 2156',NULL,'2025-11-14 00:11:11'),
(4938,'notes','3080','error','Deal not found: 2156',NULL,'2025-11-14 00:11:11'),
(4939,'notes','3081','error','Deal not found: 2159',NULL,'2025-11-14 00:11:11'),
(4940,'notes','3082','error','Deal not found: 2159',NULL,'2025-11-14 00:11:11'),
(4941,'notes','3083','error','Deal not found: 2160',NULL,'2025-11-14 00:11:11'),
(4942,'notes','3084','error','Deal not found: 2160',NULL,'2025-11-14 00:11:11'),
(4943,'notes','3085','error','Deal not found: 2160',NULL,'2025-11-14 00:11:11'),
(4944,'notes','3086','error','Deal not found: 2147',NULL,'2025-11-14 00:11:11'),
(4945,'notes','3087','error','Deal not found: 2140',NULL,'2025-11-14 00:11:11'),
(4946,'notes','3088','error','Deal not found: 2169',NULL,'2025-11-14 00:11:11'),
(4947,'notes','3089','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4948,'notes','3090','error','Deal not found: 1773',NULL,'2025-11-14 00:11:11'),
(4949,'notes','3091','skipped','No deal associated',NULL,'2025-11-14 00:11:11'),
(4950,'files','4171','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(4951,'files','15076','error','Deal not found: 7',NULL,'2025-11-14 00:11:14'),
(4952,'files','15077','error','Deal not found: 7',NULL,'2025-11-14 00:11:14'),
(4953,'files','15133','error','Deal not found: 4',NULL,'2025-11-14 00:11:14'),
(4954,'files','15195','error','Deal not found: 12',NULL,'2025-11-14 00:11:14'),
(4955,'files','15196','error','Deal not found: 12',NULL,'2025-11-14 00:11:14'),
(4956,'files','15197','error','Deal not found: 12',NULL,'2025-11-14 00:11:14'),
(4957,'files','15313','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(4958,'files','15314','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(4959,'files','15315','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(4960,'files','15316','error','Deal not found: 14',NULL,'2025-11-14 00:11:14'),
(4961,'files','15393','error','Deal not found: 15',NULL,'2025-11-14 00:11:14'),
(4962,'files','15394','error','Deal not found: 15',NULL,'2025-11-14 00:11:14'),
(4963,'files','15395','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(4964,'files','15396','error','Deal not found: 17',NULL,'2025-11-14 00:11:14'),
(4965,'files','15397','error','Deal not found: 17',NULL,'2025-11-14 00:11:14'),
(4966,'files','15398','error','Deal not found: 17',NULL,'2025-11-14 00:11:14'),
(4967,'files','15399','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(4968,'files','15400','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(4969,'files','15401','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(4970,'files','15884','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(4971,'files','15885','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(4972,'files','15886','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(4973,'files','15887','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(4974,'files','15888','error','Deal not found: 19',NULL,'2025-11-14 00:11:14'),
(4975,'files','15889','error','Deal not found: 19',NULL,'2025-11-14 00:11:14'),
(4976,'files','15890','error','Deal not found: 19',NULL,'2025-11-14 00:11:14'),
(4977,'files','15891','error','Deal not found: 19',NULL,'2025-11-14 00:11:14'),
(4978,'files','15892','error','Deal not found: 19',NULL,'2025-11-14 00:11:14'),
(4979,'files','15893','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(4980,'files','15894','error','Deal not found: 21',NULL,'2025-11-14 00:11:14'),
(4981,'files','15895','error','Deal not found: 21',NULL,'2025-11-14 00:11:14'),
(4982,'files','15899','error','Deal not found: 22',NULL,'2025-11-14 00:11:14'),
(4983,'files','15922','error','Deal not found: 23',NULL,'2025-11-14 00:11:14'),
(4984,'files','15923','error','Deal not found: 23',NULL,'2025-11-14 00:11:14'),
(4985,'files','16851','error','Deal not found: 33',NULL,'2025-11-14 00:11:14'),
(4986,'files','16852','error','Deal not found: 33',NULL,'2025-11-14 00:11:14'),
(4987,'files','16853','error','Deal not found: 33',NULL,'2025-11-14 00:11:14'),
(4988,'files','16854','error','Deal not found: 53',NULL,'2025-11-14 00:11:14'),
(4989,'files','16855','error','Deal not found: 53',NULL,'2025-11-14 00:11:14'),
(4990,'files','16856','error','Deal not found: 52',NULL,'2025-11-14 00:11:14'),
(4991,'files','16857','error','Deal not found: 52',NULL,'2025-11-14 00:11:14'),
(4992,'files','16858','error','Deal not found: 52',NULL,'2025-11-14 00:11:14'),
(4993,'files','16859','error','Deal not found: 1724',NULL,'2025-11-14 00:11:14'),
(4994,'files','16982','error','Deal not found: 50',NULL,'2025-11-14 00:11:14'),
(4995,'files','16983','error','Deal not found: 50',NULL,'2025-11-14 00:11:14'),
(4996,'files','16984','error','Deal not found: 50',NULL,'2025-11-14 00:11:14'),
(4997,'files','18605','error','Deal not found: 55',NULL,'2025-11-14 00:11:14'),
(4998,'files','18606','error','Deal not found: 55',NULL,'2025-11-14 00:11:14'),
(4999,'files','18607','error','Deal not found: 55',NULL,'2025-11-14 00:11:14'),
(5000,'files','21448','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5001,'files','21449','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5002,'files','21450','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5003,'files','21451','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5004,'files','21452','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5005,'files','21453','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5006,'files','21454','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5007,'files','21455','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5008,'files','21456','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5009,'files','21457','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5010,'files','21459','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5011,'files','21460','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5012,'files','21461','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5013,'files','21462','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5014,'files','21463','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5015,'files','21464','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5016,'files','21465','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5017,'files','21466','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5018,'files','21467','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5019,'files','21468','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5020,'files','21469','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5021,'files','21472','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5022,'files','21473','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5023,'files','21474','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5024,'files','21475','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5025,'files','21476','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5026,'files','21477','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5027,'files','21478','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5028,'files','21479','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5029,'files','21480','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5030,'files','21481','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5031,'files','21482','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5032,'files','21483','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5033,'files','21484','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5034,'files','21485','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5035,'files','21486','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5036,'files','21487','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5037,'files','21488','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5038,'files','21489','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5039,'files','21490','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5040,'files','21491','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5041,'files','21492','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5042,'files','21494','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5043,'files','21495','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5044,'files','21496','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5045,'files','21497','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5046,'files','21498','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5047,'files','21499','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5048,'files','21500','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5049,'files','21501','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5050,'files','21502','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5051,'files','21503','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5052,'files','21504','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5053,'files','21505','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5054,'files','21506','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5055,'files','21507','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5056,'files','21508','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5057,'files','21509','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5058,'files','21510','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5059,'files','21511','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5060,'files','21512','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5061,'files','21513','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5062,'files','21514','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5063,'files','21515','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5064,'files','21516','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5065,'files','21517','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5066,'files','21518','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5067,'files','21519','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5068,'files','21520','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5069,'files','21521','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5070,'files','21522','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5071,'files','21523','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5072,'files','21524','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5073,'files','21525','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5074,'files','21526','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5075,'files','21527','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5076,'files','21528','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5077,'files','21529','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5078,'files','21530','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5079,'files','21531','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5080,'files','21532','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5081,'files','21533','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5082,'files','21534','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5083,'files','21535','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5084,'files','21536','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5085,'files','21537','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5086,'files','21538','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5087,'files','21539','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5088,'files','21540','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5089,'files','21541','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5090,'files','21542','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5091,'files','21543','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5092,'files','21544','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5093,'files','21545','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5094,'files','21546','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5095,'files','21547','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5096,'files','21548','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5097,'files','21549','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5098,'files','21550','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5099,'files','21551','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5100,'files','21552','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5101,'files','21553','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5102,'files','21555','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5103,'files','21556','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5104,'files','21557','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5105,'files','21558','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5106,'files','21559','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5107,'files','21560','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5108,'files','21561','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5109,'files','21562','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5110,'files','21563','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5111,'files','21564','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5112,'files','21565','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5113,'files','21566','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5114,'files','21567','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5115,'files','21568','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5116,'files','21569','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5117,'files','21570','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5118,'files','21571','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5119,'files','21574','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5120,'files','21575','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5121,'files','21577','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5122,'files','21578','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5123,'files','21579','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5124,'files','21580','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5125,'files','21581','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5126,'files','21582','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5127,'files','21583','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5128,'files','21584','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5129,'files','21585','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5130,'files','21586','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5131,'files','21587','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5132,'files','21588','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5133,'files','21589','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5134,'files','21590','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5135,'files','21591','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5136,'files','21592','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5137,'files','21593','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5138,'files','21594','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5139,'files','21595','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5140,'files','21596','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5141,'files','21597','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5142,'files','21598','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5143,'files','21599','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5144,'files','21601','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5145,'files','21602','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5146,'files','21603','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5147,'files','21604','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5148,'files','21605','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5149,'files','21606','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5150,'files','21607','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5151,'files','21608','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5152,'files','21609','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5153,'files','21610','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5154,'files','21611','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5155,'files','21612','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5156,'files','21613','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5157,'files','21614','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5158,'files','21615','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5159,'files','21616','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5160,'files','21617','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5161,'files','21618','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5162,'files','21619','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5163,'files','21620','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5164,'files','21621','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5165,'files','21622','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5166,'files','21623','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5167,'files','21624','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5168,'files','21625','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5169,'files','21626','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5170,'files','21627','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5171,'files','21628','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5172,'files','21629','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5173,'files','21630','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5174,'files','21631','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5175,'files','21632','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5176,'files','21633','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5177,'files','21636','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5178,'files','21637','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5179,'files','21638','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5180,'files','21639','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5181,'files','21640','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5182,'files','21641','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5183,'files','21642','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5184,'files','21643','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5185,'files','21644','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5186,'files','21645','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5187,'files','21646','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5188,'files','21647','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5189,'files','21648','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5190,'files','21649','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5191,'files','21650','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5192,'files','21651','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5193,'files','21652','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5194,'files','21653','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5195,'files','21654','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5196,'files','21655','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5197,'files','21656','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5198,'files','21657','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5199,'files','21658','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5200,'files','21659','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5201,'files','21660','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5202,'files','21661','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5203,'files','21662','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5204,'files','21663','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5205,'files','21664','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5206,'files','21665','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5207,'files','21666','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5208,'files','21667','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5209,'files','21668','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5210,'files','21669','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5211,'files','21670','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5212,'files','21671','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5213,'files','21672','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5214,'files','21673','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5215,'files','21674','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5216,'files','21675','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5217,'files','21676','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5218,'files','21677','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5219,'files','21678','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5220,'files','21679','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5221,'files','21680','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5222,'files','21682','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5223,'files','21683','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5224,'files','21684','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5225,'files','21685','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5226,'files','21686','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5227,'files','21687','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5228,'files','21688','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5229,'files','21689','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5230,'files','21690','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5231,'files','21691','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5232,'files','21692','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5233,'files','21693','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5234,'files','21694','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5235,'files','21695','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5236,'files','21696','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5237,'files','21697','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5238,'files','21698','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5239,'files','21699','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5240,'files','21700','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5241,'files','21701','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5242,'files','21702','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5243,'files','21703','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5244,'files','21704','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5245,'files','21705','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5246,'files','21706','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5247,'files','21707','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5248,'files','21708','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5249,'files','21709','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5250,'files','21710','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5251,'files','21712','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5252,'files','21713','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5253,'files','21714','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5254,'files','21715','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5255,'files','21716','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5256,'files','21717','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5257,'files','21719','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5258,'files','21720','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5259,'files','21721','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5260,'files','21722','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5261,'files','21723','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5262,'files','21724','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5263,'files','21725','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5264,'files','21726','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5265,'files','21727','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5266,'files','21728','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5267,'files','21729','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5268,'files','21730','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5269,'files','21731','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5270,'files','21732','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5271,'files','21733','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5272,'files','21734','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5273,'files','21735','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5274,'files','21736','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5275,'files','21737','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5276,'files','21738','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5277,'files','21739','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5278,'files','21740','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5279,'files','21741','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5280,'files','21742','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5281,'files','21743','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5282,'files','21744','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5283,'files','21745','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5284,'files','21746','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5285,'files','21747','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5286,'files','21748','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5287,'files','21749','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5288,'files','21750','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5289,'files','21751','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5290,'files','21752','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5291,'files','21753','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5292,'files','21754','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5293,'files','21755','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5294,'files','21756','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5295,'files','21757','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5296,'files','21758','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5297,'files','21759','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5298,'files','21760','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5299,'files','21761','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5300,'files','21762','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5301,'files','21763','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5302,'files','21764','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5303,'files','21765','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5304,'files','21766','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5305,'files','21767','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5306,'files','21768','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5307,'files','21769','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5308,'files','21770','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5309,'files','21771','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5310,'files','21772','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5311,'files','21773','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5312,'files','21774','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5313,'files','21775','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5314,'files','21776','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5315,'files','21777','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5316,'files','21778','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5317,'files','21779','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5318,'files','21780','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5319,'files','21781','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5320,'files','21782','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5321,'files','21783','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5322,'files','21784','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5323,'files','21785','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5324,'files','21786','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5325,'files','21787','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5326,'files','21788','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5327,'files','21789','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5328,'files','21790','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5329,'files','21791','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5330,'files','21792','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5331,'files','21793','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5332,'files','21794','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5333,'files','21795','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5334,'files','21796','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5335,'files','21797','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5336,'files','21798','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5337,'files','21799','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5338,'files','21800','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5339,'files','21801','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5340,'files','21802','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5341,'files','21803','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5342,'files','21804','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5343,'files','21805','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5344,'files','21806','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5345,'files','21807','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5346,'files','21808','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5347,'files','21809','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5348,'files','21810','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5349,'files','21811','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5350,'files','21812','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5351,'files','21813','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5352,'files','21814','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5353,'files','21815','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5354,'files','21816','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5355,'files','21817','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5356,'files','21818','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5357,'files','21819','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5358,'files','21820','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5359,'files','21821','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5360,'files','21822','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5361,'files','21823','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5362,'files','21824','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5363,'files','21825','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5364,'files','21826','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5365,'files','21827','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5366,'files','21828','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5367,'files','21829','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5368,'files','21830','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5369,'files','21831','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5370,'files','21832','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5371,'files','21833','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5372,'files','21834','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5373,'files','21835','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5374,'files','21836','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5375,'files','21837','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5376,'files','21838','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5377,'files','21839','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5378,'files','21840','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5379,'files','21841','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5380,'files','21842','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5381,'files','21843','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5382,'files','21844','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5383,'files','21845','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5384,'files','21846','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5385,'files','21847','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5386,'files','21848','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5387,'files','21849','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5388,'files','21850','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5389,'files','21851','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5390,'files','21852','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5391,'files','21853','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5392,'files','21854','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5393,'files','21855','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5394,'files','21856','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5395,'files','21857','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5396,'files','21858','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5397,'files','21859','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5398,'files','21860','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5399,'files','21861','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5400,'files','21862','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5401,'files','21863','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5402,'files','21864','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5403,'files','21865','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5404,'files','21866','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5405,'files','21867','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5406,'files','21868','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5407,'files','21869','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5408,'files','21870','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5409,'files','21871','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5410,'files','21872','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5411,'files','21873','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5412,'files','21874','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5413,'files','21875','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5414,'files','21876','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5415,'files','21877','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5416,'files','21878','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5417,'files','21879','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5418,'files','21880','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5419,'files','21881','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5420,'files','21882','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5421,'files','21883','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5422,'files','21884','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5423,'files','21885','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5424,'files','21886','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5425,'files','21887','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5426,'files','21888','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5427,'files','21889','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5428,'files','21890','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5429,'files','21891','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5430,'files','21892','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5431,'files','21893','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5432,'files','21894','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5433,'files','21895','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5434,'files','21896','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5435,'files','21897','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5436,'files','21898','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5437,'files','21899','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5438,'files','21900','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5439,'files','21901','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5440,'files','21902','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5441,'files','21903','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5442,'files','21904','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5443,'files','21905','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5444,'files','21906','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5445,'files','21907','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5446,'files','21908','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5447,'files','21909','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5448,'files','21910','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5449,'files','21911','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5450,'files','21912','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5451,'files','21913','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5452,'files','21914','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5453,'files','21915','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5454,'files','21916','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5455,'files','21917','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5456,'files','21918','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5457,'files','21919','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5458,'files','21920','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5459,'files','21921','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5460,'files','21922','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5461,'files','21923','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5462,'files','21924','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5463,'files','21925','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5464,'files','21926','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5465,'files','21927','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5466,'files','21928','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5467,'files','21929','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5468,'files','21930','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5469,'files','21931','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5470,'files','21932','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5471,'files','21933','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5472,'files','21934','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5473,'files','21935','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5474,'files','21936','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5475,'files','21937','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5476,'files','21938','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5477,'files','21939','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5478,'files','21940','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5479,'files','21941','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5480,'files','21942','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5481,'files','21943','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5482,'files','21944','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5483,'files','21945','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5484,'files','21946','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5485,'files','21947','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5486,'files','21948','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5487,'files','21949','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5488,'files','21950','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5489,'files','21951','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5490,'files','21952','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5491,'files','21953','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5492,'files','21954','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5493,'files','21956','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5494,'files','21957','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5495,'files','21958','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5496,'files','21959','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5497,'files','21960','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5498,'files','21961','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5499,'files','21962','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5500,'files','21963','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5501,'files','21964','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5502,'files','21965','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5503,'files','21966','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5504,'files','21967','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5505,'files','21968','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5506,'files','21969','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5507,'files','21970','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5508,'files','21971','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5509,'files','21972','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5510,'files','21973','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5511,'files','21974','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5512,'files','21975','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5513,'files','21976','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5514,'files','21977','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5515,'files','21978','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5516,'files','21979','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5517,'files','21980','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5518,'files','21981','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5519,'files','21982','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5520,'files','21983','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5521,'files','21984','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5522,'files','21985','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5523,'files','21986','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5524,'files','21987','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5525,'files','21988','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5526,'files','21989','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5527,'files','21990','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5528,'files','21991','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5529,'files','21992','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5530,'files','21993','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5531,'files','21994','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5532,'files','21995','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5533,'files','21996','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5534,'files','21997','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5535,'files','21998','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5536,'files','21999','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5537,'files','22000','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5538,'files','22001','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5539,'files','22002','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5540,'files','22003','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5541,'files','22004','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5542,'files','22005','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5543,'files','22006','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5544,'files','22007','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5545,'files','22008','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5546,'files','22009','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5547,'files','22010','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5548,'files','22011','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5549,'files','22012','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5550,'files','22013','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5551,'files','22014','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5552,'files','22015','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5553,'files','22016','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5554,'files','22017','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5555,'files','22018','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5556,'files','22019','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5557,'files','22020','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5558,'files','22021','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5559,'files','22022','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5560,'files','22023','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5561,'files','22024','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5562,'files','22025','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5563,'files','22026','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5564,'files','22027','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5565,'files','22028','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5566,'files','22029','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5567,'files','22030','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5568,'files','22031','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5569,'files','22032','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5570,'files','22033','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5571,'files','22034','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5572,'files','22035','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5573,'files','22036','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5574,'files','22037','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5575,'files','22038','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5576,'files','22039','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5577,'files','22040','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5578,'files','22041','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5579,'files','22042','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5580,'files','22043','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5581,'files','22044','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5582,'files','22045','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5583,'files','22046','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5584,'files','22047','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5585,'files','22048','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5586,'files','22049','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5587,'files','22050','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5588,'files','22051','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5589,'files','22052','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5590,'files','22053','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5591,'files','22054','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5592,'files','22055','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5593,'files','22056','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5594,'files','22057','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5595,'files','22058','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5596,'files','22059','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5597,'files','22060','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5598,'files','22061','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5599,'files','22062','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5600,'files','22063','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5601,'files','22064','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5602,'files','22065','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5603,'files','22066','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5604,'files','22067','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5605,'files','22068','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5606,'files','22069','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5607,'files','22070','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5608,'files','22071','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5609,'files','22072','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5610,'files','22073','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5611,'files','22074','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5612,'files','22075','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5613,'files','22076','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5614,'files','22077','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5615,'files','22078','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5616,'files','22079','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5617,'files','22080','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5618,'files','22081','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5619,'files','22082','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5620,'files','22083','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5621,'files','22084','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5622,'files','22085','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5623,'files','22086','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5624,'files','22087','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5625,'files','22088','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5626,'files','22089','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5627,'files','22090','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5628,'files','22091','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5629,'files','22092','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5630,'files','22093','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5631,'files','22094','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5632,'files','22095','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5633,'files','22096','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5634,'files','22097','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5635,'files','22098','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5636,'files','22099','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5637,'files','22100','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5638,'files','22101','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5639,'files','22102','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5640,'files','22103','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5641,'files','22104','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5642,'files','22105','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5643,'files','22106','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5644,'files','22107','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5645,'files','22108','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5646,'files','22109','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5647,'files','22110','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5648,'files','22111','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5649,'files','22112','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5650,'files','22113','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5651,'files','22114','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5652,'files','22116','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5653,'files','22117','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5654,'files','22118','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5655,'files','22119','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5656,'files','22120','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5657,'files','22121','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5658,'files','22122','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5659,'files','22123','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5660,'files','22124','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5661,'files','22125','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5662,'files','22126','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5663,'files','22127','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5664,'files','22128','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5665,'files','22129','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5666,'files','22130','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5667,'files','22132','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5668,'files','22133','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5669,'files','22134','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5670,'files','22135','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5671,'files','22136','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5672,'files','22137','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5673,'files','22138','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5674,'files','22139','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5675,'files','22140','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5676,'files','22141','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5677,'files','22142','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5678,'files','22143','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5679,'files','22144','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5680,'files','22145','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5681,'files','22146','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5682,'files','22147','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5683,'files','22148','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5684,'files','22149','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5685,'files','22150','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5686,'files','22151','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5687,'files','22152','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5688,'files','22153','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5689,'files','22154','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5690,'files','22155','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5691,'files','22156','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5692,'files','22157','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5693,'files','22158','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5694,'files','22159','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5695,'files','22160','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5696,'files','22161','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5697,'files','22162','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5698,'files','22163','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5699,'files','22164','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5700,'files','22165','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5701,'files','22166','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5702,'files','22167','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5703,'files','22168','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5704,'files','22169','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5705,'files','22170','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5706,'files','22171','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5707,'files','22172','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5708,'files','22173','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5709,'files','22174','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5710,'files','22175','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5711,'files','22176','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5712,'files','22177','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5713,'files','22178','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5714,'files','22179','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5715,'files','22180','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5716,'files','22181','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5717,'files','22182','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5718,'files','22183','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5719,'files','22184','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5720,'files','22185','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5721,'files','22186','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5722,'files','22187','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5723,'files','22188','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5724,'files','22189','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5725,'files','22190','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5726,'files','22191','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5727,'files','22192','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5728,'files','22193','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5729,'files','22194','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5730,'files','22195','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5731,'files','22196','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5732,'files','22197','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5733,'files','22198','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5734,'files','22199','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5735,'files','22200','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5736,'files','22201','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5737,'files','22202','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5738,'files','22203','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5739,'files','22204','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5740,'files','22205','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5741,'files','22206','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5742,'files','22207','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5743,'files','22208','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5744,'files','22209','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5745,'files','22210','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5746,'files','22211','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5747,'files','22212','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5748,'files','22213','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5749,'files','22214','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5750,'files','22215','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5751,'files','22216','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5752,'files','22217','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5753,'files','22218','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5754,'files','22219','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5755,'files','22220','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5756,'files','22221','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5757,'files','22222','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5758,'files','22223','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5759,'files','22224','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5760,'files','22225','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5761,'files','22226','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5762,'files','22227','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5763,'files','22228','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5764,'files','22229','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5765,'files','22230','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5766,'files','22231','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5767,'files','22232','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5768,'files','22233','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5769,'files','22234','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5770,'files','22235','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5771,'files','22236','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5772,'files','22238','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5773,'files','22239','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5774,'files','22240','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5775,'files','22241','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5776,'files','22242','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5777,'files','22243','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5778,'files','22244','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5779,'files','22245','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5780,'files','22246','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5781,'files','22247','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5782,'files','22248','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5783,'files','22249','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5784,'files','22250','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5785,'files','22251','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5786,'files','22252','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5787,'files','22253','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5788,'files','22254','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5789,'files','22255','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5790,'files','22256','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5791,'files','22257','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5792,'files','22258','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5793,'files','22259','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5794,'files','22260','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5795,'files','22261','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5796,'files','22262','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5797,'files','22263','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5798,'files','22264','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5799,'files','22265','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5800,'files','22266','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5801,'files','22267','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5802,'files','22268','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5803,'files','22269','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5804,'files','22270','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5805,'files','22271','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5806,'files','22272','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5807,'files','22273','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5808,'files','22274','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5809,'files','22275','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5810,'files','22276','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5811,'files','22277','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5812,'files','22278','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5813,'files','22279','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5814,'files','22280','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5815,'files','22281','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5816,'files','22282','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5817,'files','22283','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5818,'files','22284','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5819,'files','22285','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5820,'files','22286','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5821,'files','22287','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5822,'files','22288','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5823,'files','22289','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5824,'files','22290','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5825,'files','22291','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5826,'files','22292','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5827,'files','22293','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5828,'files','22294','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5829,'files','22295','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5830,'files','22296','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5831,'files','22297','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5832,'files','22298','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5833,'files','22299','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5834,'files','22300','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5835,'files','22301','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5836,'files','22302','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5837,'files','22303','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5838,'files','22304','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5839,'files','22305','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5840,'files','22306','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5841,'files','22307','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5842,'files','22308','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5843,'files','22309','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5844,'files','22310','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5845,'files','22311','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5846,'files','22312','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5847,'files','22313','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5848,'files','22314','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5849,'files','22315','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5850,'files','22316','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5851,'files','22317','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5852,'files','22318','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5853,'files','22319','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5854,'files','22320','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5855,'files','22321','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5856,'files','22322','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5857,'files','22323','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5858,'files','22324','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5859,'files','22325','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5860,'files','22326','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5861,'files','22327','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5862,'files','22328','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5863,'files','22329','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5864,'files','22330','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5865,'files','22331','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5866,'files','22332','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5867,'files','22333','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5868,'files','22334','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5869,'files','22335','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5870,'files','22336','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5871,'files','22337','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5872,'files','22338','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5873,'files','22339','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5874,'files','22340','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5875,'files','22341','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5876,'files','22342','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5877,'files','22343','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5878,'files','22344','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5879,'files','22345','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5880,'files','22346','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5881,'files','22347','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5882,'files','22348','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5883,'files','22349','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5884,'files','22350','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5885,'files','22351','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5886,'files','22352','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5887,'files','22353','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5888,'files','22354','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5889,'files','22355','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5890,'files','22356','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5891,'files','22357','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5892,'files','22358','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5893,'files','22359','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5894,'files','22360','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5895,'files','22361','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5896,'files','22362','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5897,'files','22363','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5898,'files','22364','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5899,'files','22365','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5900,'files','22366','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5901,'files','22367','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5902,'files','22368','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5903,'files','22369','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5904,'files','22370','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5905,'files','22371','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5906,'files','22372','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5907,'files','22373','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5908,'files','22374','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5909,'files','22375','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5910,'files','22376','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5911,'files','22377','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5912,'files','22378','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5913,'files','22379','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5914,'files','22380','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5915,'files','22381','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5916,'files','22382','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5917,'files','22383','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5918,'files','22384','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5919,'files','22385','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5920,'files','22386','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5921,'files','22387','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5922,'files','22388','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5923,'files','22389','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5924,'files','22390','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5925,'files','22391','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5926,'files','22392','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5927,'files','22393','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5928,'files','22394','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5929,'files','22395','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5930,'files','22396','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5931,'files','22397','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5932,'files','22398','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5933,'files','22399','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5934,'files','22400','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5935,'files','22401','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5936,'files','22402','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5937,'files','22403','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5938,'files','22404','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5939,'files','22405','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5940,'files','22406','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5941,'files','22407','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5942,'files','22408','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5943,'files','22409','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5944,'files','22410','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5945,'files','22411','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5946,'files','22412','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5947,'files','22413','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5948,'files','22414','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5949,'files','22415','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5950,'files','22416','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5951,'files','22417','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5952,'files','22418','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5953,'files','22419','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5954,'files','22420','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5955,'files','22421','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5956,'files','22422','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5957,'files','22423','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5958,'files','22424','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5959,'files','22425','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5960,'files','22426','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5961,'files','22427','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5962,'files','22428','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5963,'files','22429','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5964,'files','22430','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5965,'files','22431','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5966,'files','22432','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5967,'files','22433','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5968,'files','22434','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5969,'files','22435','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5970,'files','22436','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5971,'files','22437','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5972,'files','22438','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5973,'files','22439','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5974,'files','22440','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5975,'files','22441','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5976,'files','22442','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5977,'files','22443','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5978,'files','22444','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5979,'files','22445','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5980,'files','22446','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5981,'files','22447','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5982,'files','22448','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5983,'files','22449','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5984,'files','22450','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5985,'files','22451','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5986,'files','22452','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5987,'files','22453','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5988,'files','22454','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5989,'files','22455','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5990,'files','22456','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5991,'files','22457','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5992,'files','22458','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5993,'files','22459','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5994,'files','22460','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5995,'files','22461','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5996,'files','22462','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5997,'files','22463','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5998,'files','22464','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(5999,'files','22465','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6000,'files','22466','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6001,'files','22467','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6002,'files','22468','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6003,'files','22469','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6004,'files','22470','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6005,'files','22471','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6006,'files','22472','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6007,'files','22473','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6008,'files','22474','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6009,'files','22475','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6010,'files','22476','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6011,'files','22477','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6012,'files','22478','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6013,'files','22479','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6014,'files','22480','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6015,'files','22481','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6016,'files','22482','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6017,'files','22483','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6018,'files','22484','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6019,'files','22485','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6020,'files','22486','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6021,'files','22487','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6022,'files','22488','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6023,'files','22489','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6024,'files','22490','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6025,'files','22491','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6026,'files','22492','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6027,'files','22493','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6028,'files','22494','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6029,'files','22495','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6030,'files','22496','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6031,'files','22497','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6032,'files','22498','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6033,'files','22499','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6034,'files','22500','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6035,'files','22501','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6036,'files','22502','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6037,'files','22503','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6038,'files','22504','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6039,'files','22505','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6040,'files','22506','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6041,'files','22507','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6042,'files','22508','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6043,'files','22509','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6044,'files','22510','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6045,'files','22511','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6046,'files','22512','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6047,'files','22513','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6048,'files','22514','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6049,'files','22515','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6050,'files','22516','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6051,'files','22517','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6052,'files','22518','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6053,'files','22519','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6054,'files','22520','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6055,'files','22521','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6056,'files','22522','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6057,'files','22523','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6058,'files','22524','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6059,'files','22525','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6060,'files','22526','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6061,'files','22528','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6062,'files','22530','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6063,'files','22531','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6064,'files','22532','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6065,'files','22533','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6066,'files','22534','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6067,'files','22535','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6068,'files','22536','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6069,'files','22537','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6070,'files','22538','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6071,'files','22539','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6072,'files','22540','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6073,'files','22541','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6074,'files','22542','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6075,'files','22543','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6076,'files','22544','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6077,'files','22545','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6078,'files','22546','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6079,'files','22547','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6080,'files','22548','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6081,'files','22549','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6082,'files','22550','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6083,'files','22551','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6084,'files','22552','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6085,'files','22553','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6086,'files','22554','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6087,'files','22555','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6088,'files','22556','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6089,'files','22557','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6090,'files','22558','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6091,'files','22559','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6092,'files','22560','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6093,'files','22561','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6094,'files','22562','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6095,'files','22563','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6096,'files','22564','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6097,'files','22565','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6098,'files','22566','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6099,'files','22567','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6100,'files','22568','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6101,'files','22569','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6102,'files','22570','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6103,'files','22571','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6104,'files','22572','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6105,'files','22573','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6106,'files','22574','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6107,'files','22575','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6108,'files','22576','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6109,'files','22577','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6110,'files','22578','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6111,'files','22579','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6112,'files','22580','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6113,'files','22581','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6114,'files','22582','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6115,'files','22583','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6116,'files','22584','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6117,'files','22585','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6118,'files','22586','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6119,'files','22587','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6120,'files','22588','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6121,'files','22589','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6122,'files','22590','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6123,'files','22591','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6124,'files','22592','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6125,'files','22593','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6126,'files','22594','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6127,'files','22595','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6128,'files','22596','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6129,'files','22597','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6130,'files','22598','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6131,'files','22599','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6132,'files','22600','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6133,'files','22601','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6134,'files','22602','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6135,'files','22603','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6136,'files','22604','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6137,'files','22605','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6138,'files','22606','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6139,'files','22607','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6140,'files','22608','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6141,'files','22609','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6142,'files','22610','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6143,'files','22611','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6144,'files','22612','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6145,'files','22613','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6146,'files','22614','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6147,'files','22615','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6148,'files','22616','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6149,'files','22617','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6150,'files','22618','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6151,'files','22619','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6152,'files','22620','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6153,'files','22621','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6154,'files','22622','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6155,'files','22623','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6156,'files','22624','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6157,'files','22625','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6158,'files','22626','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6159,'files','22627','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6160,'files','22629','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6161,'files','22630','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6162,'files','22631','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6163,'files','22632','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6164,'files','22633','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6165,'files','22634','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6166,'files','22635','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6167,'files','22636','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6168,'files','22637','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6169,'files','22638','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6170,'files','22639','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6171,'files','22640','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6172,'files','22641','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6173,'files','22642','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6174,'files','22643','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6175,'files','22644','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6176,'files','22645','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6177,'files','22646','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6178,'files','22647','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6179,'files','22648','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6180,'files','22649','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6181,'files','22650','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6182,'files','22651','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6183,'files','22652','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6184,'files','22653','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6185,'files','22654','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6186,'files','22655','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6187,'files','22656','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6188,'files','22657','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6189,'files','22658','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6190,'files','22659','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6191,'files','22660','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6192,'files','22661','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6193,'files','22662','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6194,'files','22663','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6195,'files','22664','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6196,'files','22665','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6197,'files','22666','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6198,'files','22667','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6199,'files','22668','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6200,'files','22669','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6201,'files','22670','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6202,'files','22671','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6203,'files','22672','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6204,'files','22673','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6205,'files','22674','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6206,'files','22675','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6207,'files','22676','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6208,'files','22677','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6209,'files','22678','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6210,'files','22679','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6211,'files','22680','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6212,'files','22681','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6213,'files','22682','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6214,'files','22683','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6215,'files','22684','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6216,'files','22685','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6217,'files','22686','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6218,'files','22687','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6219,'files','22688','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6220,'files','22689','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6221,'files','22690','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6222,'files','22691','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6223,'files','22692','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6224,'files','22693','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6225,'files','22694','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6226,'files','22695','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6227,'files','22696','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6228,'files','22697','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6229,'files','22698','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6230,'files','22699','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6231,'files','22700','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6232,'files','22701','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6233,'files','22702','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6234,'files','22703','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6235,'files','22704','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6236,'files','22705','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6237,'files','22706','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6238,'files','22707','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6239,'files','22708','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6240,'files','22709','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6241,'files','22710','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6242,'files','22711','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6243,'files','22712','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6244,'files','22713','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6245,'files','22714','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6246,'files','22715','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6247,'files','22716','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6248,'files','22717','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6249,'files','22718','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6250,'files','22719','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6251,'files','22720','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6252,'files','22721','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6253,'files','22722','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6254,'files','22723','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6255,'files','22724','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6256,'files','22725','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6257,'files','22726','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6258,'files','22727','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6259,'files','22728','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6260,'files','22729','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6261,'files','22730','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6262,'files','22731','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6263,'files','22732','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6264,'files','22733','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6265,'files','22734','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6266,'files','22735','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6267,'files','22736','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6268,'files','22737','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6269,'files','22738','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6270,'files','22739','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6271,'files','22740','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6272,'files','22741','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6273,'files','22742','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6274,'files','22743','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6275,'files','22744','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6276,'files','22745','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6277,'files','22746','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6278,'files','22747','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6279,'files','22748','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6280,'files','22749','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6281,'files','22750','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6282,'files','22751','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6283,'files','22752','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6284,'files','22753','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6285,'files','22754','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6286,'files','22755','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6287,'files','22756','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6288,'files','22757','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6289,'files','22758','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6290,'files','22759','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6291,'files','22760','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6292,'files','22761','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6293,'files','22762','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6294,'files','22763','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6295,'files','22764','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6296,'files','22765','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6297,'files','22766','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6298,'files','22767','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6299,'files','22768','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6300,'files','22769','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6301,'files','22770','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6302,'files','22771','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6303,'files','22772','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6304,'files','22773','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6305,'files','22774','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6306,'files','22775','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6307,'files','22776','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6308,'files','22777','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6309,'files','22778','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6310,'files','22779','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6311,'files','22780','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6312,'files','22781','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6313,'files','22782','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6314,'files','22783','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6315,'files','22784','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6316,'files','22785','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6317,'files','22786','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6318,'files','22787','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6319,'files','22788','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6320,'files','22789','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6321,'files','22790','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6322,'files','22791','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6323,'files','22792','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6324,'files','22793','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6325,'files','22794','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6326,'files','22795','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6327,'files','22796','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6328,'files','22797','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6329,'files','22798','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6330,'files','22799','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6331,'files','22800','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6332,'files','22801','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6333,'files','22802','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6334,'files','22803','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6335,'files','22804','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6336,'files','22805','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6337,'files','22806','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6338,'files','22807','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6339,'files','22808','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6340,'files','22809','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6341,'files','22810','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6342,'files','22811','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6343,'files','22812','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6344,'files','22813','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6345,'files','22814','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6346,'files','22815','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6347,'files','22816','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6348,'files','22817','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6349,'files','22818','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6350,'files','22819','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6351,'files','22820','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6352,'files','22821','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6353,'files','22822','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6354,'files','22823','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6355,'files','22824','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6356,'files','22825','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6357,'files','22826','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6358,'files','22827','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6359,'files','22828','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6360,'files','22829','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6361,'files','22830','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6362,'files','22831','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6363,'files','22832','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6364,'files','22833','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6365,'files','22834','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6366,'files','22835','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6367,'files','22836','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6368,'files','22837','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6369,'files','22838','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6370,'files','22839','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6371,'files','22840','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6372,'files','22841','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6373,'files','22842','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6374,'files','22843','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6375,'files','22844','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6376,'files','22845','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6377,'files','22846','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6378,'files','22847','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6379,'files','22848','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6380,'files','22849','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6381,'files','22850','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6382,'files','22851','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6383,'files','22852','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6384,'files','22853','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6385,'files','22854','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6386,'files','22855','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6387,'files','22856','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6388,'files','22857','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6389,'files','22858','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6390,'files','22859','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6391,'files','22860','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6392,'files','22861','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6393,'files','22862','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6394,'files','22863','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6395,'files','22864','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6396,'files','22865','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6397,'files','22866','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6398,'files','22867','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6399,'files','22868','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6400,'files','22869','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6401,'files','22870','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6402,'files','22871','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6403,'files','22872','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6404,'files','22873','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6405,'files','22874','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6406,'files','22875','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6407,'files','22876','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6408,'files','22877','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6409,'files','22878','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6410,'files','22879','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6411,'files','22880','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6412,'files','22881','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6413,'files','22882','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6414,'files','22883','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6415,'files','22884','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6416,'files','22885','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6417,'files','22886','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6418,'files','22887','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6419,'files','22888','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6420,'files','22889','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6421,'files','22890','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6422,'files','22891','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6423,'files','22892','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6424,'files','22893','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6425,'files','22894','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6426,'files','22895','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6427,'files','22896','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6428,'files','22897','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6429,'files','22898','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6430,'files','22899','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6431,'files','22900','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6432,'files','22901','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6433,'files','22902','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6434,'files','22903','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6435,'files','22904','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6436,'files','22905','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6437,'files','22906','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6438,'files','22907','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6439,'files','22908','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6440,'files','22909','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6441,'files','22910','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6442,'files','22911','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6443,'files','22912','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6444,'files','22913','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6445,'files','22914','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6446,'files','22915','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6447,'files','22916','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6448,'files','22917','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6449,'files','22918','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6450,'files','22919','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6451,'files','22920','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6452,'files','22921','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6453,'files','22922','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6454,'files','22923','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6455,'files','22924','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6456,'files','22925','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6457,'files','22926','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6458,'files','22927','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6459,'files','22928','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6460,'files','22929','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6461,'files','22930','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6462,'files','22931','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6463,'files','22932','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6464,'files','22933','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6465,'files','22934','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6466,'files','22935','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6467,'files','22936','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6468,'files','22937','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6469,'files','22938','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6470,'files','22939','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6471,'files','22940','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6472,'files','22941','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6473,'files','22942','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6474,'files','22943','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6475,'files','22944','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6476,'files','22945','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6477,'files','22946','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6478,'files','22947','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6479,'files','22948','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6480,'files','22949','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6481,'files','22950','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6482,'files','22951','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6483,'files','22952','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6484,'files','22953','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6485,'files','22954','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6486,'files','22955','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6487,'files','22956','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6488,'files','22957','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6489,'files','22958','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6490,'files','22959','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6491,'files','22960','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6492,'files','22961','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6493,'files','22962','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6494,'files','22963','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6495,'files','22964','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6496,'files','22965','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6497,'files','22966','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6498,'files','22967','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6499,'files','22968','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6500,'files','22969','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6501,'files','22970','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6502,'files','22971','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6503,'files','22972','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6504,'files','22973','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6505,'files','22974','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6506,'files','22975','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6507,'files','22976','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6508,'files','22977','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6509,'files','22978','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6510,'files','22979','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6511,'files','22980','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6512,'files','22981','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6513,'files','22982','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6514,'files','22983','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6515,'files','22984','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6516,'files','22985','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6517,'files','22986','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6518,'files','22987','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6519,'files','22988','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6520,'files','22989','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6521,'files','22990','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6522,'files','22991','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6523,'files','22992','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6524,'files','22993','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6525,'files','22994','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6526,'files','22995','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6527,'files','22996','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6528,'files','22997','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6529,'files','22998','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6530,'files','22999','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6531,'files','23000','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6532,'files','23001','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6533,'files','23002','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6534,'files','23003','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6535,'files','23004','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6536,'files','23005','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6537,'files','23006','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6538,'files','23007','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6539,'files','23008','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6540,'files','23009','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6541,'files','23010','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6542,'files','23011','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6543,'files','23012','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6544,'files','23013','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6545,'files','23014','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6546,'files','23015','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6547,'files','23016','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6548,'files','23017','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6549,'files','23018','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6550,'files','23019','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6551,'files','23020','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6552,'files','23021','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6553,'files','23022','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6554,'files','23023','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6555,'files','23024','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6556,'files','23025','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6557,'files','23026','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6558,'files','23027','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6559,'files','23028','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6560,'files','23029','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6561,'files','23030','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6562,'files','23031','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6563,'files','23032','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6564,'files','23033','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6565,'files','23034','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6566,'files','23035','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6567,'files','23036','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6568,'files','23037','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6569,'files','23038','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6570,'files','23039','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6571,'files','23040','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6572,'files','23041','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6573,'files','23042','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6574,'files','23043','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6575,'files','23044','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6576,'files','23045','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6577,'files','23046','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6578,'files','23047','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6579,'files','23048','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6580,'files','23049','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6581,'files','23050','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6582,'files','23051','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6583,'files','23052','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6584,'files','23053','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6585,'files','23054','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6586,'files','23055','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6587,'files','23056','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6588,'files','23057','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6589,'files','23058','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6590,'files','23059','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6591,'files','23060','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6592,'files','23061','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6593,'files','23062','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6594,'files','23063','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6595,'files','23064','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6596,'files','23065','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6597,'files','23066','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6598,'files','23067','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6599,'files','23068','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6600,'files','23069','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6601,'files','23070','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6602,'files','23071','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6603,'files','23072','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6604,'files','23073','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6605,'files','23074','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6606,'files','23076','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6607,'files','23077','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6608,'files','23078','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6609,'files','23079','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6610,'files','23080','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6611,'files','23081','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6612,'files','23082','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6613,'files','23083','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6614,'files','23084','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6615,'files','23085','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6616,'files','23086','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6617,'files','23087','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6618,'files','23088','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6619,'files','23089','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6620,'files','23090','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6621,'files','23091','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6622,'files','23092','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6623,'files','23093','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6624,'files','23094','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6625,'files','23095','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6626,'files','23096','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6627,'files','23097','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6628,'files','23098','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6629,'files','23099','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6630,'files','23100','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6631,'files','23101','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6632,'files','23102','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6633,'files','23103','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6634,'files','23104','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6635,'files','23105','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6636,'files','23106','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6637,'files','23107','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6638,'files','23108','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6639,'files','23109','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6640,'files','23110','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6641,'files','23111','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6642,'files','23112','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6643,'files','23113','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6644,'files','23114','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6645,'files','23115','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6646,'files','23116','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6647,'files','23117','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6648,'files','23118','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6649,'files','23119','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6650,'files','23120','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6651,'files','23121','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6652,'files','23122','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6653,'files','23123','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6654,'files','23124','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6655,'files','23125','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6656,'files','23126','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6657,'files','23127','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6658,'files','23128','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6659,'files','23129','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6660,'files','23130','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6661,'files','23131','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6662,'files','23132','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6663,'files','23133','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6664,'files','23134','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6665,'files','23135','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6666,'files','23136','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6667,'files','23137','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6668,'files','23138','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6669,'files','23139','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6670,'files','23141','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6671,'files','23142','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6672,'files','23144','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6673,'files','23145','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6674,'files','23147','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6675,'files','23148','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6676,'files','23150','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6677,'files','23152','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6678,'files','23154','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6679,'files','23155','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6680,'files','23157','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6681,'files','23158','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6682,'files','23160','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6683,'files','23161','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6684,'files','23162','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6685,'files','23163','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6686,'files','23164','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6687,'files','23165','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6688,'files','23166','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6689,'files','23167','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6690,'files','23168','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6691,'files','23169','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6692,'files','23170','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6693,'files','23171','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6694,'files','23172','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6695,'files','23173','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6696,'files','23174','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6697,'files','23175','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6698,'files','23176','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6699,'files','23177','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6700,'files','23178','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6701,'files','23180','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6702,'files','23181','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6703,'files','23182','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6704,'files','23183','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6705,'files','23184','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6706,'files','23185','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6707,'files','23186','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6708,'files','23187','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6709,'files','23188','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6710,'files','23189','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6711,'files','23190','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6712,'files','23191','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6713,'files','23192','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6714,'files','23193','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6715,'files','23194','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6716,'files','23195','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6717,'files','23196','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6718,'files','23197','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6719,'files','23198','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6720,'files','23199','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6721,'files','23200','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6722,'files','23201','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6723,'files','23202','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6724,'files','23203','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6725,'files','23204','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6726,'files','23205','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6727,'files','23206','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6728,'files','23207','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6729,'files','23209','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6730,'files','23212','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6731,'files','23213','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6732,'files','23214','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6733,'files','23215','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6734,'files','23216','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6735,'files','23217','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6736,'files','23218','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6737,'files','23219','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6738,'files','23220','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6739,'files','23221','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6740,'files','23222','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6741,'files','23223','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6742,'files','23224','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6743,'files','23225','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6744,'files','23226','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6745,'files','23227','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6746,'files','23228','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6747,'files','23229','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6748,'files','23230','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6749,'files','23231','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6750,'files','23232','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6751,'files','23233','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6752,'files','23234','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6753,'files','23235','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6754,'files','23236','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6755,'files','23237','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6756,'files','23238','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6757,'files','23239','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6758,'files','23240','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6759,'files','23241','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6760,'files','23242','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6761,'files','23243','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6762,'files','23244','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6763,'files','23245','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6764,'files','23246','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6765,'files','23247','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6766,'files','23248','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6767,'files','23249','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6768,'files','23250','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6769,'files','23251','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6770,'files','23252','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6771,'files','23253','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6772,'files','23254','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6773,'files','23255','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6774,'files','23256','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6775,'files','23257','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6776,'files','23258','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6777,'files','23259','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6778,'files','23260','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6779,'files','23261','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6780,'files','23262','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6781,'files','23263','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6782,'files','23264','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6783,'files','23265','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6784,'files','23266','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6785,'files','23267','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6786,'files','23268','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6787,'files','23269','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6788,'files','23270','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6789,'files','23271','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6790,'files','23272','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6791,'files','23273','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6792,'files','23274','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6793,'files','23275','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6794,'files','23276','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6795,'files','23277','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6796,'files','23278','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6797,'files','23279','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6798,'files','23280','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6799,'files','23281','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6800,'files','23282','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6801,'files','23283','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6802,'files','23284','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6803,'files','23285','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6804,'files','23286','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6805,'files','23287','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6806,'files','23288','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6807,'files','23289','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6808,'files','23290','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6809,'files','23291','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6810,'files','23292','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6811,'files','23293','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6812,'files','23294','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6813,'files','23295','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6814,'files','23296','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6815,'files','23297','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6816,'files','23298','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6817,'files','23299','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6818,'files','23300','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6819,'files','23301','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6820,'files','23302','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6821,'files','23303','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6822,'files','23304','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6823,'files','23305','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6824,'files','23306','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6825,'files','23307','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6826,'files','23308','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6827,'files','23309','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6828,'files','23310','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6829,'files','23311','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6830,'files','23312','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6831,'files','23313','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6832,'files','23314','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6833,'files','23315','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6834,'files','23316','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6835,'files','23317','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6836,'files','23318','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6837,'files','23319','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6838,'files','23320','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6839,'files','23321','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6840,'files','23322','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6841,'files','23323','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6842,'files','23324','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6843,'files','23325','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6844,'files','23326','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6845,'files','23327','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6846,'files','23328','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6847,'files','23329','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6848,'files','23330','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6849,'files','23331','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6850,'files','23332','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6851,'files','23333','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6852,'files','23334','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6853,'files','23335','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6854,'files','23336','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6855,'files','23337','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6856,'files','23338','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6857,'files','23339','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6858,'files','23340','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6859,'files','23341','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6860,'files','23342','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6861,'files','23343','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6862,'files','23344','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6863,'files','23345','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6864,'files','23346','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6865,'files','23347','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6866,'files','23348','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6867,'files','23349','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6868,'files','23350','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6869,'files','23351','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6870,'files','23352','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6871,'files','23353','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6872,'files','23354','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6873,'files','23355','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6874,'files','23356','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6875,'files','23357','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6876,'files','23358','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6877,'files','23359','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6878,'files','23360','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6879,'files','23361','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6880,'files','23362','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6881,'files','23363','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6882,'files','23364','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6883,'files','23365','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6884,'files','23366','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6885,'files','23367','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6886,'files','23368','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6887,'files','23369','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6888,'files','23370','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6889,'files','23371','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6890,'files','23372','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6891,'files','23373','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6892,'files','23374','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6893,'files','23375','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6894,'files','23376','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6895,'files','23377','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6896,'files','23378','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6897,'files','23379','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6898,'files','23380','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6899,'files','23381','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6900,'files','23382','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6901,'files','23383','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6902,'files','23384','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6903,'files','23386','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6904,'files','23387','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6905,'files','23388','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6906,'files','23390','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6907,'files','23391','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6908,'files','23392','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6909,'files','23393','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6910,'files','23394','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6911,'files','23395','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6912,'files','23396','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6913,'files','23397','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6914,'files','23398','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6915,'files','23399','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6916,'files','23400','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6917,'files','23401','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6918,'files','23402','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6919,'files','23403','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6920,'files','23404','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6921,'files','23405','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6922,'files','23406','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6923,'files','23407','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6924,'files','23409','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6925,'files','23410','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6926,'files','23411','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6927,'files','23412','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6928,'files','23413','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6929,'files','23414','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6930,'files','23415','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6931,'files','23416','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6932,'files','23417','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6933,'files','23418','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6934,'files','23419','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6935,'files','23420','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6936,'files','23421','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6937,'files','23422','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6938,'files','23423','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6939,'files','23424','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6940,'files','23425','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6941,'files','23426','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6942,'files','23427','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6943,'files','23428','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6944,'files','23429','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6945,'files','23430','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6946,'files','23431','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6947,'files','23432','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6948,'files','23433','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6949,'files','23434','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6950,'files','23435','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6951,'files','23436','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6952,'files','23437','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6953,'files','23438','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6954,'files','23439','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6955,'files','23440','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6956,'files','23441','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6957,'files','23442','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6958,'files','23443','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6959,'files','23444','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6960,'files','23445','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6961,'files','23446','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6962,'files','23447','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6963,'files','23448','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6964,'files','23449','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6965,'files','23450','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6966,'files','23451','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6967,'files','23452','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6968,'files','23453','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6969,'files','23454','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6970,'files','23455','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6971,'files','23456','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6972,'files','23457','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6973,'files','23458','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6974,'files','23459','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6975,'files','23460','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6976,'files','23461','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6977,'files','23462','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6978,'files','23463','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6979,'files','23464','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6980,'files','23465','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6981,'files','23466','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6982,'files','23467','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6983,'files','23468','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6984,'files','23469','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6985,'files','23470','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6986,'files','23471','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6987,'files','23472','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6988,'files','23474','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6989,'files','23475','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6990,'files','23476','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6991,'files','23477','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6992,'files','23478','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6993,'files','23479','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6994,'files','23480','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6995,'files','23481','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6996,'files','23482','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6997,'files','23483','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6998,'files','23484','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(6999,'files','23485','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7000,'files','23486','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7001,'files','23487','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7002,'files','23488','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7003,'files','23489','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7004,'files','23490','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7005,'files','23491','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7006,'files','23492','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7007,'files','23493','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7008,'files','23494','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7009,'files','23495','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7010,'files','23496','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7011,'files','23497','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7012,'files','23498','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7013,'files','23499','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7014,'files','23500','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7015,'files','23501','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7016,'files','23502','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7017,'files','23503','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7018,'files','23504','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7019,'files','23505','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7020,'files','23506','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7021,'files','23507','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7022,'files','23508','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7023,'files','23509','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7024,'files','23510','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7025,'files','23511','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7026,'files','23512','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7027,'files','23513','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7028,'files','23514','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7029,'files','23515','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7030,'files','23516','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7031,'files','23517','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7032,'files','23518','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7033,'files','23519','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7034,'files','23520','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7035,'files','23521','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7036,'files','23522','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7037,'files','23523','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7038,'files','23524','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7039,'files','23526','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7040,'files','23527','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7041,'files','23528','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7042,'files','23529','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7043,'files','23530','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7044,'files','23531','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7045,'files','23532','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7046,'files','23533','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7047,'files','23534','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7048,'files','23535','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7049,'files','23536','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7050,'files','23537','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7051,'files','23538','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7052,'files','23539','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7053,'files','23540','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7054,'files','23541','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7055,'files','23542','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7056,'files','23543','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7057,'files','23544','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7058,'files','23545','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7059,'files','23546','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7060,'files','23547','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7061,'files','23548','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7062,'files','23549','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7063,'files','23550','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7064,'files','23551','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7065,'files','23552','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7066,'files','23553','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7067,'files','23554','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7068,'files','23555','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7069,'files','23556','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7070,'files','23557','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7071,'files','23558','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7072,'files','23559','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7073,'files','23560','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7074,'files','23561','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7075,'files','23562','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7076,'files','23563','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7077,'files','23564','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7078,'files','23565','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7079,'files','23566','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7080,'files','23567','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7081,'files','23568','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7082,'files','23569','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7083,'files','23570','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7084,'files','23571','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7085,'files','23572','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7086,'files','23573','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7087,'files','23574','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7088,'files','23575','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7089,'files','23576','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7090,'files','23577','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7091,'files','23578','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7092,'files','23579','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7093,'files','23580','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7094,'files','23581','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7095,'files','23583','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7096,'files','23584','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7097,'files','23586','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7098,'files','23587','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7099,'files','23588','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7100,'files','23589','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7101,'files','23591','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7102,'files','23592','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7103,'files','23593','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7104,'files','23594','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7105,'files','23595','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7106,'files','23596','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7107,'files','23597','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7108,'files','23598','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7109,'files','23599','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7110,'files','23600','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7111,'files','23601','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7112,'files','23602','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7113,'files','23603','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7114,'files','23604','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7115,'files','23605','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7116,'files','23606','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7117,'files','23607','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7118,'files','23608','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7119,'files','23609','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7120,'files','23610','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7121,'files','23611','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7122,'files','23612','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7123,'files','23614','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7124,'files','23615','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7125,'files','23616','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7126,'files','23617','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7127,'files','23618','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7128,'files','23619','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7129,'files','23620','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7130,'files','23621','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7131,'files','23622','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7132,'files','23623','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7133,'files','23624','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7134,'files','23625','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7135,'files','23626','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7136,'files','23627','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7137,'files','23628','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7138,'files','23629','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7139,'files','23630','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7140,'files','23631','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7141,'files','23632','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7142,'files','23633','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7143,'files','23634','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7144,'files','23635','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7145,'files','23636','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7146,'files','23637','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7147,'files','23638','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7148,'files','23639','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7149,'files','23640','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7150,'files','23641','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7151,'files','23642','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7152,'files','23643','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7153,'files','23644','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7154,'files','23645','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7155,'files','23646','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7156,'files','23647','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7157,'files','23648','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7158,'files','23649','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7159,'files','23650','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7160,'files','23651','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7161,'files','23652','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7162,'files','23653','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7163,'files','23654','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7164,'files','23655','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7165,'files','23656','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7166,'files','23657','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7167,'files','23658','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7168,'files','23659','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7169,'files','23660','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7170,'files','23661','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7171,'files','23662','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7172,'files','23663','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7173,'files','23664','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7174,'files','23665','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7175,'files','23666','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7176,'files','23667','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7177,'files','23668','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7178,'files','23669','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7179,'files','23670','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7180,'files','23671','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7181,'files','23672','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7182,'files','23673','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7183,'files','23674','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7184,'files','23675','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7185,'files','23676','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7186,'files','23677','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7187,'files','23678','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7188,'files','23679','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7189,'files','23680','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7190,'files','23681','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7191,'files','23682','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7192,'files','23683','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7193,'files','23684','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7194,'files','23685','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7195,'files','23686','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7196,'files','23687','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7197,'files','23688','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7198,'files','23689','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7199,'files','23690','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7200,'files','23691','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7201,'files','23692','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7202,'files','23693','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7203,'files','23694','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7204,'files','23695','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7205,'files','23696','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7206,'files','23697','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7207,'files','23698','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7208,'files','23699','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7209,'files','23700','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7210,'files','23701','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7211,'files','23702','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7212,'files','23703','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7213,'files','23704','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7214,'files','23705','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7215,'files','23706','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7216,'files','23707','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7217,'files','23708','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7218,'files','23709','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7219,'files','23710','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7220,'files','23711','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7221,'files','23712','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7222,'files','23713','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7223,'files','23714','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7224,'files','23715','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7225,'files','23716','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7226,'files','23717','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7227,'files','23718','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7228,'files','23719','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7229,'files','23720','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7230,'files','23721','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7231,'files','23722','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7232,'files','23723','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7233,'files','23724','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7234,'files','23725','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7235,'files','23726','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7236,'files','23727','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7237,'files','23728','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7238,'files','23729','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7239,'files','23730','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7240,'files','23731','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7241,'files','23732','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7242,'files','23733','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7243,'files','23734','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7244,'files','23735','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7245,'files','23736','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7246,'files','23737','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7247,'files','23738','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7248,'files','23739','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7249,'files','23740','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7250,'files','23741','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7251,'files','23742','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7252,'files','23743','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7253,'files','23744','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7254,'files','23745','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7255,'files','23746','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7256,'files','23747','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7257,'files','23748','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7258,'files','23749','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7259,'files','23750','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7260,'files','23751','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7261,'files','23752','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7262,'files','23753','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7263,'files','23754','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7264,'files','23755','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7265,'files','23756','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7266,'files','23757','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7267,'files','23758','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7268,'files','23759','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7269,'files','23760','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7270,'files','23761','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7271,'files','23762','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7272,'files','23763','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7273,'files','23764','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7274,'files','23765','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7275,'files','23766','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7276,'files','23767','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7277,'files','23768','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7278,'files','23769','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7279,'files','23770','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7280,'files','23771','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7281,'files','23772','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7282,'files','23773','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7283,'files','23774','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7284,'files','23775','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7285,'files','23776','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7286,'files','23777','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7287,'files','23778','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7288,'files','23779','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7289,'files','23780','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7290,'files','23781','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7291,'files','23782','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7292,'files','23783','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7293,'files','23785','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7294,'files','23787','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7295,'files','23788','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7296,'files','23789','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7297,'files','23790','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7298,'files','23791','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7299,'files','23792','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7300,'files','23793','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7301,'files','23794','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7302,'files','23795','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7303,'files','23796','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7304,'files','23797','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7305,'files','23798','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7306,'files','23799','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7307,'files','23800','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7308,'files','23801','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7309,'files','23802','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7310,'files','23803','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7311,'files','23804','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7312,'files','23805','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7313,'files','23806','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7314,'files','23807','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7315,'files','23808','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7316,'files','23809','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7317,'files','23811','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7318,'files','23813','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7319,'files','23815','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7320,'files','23817','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7321,'files','23818','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7322,'files','23819','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7323,'files','23820','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7324,'files','23821','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7325,'files','23822','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7326,'files','23823','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7327,'files','23824','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7328,'files','23825','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7329,'files','23826','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7330,'files','23827','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7331,'files','23828','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7332,'files','23829','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7333,'files','23830','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7334,'files','23831','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7335,'files','23832','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7336,'files','23833','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7337,'files','23834','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7338,'files','23835','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7339,'files','23836','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7340,'files','23837','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7341,'files','23838','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7342,'files','23839','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7343,'files','23840','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7344,'files','23841','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7345,'files','23842','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7346,'files','23843','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7347,'files','23844','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7348,'files','23845','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7349,'files','23846','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7350,'files','23847','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7351,'files','23848','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7352,'files','23849','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7353,'files','23850','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7354,'files','23851','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7355,'files','23852','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7356,'files','23853','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7357,'files','23854','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7358,'files','23855','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7359,'files','23856','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7360,'files','23857','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7361,'files','23858','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7362,'files','23859','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7363,'files','23860','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7364,'files','23861','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7365,'files','23862','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7366,'files','23863','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7367,'files','23864','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7368,'files','23865','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7369,'files','23866','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7370,'files','23867','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7371,'files','23868','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7372,'files','23869','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7373,'files','23870','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7374,'files','23871','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7375,'files','23872','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7376,'files','23873','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7377,'files','23874','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7378,'files','23875','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7379,'files','23876','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7380,'files','23877','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7381,'files','23878','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7382,'files','23879','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7383,'files','23880','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7384,'files','23881','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7385,'files','23882','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7386,'files','23883','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7387,'files','23884','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7388,'files','23885','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7389,'files','23886','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7390,'files','23887','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7391,'files','23888','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7392,'files','23889','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7393,'files','23890','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7394,'files','23891','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7395,'files','23892','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7396,'files','23893','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7397,'files','23894','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7398,'files','23895','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7399,'files','23896','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7400,'files','23897','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7401,'files','23898','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7402,'files','23899','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7403,'files','23900','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7404,'files','23901','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7405,'files','23902','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7406,'files','23903','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7407,'files','23904','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7408,'files','23905','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7409,'files','23906','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7410,'files','23907','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7411,'files','23908','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7412,'files','23909','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7413,'files','23910','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7414,'files','23911','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7415,'files','23912','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7416,'files','23913','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7417,'files','23914','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7418,'files','23915','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7419,'files','23917','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7420,'files','23921','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7421,'files','23922','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7422,'files','23923','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7423,'files','23924','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7424,'files','23925','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7425,'files','23926','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7426,'files','23927','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7427,'files','23928','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7428,'files','23929','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7429,'files','23930','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7430,'files','23931','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7431,'files','23932','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7432,'files','23933','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7433,'files','23934','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7434,'files','23935','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7435,'files','23936','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7436,'files','23937','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7437,'files','23938','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7438,'files','23939','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7439,'files','23940','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7440,'files','23941','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7441,'files','23942','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7442,'files','23943','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7443,'files','23944','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7444,'files','23945','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7445,'files','23946','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7446,'files','23947','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7447,'files','23948','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7448,'files','23949','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7449,'files','23950','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7450,'files','23951','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7451,'files','23952','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7452,'files','23953','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7453,'files','23954','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7454,'files','23955','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7455,'files','23956','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7456,'files','23957','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7457,'files','23958','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7458,'files','23959','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7459,'files','23960','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7460,'files','23961','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7461,'files','23962','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7462,'files','23963','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7463,'files','23964','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7464,'files','23965','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7465,'files','23966','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7466,'files','23967','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7467,'files','23968','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7468,'files','23969','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7469,'files','23970','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7470,'files','23971','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7471,'files','23972','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7472,'files','23973','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7473,'files','23974','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7474,'files','23975','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7475,'files','23976','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7476,'files','23977','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7477,'files','23978','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7478,'files','23979','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7479,'files','23980','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7480,'files','23981','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7481,'files','23982','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7482,'files','23983','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7483,'files','23984','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7484,'files','23985','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7485,'files','23986','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7486,'files','23987','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7487,'files','23988','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7488,'files','23989','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7489,'files','23990','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7490,'files','23991','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7491,'files','23992','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7492,'files','23993','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7493,'files','23994','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7494,'files','23995','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7495,'files','23996','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7496,'files','23997','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7497,'files','23998','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7498,'files','23999','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7499,'files','24000','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7500,'files','24001','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7501,'files','24002','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7502,'files','24003','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7503,'files','24004','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7504,'files','24005','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7505,'files','24006','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7506,'files','24007','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7507,'files','24008','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7508,'files','24010','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7509,'files','24011','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7510,'files','24012','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7511,'files','24014','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7512,'files','24015','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7513,'files','24016','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7514,'files','24017','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7515,'files','24018','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7516,'files','24019','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7517,'files','24020','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7518,'files','24021','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7519,'files','24022','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7520,'files','24023','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7521,'files','24024','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7522,'files','24025','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7523,'files','24026','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7524,'files','24027','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7525,'files','24028','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7526,'files','24029','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7527,'files','24030','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7528,'files','24031','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7529,'files','24032','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7530,'files','24033','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7531,'files','24034','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7532,'files','24035','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7533,'files','24036','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7534,'files','24037','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7535,'files','24038','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7536,'files','24039','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7537,'files','24040','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7538,'files','24041','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7539,'files','24042','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7540,'files','24043','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7541,'files','24044','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7542,'files','24045','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7543,'files','24046','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7544,'files','24047','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7545,'files','24048','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7546,'files','24049','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7547,'files','24050','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7548,'files','24051','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7549,'files','24052','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7550,'files','24053','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7551,'files','24054','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7552,'files','24055','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7553,'files','24056','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7554,'files','24057','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7555,'files','24058','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7556,'files','24060','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7557,'files','24061','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7558,'files','24062','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7559,'files','24063','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7560,'files','24065','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7561,'files','24066','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7562,'files','24067','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7563,'files','24068','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7564,'files','24069','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7565,'files','24070','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7566,'files','24071','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7567,'files','24072','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7568,'files','24073','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7569,'files','24074','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7570,'files','24075','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7571,'files','24076','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7572,'files','24077','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7573,'files','24078','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7574,'files','24079','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7575,'files','24080','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7576,'files','24081','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7577,'files','24082','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7578,'files','24083','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7579,'files','24084','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7580,'files','24085','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7581,'files','24086','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7582,'files','24087','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7583,'files','24088','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7584,'files','24089','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7585,'files','24090','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7586,'files','24091','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7587,'files','24092','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7588,'files','24093','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7589,'files','24094','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7590,'files','24095','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7591,'files','24096','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7592,'files','24097','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7593,'files','24098','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7594,'files','24099','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7595,'files','24100','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7596,'files','24101','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7597,'files','24102','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7598,'files','24103','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7599,'files','24104','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7600,'files','24105','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7601,'files','24106','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7602,'files','24107','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7603,'files','24108','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7604,'files','24109','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7605,'files','24110','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7606,'files','24111','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7607,'files','24112','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7608,'files','24113','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7609,'files','24114','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7610,'files','24115','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7611,'files','24116','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7612,'files','24117','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7613,'files','24118','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7614,'files','24119','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7615,'files','24120','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7616,'files','24121','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7617,'files','24122','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7618,'files','24123','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7619,'files','24124','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7620,'files','24125','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7621,'files','24126','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7622,'files','24127','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7623,'files','24128','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7624,'files','24129','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7625,'files','24130','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7626,'files','24131','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7627,'files','24132','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7628,'files','24133','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7629,'files','24134','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7630,'files','24135','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7631,'files','24136','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7632,'files','24137','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7633,'files','24138','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7634,'files','24139','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7635,'files','24140','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7636,'files','24141','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7637,'files','24142','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7638,'files','24143','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7639,'files','24144','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7640,'files','24145','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7641,'files','24146','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7642,'files','24147','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7643,'files','24148','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7644,'files','24149','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7645,'files','24150','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7646,'files','24151','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7647,'files','24152','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7648,'files','24153','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7649,'files','24154','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7650,'files','24155','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7651,'files','24156','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7652,'files','24157','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7653,'files','24158','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7654,'files','24159','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7655,'files','24160','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7656,'files','24161','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7657,'files','24162','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7658,'files','24163','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7659,'files','24164','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7660,'files','24165','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7661,'files','24166','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7662,'files','24167','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7663,'files','24168','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7664,'files','24169','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7665,'files','24170','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7666,'files','24171','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7667,'files','24172','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7668,'files','24173','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7669,'files','24174','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7670,'files','24175','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7671,'files','24176','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7672,'files','24177','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7673,'files','24178','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7674,'files','24179','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7675,'files','24180','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7676,'files','24181','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7677,'files','24182','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7678,'files','24183','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7679,'files','24184','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7680,'files','24185','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7681,'files','24186','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7682,'files','24187','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7683,'files','24188','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7684,'files','24189','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7685,'files','24190','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7686,'files','24191','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7687,'files','24192','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7688,'files','24193','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7689,'files','24194','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7690,'files','24195','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7691,'files','24196','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7692,'files','24197','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7693,'files','24198','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7694,'files','24200','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7695,'files','24201','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7696,'files','24202','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7697,'files','24203','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7698,'files','24204','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7699,'files','24205','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7700,'files','24206','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7701,'files','24207','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7702,'files','24208','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7703,'files','24209','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7704,'files','24210','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7705,'files','24211','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7706,'files','24212','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7707,'files','24214','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7708,'files','24215','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7709,'files','24216','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7710,'files','24217','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7711,'files','24218','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7712,'files','24219','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7713,'files','24220','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7714,'files','24221','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7715,'files','24222','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7716,'files','24223','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7717,'files','24224','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7718,'files','24225','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7719,'files','24226','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7720,'files','24227','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7721,'files','24228','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7722,'files','24229','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7723,'files','24230','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7724,'files','24231','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7725,'files','24232','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7726,'files','24233','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7727,'files','24234','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7728,'files','24235','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7729,'files','24236','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7730,'files','24237','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7731,'files','24238','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7732,'files','24239','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7733,'files','24240','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7734,'files','24241','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7735,'files','24242','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7736,'files','24243','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7737,'files','24252','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7738,'files','24253','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7739,'files','24254','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7740,'files','24255','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7741,'files','24256','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7742,'files','24257','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7743,'files','24258','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7744,'files','24259','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7745,'files','24260','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7746,'files','24261','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7747,'files','24262','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7748,'files','24263','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7749,'files','24264','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7750,'files','24265','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7751,'files','24266','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7752,'files','24267','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7753,'files','24268','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7754,'files','24269','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7755,'files','24270','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7756,'files','24271','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7757,'files','24272','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7758,'files','24273','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7759,'files','24274','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7760,'files','24275','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7761,'files','24276','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7762,'files','24277','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7763,'files','24278','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7764,'files','24279','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7765,'files','24280','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7766,'files','24281','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7767,'files','24282','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7768,'files','24283','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7769,'files','24284','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7770,'files','24285','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7771,'files','24286','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7772,'files','24287','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7773,'files','24288','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7774,'files','24289','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7775,'files','24290','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7776,'files','24291','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7777,'files','24292','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7778,'files','24293','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7779,'files','24294','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7780,'files','24295','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7781,'files','24296','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7782,'files','24297','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7783,'files','24298','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7784,'files','24299','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7785,'files','24300','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7786,'files','24301','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7787,'files','24302','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7788,'files','24303','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7789,'files','24304','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7790,'files','24305','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7791,'files','24306','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7792,'files','24307','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7793,'files','24308','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7794,'files','24309','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7795,'files','24310','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7796,'files','24311','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7797,'files','24312','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7798,'files','24313','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7799,'files','24314','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7800,'files','24315','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7801,'files','24316','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7802,'files','24317','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7803,'files','24318','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7804,'files','24319','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7805,'files','24320','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7806,'files','24321','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7807,'files','24322','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7808,'files','24323','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7809,'files','24324','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7810,'files','24325','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7811,'files','24326','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7812,'files','24327','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7813,'files','24328','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7814,'files','24329','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7815,'files','24330','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7816,'files','24331','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7817,'files','24332','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7818,'files','24334','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7819,'files','24335','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7820,'files','24336','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7821,'files','24337','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7822,'files','24338','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7823,'files','24339','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7824,'files','24340','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7825,'files','24341','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7826,'files','24342','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7827,'files','24343','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7828,'files','24344','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7829,'files','24345','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7830,'files','24346','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7831,'files','24347','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7832,'files','24348','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7833,'files','24349','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7834,'files','24350','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7835,'files','24351','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7836,'files','24352','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7837,'files','24353','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7838,'files','24354','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7839,'files','24355','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7840,'files','24356','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7841,'files','24357','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7842,'files','24358','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7843,'files','24359','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7844,'files','24360','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7845,'files','24361','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7846,'files','24362','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7847,'files','24363','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7848,'files','24364','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7849,'files','24365','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7850,'files','24366','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7851,'files','24367','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7852,'files','24368','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7853,'files','24369','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7854,'files','24370','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7855,'files','24371','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7856,'files','24372','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7857,'files','24373','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7858,'files','24374','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7859,'files','24375','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7860,'files','24376','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7861,'files','24377','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7862,'files','24378','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7863,'files','24379','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7864,'files','24380','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7865,'files','24381','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7866,'files','24382','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7867,'files','24383','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7868,'files','24384','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7869,'files','24385','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7870,'files','24386','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7871,'files','24387','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7872,'files','24388','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7873,'files','24389','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7874,'files','24390','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7875,'files','24391','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7876,'files','24392','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7877,'files','24393','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7878,'files','24394','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7879,'files','24395','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7880,'files','24396','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7881,'files','24397','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7882,'files','24398','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7883,'files','24399','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7884,'files','24400','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7885,'files','24401','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7886,'files','24402','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7887,'files','24403','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7888,'files','24404','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7889,'files','24405','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7890,'files','24406','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7891,'files','24407','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7892,'files','24408','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7893,'files','24409','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7894,'files','24410','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7895,'files','24411','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7896,'files','24412','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7897,'files','24413','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7898,'files','24414','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7899,'files','24415','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7900,'files','24416','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7901,'files','24417','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7902,'files','24418','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7903,'files','24419','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7904,'files','24420','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7905,'files','24421','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7906,'files','24422','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7907,'files','24423','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7908,'files','24424','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7909,'files','24425','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7910,'files','24426','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7911,'files','24427','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7912,'files','24428','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7913,'files','24429','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7914,'files','24430','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7915,'files','24431','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7916,'files','24432','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7917,'files','24433','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7918,'files','24434','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7919,'files','24435','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7920,'files','24436','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7921,'files','24437','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7922,'files','24438','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7923,'files','24439','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7924,'files','24440','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7925,'files','24441','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7926,'files','24442','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7927,'files','24443','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7928,'files','24444','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7929,'files','24445','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7930,'files','24446','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7931,'files','24447','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7932,'files','24448','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7933,'files','24449','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7934,'files','24450','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7935,'files','24451','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7936,'files','24452','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7937,'files','24453','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7938,'files','24454','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7939,'files','24455','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7940,'files','24456','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7941,'files','24457','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7942,'files','24458','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7943,'files','24459','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7944,'files','24460','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7945,'files','24461','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7946,'files','24462','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7947,'files','24463','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7948,'files','24464','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7949,'files','24465','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7950,'files','24466','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7951,'files','24467','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7952,'files','24468','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7953,'files','24469','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7954,'files','24470','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7955,'files','24471','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7956,'files','24472','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7957,'files','24475','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7958,'files','24476','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7959,'files','24477','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7960,'files','24478','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7961,'files','24479','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7962,'files','24480','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7963,'files','24481','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7964,'files','24482','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7965,'files','24483','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7966,'files','24484','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7967,'files','24485','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7968,'files','24486','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7969,'files','24487','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7970,'files','24488','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7971,'files','24489','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7972,'files','24490','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7973,'files','24491','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7974,'files','24492','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7975,'files','24493','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7976,'files','24494','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7977,'files','24495','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7978,'files','24496','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7979,'files','24497','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7980,'files','24498','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7981,'files','24499','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7982,'files','24500','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7983,'files','24501','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7984,'files','24502','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7985,'files','24503','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7986,'files','24504','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7987,'files','24505','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7988,'files','24506','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7989,'files','24507','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7990,'files','24508','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7991,'files','24510','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7992,'files','24511','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7993,'files','24512','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7994,'files','24513','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7995,'files','24514','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7996,'files','24516','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7997,'files','24517','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7998,'files','24518','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(7999,'files','24519','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8000,'files','24520','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8001,'files','24521','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8002,'files','24522','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8003,'files','24523','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8004,'files','24524','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8005,'files','24525','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8006,'files','24526','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8007,'files','24527','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8008,'files','24528','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8009,'files','24529','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8010,'files','24530','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8011,'files','24531','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8012,'files','24532','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8013,'files','24533','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8014,'files','24534','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8015,'files','24535','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8016,'files','24536','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8017,'files','24537','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8018,'files','24538','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8019,'files','24539','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8020,'files','24540','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8021,'files','24541','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8022,'files','24542','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8023,'files','24543','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8024,'files','24544','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8025,'files','24545','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8026,'files','24546','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8027,'files','24547','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8028,'files','24548','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8029,'files','24549','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8030,'files','24550','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8031,'files','24551','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8032,'files','24552','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8033,'files','24553','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8034,'files','24554','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8035,'files','24555','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8036,'files','24556','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8037,'files','24557','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8038,'files','24558','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8039,'files','24559','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8040,'files','24560','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8041,'files','24561','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8042,'files','24562','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8043,'files','24563','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8044,'files','24564','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8045,'files','24565','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8046,'files','24566','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8047,'files','24567','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8048,'files','24568','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8049,'files','24569','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8050,'files','24570','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8051,'files','24571','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8052,'files','24572','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8053,'files','24573','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8054,'files','24574','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8055,'files','24575','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8056,'files','24576','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8057,'files','24577','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8058,'files','24578','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8059,'files','24579','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8060,'files','24580','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8061,'files','24581','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8062,'files','24582','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8063,'files','24583','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8064,'files','24584','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8065,'files','24585','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8066,'files','24586','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8067,'files','24587','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8068,'files','24588','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8069,'files','24589','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8070,'files','24590','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8071,'files','24591','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8072,'files','24592','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8073,'files','24593','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8074,'files','24594','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8075,'files','24595','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8076,'files','24596','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8077,'files','24597','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8078,'files','24598','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8079,'files','24599','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8080,'files','24600','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8081,'files','24601','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8082,'files','24603','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8083,'files','24605','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8084,'files','24606','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8085,'files','24607','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8086,'files','24608','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8087,'files','24609','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8088,'files','24610','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8089,'files','24611','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8090,'files','24612','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8091,'files','24613','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8092,'files','24614','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8093,'files','24615','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8094,'files','24616','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8095,'files','24617','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8096,'files','24618','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8097,'files','24619','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8098,'files','24620','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8099,'files','24621','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8100,'files','24622','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8101,'files','24623','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8102,'files','24624','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8103,'files','24625','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8104,'files','24626','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8105,'files','24627','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8106,'files','24628','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8107,'files','24629','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8108,'files','24630','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8109,'files','24631','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8110,'files','24632','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8111,'files','24633','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8112,'files','24634','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8113,'files','24635','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8114,'files','24636','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8115,'files','24637','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8116,'files','24638','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8117,'files','24639','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8118,'files','24640','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8119,'files','24641','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8120,'files','24642','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8121,'files','24643','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8122,'files','24644','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8123,'files','24645','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8124,'files','24646','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8125,'files','24647','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8126,'files','24648','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8127,'files','24649','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8128,'files','24650','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8129,'files','24651','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8130,'files','24652','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8131,'files','24653','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8132,'files','24654','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8133,'files','24655','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8134,'files','24656','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8135,'files','24657','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8136,'files','24658','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8137,'files','24659','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8138,'files','24660','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8139,'files','24661','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8140,'files','24662','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8141,'files','24663','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8142,'files','24664','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8143,'files','24665','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8144,'files','24666','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8145,'files','24667','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8146,'files','24668','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8147,'files','24669','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8148,'files','24670','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8149,'files','24671','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8150,'files','24672','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8151,'files','24673','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8152,'files','24674','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8153,'files','24675','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8154,'files','24676','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8155,'files','24677','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8156,'files','24678','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8157,'files','24679','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8158,'files','24680','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8159,'files','24681','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8160,'files','24682','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8161,'files','24683','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8162,'files','24684','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8163,'files','24685','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8164,'files','24686','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8165,'files','24687','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8166,'files','24688','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8167,'files','24689','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8168,'files','24690','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8169,'files','24691','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8170,'files','24692','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8171,'files','24693','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8172,'files','24694','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8173,'files','24695','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8174,'files','24696','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8175,'files','24697','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8176,'files','24698','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8177,'files','24699','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8178,'files','24700','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8179,'files','24701','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8180,'files','24702','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8181,'files','24703','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8182,'files','24704','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8183,'files','24705','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8184,'files','24706','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8185,'files','24707','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8186,'files','24708','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8187,'files','24709','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8188,'files','24710','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8189,'files','24711','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8190,'files','24712','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8191,'files','24713','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8192,'files','24714','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8193,'files','24715','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8194,'files','24716','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8195,'files','24717','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8196,'files','24718','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8197,'files','24719','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8198,'files','24720','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8199,'files','24721','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8200,'files','24722','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8201,'files','24723','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8202,'files','24724','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8203,'files','24725','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8204,'files','24726','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8205,'files','24727','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8206,'files','24728','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8207,'files','24729','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8208,'files','24730','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8209,'files','24731','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8210,'files','24732','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8211,'files','24733','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8212,'files','24734','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8213,'files','24735','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8214,'files','24736','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8215,'files','24737','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8216,'files','24738','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8217,'files','24739','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8218,'files','24740','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8219,'files','24741','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8220,'files','24742','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8221,'files','24743','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8222,'files','24744','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8223,'files','24745','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8224,'files','24746','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8225,'files','24747','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8226,'files','24748','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8227,'files','24749','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8228,'files','24750','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8229,'files','24751','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8230,'files','24752','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8231,'files','24753','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8232,'files','24754','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8233,'files','24755','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8234,'files','24756','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8235,'files','24757','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8236,'files','24758','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8237,'files','24759','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8238,'files','24760','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8239,'files','24761','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8240,'files','24762','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8241,'files','24763','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8242,'files','24764','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8243,'files','24765','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8244,'files','24766','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8245,'files','24767','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8246,'files','24768','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8247,'files','24769','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8248,'files','24770','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8249,'files','24774','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8250,'files','24775','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8251,'files','24776','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8252,'files','24777','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8253,'files','24778','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8254,'files','24779','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8255,'files','24780','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8256,'files','24781','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8257,'files','24782','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8258,'files','24783','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8259,'files','24784','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8260,'files','24785','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8261,'files','24786','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8262,'files','24787','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8263,'files','24788','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8264,'files','24789','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8265,'files','24790','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8266,'files','24791','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8267,'files','24792','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8268,'files','24793','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8269,'files','24794','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8270,'files','24795','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8271,'files','24796','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8272,'files','24797','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8273,'files','24798','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8274,'files','24799','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8275,'files','24800','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8276,'files','24801','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8277,'files','24802','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8278,'files','24803','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8279,'files','24804','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8280,'files','24805','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8281,'files','24806','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8282,'files','24807','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8283,'files','24808','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8284,'files','24809','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8285,'files','24810','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8286,'files','24811','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8287,'files','24812','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8288,'files','24813','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8289,'files','24814','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8290,'files','24815','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8291,'files','24816','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8292,'files','24817','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8293,'files','24818','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8294,'files','24819','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8295,'files','24820','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8296,'files','24821','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8297,'files','24822','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8298,'files','24823','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8299,'files','24824','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8300,'files','24825','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8301,'files','24826','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8302,'files','24827','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8303,'files','24828','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8304,'files','24829','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8305,'files','24830','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8306,'files','24831','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8307,'files','24832','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8308,'files','24833','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8309,'files','24834','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8310,'files','24835','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8311,'files','24836','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8312,'files','24837','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8313,'files','24838','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8314,'files','24839','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8315,'files','24840','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8316,'files','24841','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8317,'files','24842','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8318,'files','24843','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8319,'files','24844','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8320,'files','24845','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8321,'files','24846','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8322,'files','24847','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8323,'files','24848','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8324,'files','24849','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8325,'files','24850','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8326,'files','24851','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8327,'files','24852','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8328,'files','24853','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8329,'files','24854','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8330,'files','24855','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8331,'files','24856','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8332,'files','24857','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8333,'files','24858','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8334,'files','24859','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8335,'files','24860','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8336,'files','24861','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8337,'files','24862','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8338,'files','24863','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8339,'files','24864','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8340,'files','24865','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8341,'files','24866','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8342,'files','24867','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8343,'files','24868','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8344,'files','24869','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8345,'files','24870','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8346,'files','24871','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8347,'files','24872','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8348,'files','24873','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8349,'files','24874','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8350,'files','24875','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8351,'files','24876','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8352,'files','24877','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8353,'files','24878','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8354,'files','24879','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8355,'files','24880','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8356,'files','24881','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8357,'files','24882','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8358,'files','24884','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8359,'files','24885','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8360,'files','24886','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8361,'files','24887','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8362,'files','24888','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8363,'files','24889','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8364,'files','24890','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8365,'files','24891','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8366,'files','24892','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8367,'files','24893','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8368,'files','24894','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8369,'files','24895','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8370,'files','24896','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8371,'files','24897','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8372,'files','24898','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8373,'files','24899','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8374,'files','24900','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8375,'files','24901','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8376,'files','24902','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8377,'files','24903','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8378,'files','24904','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8379,'files','24905','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8380,'files','24906','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8381,'files','24907','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8382,'files','24908','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8383,'files','24909','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8384,'files','24910','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8385,'files','24911','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8386,'files','24912','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8387,'files','24913','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8388,'files','24914','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8389,'files','24915','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8390,'files','24916','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8391,'files','24917','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8392,'files','24918','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8393,'files','24919','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8394,'files','24920','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8395,'files','24921','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8396,'files','24922','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8397,'files','24923','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8398,'files','24924','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8399,'files','24925','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8400,'files','24926','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8401,'files','24927','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8402,'files','24928','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8403,'files','24929','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8404,'files','24930','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8405,'files','24931','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8406,'files','24932','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8407,'files','24933','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8408,'files','24934','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8409,'files','24935','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8410,'files','24936','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8411,'files','24937','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8412,'files','24938','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8413,'files','24939','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8414,'files','24940','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8415,'files','24941','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8416,'files','24942','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8417,'files','24943','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8418,'files','24944','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8419,'files','24945','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8420,'files','24946','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8421,'files','24947','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8422,'files','24948','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8423,'files','24949','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8424,'files','24950','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8425,'files','24951','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8426,'files','24952','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8427,'files','24953','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8428,'files','24954','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8429,'files','24955','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8430,'files','24956','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8431,'files','24957','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8432,'files','24958','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8433,'files','24959','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8434,'files','24960','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8435,'files','24961','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8436,'files','24962','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8437,'files','24963','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8438,'files','24964','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8439,'files','24965','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8440,'files','24966','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8441,'files','24967','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8442,'files','24968','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8443,'files','24969','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8444,'files','24970','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8445,'files','24971','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8446,'files','24972','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8447,'files','24973','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8448,'files','24974','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8449,'files','24975','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8450,'files','24977','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8451,'files','24978','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8452,'files','24979','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8453,'files','24980','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8454,'files','24981','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8455,'files','24982','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8456,'files','24983','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8457,'files','24984','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8458,'files','24985','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8459,'files','24987','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8460,'files','24989','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8461,'files','24990','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8462,'files','24993','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8463,'files','24994','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8464,'files','24996','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8465,'files','24997','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8466,'files','24999','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8467,'files','25000','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8468,'files','25001','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8469,'files','25002','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8470,'files','25003','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8471,'files','25004','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8472,'files','25005','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8473,'files','25006','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8474,'files','25007','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8475,'files','25008','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8476,'files','25009','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8477,'files','25010','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8478,'files','25011','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8479,'files','25012','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8480,'files','25013','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8481,'files','25014','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8482,'files','25015','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8483,'files','25016','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8484,'files','25018','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8485,'files','25020','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8486,'files','25021','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8487,'files','25022','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8488,'files','25023','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8489,'files','25024','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8490,'files','25025','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8491,'files','25026','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8492,'files','25027','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8493,'files','25028','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8494,'files','25029','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8495,'files','25030','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8496,'files','25031','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8497,'files','25032','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8498,'files','25033','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8499,'files','25035','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8500,'files','25036','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8501,'files','25038','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8502,'files','25039','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8503,'files','25040','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8504,'files','25041','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8505,'files','25042','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8506,'files','25043','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8507,'files','25044','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8508,'files','25045','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8509,'files','25046','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8510,'files','25047','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8511,'files','25048','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8512,'files','25050','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8513,'files','25051','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8514,'files','25052','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8515,'files','25053','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8516,'files','25054','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8517,'files','25055','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8518,'files','25056','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8519,'files','25057','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8520,'files','25058','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8521,'files','25059','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8522,'files','25060','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8523,'files','25061','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8524,'files','25062','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8525,'files','25063','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8526,'files','25064','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8527,'files','25065','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8528,'files','25067','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8529,'files','25068','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8530,'files','25069','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8531,'files','25070','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8532,'files','25071','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8533,'files','25072','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8534,'files','25073','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8535,'files','25074','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8536,'files','25075','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8537,'files','25076','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8538,'files','25077','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8539,'files','25078','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8540,'files','25079','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8541,'files','25080','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8542,'files','25081','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8543,'files','25082','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8544,'files','25083','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8545,'files','25084','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8546,'files','25085','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8547,'files','25086','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8548,'files','25087','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8549,'files','25088','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8550,'files','25089','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8551,'files','25090','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8552,'files','25091','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8553,'files','25092','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8554,'files','25093','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8555,'files','25094','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8556,'files','25095','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8557,'files','25096','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8558,'files','25097','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8559,'files','25098','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8560,'files','25099','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8561,'files','25100','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8562,'files','25101','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8563,'files','25102','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8564,'files','25103','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8565,'files','25104','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8566,'files','25105','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8567,'files','25106','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8568,'files','25107','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8569,'files','25108','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8570,'files','25109','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8571,'files','25110','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8572,'files','25111','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8573,'files','25112','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8574,'files','25113','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8575,'files','25114','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8576,'files','25115','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8577,'files','25116','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8578,'files','25117','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8579,'files','25118','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8580,'files','25119','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8581,'files','25120','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8582,'files','25121','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8583,'files','25122','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8584,'files','25123','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8585,'files','25124','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8586,'files','25125','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8587,'files','25126','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8588,'files','25127','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8589,'files','25128','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8590,'files','25129','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8591,'files','25130','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8592,'files','25131','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8593,'files','25132','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8594,'files','25133','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8595,'files','25134','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8596,'files','25135','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8597,'files','25136','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8598,'files','25137','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8599,'files','25138','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8600,'files','25139','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8601,'files','25140','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8602,'files','25141','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8603,'files','25142','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8604,'files','25143','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8605,'files','25144','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8606,'files','25145','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8607,'files','25146','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8608,'files','25147','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8609,'files','25148','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8610,'files','25149','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8611,'files','25150','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8612,'files','25151','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8613,'files','25152','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8614,'files','25153','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8615,'files','25154','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8616,'files','25156','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8617,'files','25157','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8618,'files','25158','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8619,'files','25159','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8620,'files','25160','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8621,'files','25161','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8622,'files','25162','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8623,'files','25164','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8624,'files','25165','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8625,'files','25166','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8626,'files','25167','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8627,'files','25168','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8628,'files','25169','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8629,'files','25170','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8630,'files','25171','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8631,'files','25172','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8632,'files','25173','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8633,'files','25174','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8634,'files','25175','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8635,'files','25176','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8636,'files','25177','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8637,'files','25178','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8638,'files','25179','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8639,'files','25180','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8640,'files','25181','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8641,'files','25182','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8642,'files','25183','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8643,'files','25184','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8644,'files','25185','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8645,'files','25187','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8646,'files','25188','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8647,'files','25189','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8648,'files','25190','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8649,'files','25191','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8650,'files','25192','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8651,'files','25193','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8652,'files','25194','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8653,'files','25195','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8654,'files','25196','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8655,'files','25197','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8656,'files','25198','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8657,'files','25199','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8658,'files','25200','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8659,'files','25201','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8660,'files','25202','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8661,'files','25203','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8662,'files','25204','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8663,'files','25205','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8664,'files','25206','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8665,'files','25207','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8666,'files','25208','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8667,'files','25209','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8668,'files','25210','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8669,'files','25211','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8670,'files','25212','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8671,'files','25214','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8672,'files','25217','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8673,'files','25218','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8674,'files','25219','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8675,'files','25220','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8676,'files','25221','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8677,'files','25222','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8678,'files','25224','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8679,'files','25225','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8680,'files','25226','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8681,'files','25227','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8682,'files','25229','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8683,'files','25230','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8684,'files','25231','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8685,'files','25232','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8686,'files','25233','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8687,'files','25234','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8688,'files','25235','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8689,'files','25236','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8690,'files','25237','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8691,'files','25238','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8692,'files','25239','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8693,'files','25240','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8694,'files','25241','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8695,'files','25242','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8696,'files','25243','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8697,'files','25244','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8698,'files','25245','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8699,'files','25246','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8700,'files','25247','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8701,'files','25248','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8702,'files','25249','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8703,'files','25250','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8704,'files','25251','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8705,'files','25252','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8706,'files','25253','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8707,'files','25254','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8708,'files','25255','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8709,'files','25256','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8710,'files','25257','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8711,'files','25258','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8712,'files','25259','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8713,'files','25260','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8714,'files','25261','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8715,'files','25262','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8716,'files','25263','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8717,'files','25264','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8718,'files','25265','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8719,'files','25266','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8720,'files','25267','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8721,'files','25268','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8722,'files','25269','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8723,'files','25270','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8724,'files','25271','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8725,'files','25272','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8726,'files','25273','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8727,'files','25274','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8728,'files','25275','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8729,'files','25276','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8730,'files','25277','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8731,'files','25278','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8732,'files','25279','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8733,'files','25280','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8734,'files','25281','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8735,'files','25282','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8736,'files','25283','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8737,'files','25284','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8738,'files','25285','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8739,'files','25286','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8740,'files','25287','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8741,'files','25288','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8742,'files','25289','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8743,'files','25290','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8744,'files','25291','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8745,'files','25292','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8746,'files','25293','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8747,'files','25294','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8748,'files','25295','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8749,'files','25296','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8750,'files','25297','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8751,'files','25298','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8752,'files','25299','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8753,'files','25300','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8754,'files','25301','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8755,'files','25302','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8756,'files','25303','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8757,'files','25304','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8758,'files','25305','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8759,'files','25306','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8760,'files','25307','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8761,'files','25308','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8762,'files','25309','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8763,'files','25310','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8764,'files','25311','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8765,'files','25312','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8766,'files','25313','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8767,'files','25314','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8768,'files','25315','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8769,'files','25316','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8770,'files','25317','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8771,'files','25318','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8772,'files','25319','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8773,'files','25320','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8774,'files','25321','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8775,'files','25322','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8776,'files','25323','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8777,'files','25324','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8778,'files','25325','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8779,'files','25326','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8780,'files','25327','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8781,'files','25328','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8782,'files','25329','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8783,'files','25330','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8784,'files','25331','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8785,'files','25332','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8786,'files','25333','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8787,'files','25334','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8788,'files','25335','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8789,'files','25336','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8790,'files','25337','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8791,'files','25338','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8792,'files','25339','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8793,'files','25340','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8794,'files','25341','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8795,'files','25342','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8796,'files','25343','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8797,'files','25344','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8798,'files','25345','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8799,'files','25346','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8800,'files','25347','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8801,'files','25348','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8802,'files','25349','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8803,'files','25350','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8804,'files','25351','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8805,'files','25352','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8806,'files','25353','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8807,'files','25354','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8808,'files','25355','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8809,'files','25356','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8810,'files','25357','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8811,'files','25358','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8812,'files','25359','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8813,'files','25360','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8814,'files','25361','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8815,'files','25362','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8816,'files','25363','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8817,'files','25364','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8818,'files','25365','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8819,'files','25366','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8820,'files','25367','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8821,'files','25368','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8822,'files','25369','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8823,'files','25370','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8824,'files','25371','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8825,'files','25372','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8826,'files','25373','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8827,'files','25374','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8828,'files','25375','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8829,'files','25376','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8830,'files','25377','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8831,'files','25378','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8832,'files','25379','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8833,'files','25380','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8834,'files','25381','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8835,'files','25382','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8836,'files','25383','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8837,'files','25384','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8838,'files','25385','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8839,'files','25386','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8840,'files','25387','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8841,'files','25388','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8842,'files','25389','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8843,'files','25390','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8844,'files','25391','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8845,'files','25392','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8846,'files','25393','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8847,'files','25394','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8848,'files','25395','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8849,'files','25396','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8850,'files','25397','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8851,'files','25398','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8852,'files','25400','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8853,'files','25401','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8854,'files','25402','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8855,'files','25405','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8856,'files','25406','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8857,'files','25407','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8858,'files','25408','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8859,'files','25409','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8860,'files','25410','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8861,'files','25411','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8862,'files','25412','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8863,'files','25413','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8864,'files','25414','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8865,'files','25415','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8866,'files','25416','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8867,'files','25417','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8868,'files','25418','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8869,'files','25419','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8870,'files','25420','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8871,'files','25421','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8872,'files','25422','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8873,'files','25423','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8874,'files','25424','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8875,'files','25425','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8876,'files','25426','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8877,'files','25427','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8878,'files','25428','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8879,'files','25429','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8880,'files','25430','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8881,'files','25431','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8882,'files','25432','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8883,'files','25433','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8884,'files','25434','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8885,'files','25435','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8886,'files','25436','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8887,'files','25437','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8888,'files','25438','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8889,'files','25439','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8890,'files','25440','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8891,'files','25441','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8892,'files','25442','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8893,'files','25443','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8894,'files','25444','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8895,'files','25445','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8896,'files','25446','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8897,'files','25447','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8898,'files','25448','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8899,'files','25449','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8900,'files','25450','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8901,'files','25451','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8902,'files','25452','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8903,'files','25453','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8904,'files','25454','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8905,'files','25455','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8906,'files','25456','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8907,'files','25457','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8908,'files','25458','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8909,'files','25459','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8910,'files','25460','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8911,'files','25461','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8912,'files','25462','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8913,'files','25463','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8914,'files','25464','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8915,'files','25465','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8916,'files','25466','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8917,'files','25467','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8918,'files','25468','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8919,'files','25469','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8920,'files','25470','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8921,'files','25471','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8922,'files','25472','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8923,'files','25473','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8924,'files','25474','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8925,'files','25475','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8926,'files','25476','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8927,'files','25477','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8928,'files','25478','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8929,'files','25479','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8930,'files','25480','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8931,'files','25481','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8932,'files','25482','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8933,'files','25483','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8934,'files','25484','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8935,'files','25485','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8936,'files','25486','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8937,'files','25487','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8938,'files','25488','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8939,'files','25489','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8940,'files','25490','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8941,'files','25491','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8942,'files','25492','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8943,'files','25493','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8944,'files','25494','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8945,'files','25495','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8946,'files','25496','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8947,'files','25498','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8948,'files','25499','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8949,'files','25500','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8950,'files','25501','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8951,'files','25502','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8952,'files','25503','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8953,'files','25504','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8954,'files','25505','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8955,'files','25506','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8956,'files','25507','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8957,'files','25508','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8958,'files','25509','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8959,'files','25510','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8960,'files','25511','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8961,'files','25512','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8962,'files','25513','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8963,'files','25514','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8964,'files','25515','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8965,'files','25516','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8966,'files','25517','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8967,'files','25518','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8968,'files','25519','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8969,'files','25520','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8970,'files','25521','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8971,'files','25522','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8972,'files','25523','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8973,'files','25524','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8974,'files','25525','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8975,'files','25526','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8976,'files','25527','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8977,'files','25528','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8978,'files','25529','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8979,'files','25530','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8980,'files','25531','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8981,'files','25532','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8982,'files','25533','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8983,'files','25534','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8984,'files','25535','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8985,'files','25536','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8986,'files','25537','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8987,'files','25538','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8988,'files','25539','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8989,'files','25540','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8990,'files','25541','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8991,'files','25542','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8992,'files','25543','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8993,'files','25544','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8994,'files','25545','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8995,'files','25546','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8996,'files','25547','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8997,'files','25548','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8998,'files','25549','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(8999,'files','25550','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9000,'files','25551','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9001,'files','25552','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9002,'files','25553','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9003,'files','25554','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9004,'files','25555','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9005,'files','25556','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9006,'files','25557','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9007,'files','25558','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9008,'files','25559','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9009,'files','25560','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9010,'files','25561','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9011,'files','25562','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9012,'files','25563','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9013,'files','25564','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9014,'files','25565','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9015,'files','25566','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9016,'files','25567','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9017,'files','25568','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9018,'files','25569','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9019,'files','25570','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9020,'files','25571','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9021,'files','25572','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9022,'files','25573','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9023,'files','25574','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9024,'files','25575','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9025,'files','25576','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9026,'files','25577','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9027,'files','25578','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9028,'files','25579','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9029,'files','25580','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9030,'files','25581','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9031,'files','25582','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9032,'files','25583','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9033,'files','25584','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9034,'files','25585','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9035,'files','25586','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9036,'files','25587','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9037,'files','25588','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9038,'files','25589','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9039,'files','25590','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9040,'files','25591','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9041,'files','25592','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9042,'files','25593','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9043,'files','25594','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9044,'files','25595','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9045,'files','25596','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9046,'files','25597','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9047,'files','25598','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9048,'files','25599','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9049,'files','25600','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9050,'files','25601','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9051,'files','25602','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9052,'files','25603','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9053,'files','25604','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9054,'files','25605','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9055,'files','25606','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9056,'files','25607','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9057,'files','25608','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9058,'files','25609','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9059,'files','25610','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9060,'files','25611','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9061,'files','25612','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9062,'files','25613','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9063,'files','25614','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9064,'files','25615','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9065,'files','25616','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9066,'files','25617','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9067,'files','25618','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9068,'files','25619','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9069,'files','25620','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9070,'files','25621','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9071,'files','25622','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9072,'files','25623','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9073,'files','25624','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9074,'files','25625','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9075,'files','25626','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9076,'files','25627','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9077,'files','25628','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9078,'files','25629','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9079,'files','25630','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9080,'files','25631','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9081,'files','25632','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9082,'files','25633','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9083,'files','25634','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9084,'files','25635','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9085,'files','25636','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9086,'files','25637','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9087,'files','25638','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9088,'files','25639','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9089,'files','25640','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9090,'files','25641','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9091,'files','25642','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9092,'files','25643','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9093,'files','25644','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9094,'files','25645','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9095,'files','25647','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9096,'files','25649','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9097,'files','25650','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9098,'files','25651','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9099,'files','25652','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9100,'files','25653','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9101,'files','25654','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9102,'files','25655','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9103,'files','25656','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9104,'files','25657','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9105,'files','25658','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9106,'files','25659','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9107,'files','25660','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9108,'files','25661','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9109,'files','25662','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9110,'files','25663','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9111,'files','25664','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9112,'files','25665','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9113,'files','25666','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9114,'files','25667','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9115,'files','25668','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9116,'files','25669','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9117,'files','25670','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9118,'files','25671','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9119,'files','25672','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9120,'files','25673','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9121,'files','25674','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9122,'files','25675','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9123,'files','25676','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9124,'files','25677','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9125,'files','25678','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9126,'files','25679','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9127,'files','25680','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9128,'files','25681','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9129,'files','25682','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9130,'files','25683','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9131,'files','25684','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9132,'files','25685','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9133,'files','25686','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9134,'files','25687','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9135,'files','25688','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9136,'files','25689','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9137,'files','25690','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9138,'files','25691','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9139,'files','25692','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9140,'files','25693','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9141,'files','25694','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9142,'files','25695','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9143,'files','25696','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9144,'files','25697','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9145,'files','25698','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9146,'files','25699','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9147,'files','25700','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9148,'files','25701','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9149,'files','25702','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9150,'files','25703','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9151,'files','25704','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9152,'files','25705','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9153,'files','25706','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9154,'files','25707','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9155,'files','25708','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9156,'files','25709','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9157,'files','25710','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9158,'files','25711','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9159,'files','25712','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9160,'files','25713','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9161,'files','25714','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9162,'files','25715','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9163,'files','25716','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9164,'files','25717','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9165,'files','25718','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9166,'files','25719','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9167,'files','25720','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9168,'files','25721','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9169,'files','25722','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9170,'files','25723','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9171,'files','25724','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9172,'files','25725','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9173,'files','25726','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9174,'files','25727','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9175,'files','25728','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9176,'files','25729','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9177,'files','25730','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9178,'files','25731','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9179,'files','25732','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9180,'files','25733','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9181,'files','25734','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9182,'files','25735','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9183,'files','25736','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9184,'files','25737','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9185,'files','25738','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9186,'files','25739','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9187,'files','25740','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9188,'files','25741','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9189,'files','25742','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9190,'files','25743','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9191,'files','25744','error','Deal not found: 150',NULL,'2025-11-14 00:11:14'),
(9192,'files','25745','error','Deal not found: 150',NULL,'2025-11-14 00:11:14'),
(9193,'files','25746','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9194,'files','25747','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9195,'files','25748','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9196,'files','25749','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9197,'files','25750','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9198,'files','25751','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9199,'files','25752','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9200,'files','25753','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9201,'files','25754','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9202,'files','25755','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9203,'files','25756','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9204,'files','25757','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9205,'files','25758','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9206,'files','25759','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9207,'files','25760','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9208,'files','25761','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9209,'files','25762','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9210,'files','25763','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9211,'files','25764','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9212,'files','25765','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9213,'files','25766','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9214,'files','25767','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9215,'files','25768','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9216,'files','25769','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9217,'files','25770','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9218,'files','25771','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9219,'files','25772','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9220,'files','25773','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9221,'files','25774','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9222,'files','25775','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9223,'files','25776','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9224,'files','25777','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9225,'files','25778','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9226,'files','25779','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9227,'files','25780','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9228,'files','25781','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9229,'files','25782','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9230,'files','25783','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9231,'files','25784','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9232,'files','25786','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9233,'files','25787','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9234,'files','25788','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9235,'files','25789','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9236,'files','25790','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9237,'files','25791','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9238,'files','25792','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9239,'files','25793','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9240,'files','25794','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9241,'files','25795','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9242,'files','25796','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9243,'files','25797','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9244,'files','25798','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9245,'files','25799','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9246,'files','25800','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9247,'files','25801','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9248,'files','25802','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9249,'files','25803','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9250,'files','25804','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9251,'files','25805','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9252,'files','25806','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9253,'files','25807','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9254,'files','25808','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9255,'files','25809','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9256,'files','25812','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9257,'files','25813','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9258,'files','25814','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9259,'files','25815','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9260,'files','25816','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9261,'files','25817','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9262,'files','25818','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9263,'files','25819','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9264,'files','25820','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9265,'files','25821','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9266,'files','25822','error','Deal not found: 717',NULL,'2025-11-14 00:11:14'),
(9267,'files','25823','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9268,'files','25824','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9269,'files','25825','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9270,'files','25826','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9271,'files','25827','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9272,'files','25828','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9273,'files','25829','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9274,'files','25830','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9275,'files','25831','error','Deal not found: 717',NULL,'2025-11-14 00:11:14'),
(9276,'files','25832','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9277,'files','25833','error','Deal not found: 717',NULL,'2025-11-14 00:11:14'),
(9278,'files','25834','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9279,'files','25835','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9280,'files','25836','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9281,'files','25837','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9282,'files','25838','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9283,'files','25839','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9284,'files','25840','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9285,'files','25841','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9286,'files','25842','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9287,'files','25843','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9288,'files','25844','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9289,'files','25845','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9290,'files','25846','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9291,'files','25847','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9292,'files','25848','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9293,'files','25849','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9294,'files','25850','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9295,'files','25851','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9296,'files','25852','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9297,'files','25853','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9298,'files','25854','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9299,'files','25855','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9300,'files','25856','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9301,'files','25857','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9302,'files','25858','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9303,'files','25859','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9304,'files','25860','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9305,'files','25861','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9306,'files','25862','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9307,'files','25863','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9308,'files','25864','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9309,'files','25865','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9310,'files','25866','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9311,'files','25867','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9312,'files','25868','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9313,'files','25869','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9314,'files','25870','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9315,'files','25871','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9316,'files','25872','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9317,'files','25873','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9318,'files','25874','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9319,'files','25875','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9320,'files','25876','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9321,'files','25877','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9322,'files','25878','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9323,'files','25879','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9324,'files','25880','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9325,'files','25881','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9326,'files','25882','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9327,'files','25883','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9328,'files','25884','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9329,'files','25885','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9330,'files','25886','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9331,'files','25887','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9332,'files','25888','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9333,'files','25889','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9334,'files','25890','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9335,'files','25891','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9336,'files','25892','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9337,'files','25893','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9338,'files','25894','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9339,'files','25895','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9340,'files','25897','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9341,'files','25898','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9342,'files','25899','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9343,'files','25900','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9344,'files','25901','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9345,'files','25902','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9346,'files','25903','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9347,'files','25904','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9348,'files','25905','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9349,'files','25906','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9350,'files','25907','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9351,'files','25908','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9352,'files','25909','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9353,'files','25910','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9354,'files','25911','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9355,'files','25912','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9356,'files','25913','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9357,'files','25914','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9358,'files','25915','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9359,'files','25916','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9360,'files','25917','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9361,'files','25918','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9362,'files','25919','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9363,'files','25920','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9364,'files','25921','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9365,'files','25922','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9366,'files','25923','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9367,'files','25924','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9368,'files','25925','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9369,'files','25926','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9370,'files','25927','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9371,'files','25928','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9372,'files','25930','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9373,'files','25931','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9374,'files','25932','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9375,'files','25933','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9376,'files','25934','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9377,'files','25935','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9378,'files','25936','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9379,'files','25937','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9380,'files','25938','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9381,'files','25939','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9382,'files','25940','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9383,'files','25941','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9384,'files','25942','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9385,'files','25943','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9386,'files','25944','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9387,'files','25945','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9388,'files','25946','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9389,'files','25947','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9390,'files','25948','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9391,'files','25949','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9392,'files','25950','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9393,'files','25951','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9394,'files','25952','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9395,'files','25953','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9396,'files','25954','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9397,'files','25955','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9398,'files','25956','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9399,'files','25957','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9400,'files','25958','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9401,'files','25959','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9402,'files','25960','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9403,'files','25961','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9404,'files','25962','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9405,'files','25963','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9406,'files','25964','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9407,'files','25965','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9408,'files','25966','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9409,'files','25967','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9410,'files','25968','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9411,'files','25969','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9412,'files','25970','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9413,'files','25971','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9414,'files','25972','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9415,'files','25973','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9416,'files','25974','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9417,'files','25975','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9418,'files','25976','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9419,'files','25977','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9420,'files','25978','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9421,'files','25979','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9422,'files','25980','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9423,'files','25981','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9424,'files','25982','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9425,'files','25983','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9426,'files','25984','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9427,'files','25985','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9428,'files','25986','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9429,'files','25987','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9430,'files','25988','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9431,'files','25989','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9432,'files','25990','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9433,'files','25991','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9434,'files','25992','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9435,'files','25993','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9436,'files','25994','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9437,'files','25995','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9438,'files','25996','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9439,'files','25997','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9440,'files','25998','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9441,'files','25999','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9442,'files','26000','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9443,'files','26001','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9444,'files','26002','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9445,'files','26003','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9446,'files','26004','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9447,'files','26005','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9448,'files','26006','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9449,'files','26007','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9450,'files','26008','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9451,'files','26009','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9452,'files','26010','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9453,'files','26011','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9454,'files','26012','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9455,'files','26013','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9456,'files','26014','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9457,'files','26015','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9458,'files','26016','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9459,'files','26017','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9460,'files','26018','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9461,'files','26019','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9462,'files','26020','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9463,'files','26021','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9464,'files','26022','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9465,'files','26023','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9466,'files','26024','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9467,'files','26025','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9468,'files','26026','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9469,'files','26027','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9470,'files','26028','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9471,'files','26029','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9472,'files','26030','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9473,'files','26031','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9474,'files','26032','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9475,'files','26033','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9476,'files','26034','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9477,'files','26035','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9478,'files','26036','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9479,'files','26037','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9480,'files','26038','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9481,'files','26039','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9482,'files','26040','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9483,'files','26041','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9484,'files','26042','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9485,'files','26043','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9486,'files','26044','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9487,'files','26045','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9488,'files','26046','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9489,'files','26047','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9490,'files','26048','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9491,'files','26049','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9492,'files','26050','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9493,'files','26051','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9494,'files','26052','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9495,'files','26053','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9496,'files','26054','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9497,'files','26055','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9498,'files','26056','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9499,'files','26057','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9500,'files','26058','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9501,'files','26059','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9502,'files','26060','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9503,'files','26061','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9504,'files','26062','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9505,'files','26063','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9506,'files','26064','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9507,'files','26065','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9508,'files','26066','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9509,'files','26067','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9510,'files','26068','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9511,'files','26069','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9512,'files','26070','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9513,'files','26071','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9514,'files','26072','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9515,'files','26073','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9516,'files','26074','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9517,'files','26075','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9518,'files','26076','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9519,'files','26077','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9520,'files','26078','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9521,'files','26079','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9522,'files','26080','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9523,'files','26081','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9524,'files','26082','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9525,'files','26083','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9526,'files','26084','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9527,'files','26085','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9528,'files','26086','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9529,'files','26087','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9530,'files','26088','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9531,'files','26089','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9532,'files','26090','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9533,'files','26091','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9534,'files','26092','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9535,'files','26093','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9536,'files','26094','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9537,'files','26095','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9538,'files','26096','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9539,'files','26097','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9540,'files','26098','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9541,'files','26099','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9542,'files','26100','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9543,'files','26101','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9544,'files','26102','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9545,'files','26103','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9546,'files','26104','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9547,'files','26105','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9548,'files','26106','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9549,'files','26107','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9550,'files','26108','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9551,'files','26109','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9552,'files','26110','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9553,'files','26111','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9554,'files','26112','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9555,'files','26113','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9556,'files','26114','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9557,'files','26115','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9558,'files','26116','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9559,'files','26117','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9560,'files','26118','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9561,'files','26119','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9562,'files','26120','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9563,'files','26121','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9564,'files','26122','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9565,'files','26123','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9566,'files','26124','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9567,'files','26125','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9568,'files','26126','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9569,'files','26127','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9570,'files','26128','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9571,'files','26129','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9572,'files','26130','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9573,'files','26131','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9574,'files','26132','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9575,'files','26133','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9576,'files','26134','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9577,'files','26135','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9578,'files','26136','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9579,'files','26137','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9580,'files','26138','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9581,'files','26139','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9582,'files','26140','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9583,'files','26141','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9584,'files','26142','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9585,'files','26143','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9586,'files','26144','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9587,'files','26145','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9588,'files','26146','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9589,'files','26147','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9590,'files','26148','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9591,'files','26149','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9592,'files','26150','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9593,'files','26151','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9594,'files','26152','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9595,'files','26153','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9596,'files','26154','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9597,'files','26155','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9598,'files','26156','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9599,'files','26157','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9600,'files','26158','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9601,'files','26159','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9602,'files','26160','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9603,'files','26161','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9604,'files','26162','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9605,'files','26163','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9606,'files','26164','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9607,'files','26165','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9608,'files','26166','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9609,'files','26167','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9610,'files','26168','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9611,'files','26169','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9612,'files','26170','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9613,'files','26171','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9614,'files','26172','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9615,'files','26173','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9616,'files','26174','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9617,'files','26175','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9618,'files','26176','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9619,'files','26177','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9620,'files','26178','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9621,'files','26179','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9622,'files','26180','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9623,'files','26181','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9624,'files','26182','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9625,'files','26183','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9626,'files','26184','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9627,'files','26185','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9628,'files','26186','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9629,'files','26187','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9630,'files','26188','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9631,'files','26189','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9632,'files','26190','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9633,'files','26191','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9634,'files','26192','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9635,'files','26193','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9636,'files','26194','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9637,'files','26195','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9638,'files','26196','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9639,'files','26197','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9640,'files','26198','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9641,'files','26199','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9642,'files','26200','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9643,'files','26201','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9644,'files','26202','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9645,'files','26203','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9646,'files','26204','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9647,'files','26205','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9648,'files','26206','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9649,'files','26207','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9650,'files','26208','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9651,'files','26209','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9652,'files','26210','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9653,'files','26211','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9654,'files','26212','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9655,'files','26213','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9656,'files','26214','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9657,'files','26215','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9658,'files','26216','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9659,'files','26217','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9660,'files','26218','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9661,'files','26219','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9662,'files','26220','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9663,'files','26221','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9664,'files','26222','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9665,'files','26223','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9666,'files','26224','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9667,'files','26225','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9668,'files','26226','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9669,'files','26227','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9670,'files','26228','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9671,'files','26229','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9672,'files','26230','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9673,'files','26231','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9674,'files','26232','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9675,'files','26233','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9676,'files','26234','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9677,'files','26235','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9678,'files','26236','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9679,'files','26237','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9680,'files','26238','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9681,'files','26239','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9682,'files','26240','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9683,'files','26241','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9684,'files','26242','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9685,'files','26243','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9686,'files','26244','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9687,'files','26245','error','Deal not found: 375',NULL,'2025-11-14 00:11:14'),
(9688,'files','26246','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9689,'files','26247','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9690,'files','26248','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9691,'files','26249','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9692,'files','26250','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9693,'files','26251','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9694,'files','26252','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9695,'files','26254','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9696,'files','26258','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9697,'files','26259','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9698,'files','26260','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9699,'files','26261','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9700,'files','26262','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9701,'files','26263','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9702,'files','26264','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9703,'files','26265','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9704,'files','26266','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9705,'files','26267','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9706,'files','26268','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9707,'files','26269','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9708,'files','26270','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9709,'files','26271','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9710,'files','26272','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9711,'files','26273','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9712,'files','26274','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9713,'files','26275','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9714,'files','26276','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9715,'files','26277','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9716,'files','26278','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9717,'files','26279','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9718,'files','26280','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9719,'files','26281','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9720,'files','26282','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9721,'files','26283','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9722,'files','26284','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9723,'files','26285','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9724,'files','26286','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9725,'files','26287','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9726,'files','26288','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9727,'files','26289','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9728,'files','26290','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9729,'files','26291','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9730,'files','26292','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9731,'files','26293','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9732,'files','26294','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9733,'files','26295','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9734,'files','26296','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9735,'files','26298','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9736,'files','26299','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9737,'files','26300','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9738,'files','26301','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9739,'files','26302','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9740,'files','26303','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9741,'files','26304','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9742,'files','26305','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9743,'files','26306','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9744,'files','26307','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9745,'files','26308','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9746,'files','26309','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9747,'files','26310','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9748,'files','26311','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9749,'files','26312','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9750,'files','26313','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9751,'files','26314','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9752,'files','26315','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9753,'files','26316','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9754,'files','26317','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9755,'files','26318','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9756,'files','26319','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9757,'files','26320','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9758,'files','26321','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9759,'files','26322','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9760,'files','26323','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9761,'files','26324','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9762,'files','26325','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9763,'files','26326','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9764,'files','26327','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9765,'files','26328','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9766,'files','26329','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9767,'files','26330','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9768,'files','26331','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9769,'files','26332','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9770,'files','26333','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9771,'files','26334','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9772,'files','26335','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9773,'files','26336','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9774,'files','26337','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9775,'files','26338','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9776,'files','26339','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9777,'files','26340','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9778,'files','26341','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9779,'files','26342','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9780,'files','26343','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9781,'files','26344','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9782,'files','26345','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9783,'files','26346','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9784,'files','26347','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9785,'files','26348','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9786,'files','26349','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9787,'files','26350','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9788,'files','26351','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9789,'files','26352','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9790,'files','26353','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9791,'files','26354','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9792,'files','26355','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9793,'files','26356','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9794,'files','26357','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9795,'files','26358','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9796,'files','26359','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9797,'files','26360','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9798,'files','26361','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9799,'files','26362','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9800,'files','26363','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9801,'files','26364','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9802,'files','26365','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9803,'files','26366','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9804,'files','26367','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9805,'files','26368','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9806,'files','26369','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9807,'files','26370','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9808,'files','26371','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9809,'files','26372','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9810,'files','26373','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9811,'files','26374','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9812,'files','26375','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9813,'files','26376','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9814,'files','26377','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9815,'files','26378','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9816,'files','26379','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9817,'files','26380','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9818,'files','26381','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9819,'files','26382','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9820,'files','26383','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9821,'files','26384','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9822,'files','26385','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9823,'files','26386','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9824,'files','26387','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9825,'files','26388','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9826,'files','26389','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9827,'files','26390','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9828,'files','26391','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9829,'files','26392','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9830,'files','26393','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9831,'files','26394','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9832,'files','26395','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9833,'files','26396','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9834,'files','26397','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9835,'files','26398','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9836,'files','26399','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9837,'files','26400','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9838,'files','26401','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9839,'files','26402','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9840,'files','26403','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9841,'files','26404','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9842,'files','26405','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9843,'files','26406','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9844,'files','26407','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9845,'files','26408','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9846,'files','26409','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9847,'files','26410','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9848,'files','26411','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9849,'files','26412','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9850,'files','26413','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9851,'files','26414','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9852,'files','26415','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9853,'files','26416','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9854,'files','26417','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9855,'files','26418','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9856,'files','26419','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9857,'files','26420','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9858,'files','26421','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9859,'files','26422','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9860,'files','26423','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9861,'files','26424','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9862,'files','26425','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9863,'files','26426','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9864,'files','26427','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9865,'files','26428','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9866,'files','26429','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9867,'files','26430','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9868,'files','26431','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9869,'files','26432','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9870,'files','26433','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9871,'files','26434','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9872,'files','26435','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9873,'files','26436','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9874,'files','26437','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9875,'files','26438','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9876,'files','26439','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9877,'files','26440','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9878,'files','26441','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9879,'files','26442','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9880,'files','26443','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9881,'files','26444','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9882,'files','26445','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9883,'files','26446','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9884,'files','26447','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9885,'files','26448','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9886,'files','26450','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9887,'files','26451','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9888,'files','26452','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9889,'files','26453','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9890,'files','26454','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9891,'files','26455','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9892,'files','26456','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9893,'files','26457','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9894,'files','26458','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9895,'files','26459','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9896,'files','26460','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9897,'files','26461','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9898,'files','26462','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9899,'files','26463','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9900,'files','26464','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9901,'files','26465','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9902,'files','26466','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9903,'files','26467','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9904,'files','26468','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9905,'files','26469','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9906,'files','26470','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9907,'files','26471','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9908,'files','26472','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9909,'files','26473','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9910,'files','26474','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9911,'files','26475','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9912,'files','26476','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9913,'files','26477','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9914,'files','26478','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9915,'files','26479','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9916,'files','26481','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9917,'files','26482','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9918,'files','26483','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9919,'files','26484','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9920,'files','26485','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9921,'files','26486','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9922,'files','26487','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9923,'files','26488','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9924,'files','26489','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9925,'files','26490','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9926,'files','26491','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9927,'files','26492','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9928,'files','26493','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9929,'files','26494','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9930,'files','26495','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9931,'files','26496','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9932,'files','26497','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9933,'files','26498','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9934,'files','26499','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9935,'files','26500','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9936,'files','26501','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9937,'files','26502','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9938,'files','26503','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9939,'files','26504','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9940,'files','26505','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9941,'files','26506','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9942,'files','26507','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9943,'files','26508','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9944,'files','26509','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9945,'files','26510','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9946,'files','26511','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9947,'files','26512','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9948,'files','26513','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9949,'files','26514','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9950,'files','26515','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9951,'files','26516','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9952,'files','26517','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9953,'files','26518','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9954,'files','26519','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9955,'files','26520','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9956,'files','26521','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9957,'files','26522','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9958,'files','26523','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9959,'files','26524','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9960,'files','26525','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9961,'files','26526','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9962,'files','26527','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9963,'files','26528','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9964,'files','26529','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9965,'files','26530','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9966,'files','26531','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9967,'files','26532','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9968,'files','26533','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9969,'files','26534','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9970,'files','26535','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9971,'files','26536','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9972,'files','26537','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9973,'files','26538','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9974,'files','26539','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9975,'files','26540','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9976,'files','26541','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9977,'files','26542','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9978,'files','26543','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9979,'files','26544','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9980,'files','26545','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9981,'files','26546','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9982,'files','26547','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9983,'files','26548','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9984,'files','26549','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9985,'files','26550','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9986,'files','26551','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9987,'files','26552','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9988,'files','26553','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9989,'files','26554','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9990,'files','26555','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9991,'files','26556','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9992,'files','26557','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9993,'files','26558','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9994,'files','26559','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9995,'files','26560','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9996,'files','26561','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9997,'files','26562','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9998,'files','26563','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(9999,'files','26564','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10000,'files','26565','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10001,'files','26566','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10002,'files','26567','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10003,'files','26568','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10004,'files','26569','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10005,'files','26570','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10006,'files','26571','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10007,'files','26572','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10008,'files','26573','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10009,'files','26574','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10010,'files','26575','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10011,'files','26576','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10012,'files','26577','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10013,'files','26578','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10014,'files','26579','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10015,'files','26580','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10016,'files','26581','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10017,'files','26582','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10018,'files','26583','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10019,'files','26584','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10020,'files','26585','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10021,'files','26586','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10022,'files','26587','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10023,'files','26588','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10024,'files','26589','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10025,'files','26590','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10026,'files','26591','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10027,'files','26592','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10028,'files','26594','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10029,'files','26595','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10030,'files','26596','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10031,'files','26597','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10032,'files','26598','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10033,'files','26599','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10034,'files','26600','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10035,'files','26601','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10036,'files','26602','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10037,'files','26603','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10038,'files','26604','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10039,'files','26605','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10040,'files','26606','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10041,'files','26607','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10042,'files','26608','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10043,'files','26609','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10044,'files','26610','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10045,'files','26611','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10046,'files','26612','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10047,'files','26613','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10048,'files','26614','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10049,'files','26615','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10050,'files','26616','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10051,'files','26617','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10052,'files','26618','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10053,'files','26619','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10054,'files','26620','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10055,'files','26621','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10056,'files','26622','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10057,'files','26623','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10058,'files','26624','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10059,'files','26625','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10060,'files','26626','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10061,'files','26627','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10062,'files','26628','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10063,'files','26629','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10064,'files','26630','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10065,'files','26631','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10066,'files','26632','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10067,'files','26633','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10068,'files','26634','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10069,'files','26635','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10070,'files','26636','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10071,'files','26637','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10072,'files','26638','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10073,'files','26639','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10074,'files','26640','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10075,'files','26641','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10076,'files','26642','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10077,'files','26643','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10078,'files','26644','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10079,'files','26645','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10080,'files','26646','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10081,'files','26647','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10082,'files','26648','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10083,'files','26649','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10084,'files','26650','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10085,'files','26651','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10086,'files','26652','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10087,'files','26653','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10088,'files','26654','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10089,'files','26655','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10090,'files','26656','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10091,'files','26657','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10092,'files','26658','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10093,'files','26660','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10094,'files','26661','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10095,'files','26662','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10096,'files','26663','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10097,'files','26664','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10098,'files','26665','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10099,'files','26666','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10100,'files','26667','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10101,'files','26668','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10102,'files','26669','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10103,'files','26670','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10104,'files','26671','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10105,'files','26672','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10106,'files','26673','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10107,'files','26674','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10108,'files','26675','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10109,'files','26676','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10110,'files','26677','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10111,'files','26678','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10112,'files','26679','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10113,'files','26680','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10114,'files','26681','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10115,'files','26682','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10116,'files','26683','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10117,'files','26684','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10118,'files','26685','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10119,'files','26686','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10120,'files','26687','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10121,'files','26688','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10122,'files','26689','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10123,'files','26690','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10124,'files','26691','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10125,'files','26692','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10126,'files','26693','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10127,'files','26694','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10128,'files','26695','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10129,'files','26696','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10130,'files','26697','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10131,'files','26698','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10132,'files','26699','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10133,'files','26700','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10134,'files','26701','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10135,'files','26702','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10136,'files','26703','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10137,'files','26704','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10138,'files','26705','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10139,'files','26706','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10140,'files','26707','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10141,'files','26708','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10142,'files','26709','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10143,'files','26710','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10144,'files','26711','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10145,'files','26712','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10146,'files','26713','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10147,'files','26714','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10148,'files','26715','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10149,'files','26716','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10150,'files','26717','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10151,'files','26718','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10152,'files','26719','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10153,'files','26720','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10154,'files','26721','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10155,'files','26722','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10156,'files','26723','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10157,'files','26724','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10158,'files','26725','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10159,'files','26726','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10160,'files','26727','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10161,'files','26728','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10162,'files','26729','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10163,'files','26730','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10164,'files','26732','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10165,'files','26733','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10166,'files','26734','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10167,'files','26735','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10168,'files','26736','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10169,'files','26737','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10170,'files','26738','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10171,'files','26739','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10172,'files','26740','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10173,'files','26741','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10174,'files','26742','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10175,'files','26743','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10176,'files','26744','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10177,'files','26745','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10178,'files','26746','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10179,'files','26747','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10180,'files','26748','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10181,'files','26749','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10182,'files','26750','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10183,'files','26751','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10184,'files','26752','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10185,'files','26753','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10186,'files','26754','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10187,'files','26755','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10188,'files','26756','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10189,'files','26757','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10190,'files','26758','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10191,'files','26759','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10192,'files','26760','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10193,'files','26761','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10194,'files','26762','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10195,'files','26763','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10196,'files','26764','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10197,'files','26765','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10198,'files','26766','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10199,'files','26767','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10200,'files','26768','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10201,'files','26769','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10202,'files','26770','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10203,'files','26771','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10204,'files','26772','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10205,'files','26773','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10206,'files','26774','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10207,'files','26775','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10208,'files','26776','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10209,'files','26777','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10210,'files','26778','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10211,'files','26779','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10212,'files','26780','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10213,'files','26781','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10214,'files','26782','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10215,'files','26783','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10216,'files','26784','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10217,'files','26785','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10218,'files','26786','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10219,'files','26787','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10220,'files','26788','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10221,'files','26789','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10222,'files','26790','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10223,'files','26791','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10224,'files','26792','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10225,'files','26793','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10226,'files','26794','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10227,'files','26795','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10228,'files','26798','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10229,'files','26799','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10230,'files','26800','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10231,'files','26801','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10232,'files','26802','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10233,'files','26803','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10234,'files','26804','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10235,'files','26805','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10236,'files','26806','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10237,'files','26807','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10238,'files','26808','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10239,'files','26812','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10240,'files','26813','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10241,'files','26814','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10242,'files','26815','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10243,'files','26816','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10244,'files','26817','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10245,'files','26818','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10246,'files','26819','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10247,'files','26820','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10248,'files','26821','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10249,'files','26822','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10250,'files','26823','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10251,'files','26825','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10252,'files','26826','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10253,'files','26827','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10254,'files','26828','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10255,'files','26829','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10256,'files','26830','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10257,'files','26831','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10258,'files','26832','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10259,'files','26833','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10260,'files','26834','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10261,'files','26835','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10262,'files','26836','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10263,'files','26837','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10264,'files','26838','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10265,'files','26839','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10266,'files','26840','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10267,'files','26841','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10268,'files','26842','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10269,'files','26843','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10270,'files','26844','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10271,'files','26845','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10272,'files','26846','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10273,'files','26847','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10274,'files','26848','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10275,'files','26849','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10276,'files','26850','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10277,'files','26851','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10278,'files','26852','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10279,'files','26853','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10280,'files','26854','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10281,'files','26855','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10282,'files','26856','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10283,'files','26857','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10284,'files','26858','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10285,'files','26859','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10286,'files','26860','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10287,'files','26861','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10288,'files','26862','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10289,'files','26863','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10290,'files','26864','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10291,'files','26865','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10292,'files','26866','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10293,'files','26867','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10294,'files','26868','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10295,'files','26869','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10296,'files','26870','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10297,'files','26871','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10298,'files','26872','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10299,'files','26873','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10300,'files','26874','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10301,'files','26875','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10302,'files','26876','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10303,'files','26877','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10304,'files','26878','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10305,'files','26879','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10306,'files','26880','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10307,'files','26881','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10308,'files','26882','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10309,'files','26883','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10310,'files','26884','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10311,'files','26885','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10312,'files','26886','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10313,'files','26887','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10314,'files','26888','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10315,'files','26889','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10316,'files','26890','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10317,'files','26891','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10318,'files','26892','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10319,'files','26893','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10320,'files','26894','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10321,'files','26895','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10322,'files','26896','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10323,'files','26897','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10324,'files','26898','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10325,'files','26899','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10326,'files','26900','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10327,'files','26901','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10328,'files','26902','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10329,'files','26903','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10330,'files','26904','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10331,'files','26905','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10332,'files','26906','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10333,'files','26907','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10334,'files','26908','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10335,'files','26909','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10336,'files','26910','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10337,'files','26911','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10338,'files','26912','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10339,'files','26913','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10340,'files','26914','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10341,'files','26915','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10342,'files','26916','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10343,'files','26917','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10344,'files','26918','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10345,'files','26919','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10346,'files','26920','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10347,'files','26921','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10348,'files','26922','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10349,'files','26923','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10350,'files','26924','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10351,'files','26925','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10352,'files','26926','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10353,'files','26927','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10354,'files','26928','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10355,'files','26929','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10356,'files','26930','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10357,'files','26931','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10358,'files','26932','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10359,'files','26933','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10360,'files','26934','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10361,'files','26935','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10362,'files','26936','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10363,'files','26937','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10364,'files','26938','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10365,'files','26939','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10366,'files','26940','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10367,'files','26941','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10368,'files','26942','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10369,'files','26943','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10370,'files','26944','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10371,'files','26945','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10372,'files','26946','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10373,'files','26947','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10374,'files','26948','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10375,'files','26950','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10376,'files','26952','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10377,'files','26953','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10378,'files','26954','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10379,'files','26955','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10380,'files','26956','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10381,'files','26957','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10382,'files','26958','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10383,'files','26959','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10384,'files','26960','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10385,'files','26961','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10386,'files','26962','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10387,'files','26963','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10388,'files','26964','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10389,'files','26965','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10390,'files','26967','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10391,'files','26968','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10392,'files','26969','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10393,'files','26970','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10394,'files','26971','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10395,'files','26972','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10396,'files','26973','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10397,'files','26974','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10398,'files','26975','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10399,'files','26976','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10400,'files','26977','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10401,'files','26978','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10402,'files','26979','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10403,'files','26980','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10404,'files','26981','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10405,'files','26982','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10406,'files','26983','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10407,'files','26984','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10408,'files','26985','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10409,'files','26986','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10410,'files','26987','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10411,'files','26988','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10412,'files','26989','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10413,'files','26990','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10414,'files','26991','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10415,'files','26992','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10416,'files','26993','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10417,'files','26994','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10418,'files','26995','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10419,'files','26996','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10420,'files','26997','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10421,'files','26998','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10422,'files','26999','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10423,'files','27000','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10424,'files','27001','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10425,'files','27002','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10426,'files','27003','error','Deal not found: 508',NULL,'2025-11-14 00:11:14'),
(10427,'files','27004','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10428,'files','27005','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10429,'files','27006','error','Deal not found: 196',NULL,'2025-11-14 00:11:14'),
(10430,'files','27007','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10431,'files','27008','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10432,'files','27009','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10433,'files','27010','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10434,'files','27011','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10435,'files','27012','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10436,'files','27013','error','Deal not found: 508',NULL,'2025-11-14 00:11:14'),
(10437,'files','27014','error','Deal not found: 212',NULL,'2025-11-14 00:11:14'),
(10438,'files','27015','error','Deal not found: 508',NULL,'2025-11-14 00:11:14'),
(10439,'files','27016','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10440,'files','27017','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10441,'files','27018','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10442,'files','27019','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10443,'files','27020','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10444,'files','27021','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10445,'files','27022','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10446,'files','27023','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10447,'files','27024','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10448,'files','27025','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10449,'files','27026','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10450,'files','27027','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10451,'files','27028','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10452,'files','27029','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10453,'files','27030','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10454,'files','27031','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10455,'files','27032','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10456,'files','27033','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10457,'files','27034','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10458,'files','27035','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10459,'files','27036','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10460,'files','27037','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10461,'files','27038','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10462,'files','27039','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10463,'files','27040','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10464,'files','27041','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10465,'files','27042','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10466,'files','27043','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10467,'files','27044','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10468,'files','27045','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10469,'files','27046','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10470,'files','27048','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10471,'files','27050','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10472,'files','27051','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10473,'files','27053','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10474,'files','27055','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10475,'files','27058','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10476,'files','27062','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10477,'files','27063','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10478,'files','27064','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10479,'files','27065','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10480,'files','27066','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10481,'files','27067','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10482,'files','27068','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10483,'files','27069','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10484,'files','27070','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10485,'files','27071','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10486,'files','27072','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10487,'files','27073','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10488,'files','27074','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10489,'files','27075','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10490,'files','27076','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10491,'files','27077','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10492,'files','27078','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10493,'files','27079','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10494,'files','27080','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10495,'files','27081','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10496,'files','27082','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10497,'files','27083','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10498,'files','27084','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10499,'files','27085','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10500,'files','27086','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10501,'files','27087','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10502,'files','27088','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10503,'files','27089','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10504,'files','27090','error','Deal not found: 256',NULL,'2025-11-14 00:11:14'),
(10505,'files','27091','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10506,'files','27092','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10507,'files','27093','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10508,'files','27094','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10509,'files','27095','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10510,'files','27096','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10511,'files','27097','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10512,'files','27098','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10513,'files','27099','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10514,'files','27100','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10515,'files','27101','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10516,'files','27102','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10517,'files','27103','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10518,'files','27104','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10519,'files','27106','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10520,'files','27108','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10521,'files','27109','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10522,'files','27110','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10523,'files','27111','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10524,'files','27112','error','Deal not found: 717',NULL,'2025-11-14 00:11:14'),
(10525,'files','27113','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10526,'files','27114','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10527,'files','27115','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10528,'files','27116','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10529,'files','27117','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10530,'files','27118','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10531,'files','27119','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10532,'files','27120','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10533,'files','27121','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10534,'files','27122','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10535,'files','27123','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10536,'files','27124','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10537,'files','27125','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10538,'files','27126','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10539,'files','27127','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10540,'files','27128','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10541,'files','27129','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10542,'files','27130','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10543,'files','27131','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10544,'files','27132','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10545,'files','27133','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10546,'files','27134','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10547,'files','27135','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10548,'files','27136','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10549,'files','27137','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10550,'files','27138','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10551,'files','27139','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10552,'files','27140','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10553,'files','27141','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10554,'files','27142','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10555,'files','27143','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10556,'files','27144','error','Deal not found: 192',NULL,'2025-11-14 00:11:14'),
(10557,'files','27145','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10558,'files','27146','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10559,'files','27147','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10560,'files','27148','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10561,'files','27149','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10562,'files','27150','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10563,'files','27151','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10564,'files','27152','error','Deal not found: 256',NULL,'2025-11-14 00:11:14'),
(10565,'files','27153','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10566,'files','27154','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10567,'files','27155','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10568,'files','27156','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10569,'files','27157','error','Deal not found: 508',NULL,'2025-11-14 00:11:14'),
(10570,'files','27158','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10571,'files','27159','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10572,'files','27160','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10573,'files','27161','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10574,'files','27162','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10575,'files','27163','error','Deal not found: 223',NULL,'2025-11-14 00:11:14'),
(10576,'files','27164','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10577,'files','27165','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10578,'files','27166','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10579,'files','27167','error','Deal not found: 223',NULL,'2025-11-14 00:11:14'),
(10580,'files','27168','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10581,'files','27169','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10582,'files','27170','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10583,'files','27171','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10584,'files','27172','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10585,'files','27173','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10586,'files','27174','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10587,'files','27175','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10588,'files','27176','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10589,'files','27177','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10590,'files','27178','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10591,'files','27179','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10592,'files','27180','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10593,'files','27181','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10594,'files','27182','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10595,'files','27183','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10596,'files','27184','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10597,'files','27185','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10598,'files','27186','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10599,'files','27187','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10600,'files','27188','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10601,'files','27189','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10602,'files','27190','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10603,'files','27191','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10604,'files','27192','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10605,'files','27193','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10606,'files','27194','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10607,'files','27195','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10608,'files','27196','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10609,'files','27197','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10610,'files','27198','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10611,'files','27199','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10612,'files','27200','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10613,'files','27201','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10614,'files','27202','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10615,'files','27203','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10616,'files','27204','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10617,'files','27205','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10618,'files','27208','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10619,'files','27209','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10620,'files','27210','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10621,'files','27211','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10622,'files','27212','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10623,'files','27213','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10624,'files','27214','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10625,'files','27215','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10626,'files','27216','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10627,'files','27217','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10628,'files','27218','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10629,'files','27219','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10630,'files','27220','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10631,'files','27221','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10632,'files','27222','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10633,'files','27223','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10634,'files','27224','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10635,'files','27225','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10636,'files','27226','error','Deal not found: 313',NULL,'2025-11-14 00:11:14'),
(10637,'files','27227','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10638,'files','27228','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10639,'files','27229','error','Deal not found: 313',NULL,'2025-11-14 00:11:14'),
(10640,'files','27230','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10641,'files','27231','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10642,'files','27232','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10643,'files','27233','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10644,'files','27234','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10645,'files','27235','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10646,'files','27236','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10647,'files','27237','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10648,'files','27238','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10649,'files','27239','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10650,'files','27240','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10651,'files','27241','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10652,'files','27242','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10653,'files','27243','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10654,'files','27244','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10655,'files','27245','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10656,'files','27246','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10657,'files','27247','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10658,'files','27248','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10659,'files','27249','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10660,'files','27250','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10661,'files','27251','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10662,'files','27252','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10663,'files','27253','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10664,'files','27254','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10665,'files','27255','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10666,'files','27256','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10667,'files','27257','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10668,'files','27258','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10669,'files','27259','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10670,'files','27260','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10671,'files','27261','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10672,'files','27262','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10673,'files','27263','error','Deal not found: 323',NULL,'2025-11-14 00:11:14'),
(10674,'files','27264','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10675,'files','27265','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10676,'files','27266','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10677,'files','27267','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10678,'files','27268','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10679,'files','27269','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10680,'files','27270','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10681,'files','27271','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10682,'files','27272','error','Deal not found: 323',NULL,'2025-11-14 00:11:14'),
(10683,'files','27273','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10684,'files','27274','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10685,'files','27275','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10686,'files','27276','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10687,'files','27278','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10688,'files','27280','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10689,'files','27285','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10690,'files','27286','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10691,'files','27289','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10692,'files','27290','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10693,'files','27291','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10694,'files','27292','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10695,'files','27293','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10696,'files','27294','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10697,'files','27295','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10698,'files','27296','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10699,'files','27297','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10700,'files','27298','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10701,'files','27299','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10702,'files','27300','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10703,'files','27301','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10704,'files','27302','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10705,'files','27303','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10706,'files','27304','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10707,'files','27305','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10708,'files','27306','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10709,'files','27307','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10710,'files','27308','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10711,'files','27309','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10712,'files','27310','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10713,'files','27311','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10714,'files','27312','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10715,'files','27313','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10716,'files','27314','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10717,'files','27315','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10718,'files','27316','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10719,'files','27317','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10720,'files','27318','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10721,'files','27319','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10722,'files','27320','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10723,'files','27322','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10724,'files','27323','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10725,'files','27324','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10726,'files','27325','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10727,'files','27326','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10728,'files','27327','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10729,'files','27328','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10730,'files','27329','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10731,'files','27332','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10732,'files','27333','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10733,'files','27334','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10734,'files','27335','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10735,'files','27336','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10736,'files','27337','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10737,'files','27338','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10738,'files','27339','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10739,'files','27340','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10740,'files','27341','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10741,'files','27342','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10742,'files','27343','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10743,'files','27344','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10744,'files','27345','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10745,'files','27346','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10746,'files','27347','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10747,'files','27348','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10748,'files','27349','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10749,'files','27350','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10750,'files','27351','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10751,'files','27352','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10752,'files','27353','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10753,'files','27354','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10754,'files','27355','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10755,'files','27356','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10756,'files','27357','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10757,'files','27358','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10758,'files','27359','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10759,'files','27360','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10760,'files','27361','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10761,'files','27362','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10762,'files','27363','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10763,'files','27364','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10764,'files','27365','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10765,'files','27366','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10766,'files','27367','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10767,'files','27368','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10768,'files','27369','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10769,'files','27370','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10770,'files','27371','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10771,'files','27372','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10772,'files','27373','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10773,'files','27374','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10774,'files','27375','error','Deal not found: 362',NULL,'2025-11-14 00:11:14'),
(10775,'files','27376','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10776,'files','27377','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10777,'files','27378','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10778,'files','27379','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10779,'files','27380','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10780,'files','27381','error','Deal not found: 257',NULL,'2025-11-14 00:11:14'),
(10781,'files','27382','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10782,'files','27383','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10783,'files','27384','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10784,'files','27385','error','Deal not found: 186',NULL,'2025-11-14 00:11:14'),
(10785,'files','27386','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10786,'files','27387','error','Deal not found: 528',NULL,'2025-11-14 00:11:14'),
(10787,'files','27388','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10788,'files','27389','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10789,'files','27390','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10790,'files','27391','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10791,'files','27392','error','Deal not found: 440',NULL,'2025-11-14 00:11:14'),
(10792,'files','27393','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10793,'files','27394','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10794,'files','27395','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10795,'files','27396','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10796,'files','27397','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10797,'files','27398','error','Deal not found: 486',NULL,'2025-11-14 00:11:14'),
(10798,'files','27399','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10799,'files','27400','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10800,'files','27401','error','Deal not found: 186',NULL,'2025-11-14 00:11:14'),
(10801,'files','27402','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10802,'files','27403','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10803,'files','27404','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10804,'files','27405','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10805,'files','27406','error','Deal not found: 518',NULL,'2025-11-14 00:11:14'),
(10806,'files','27407','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10807,'files','27408','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10808,'files','27409','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10809,'files','27410','error','Deal not found: 486',NULL,'2025-11-14 00:11:14'),
(10810,'files','27411','error','Deal not found: 462',NULL,'2025-11-14 00:11:14'),
(10811,'files','27412','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10812,'files','27413','error','Deal not found: 495',NULL,'2025-11-14 00:11:14'),
(10813,'files','27414','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10814,'files','27415','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10815,'files','27416','error','Deal not found: 466',NULL,'2025-11-14 00:11:14'),
(10816,'files','27417','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10817,'files','27418','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10818,'files','27419','error','Deal not found: 420',NULL,'2025-11-14 00:11:14'),
(10819,'files','27420','error','Deal not found: 548',NULL,'2025-11-14 00:11:14'),
(10820,'files','27421','error','Deal not found: 291',NULL,'2025-11-14 00:11:14'),
(10821,'files','27422','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10822,'files','27423','error','Deal not found: 339',NULL,'2025-11-14 00:11:14'),
(10823,'files','27424','error','Deal not found: 495',NULL,'2025-11-14 00:11:14'),
(10824,'files','27425','error','Deal not found: 495',NULL,'2025-11-14 00:11:14'),
(10825,'files','27426','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10826,'files','27427','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10827,'files','27428','error','Deal not found: 615',NULL,'2025-11-14 00:11:14'),
(10828,'files','27429','error','Deal not found: 623',NULL,'2025-11-14 00:11:14'),
(10829,'files','27430','error','Deal not found: 527',NULL,'2025-11-14 00:11:14'),
(10830,'files','27431','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10831,'files','27432','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10832,'files','27433','error','Deal not found: 213',NULL,'2025-11-14 00:11:14'),
(10833,'files','27434','error','Deal not found: 462',NULL,'2025-11-14 00:11:14'),
(10834,'files','27435','error','Deal not found: 390',NULL,'2025-11-14 00:11:14'),
(10835,'files','27436','error','Deal not found: 213',NULL,'2025-11-14 00:11:14'),
(10836,'files','27437','error','Deal not found: 462',NULL,'2025-11-14 00:11:14'),
(10837,'files','27438','error','Deal not found: 213',NULL,'2025-11-14 00:11:14'),
(10838,'files','27439','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10839,'files','27440','error','Deal not found: 410',NULL,'2025-11-14 00:11:14'),
(10840,'files','27441','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10841,'files','27442','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10842,'files','27443','error','Deal not found: 426',NULL,'2025-11-14 00:11:14'),
(10843,'files','27444','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10844,'files','27445','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10845,'files','27446','error','Deal not found: 483',NULL,'2025-11-14 00:11:14'),
(10846,'files','27447','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10847,'files','27448','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10848,'files','27449','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10849,'files','27450','error','Deal not found: 586',NULL,'2025-11-14 00:11:14'),
(10850,'files','27451','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10851,'files','27452','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10852,'files','27453','error','Deal not found: 472',NULL,'2025-11-14 00:11:14'),
(10853,'files','27454','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10854,'files','27455','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10855,'files','27456','error','Deal not found: 481',NULL,'2025-11-14 00:11:14'),
(10856,'files','27457','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10857,'files','27458','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10858,'files','27459','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10859,'files','27460','error','Deal not found: 291',NULL,'2025-11-14 00:11:14'),
(10860,'files','27461','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10861,'files','27462','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10862,'files','27463','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10863,'files','27464','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10864,'files','27465','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10865,'files','27467','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10866,'files','27468','error','Deal not found: 595',NULL,'2025-11-14 00:11:14'),
(10867,'files','27469','error','Deal not found: 619',NULL,'2025-11-14 00:11:14'),
(10868,'files','27470','error','Deal not found: 588',NULL,'2025-11-14 00:11:14'),
(10869,'files','27471','error','Deal not found: 606',NULL,'2025-11-14 00:11:14'),
(10870,'files','27472','error','Deal not found: 604',NULL,'2025-11-14 00:11:14'),
(10871,'files','27473','error','Deal not found: 582',NULL,'2025-11-14 00:11:14'),
(10872,'files','27474','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10873,'files','27475','error','Deal not found: 586',NULL,'2025-11-14 00:11:14'),
(10874,'files','27476','error','Deal not found: 257',NULL,'2025-11-14 00:11:14'),
(10875,'files','27477','error','Deal not found: 257',NULL,'2025-11-14 00:11:14'),
(10876,'files','27478','error','Deal not found: 599',NULL,'2025-11-14 00:11:14'),
(10877,'files','27479','error','Deal not found: 257',NULL,'2025-11-14 00:11:14'),
(10878,'files','27480','error','Deal not found: 508',NULL,'2025-11-14 00:11:14'),
(10879,'files','27481','error','Deal not found: 508',NULL,'2025-11-14 00:11:14'),
(10880,'files','27482','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10881,'files','27483','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10882,'files','27484','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10883,'files','27485','error','Deal not found: 604',NULL,'2025-11-14 00:11:14'),
(10884,'files','27486','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10885,'files','27487','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10886,'files','27488','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10887,'files','27489','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10888,'files','27490','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10889,'files','27491','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10890,'files','27492','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10891,'files','27493','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10892,'files','27494','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10893,'files','27495','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10894,'files','27496','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10895,'files','27497','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10896,'files','27498','error','Deal not found: 315',NULL,'2025-11-14 00:11:14'),
(10897,'files','27499','error','Deal not found: 315',NULL,'2025-11-14 00:11:14'),
(10898,'files','27500','error','Deal not found: 315',NULL,'2025-11-14 00:11:14'),
(10899,'files','27501','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10900,'files','27502','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10901,'files','27503','error','Deal not found: 508',NULL,'2025-11-14 00:11:14'),
(10902,'files','27504','error','Deal not found: 540',NULL,'2025-11-14 00:11:14'),
(10903,'files','27505','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10904,'files','27506','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10905,'files','27507','error','Deal not found: 540',NULL,'2025-11-14 00:11:14'),
(10906,'files','27508','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10907,'files','27509','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10908,'files','27510','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10909,'files','27511','error','Deal not found: 540',NULL,'2025-11-14 00:11:14'),
(10910,'files','27512','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10911,'files','27514','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10912,'files','27515','error','Deal not found: 460',NULL,'2025-11-14 00:11:14'),
(10913,'files','27516','error','Deal not found: 460',NULL,'2025-11-14 00:11:14'),
(10914,'files','27517','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10915,'files','27518','error','Deal not found: 315',NULL,'2025-11-14 00:11:14'),
(10916,'files','27519','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10917,'files','27520','error','Deal not found: 315',NULL,'2025-11-14 00:11:14'),
(10918,'files','27521','error','Deal not found: 315',NULL,'2025-11-14 00:11:14'),
(10919,'files','27522','error','Deal not found: 265',NULL,'2025-11-14 00:11:14'),
(10920,'files','27523','error','Deal not found: 265',NULL,'2025-11-14 00:11:14'),
(10921,'files','27524','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10922,'files','27525','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10923,'files','27526','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10924,'files','27527','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10925,'files','27528','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10926,'files','27529','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10927,'files','27530','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10928,'files','27531','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10929,'files','27532','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10930,'files','27533','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10931,'files','27534','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10932,'files','27535','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10933,'files','27536','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10934,'files','27537','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10935,'files','27538','error','Deal not found: 497',NULL,'2025-11-14 00:11:14'),
(10936,'files','27539','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10937,'files','27540','error','Deal not found: 497',NULL,'2025-11-14 00:11:14'),
(10938,'files','27541','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10939,'files','27542','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10940,'files','27543','error','Deal not found: 460',NULL,'2025-11-14 00:11:14'),
(10941,'files','27544','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10942,'files','27545','error','Deal not found: 460',NULL,'2025-11-14 00:11:14'),
(10943,'files','27546','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10944,'files','27547','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10945,'files','27548','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10946,'files','27549','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10947,'files','27550','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10948,'files','27551','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10949,'files','27552','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10950,'files','27553','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10951,'files','27554','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10952,'files','27555','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10953,'files','27556','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10954,'files','27557','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10955,'files','27558','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10956,'files','27559','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10957,'files','27560','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10958,'files','27561','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10959,'files','27562','error','Deal not found: 251',NULL,'2025-11-14 00:11:14'),
(10960,'files','27563','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10961,'files','27564','error','Deal not found: 677',NULL,'2025-11-14 00:11:14'),
(10962,'files','27565','error','Deal not found: 251',NULL,'2025-11-14 00:11:14'),
(10963,'files','27566','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10964,'files','27567','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10965,'files','27568','error','Deal not found: 249',NULL,'2025-11-14 00:11:14'),
(10966,'files','27569','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10967,'files','27570','error','Deal not found: 313',NULL,'2025-11-14 00:11:14'),
(10968,'files','27571','error','Deal not found: 313',NULL,'2025-11-14 00:11:14'),
(10969,'files','27572','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10970,'files','27573','error','Deal not found: 223',NULL,'2025-11-14 00:11:14'),
(10971,'files','27574','error','Deal not found: 223',NULL,'2025-11-14 00:11:14'),
(10972,'files','27575','error','Deal not found: 223',NULL,'2025-11-14 00:11:14'),
(10973,'files','27576','error','Deal not found: 604',NULL,'2025-11-14 00:11:14'),
(10974,'files','27577','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10975,'files','27578','error','Deal not found: 466',NULL,'2025-11-14 00:11:14'),
(10976,'files','27579','error','Deal not found: 466',NULL,'2025-11-14 00:11:14'),
(10977,'files','27580','error','Deal not found: 466',NULL,'2025-11-14 00:11:14'),
(10978,'files','27581','error','Deal not found: 466',NULL,'2025-11-14 00:11:14'),
(10979,'files','27582','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10980,'files','27583','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10981,'files','27584','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10982,'files','27585','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10983,'files','27586','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10984,'files','27587','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10985,'files','27588','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10986,'files','27589','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10987,'files','27590','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10988,'files','27591','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10989,'files','27592','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10990,'files','27593','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10991,'files','27594','error','Deal not found: 150',NULL,'2025-11-14 00:11:14'),
(10992,'files','27595','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10993,'files','27596','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10994,'files','27597','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10995,'files','27598','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10996,'files','27599','error','Deal not found: 150',NULL,'2025-11-14 00:11:14'),
(10997,'files','27600','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10998,'files','27601','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(10999,'files','27602','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11000,'files','27603','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11001,'files','27604','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11002,'files','27605','error','Deal not found: 249',NULL,'2025-11-14 00:11:14'),
(11003,'files','27606','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11004,'files','27607','error','Deal not found: 700',NULL,'2025-11-14 00:11:14'),
(11005,'files','27608','error','Deal not found: 636',NULL,'2025-11-14 00:11:14'),
(11006,'files','27609','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11007,'files','27610','error','Deal not found: 700',NULL,'2025-11-14 00:11:14'),
(11008,'files','27611','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11009,'files','27612','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11010,'files','27613','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11011,'files','27614','error','Deal not found: 249',NULL,'2025-11-14 00:11:14'),
(11012,'files','27615','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11013,'files','27616','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11014,'files','27617','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11015,'files','27618','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11016,'files','27619','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11017,'files','27620','error','Deal not found: 708',NULL,'2025-11-14 00:11:14'),
(11018,'files','27621','error','Deal not found: 627',NULL,'2025-11-14 00:11:14'),
(11019,'files','27622','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11020,'files','27623','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11021,'files','27624','error','Deal not found: 708',NULL,'2025-11-14 00:11:14'),
(11022,'files','27625','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11023,'files','27626','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11024,'files','27627','error','Deal not found: 627',NULL,'2025-11-14 00:11:14'),
(11025,'files','27628','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11026,'files','27629','error','Deal not found: 636',NULL,'2025-11-14 00:11:14'),
(11027,'files','27630','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11028,'files','27631','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11029,'files','27632','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11030,'files','27633','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11031,'files','27634','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11032,'files','27635','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11033,'files','27636','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11034,'files','27637','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11035,'files','27638','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11036,'files','27639','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11037,'files','27640','error','Deal not found: 442',NULL,'2025-11-14 00:11:14'),
(11038,'files','27641','error','Deal not found: 442',NULL,'2025-11-14 00:11:14'),
(11039,'files','27642','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11040,'files','27643','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11041,'files','27644','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11042,'files','27645','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11043,'files','27646','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11044,'files','27647','error','Deal not found: 636',NULL,'2025-11-14 00:11:14'),
(11045,'files','27648','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11046,'files','27649','error','Deal not found: 249',NULL,'2025-11-14 00:11:14'),
(11047,'files','27650','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11048,'files','27651','error','Deal not found: 249',NULL,'2025-11-14 00:11:14'),
(11049,'files','27652','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11050,'files','27653','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11051,'files','27654','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11052,'files','27655','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11053,'files','27657','error','Deal not found: 443',NULL,'2025-11-14 00:11:14'),
(11054,'files','27658','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11055,'files','27659','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11056,'files','27660','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11057,'files','27661','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11058,'files','27662','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11059,'files','27663','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11060,'files','27664','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11061,'files','27665','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11062,'files','27666','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11063,'files','27667','error','Deal not found: 249',NULL,'2025-11-14 00:11:14'),
(11064,'files','27668','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11065,'files','27669','error','Deal not found: 204',NULL,'2025-11-14 00:11:14'),
(11066,'files','27670','error','Deal not found: 249',NULL,'2025-11-14 00:11:14'),
(11067,'files','27671','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11068,'files','27672','error','Deal not found: 204',NULL,'2025-11-14 00:11:14'),
(11069,'files','27673','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11070,'files','27674','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11071,'files','27675','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11072,'files','27676','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11073,'files','27677','error','Deal not found: 717',NULL,'2025-11-14 00:11:14'),
(11074,'files','27678','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11075,'files','27679','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11076,'files','27680','error','Deal not found: 717',NULL,'2025-11-14 00:11:14'),
(11077,'files','27681','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11078,'files','27682','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11079,'files','27683','error','Deal not found: 730',NULL,'2025-11-14 00:11:14'),
(11080,'files','27684','error','Deal not found: 730',NULL,'2025-11-14 00:11:14'),
(11081,'files','27685','error','Deal not found: 61',NULL,'2025-11-14 00:11:14'),
(11082,'files','27686','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11083,'files','27687','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11084,'files','27688','error','Deal not found: 61',NULL,'2025-11-14 00:11:14'),
(11085,'files','27689','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11086,'files','27690','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11087,'files','27691','error','Deal not found: 733',NULL,'2025-11-14 00:11:14'),
(11088,'files','27692','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11089,'files','27693','error','Deal not found: 733',NULL,'2025-11-14 00:11:14'),
(11090,'files','27694','error','Deal not found: 287',NULL,'2025-11-14 00:11:14'),
(11091,'files','27695','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11092,'files','27696','error','Deal not found: 249',NULL,'2025-11-14 00:11:14'),
(11093,'files','27697','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11094,'files','27698','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11095,'files','27699','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11096,'files','27700','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11097,'files','27701','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11098,'files','27702','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11099,'files','27703','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11100,'files','27704','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11101,'files','27705','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11102,'files','27706','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11103,'files','27707','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11104,'files','27708','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11105,'files','27709','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11106,'files','27710','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11107,'files','27711','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11108,'files','27712','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11109,'files','27713','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11110,'files','27714','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11111,'files','27715','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11112,'files','27716','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11113,'files','27717','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11114,'files','27718','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11115,'files','27719','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11116,'files','27720','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11117,'files','27721','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11118,'files','27722','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11119,'files','27723','error','Deal not found: 323',NULL,'2025-11-14 00:11:14'),
(11120,'files','27724','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11121,'files','27725','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11122,'files','27726','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11123,'files','27727','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11124,'files','27728','error','Deal not found: 323',NULL,'2025-11-14 00:11:14'),
(11125,'files','27729','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11126,'files','27730','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11127,'files','27731','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11128,'files','27732','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11129,'files','27733','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11130,'files','27734','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11131,'files','27735','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11132,'files','27736','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11133,'files','27737','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11134,'files','27738','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11135,'files','27739','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11136,'files','27740','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11137,'files','27741','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11138,'files','27742','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11139,'files','27743','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11140,'files','27744','error','Deal not found: 759',NULL,'2025-11-14 00:11:14'),
(11141,'files','27745','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11142,'files','27746','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11143,'files','27747','error','Deal not found: 265',NULL,'2025-11-14 00:11:14'),
(11144,'files','27748','error','Deal not found: 265',NULL,'2025-11-14 00:11:14'),
(11145,'files','27749','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11146,'files','27750','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11147,'files','27751','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11148,'files','27752','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11149,'files','27753','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11150,'files','27754','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11151,'files','27755','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11152,'files','27756','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11153,'files','27757','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11154,'files','27758','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11155,'files','27759','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11156,'files','27760','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11157,'files','27761','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11158,'files','27762','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11159,'files','27763','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11160,'files','27764','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11161,'files','27765','error','Deal not found: 466',NULL,'2025-11-14 00:11:14'),
(11162,'files','27766','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11163,'files','27767','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11164,'files','27768','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11165,'files','27769','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11166,'files','27770','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11167,'files','27771','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11168,'files','27772','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11169,'files','27773','error','Deal not found: 466',NULL,'2025-11-14 00:11:14'),
(11170,'files','27774','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11171,'files','27775','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11172,'files','27776','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11173,'files','27777','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11174,'files','27778','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11175,'files','27779','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11176,'files','27780','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11177,'files','27781','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11178,'files','27782','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11179,'files','27783','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11180,'files','27784','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11181,'files','27785','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11182,'files','27786','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11183,'files','27787','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11184,'files','27788','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11185,'files','27789','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11186,'files','27790','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11187,'files','27791','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11188,'files','27792','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11189,'files','27793','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11190,'files','27794','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11191,'files','27795','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11192,'files','27796','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11193,'files','27797','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11194,'files','27798','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11195,'files','27799','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11196,'files','27800','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11197,'files','27801','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11198,'files','27802','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11199,'files','27803','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11200,'files','27804','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11201,'files','27805','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11202,'files','27807','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11203,'files','27808','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11204,'files','27810','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11205,'files','27812','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11206,'files','27813','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11207,'files','27814','error','Deal not found: 278',NULL,'2025-11-14 00:11:14'),
(11208,'files','27815','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11209,'files','27816','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11210,'files','27817','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11211,'files','27818','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11212,'files','27819','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11213,'files','27820','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11214,'files','27821','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11215,'files','27822','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11216,'files','27823','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11217,'files','27824','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11218,'files','27825','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11219,'files','27826','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11220,'files','27827','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11221,'files','27828','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11222,'files','27829','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11223,'files','27830','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11224,'files','27831','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11225,'files','27832','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11226,'files','27833','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11227,'files','27834','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11228,'files','27835','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11229,'files','27836','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11230,'files','27837','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11231,'files','27838','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11232,'files','27839','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11233,'files','27840','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11234,'files','27841','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11235,'files','27842','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11236,'files','27843','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11237,'files','27844','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11238,'files','27845','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11239,'files','27846','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11240,'files','27847','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11241,'files','27848','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11242,'files','27849','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11243,'files','27850','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11244,'files','27851','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11245,'files','27852','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11246,'files','27853','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11247,'files','27854','error','Deal not found: 708',NULL,'2025-11-14 00:11:14'),
(11248,'files','27855','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11249,'files','27856','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11250,'files','27857','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11251,'files','27858','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11252,'files','27859','error','Deal not found: 708',NULL,'2025-11-14 00:11:14'),
(11253,'files','27860','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11254,'files','27861','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11255,'files','27862','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11256,'files','27863','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11257,'files','27864','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11258,'files','27865','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11259,'files','27866','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11260,'files','27867','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11261,'files','27868','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11262,'files','27869','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11263,'files','27870','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11264,'files','27871','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11265,'files','27872','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11266,'files','27873','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11267,'files','27874','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11268,'files','27875','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11269,'files','27876','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11270,'files','27877','error','Deal not found: 542',NULL,'2025-11-14 00:11:14'),
(11271,'files','27878','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11272,'files','27879','error','Deal not found: 542',NULL,'2025-11-14 00:11:14'),
(11273,'files','27880','error','Deal not found: 542',NULL,'2025-11-14 00:11:14'),
(11274,'files','27881','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11275,'files','27882','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11276,'files','27883','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11277,'files','27884','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11278,'files','27885','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11279,'files','27886','error','Deal not found: 256',NULL,'2025-11-14 00:11:14'),
(11280,'files','27887','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11281,'files','27888','error','Deal not found: 256',NULL,'2025-11-14 00:11:14'),
(11282,'files','27889','error','Deal not found: 362',NULL,'2025-11-14 00:11:14'),
(11283,'files','27890','error','Deal not found: 362',NULL,'2025-11-14 00:11:14'),
(11284,'files','27891','error','Deal not found: 251',NULL,'2025-11-14 00:11:14'),
(11285,'files','27892','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11286,'files','27893','error','Deal not found: 251',NULL,'2025-11-14 00:11:14'),
(11287,'files','27895','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11288,'files','27897','error','Deal not found: 192',NULL,'2025-11-14 00:11:14'),
(11289,'files','27898','error','Deal not found: 717',NULL,'2025-11-14 00:11:14'),
(11290,'files','27899','error','Deal not found: 192',NULL,'2025-11-14 00:11:14'),
(11291,'files','27900','error','Deal not found: 717',NULL,'2025-11-14 00:11:14'),
(11292,'files','27901','error','Deal not found: 192',NULL,'2025-11-14 00:11:14'),
(11293,'files','27902','error','Deal not found: 717',NULL,'2025-11-14 00:11:14'),
(11294,'files','27903','error','Deal not found: 223',NULL,'2025-11-14 00:11:14'),
(11295,'files','27904','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11296,'files','27905','error','Deal not found: 223',NULL,'2025-11-14 00:11:14'),
(11297,'files','27906','error','Deal not found: 223',NULL,'2025-11-14 00:11:14'),
(11298,'files','27907','error','Deal not found: 627',NULL,'2025-11-14 00:11:14'),
(11299,'files','27908','error','Deal not found: 627',NULL,'2025-11-14 00:11:14'),
(11300,'files','27909','error','Deal not found: 627',NULL,'2025-11-14 00:11:14'),
(11301,'files','27910','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11302,'files','27911','error','Deal not found: 710',NULL,'2025-11-14 00:11:14'),
(11303,'files','27912','error','Deal not found: 710',NULL,'2025-11-14 00:11:14'),
(11304,'files','27913','error','Deal not found: 710',NULL,'2025-11-14 00:11:14'),
(11305,'files','27914','error','Deal not found: 939',NULL,'2025-11-14 00:11:14'),
(11306,'files','27915','error','Deal not found: 939',NULL,'2025-11-14 00:11:14'),
(11307,'files','27916','error','Deal not found: 939',NULL,'2025-11-14 00:11:14'),
(11308,'files','27917','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11309,'files','27918','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11310,'files','27919','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11311,'files','27920','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11312,'files','27921','error','Deal not found: 990',NULL,'2025-11-14 00:11:14'),
(11313,'files','27922','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11314,'files','27923','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11315,'files','27924','error','Deal not found: 990',NULL,'2025-11-14 00:11:14'),
(11316,'files','27925','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11317,'files','27926','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11318,'files','27927','error','Deal not found: 990',NULL,'2025-11-14 00:11:14'),
(11319,'files','27928','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11320,'files','27929','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11321,'files','27930','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11322,'files','27931','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11323,'files','27932','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11324,'files','27933','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11325,'files','27934','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11326,'files','27935','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11327,'files','27936','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11328,'files','27937','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11329,'files','27938','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11330,'files','27939','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11331,'files','27940','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11332,'files','27941','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11333,'files','27942','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11334,'files','27943','error','Deal not found: 323',NULL,'2025-11-14 00:11:14'),
(11335,'files','27944','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11336,'files','27945','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11337,'files','27946','error','Deal not found: 998',NULL,'2025-11-14 00:11:14'),
(11338,'files','27947','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11339,'files','27948','error','Deal not found: 998',NULL,'2025-11-14 00:11:14'),
(11340,'files','27949','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11341,'files','27950','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11342,'files','27951','error','Deal not found: 998',NULL,'2025-11-14 00:11:14'),
(11343,'files','27952','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11344,'files','27953','error','Deal not found: 1009',NULL,'2025-11-14 00:11:14'),
(11345,'files','27954','error','Deal not found: 1009',NULL,'2025-11-14 00:11:14'),
(11346,'files','27955','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11347,'files','27956','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11348,'files','27957','error','Deal not found: 1009',NULL,'2025-11-14 00:11:14'),
(11349,'files','27958','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11350,'files','27959','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11351,'files','27960','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11352,'files','27961','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11353,'files','27962','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11354,'files','27963','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11355,'files','27964','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11356,'files','27965','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11357,'files','27966','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11358,'files','27967','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11359,'files','27968','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11360,'files','27969','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11361,'files','27970','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11362,'files','27971','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11363,'files','27972','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11364,'files','27973','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11365,'files','27974','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11366,'files','27976','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11367,'files','27977','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11368,'files','27978','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11369,'files','27979','error','Deal not found: 1013',NULL,'2025-11-14 00:11:14'),
(11370,'files','27980','error','Deal not found: 1724',NULL,'2025-11-14 00:11:14'),
(11371,'files','27981','error','Deal not found: 1013',NULL,'2025-11-14 00:11:14'),
(11372,'files','27982','error','Deal not found: 1724',NULL,'2025-11-14 00:11:14'),
(11373,'files','27983','error','Deal not found: 1013',NULL,'2025-11-14 00:11:14'),
(11374,'files','27984','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11375,'files','27985','error','Deal not found: 1724',NULL,'2025-11-14 00:11:14'),
(11376,'files','27986','error','Deal not found: 1724',NULL,'2025-11-14 00:11:14'),
(11377,'files','27987','error','Deal not found: 1006',NULL,'2025-11-14 00:11:14'),
(11378,'files','27988','error','Deal not found: 1006',NULL,'2025-11-14 00:11:14'),
(11379,'files','27989','error','Deal not found: 1006',NULL,'2025-11-14 00:11:14'),
(11380,'files','27990','error','Deal not found: 986',NULL,'2025-11-14 00:11:14'),
(11381,'files','27991','error','Deal not found: 986',NULL,'2025-11-14 00:11:14'),
(11382,'files','27992','error','Deal not found: 986',NULL,'2025-11-14 00:11:14'),
(11383,'files','27993','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11384,'files','27994','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11385,'files','27995','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11386,'files','27996','error','Deal not found: 714',NULL,'2025-11-14 00:11:14'),
(11387,'files','27997','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11388,'files','27998','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11389,'files','27999','error','Deal not found: 714',NULL,'2025-11-14 00:11:14'),
(11390,'files','28000','error','Deal not found: 714',NULL,'2025-11-14 00:11:14'),
(11391,'files','28001','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11392,'files','28002','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11393,'files','28003','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11394,'files','28005','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11395,'files','28006','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11396,'files','28007','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11397,'files','28008','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11398,'files','28009','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11399,'files','28010','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11400,'files','28011','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11401,'files','28012','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11402,'files','28013','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11403,'files','28014','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11404,'files','28015','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11405,'files','28016','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11406,'files','28017','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11407,'files','28018','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11408,'files','28019','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11409,'files','28020','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11410,'files','28021','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11411,'files','28022','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11412,'files','28023','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11413,'files','28024','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11414,'files','28025','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11415,'files','28026','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11416,'files','28027','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11417,'files','28028','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11418,'files','28029','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11419,'files','28030','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11420,'files','28031','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11421,'files','28032','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11422,'files','28033','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11423,'files','28034','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11424,'files','28035','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11425,'files','28036','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11426,'files','28037','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11427,'files','28038','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11428,'files','28039','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11429,'files','28040','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11430,'files','28041','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11431,'files','28042','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11432,'files','28043','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11433,'files','28044','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11434,'files','28045','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11435,'files','28046','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11436,'files','28047','error','Deal not found: 1724',NULL,'2025-11-14 00:11:14'),
(11437,'files','28048','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11438,'files','28049','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11439,'files','28050','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11440,'files','28051','error','Deal not found: 1724',NULL,'2025-11-14 00:11:14'),
(11441,'files','28052','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11442,'files','28053','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11443,'files','28054','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11444,'files','28055','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11445,'files','28056','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11446,'files','28057','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11447,'files','28058','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11448,'files','28059','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11449,'files','28060','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11450,'files','28061','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11451,'files','28062','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11452,'files','28063','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11453,'files','28064','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11454,'files','28065','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11455,'files','28066','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11456,'files','28067','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11457,'files','28068','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11458,'files','28070','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11459,'files','28071','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11460,'files','28072','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11461,'files','28073','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11462,'files','28074','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11463,'files','28075','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11464,'files','28077','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11465,'files','28078','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11466,'files','28079','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11467,'files','28080','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11468,'files','28081','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11469,'files','28082','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11470,'files','28083','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11471,'files','28085','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11472,'files','28086','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11473,'files','28087','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11474,'files','28089','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11475,'files','28091','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11476,'files','28092','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11477,'files','28093','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11478,'files','28094','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11479,'files','28095','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11480,'files','28096','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11481,'files','28097','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11482,'files','28098','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11483,'files','28099','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11484,'files','28100','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11485,'files','28101','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11486,'files','28102','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11487,'files','28103','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11488,'files','28104','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11489,'files','28105','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11490,'files','28106','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11491,'files','28107','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11492,'files','28108','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11493,'files','28109','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11494,'files','28110','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11495,'files','28111','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11496,'files','28112','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11497,'files','28113','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11498,'files','28114','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11499,'files','28115','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11500,'files','28116','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11501,'files','28117','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11502,'files','28118','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11503,'files','28119','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11504,'files','28120','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11505,'files','28121','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11506,'files','28122','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11507,'files','28123','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11508,'files','28124','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11509,'files','28125','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11510,'files','28126','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11511,'files','28127','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11512,'files','28128','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11513,'files','28129','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11514,'files','28130','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11515,'files','28131','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11516,'files','28132','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11517,'files','28133','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11518,'files','28134','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11519,'files','28135','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11520,'files','28136','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11521,'files','28137','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11522,'files','28138','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11523,'files','28139','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11524,'files','28140','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11525,'files','28141','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11526,'files','28142','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11527,'files','28143','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11528,'files','28144','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11529,'files','28145','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11530,'files','28146','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11531,'files','28147','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11532,'files','28148','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11533,'files','28149','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11534,'files','28150','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11535,'files','28151','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11536,'files','28152','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11537,'files','28153','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11538,'files','28154','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11539,'files','28155','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11540,'files','28156','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11541,'files','28157','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11542,'files','28158','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11543,'files','28159','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11544,'files','28160','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11545,'files','28161','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11546,'files','28162','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11547,'files','28163','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11548,'files','28164','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11549,'files','28165','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11550,'files','28166','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11551,'files','28167','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11552,'files','28168','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11553,'files','28169','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11554,'files','28170','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11555,'files','28171','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11556,'files','28172','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11557,'files','28173','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11558,'files','28174','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11559,'files','28175','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11560,'files','28176','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11561,'files','28177','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11562,'files','28178','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11563,'files','28179','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11564,'files','28180','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11565,'files','28181','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11566,'files','28182','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11567,'files','28183','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11568,'files','28184','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11569,'files','28185','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11570,'files','28186','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11571,'files','28187','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11572,'files','28188','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11573,'files','28189','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11574,'files','28190','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11575,'files','28191','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11576,'files','28192','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11577,'files','28193','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11578,'files','28194','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11579,'files','28195','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11580,'files','28196','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11581,'files','28197','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11582,'files','28198','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11583,'files','28199','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11584,'files','28200','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11585,'files','28201','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11586,'files','28202','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11587,'files','28203','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11588,'files','28204','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11589,'files','28205','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11590,'files','28206','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11591,'files','28209','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11592,'files','28211','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11593,'files','28212','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11594,'files','28214','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11595,'files','28215','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11596,'files','28216','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11597,'files','28217','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11598,'files','28219','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11599,'files','28221','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11600,'files','28222','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11601,'files','28223','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11602,'files','28224','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11603,'files','28225','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11604,'files','28226','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11605,'files','28228','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11606,'files','28229','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11607,'files','28231','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11608,'files','28232','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11609,'files','28233','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11610,'files','28234','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11611,'files','28235','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11612,'files','28236','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11613,'files','28237','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11614,'files','28238','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11615,'files','28239','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11616,'files','28240','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11617,'files','28241','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11618,'files','28242','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11619,'files','28243','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11620,'files','28244','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11621,'files','28245','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11622,'files','28246','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11623,'files','28247','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11624,'files','28248','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11625,'files','28249','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11626,'files','28250','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11627,'files','28251','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11628,'files','28252','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11629,'files','28253','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11630,'files','28254','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11631,'files','28255','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11632,'files','28256','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11633,'files','28257','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11634,'files','28258','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11635,'files','28259','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11636,'files','28260','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11637,'files','28261','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11638,'files','28262','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11639,'files','28263','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11640,'files','28264','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11641,'files','28265','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11642,'files','28267','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11643,'files','28268','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11644,'files','28269','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11645,'files','28270','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11646,'files','28271','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11647,'files','28272','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11648,'files','28273','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11649,'files','28274','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11650,'files','28275','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11651,'files','28276','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11652,'files','28277','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11653,'files','28278','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11654,'files','28279','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11655,'files','28280','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11656,'files','28281','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11657,'files','28282','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11658,'files','28283','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11659,'files','28284','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11660,'files','28285','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11661,'files','28286','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11662,'files','28287','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11663,'files','28288','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11664,'files','28289','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11665,'files','28290','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11666,'files','28291','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11667,'files','28292','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11668,'files','28293','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11669,'files','28294','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11670,'files','28295','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11671,'files','28296','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11672,'files','28297','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11673,'files','28298','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11674,'files','28300','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11675,'files','28301','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11676,'files','28302','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11677,'files','28303','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11678,'files','28304','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11679,'files','28305','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11680,'files','28306','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11681,'files','28307','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11682,'files','28308','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11683,'files','28309','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11684,'files','28310','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11685,'files','28311','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11686,'files','28312','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11687,'files','28313','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11688,'files','28314','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11689,'files','28315','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11690,'files','28316','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11691,'files','28317','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11692,'files','28318','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11693,'files','28319','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11694,'files','28320','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11695,'files','28321','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11696,'files','28322','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11697,'files','28323','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(11698,'files','28324','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(11699,'files','28325','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11700,'files','28326','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11701,'files','28327','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11702,'files','28328','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11703,'files','28329','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11704,'files','28330','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11705,'files','28331','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11706,'files','28332','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11707,'files','28333','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11708,'files','28334','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(11709,'files','28335','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11710,'files','28336','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11711,'files','28337','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11712,'files','28338','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11713,'files','28339','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(11714,'files','28340','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(11715,'files','28341','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11716,'files','28342','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11717,'files','28343','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11718,'files','28344','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11719,'files','28345','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11720,'files','28346','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11721,'files','28347','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11722,'files','28348','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11723,'files','28349','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11724,'files','28350','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11725,'files','28351','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11726,'files','28352','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11727,'files','28353','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11728,'files','28354','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11729,'files','28355','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11730,'files','28356','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11731,'files','28357','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11732,'files','28358','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11733,'files','28359','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11734,'files','28360','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11735,'files','28361','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11736,'files','28362','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11737,'files','28363','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11738,'files','28364','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11739,'files','28365','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11740,'files','28366','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11741,'files','28367','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11742,'files','28368','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11743,'files','28369','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11744,'files','28370','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11745,'files','28371','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11746,'files','28372','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11747,'files','28373','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11748,'files','28374','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11749,'files','28375','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11750,'files','28376','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11751,'files','28377','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11752,'files','28378','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11753,'files','28379','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11754,'files','28380','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11755,'files','28381','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11756,'files','28382','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11757,'files','28383','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11758,'files','28384','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11759,'files','28385','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11760,'files','28386','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11761,'files','28387','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11762,'files','28388','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11763,'files','28389','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11764,'files','28390','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11765,'files','28391','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11766,'files','28392','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11767,'files','28393','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11768,'files','28394','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11769,'files','28395','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11770,'files','28396','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11771,'files','28397','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11772,'files','28398','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11773,'files','28399','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11774,'files','28400','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11775,'files','28401','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11776,'files','28402','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11777,'files','28403','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11778,'files','28404','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11779,'files','28405','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11780,'files','28406','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11781,'files','28407','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11782,'files','28408','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11783,'files','28409','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11784,'files','28410','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11785,'files','28411','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11786,'files','28412','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11787,'files','28413','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11788,'files','28414','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11789,'files','28415','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11790,'files','28416','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11791,'files','28417','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11792,'files','28418','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11793,'files','28419','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11794,'files','28420','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11795,'files','28421','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11796,'files','28422','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11797,'files','28423','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11798,'files','28424','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11799,'files','28425','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11800,'files','28426','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11801,'files','28427','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11802,'files','28428','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11803,'files','28429','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11804,'files','28430','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11805,'files','28431','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11806,'files','28432','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11807,'files','28433','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11808,'files','28434','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11809,'files','28435','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11810,'files','28436','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11811,'files','28437','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11812,'files','28438','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11813,'files','28439','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11814,'files','28440','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11815,'files','28441','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11816,'files','28442','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11817,'files','28443','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11818,'files','28444','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11819,'files','28445','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11820,'files','28446','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11821,'files','28447','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11822,'files','28448','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11823,'files','28449','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11824,'files','28450','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11825,'files','28451','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11826,'files','28452','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11827,'files','28453','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11828,'files','28454','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11829,'files','28455','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11830,'files','28456','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11831,'files','28457','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11832,'files','28458','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11833,'files','28459','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11834,'files','28460','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11835,'files','28461','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11836,'files','28462','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11837,'files','28463','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11838,'files','28464','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11839,'files','28465','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11840,'files','28466','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11841,'files','28467','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11842,'files','28468','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11843,'files','28469','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11844,'files','28470','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11845,'files','28471','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11846,'files','28472','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11847,'files','28473','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11848,'files','28474','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11849,'files','28475','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11850,'files','28476','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11851,'files','28477','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11852,'files','28478','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11853,'files','28479','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11854,'files','28480','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11855,'files','28481','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11856,'files','28482','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11857,'files','28483','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11858,'files','28484','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(11859,'files','28485','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11860,'files','28486','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(11861,'files','28487','error','Deal not found: 1210',NULL,'2025-11-14 00:11:14'),
(11862,'files','28488','error','Deal not found: 1210',NULL,'2025-11-14 00:11:14'),
(11863,'files','28489','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(11864,'files','28490','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11865,'files','28491','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11866,'files','28492','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11867,'files','28493','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11868,'files','28494','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(11869,'files','28495','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11870,'files','28496','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11871,'files','28497','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11872,'files','28498','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11873,'files','28499','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11874,'files','28500','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11875,'files','28501','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11876,'files','28502','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11877,'files','28503','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11878,'files','28504','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11879,'files','28505','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11880,'files','28506','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11881,'files','28507','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11882,'files','28508','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11883,'files','28509','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11884,'files','28510','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11885,'files','28511','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11886,'files','28512','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11887,'files','28513','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11888,'files','28514','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11889,'files','28515','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11890,'files','28516','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11891,'files','28517','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11892,'files','28518','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11893,'files','28519','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11894,'files','28520','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11895,'files','28521','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11896,'files','28522','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11897,'files','28523','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11898,'files','28524','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11899,'files','28525','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11900,'files','28526','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11901,'files','28527','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11902,'files','28529','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11903,'files','28530','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11904,'files','28531','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11905,'files','28532','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11906,'files','28533','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11907,'files','28534','error','Deal not found: 1724',NULL,'2025-11-14 00:11:14'),
(11908,'files','28535','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11909,'files','28536','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(11910,'files','28537','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11911,'files','28538','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11912,'files','28539','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11913,'files','28540','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11914,'files','28541','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11915,'files','28542','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11916,'files','28543','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11917,'files','28544','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11918,'files','28545','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11919,'files','28546','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11920,'files','28547','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11921,'files','28548','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11922,'files','28549','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11923,'files','28550','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11924,'files','28551','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11925,'files','28552','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11926,'files','28553','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11927,'files','28554','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11928,'files','28555','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11929,'files','28556','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11930,'files','28557','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11931,'files','28558','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11932,'files','28559','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11933,'files','28560','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11934,'files','28561','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11935,'files','28562','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11936,'files','28563','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11937,'files','28564','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11938,'files','28565','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11939,'files','28566','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11940,'files','28567','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11941,'files','28568','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11942,'files','28569','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11943,'files','28570','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11944,'files','28571','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11945,'files','28572','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11946,'files','28573','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11947,'files','28574','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11948,'files','28575','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11949,'files','28576','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11950,'files','28577','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11951,'files','28578','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(11952,'files','28579','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11953,'files','28580','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11954,'files','28581','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11955,'files','28582','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11956,'files','28583','error','Deal not found: 1198',NULL,'2025-11-14 00:11:14'),
(11957,'files','28584','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11958,'files','28585','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11959,'files','28586','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11960,'files','28587','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11961,'files','28588','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11962,'files','28589','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11963,'files','28590','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11964,'files','28591','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11965,'files','28592','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11966,'files','28593','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11967,'files','28594','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11968,'files','28595','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11969,'files','28596','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11970,'files','28597','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11971,'files','28598','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11972,'files','28599','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11973,'files','28600','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11974,'files','28601','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11975,'files','28602','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11976,'files','28603','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11977,'files','28604','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11978,'files','28605','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11979,'files','28606','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11980,'files','28607','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11981,'files','28608','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11982,'files','28609','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11983,'files','28610','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11984,'files','28611','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11985,'files','28612','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11986,'files','28613','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11987,'files','28614','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11988,'files','28615','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11989,'files','28616','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11990,'files','28617','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11991,'files','28618','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11992,'files','28619','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11993,'files','28620','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11994,'files','28621','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11995,'files','28622','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11996,'files','28623','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11997,'files','28624','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11998,'files','28625','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(11999,'files','28626','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12000,'files','28627','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12001,'files','28628','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12002,'files','28629','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12003,'files','28630','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12004,'files','28631','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12005,'files','28632','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12006,'files','28633','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12007,'files','28634','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12008,'files','28635','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12009,'files','28636','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12010,'files','28637','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12011,'files','28638','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12012,'files','28639','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12013,'files','28640','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12014,'files','28641','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12015,'files','28642','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12016,'files','28643','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12017,'files','28644','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12018,'files','28645','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12019,'files','28646','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12020,'files','28647','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12021,'files','28648','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12022,'files','28649','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12023,'files','28650','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12024,'files','28651','error','Deal not found: 1198',NULL,'2025-11-14 00:11:14'),
(12025,'files','28652','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12026,'files','28653','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12027,'files','28654','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12028,'files','28655','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12029,'files','28656','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12030,'files','28657','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12031,'files','28658','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12032,'files','28659','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12033,'files','28660','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12034,'files','28661','error','Deal not found: 1198',NULL,'2025-11-14 00:11:14'),
(12035,'files','28662','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12036,'files','28663','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12037,'files','28664','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12038,'files','28665','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12039,'files','28666','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12040,'files','28667','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12041,'files','28668','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12042,'files','28669','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12043,'files','28670','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12044,'files','28671','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12045,'files','28672','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12046,'files','28673','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12047,'files','28674','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12048,'files','28675','error','Deal not found: 1293',NULL,'2025-11-14 00:11:14'),
(12049,'files','28676','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12050,'files','28677','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12051,'files','28678','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12052,'files','28679','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12053,'files','28680','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12054,'files','28681','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12055,'files','28682','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12056,'files','28683','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12057,'files','28684','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12058,'files','28685','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12059,'files','28686','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12060,'files','28687','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12061,'files','28688','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12062,'files','28689','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12063,'files','28690','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12064,'files','28691','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12065,'files','28692','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12066,'files','28693','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12067,'files','28694','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12068,'files','28695','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12069,'files','28696','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12070,'files','28697','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12071,'files','28698','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12072,'files','28699','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12073,'files','28700','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12074,'files','28701','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12075,'files','28702','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12076,'files','28703','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12077,'files','28704','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12078,'files','28705','error','Deal not found: 1198',NULL,'2025-11-14 00:11:14'),
(12079,'files','28706','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12080,'files','28707','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12081,'files','28708','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12082,'files','28709','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12083,'files','28710','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12084,'files','28711','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12085,'files','28712','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12086,'files','28713','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12087,'files','28714','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12088,'files','28715','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12089,'files','28716','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12090,'files','28717','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12091,'files','28718','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12092,'files','28719','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12093,'files','28720','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12094,'files','28721','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12095,'files','28722','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12096,'files','28723','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12097,'files','28724','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12098,'files','28725','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12099,'files','28726','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12100,'files','28727','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12101,'files','28728','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12102,'files','28729','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12103,'files','28730','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12104,'files','28731','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12105,'files','28732','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12106,'files','28733','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12107,'files','28734','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12108,'files','28735','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12109,'files','28736','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12110,'files','28737','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12111,'files','28738','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12112,'files','28739','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12113,'files','28740','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12114,'files','28741','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12115,'files','28742','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12116,'files','28743','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12117,'files','28744','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12118,'files','28745','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12119,'files','28746','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12120,'files','28747','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12121,'files','28748','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12122,'files','28749','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12123,'files','28750','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12124,'files','28751','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12125,'files','28752','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12126,'files','28753','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12127,'files','28754','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12128,'files','28755','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12129,'files','28756','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12130,'files','28757','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12131,'files','28758','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12132,'files','28759','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12133,'files','28760','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12134,'files','28761','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12135,'files','28762','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12136,'files','28763','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12137,'files','28764','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12138,'files','28765','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12139,'files','28766','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12140,'files','28767','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12141,'files','28768','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12142,'files','28769','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12143,'files','28770','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12144,'files','28771','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12145,'files','28772','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12146,'files','28773','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12147,'files','28774','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12148,'files','28775','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12149,'files','28776','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12150,'files','28777','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12151,'files','28778','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12152,'files','28779','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12153,'files','28780','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12154,'files','28781','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12155,'files','28782','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12156,'files','28783','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12157,'files','28784','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12158,'files','28785','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12159,'files','28786','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12160,'files','28787','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12161,'files','28788','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12162,'files','28789','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12163,'files','28790','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12164,'files','28791','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12165,'files','28792','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12166,'files','28793','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12167,'files','28794','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12168,'files','28795','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12169,'files','28796','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12170,'files','28797','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12171,'files','28798','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12172,'files','28799','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12173,'files','28800','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12174,'files','28801','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12175,'files','28802','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12176,'files','28803','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12177,'files','28804','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12178,'files','28806','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12179,'files','28807','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12180,'files','28808','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12181,'files','28809','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12182,'files','28810','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12183,'files','28811','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12184,'files','28812','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12185,'files','28813','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12186,'files','28814','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12187,'files','28815','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12188,'files','28816','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12189,'files','28817','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12190,'files','28818','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12191,'files','28819','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12192,'files','28820','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12193,'files','28821','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12194,'files','28822','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12195,'files','28823','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12196,'files','28824','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12197,'files','28825','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12198,'files','28826','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12199,'files','28827','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12200,'files','28828','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12201,'files','28829','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12202,'files','28830','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12203,'files','28831','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12204,'files','28832','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12205,'files','28833','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12206,'files','28834','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12207,'files','28835','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12208,'files','28836','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12209,'files','28837','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12210,'files','28838','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12211,'files','28839','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12212,'files','28840','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12213,'files','28841','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12214,'files','28842','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12215,'files','28843','error','Deal not found: 1293',NULL,'2025-11-14 00:11:14'),
(12216,'files','28844','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12217,'files','28845','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12218,'files','28846','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12219,'files','28847','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12220,'files','28848','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12221,'files','28849','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12222,'files','28850','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12223,'files','28851','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12224,'files','28852','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12225,'files','28853','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12226,'files','28854','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12227,'files','28855','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12228,'files','28856','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12229,'files','28857','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12230,'files','28858','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12231,'files','28859','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12232,'files','28860','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12233,'files','28861','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12234,'files','28862','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12235,'files','28863','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12236,'files','28864','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12237,'files','28865','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12238,'files','28866','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12239,'files','28867','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12240,'files','28868','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12241,'files','28869','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12242,'files','28870','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12243,'files','28871','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12244,'files','28872','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12245,'files','28873','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12246,'files','28874','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12247,'files','28875','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12248,'files','28876','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12249,'files','28877','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12250,'files','28878','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12251,'files','28879','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12252,'files','28880','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12253,'files','28881','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12254,'files','28882','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12255,'files','28883','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12256,'files','28884','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12257,'files','28885','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12258,'files','28886','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12259,'files','28887','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12260,'files','28888','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12261,'files','28889','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12262,'files','28890','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12263,'files','28891','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12264,'files','28892','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12265,'files','28893','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12266,'files','28894','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12267,'files','28895','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12268,'files','28896','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12269,'files','28897','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12270,'files','28898','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12271,'files','28899','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12272,'files','28900','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12273,'files','28901','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12274,'files','28902','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12275,'files','28903','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12276,'files','28904','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12277,'files','28905','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12278,'files','28906','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12279,'files','28907','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12280,'files','28908','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12281,'files','28909','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12282,'files','28910','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12283,'files','28911','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12284,'files','28912','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12285,'files','28913','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12286,'files','28914','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12287,'files','28915','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12288,'files','28916','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12289,'files','28917','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12290,'files','28918','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12291,'files','28919','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12292,'files','28920','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12293,'files','28921','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12294,'files','28922','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12295,'files','28923','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12296,'files','28924','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12297,'files','28925','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12298,'files','28926','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12299,'files','28927','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12300,'files','28928','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12301,'files','28929','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12302,'files','28930','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12303,'files','28931','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12304,'files','28932','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12305,'files','28933','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12306,'files','28934','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12307,'files','28935','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12308,'files','28936','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12309,'files','28937','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12310,'files','28938','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12311,'files','28939','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12312,'files','28940','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12313,'files','28941','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12314,'files','28942','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12315,'files','28943','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12316,'files','28944','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12317,'files','28945','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12318,'files','28946','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12319,'files','28947','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12320,'files','28948','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12321,'files','28949','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12322,'files','28950','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12323,'files','28951','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12324,'files','28952','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12325,'files','28953','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12326,'files','28954','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12327,'files','28955','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12328,'files','28956','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12329,'files','28957','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12330,'files','28958','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12331,'files','28959','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12332,'files','28960','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12333,'files','28961','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12334,'files','28962','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12335,'files','28963','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12336,'files','28964','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12337,'files','28965','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12338,'files','28966','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12339,'files','28967','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12340,'files','28968','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12341,'files','28969','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12342,'files','28970','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12343,'files','28971','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12344,'files','28972','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12345,'files','28973','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12346,'files','28974','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12347,'files','28975','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12348,'files','28976','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12349,'files','28977','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12350,'files','28978','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12351,'files','28979','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12352,'files','28980','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12353,'files','28981','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12354,'files','28982','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12355,'files','28983','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12356,'files','28984','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12357,'files','28985','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12358,'files','28986','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12359,'files','28987','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12360,'files','28988','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12361,'files','28989','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12362,'files','28990','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12363,'files','28991','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12364,'files','28992','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12365,'files','28993','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12366,'files','28994','skipped','No deal associated',NULL,'2025-11-14 00:11:14');
INSERT INTO `temp_pipedrive_import_log` VALUES
(12367,'files','28995','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12368,'files','28996','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12369,'files','28997','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12370,'files','28998','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12371,'files','28999','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12372,'files','29000','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12373,'files','29001','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12374,'files','29002','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12375,'files','29003','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12376,'files','29004','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12377,'files','29005','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12378,'files','29006','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12379,'files','29007','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12380,'files','29008','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12381,'files','29009','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12382,'files','29010','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12383,'files','29011','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12384,'files','29012','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12385,'files','29013','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12386,'files','29014','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12387,'files','29015','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12388,'files','29016','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12389,'files','29017','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12390,'files','29018','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12391,'files','29019','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12392,'files','29020','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12393,'files','29021','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12394,'files','29022','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12395,'files','29023','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12396,'files','29024','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12397,'files','29025','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12398,'files','29026','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12399,'files','29027','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12400,'files','29028','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12401,'files','29029','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12402,'files','29030','error','Deal not found: 1427',NULL,'2025-11-14 00:11:14'),
(12403,'files','29031','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12404,'files','29032','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12405,'files','29033','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12406,'files','29034','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12407,'files','29035','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12408,'files','29036','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12409,'files','29037','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12410,'files','29038','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12411,'files','29039','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12412,'files','29040','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12413,'files','29041','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12414,'files','29042','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12415,'files','29043','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12416,'files','29044','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12417,'files','29045','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12418,'files','29046','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12419,'files','29047','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12420,'files','29048','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12421,'files','29049','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12422,'files','29050','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12423,'files','29051','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12424,'files','29052','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12425,'files','29053','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12426,'files','29054','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12427,'files','29055','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12428,'files','29056','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12429,'files','29057','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12430,'files','29058','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12431,'files','29059','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12432,'files','29060','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12433,'files','29061','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12434,'files','29062','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12435,'files','29063','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12436,'files','29064','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12437,'files','29065','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12438,'files','29066','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12439,'files','29067','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12440,'files','29068','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12441,'files','29069','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12442,'files','29070','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12443,'files','29071','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12444,'files','29072','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12445,'files','29073','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12446,'files','29074','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12447,'files','29075','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12448,'files','29076','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12449,'files','29077','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12450,'files','29078','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12451,'files','29079','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12452,'files','29080','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12453,'files','29081','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12454,'files','29082','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12455,'files','29083','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12456,'files','29084','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12457,'files','29085','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12458,'files','29086','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12459,'files','29087','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12460,'files','29088','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12461,'files','29089','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12462,'files','29090','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12463,'files','29091','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12464,'files','29092','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12465,'files','29093','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12466,'files','29094','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12467,'files','29095','error','Deal not found: 1339',NULL,'2025-11-14 00:11:14'),
(12468,'files','29096','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12469,'files','29097','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12470,'files','29098','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12471,'files','29099','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12472,'files','29100','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12473,'files','29101','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12474,'files','29102','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12475,'files','29103','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12476,'files','29104','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12477,'files','29105','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12478,'files','29106','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12479,'files','29107','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12480,'files','29108','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12481,'files','29109','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12482,'files','29110','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12483,'files','29111','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12484,'files','29112','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12485,'files','29113','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12486,'files','29114','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12487,'files','29115','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12488,'files','29116','error','Deal not found: 1427',NULL,'2025-11-14 00:11:14'),
(12489,'files','29117','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12490,'files','29118','error','Deal not found: 1427',NULL,'2025-11-14 00:11:14'),
(12491,'files','29119','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12492,'files','29120','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12493,'files','29121','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12494,'files','29122','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12495,'files','29123','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12496,'files','29124','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12497,'files','29125','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12498,'files','29126','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12499,'files','29127','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12500,'files','29128','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12501,'files','29129','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12502,'files','29130','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12503,'files','29131','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12504,'files','29132','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12505,'files','29133','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12506,'files','29134','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12507,'files','29135','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12508,'files','29136','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12509,'files','29137','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12510,'files','29138','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12511,'files','29139','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12512,'files','29140','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12513,'files','29141','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12514,'files','29142','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12515,'files','29143','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12516,'files','29144','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12517,'files','29145','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12518,'files','29146','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12519,'files','29147','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12520,'files','29148','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12521,'files','29149','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12522,'files','29150','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12523,'files','29151','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12524,'files','29152','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12525,'files','29153','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12526,'files','29154','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12527,'files','29155','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12528,'files','29156','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12529,'files','29157','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12530,'files','29158','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12531,'files','29159','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12532,'files','29160','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12533,'files','29161','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12534,'files','29162','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12535,'files','29163','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12536,'files','29164','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12537,'files','29165','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12538,'files','29166','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12539,'files','29167','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12540,'files','29168','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12541,'files','29169','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12542,'files','29170','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12543,'files','29171','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12544,'files','29172','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12545,'files','29173','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12546,'files','29174','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12547,'files','29175','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12548,'files','29176','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12549,'files','29177','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12550,'files','29178','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12551,'files','29179','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12552,'files','29180','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12553,'files','29181','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12554,'files','29182','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12555,'files','29183','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12556,'files','29184','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12557,'files','29185','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12558,'files','29186','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12559,'files','29187','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12560,'files','29188','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12561,'files','29189','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12562,'files','29190','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12563,'files','29191','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12564,'files','29192','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12565,'files','29193','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12566,'files','29194','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12567,'files','29195','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12568,'files','29196','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12569,'files','29197','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12570,'files','29198','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12571,'files','29199','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12572,'files','29200','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12573,'files','29201','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12574,'files','29202','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12575,'files','29203','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12576,'files','29204','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12577,'files','29205','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12578,'files','29206','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12579,'files','29207','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12580,'files','29208','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12581,'files','29209','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12582,'files','29210','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12583,'files','29211','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12584,'files','29212','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12585,'files','29213','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12586,'files','29214','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12587,'files','29215','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12588,'files','29216','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12589,'files','29217','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12590,'files','29218','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12591,'files','29219','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12592,'files','29220','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12593,'files','29221','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12594,'files','29222','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12595,'files','29223','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12596,'files','29224','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12597,'files','29225','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12598,'files','29226','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12599,'files','29227','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12600,'files','29228','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12601,'files','29229','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12602,'files','29230','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12603,'files','29231','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12604,'files','29232','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12605,'files','29233','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12606,'files','29234','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12607,'files','29235','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12608,'files','29236','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12609,'files','29237','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12610,'files','29238','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12611,'files','29239','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12612,'files','29240','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12613,'files','29241','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12614,'files','29242','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12615,'files','29243','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12616,'files','29244','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12617,'files','29245','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12618,'files','29246','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12619,'files','29247','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12620,'files','29248','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12621,'files','29249','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12622,'files','29250','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12623,'files','29251','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12624,'files','29252','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12625,'files','29253','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12626,'files','29254','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12627,'files','29255','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12628,'files','29256','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12629,'files','29257','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12630,'files','29258','error','Deal not found: 1293',NULL,'2025-11-14 00:11:14'),
(12631,'files','29259','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12632,'files','29260','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12633,'files','29261','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12634,'files','29262','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12635,'files','29263','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12636,'files','29264','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12637,'files','29265','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12638,'files','29266','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12639,'files','29267','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12640,'files','29268','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12641,'files','29269','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12642,'files','29270','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12643,'files','29271','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12644,'files','29272','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12645,'files','29273','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12646,'files','29274','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12647,'files','29275','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12648,'files','29276','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12649,'files','29277','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12650,'files','29278','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12651,'files','29279','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12652,'files','29280','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12653,'files','29281','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12654,'files','29282','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12655,'files','29283','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12656,'files','29284','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12657,'files','29285','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12658,'files','29286','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12659,'files','29287','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12660,'files','29288','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12661,'files','29289','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12662,'files','29290','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12663,'files','29291','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12664,'files','29292','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12665,'files','29293','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12666,'files','29294','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12667,'files','29295','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12668,'files','29296','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12669,'files','29297','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12670,'files','29298','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12671,'files','29299','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12672,'files','29300','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12673,'files','29301','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12674,'files','29302','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12675,'files','29303','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12676,'files','29304','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12677,'files','29305','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12678,'files','29306','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12679,'files','29307','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12680,'files','29308','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12681,'files','29309','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12682,'files','29310','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12683,'files','29311','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12684,'files','29312','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12685,'files','29313','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12686,'files','29314','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12687,'files','29315','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12688,'files','29316','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12689,'files','29317','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12690,'files','29318','error','Deal not found: 1198',NULL,'2025-11-14 00:11:14'),
(12691,'files','29319','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12692,'files','29320','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12693,'files','29321','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12694,'files','29322','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12695,'files','29323','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12696,'files','29324','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12697,'files','29325','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12698,'files','29326','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12699,'files','29327','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12700,'files','29328','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12701,'files','29329','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12702,'files','29330','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12703,'files','29331','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12704,'files','29332','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12705,'files','29333','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12706,'files','29334','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12707,'files','29335','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12708,'files','29336','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12709,'files','29337','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12710,'files','29338','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12711,'files','29339','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12712,'files','29340','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12713,'files','29341','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12714,'files','29342','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12715,'files','29343','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12716,'files','29344','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12717,'files','29345','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12718,'files','29346','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12719,'files','29347','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12720,'files','29348','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12721,'files','29349','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12722,'files','29350','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12723,'files','29351','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12724,'files','29352','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12725,'files','29353','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12726,'files','29354','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12727,'files','29355','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12728,'files','29356','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12729,'files','29357','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12730,'files','29358','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12731,'files','29359','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12732,'files','29360','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12733,'files','29361','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12734,'files','29362','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12735,'files','29363','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12736,'files','29364','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12737,'files','29365','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12738,'files','29366','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12739,'files','29367','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12740,'files','29368','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12741,'files','29369','error','Deal not found: 1427',NULL,'2025-11-14 00:11:14'),
(12742,'files','29370','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12743,'files','29371','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12744,'files','29372','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12745,'files','29373','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12746,'files','29374','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12747,'files','29375','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12748,'files','29376','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12749,'files','29377','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12750,'files','29378','error','Deal not found: 1267',NULL,'2025-11-14 00:11:14'),
(12751,'files','29379','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12752,'files','29380','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12753,'files','29381','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12754,'files','29382','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12755,'files','29383','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12756,'files','29384','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12757,'files','29385','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12758,'files','29386','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12759,'files','29387','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12760,'files','29388','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12761,'files','29389','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12762,'files','29390','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12763,'files','29391','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12764,'files','29392','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12765,'files','29393','error','Deal not found: 1427',NULL,'2025-11-14 00:11:14'),
(12766,'files','29394','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12767,'files','29395','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12768,'files','29396','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12769,'files','29397','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12770,'files','29398','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12771,'files','29399','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12772,'files','29400','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12773,'files','29401','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12774,'files','29402','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12775,'files','29403','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12776,'files','29404','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12777,'files','29405','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12778,'files','29406','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12779,'files','29407','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12780,'files','29408','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12781,'files','29409','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12782,'files','29410','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12783,'files','29411','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12784,'files','29412','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12785,'files','29413','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12786,'files','29414','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12787,'files','29415','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12788,'files','29416','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12789,'files','29417','error','Deal not found: 1198',NULL,'2025-11-14 00:11:14'),
(12790,'files','29418','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12791,'files','29419','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12792,'files','29420','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12793,'files','29421','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12794,'files','29422','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12795,'files','29423','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12796,'files','29424','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12797,'files','29425','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12798,'files','29426','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12799,'files','29427','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12800,'files','29428','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12801,'files','29429','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12802,'files','29430','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12803,'files','29431','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12804,'files','29432','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12805,'files','29433','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12806,'files','29434','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12807,'files','29435','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12808,'files','29436','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12809,'files','29437','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12810,'files','29438','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12811,'files','29439','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12812,'files','29440','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12813,'files','29441','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12814,'files','29442','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12815,'files','29443','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12816,'files','29444','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12817,'files','29445','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12818,'files','29446','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12819,'files','29447','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12820,'files','29448','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12821,'files','29449','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12822,'files','29450','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12823,'files','29451','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12824,'files','29452','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12825,'files','29453','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12826,'files','29454','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12827,'files','29455','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12828,'files','29456','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12829,'files','29457','error','Deal not found: 1492',NULL,'2025-11-14 00:11:14'),
(12830,'files','29458','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12831,'files','29459','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12832,'files','29460','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12833,'files','29461','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12834,'files','29462','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12835,'files','29463','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12836,'files','29464','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12837,'files','29465','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12838,'files','29466','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12839,'files','29467','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12840,'files','29468','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12841,'files','29469','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12842,'files','29470','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12843,'files','29471','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12844,'files','29472','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12845,'files','29473','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12846,'files','29474','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12847,'files','29475','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12848,'files','29476','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12849,'files','29477','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12850,'files','29478','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12851,'files','29479','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12852,'files','29480','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12853,'files','29481','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12854,'files','29482','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12855,'files','29483','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12856,'files','29484','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12857,'files','29485','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12858,'files','29486','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12859,'files','29487','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12860,'files','29488','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12861,'files','29489','error','Deal not found: 1427',NULL,'2025-11-14 00:11:14'),
(12862,'files','29490','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12863,'files','29491','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12864,'files','29492','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12865,'files','29493','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12866,'files','29494','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12867,'files','29495','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12868,'files','29496','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12869,'files','29497','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12870,'files','29498','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12871,'files','29499','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12872,'files','29500','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12873,'files','29501','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12874,'files','29502','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12875,'files','29503','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12876,'files','29504','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12877,'files','29505','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12878,'files','29506','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12879,'files','29507','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12880,'files','29508','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12881,'files','29509','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12882,'files','29510','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12883,'files','29511','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12884,'files','29512','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12885,'files','29513','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12886,'files','29514','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12887,'files','29515','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12888,'files','29516','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12889,'files','29517','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12890,'files','29518','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12891,'files','29519','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12892,'files','29520','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12893,'files','29521','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12894,'files','29522','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12895,'files','29523','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12896,'files','29524','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12897,'files','29525','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12898,'files','29526','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12899,'files','29527','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12900,'files','29528','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12901,'files','29529','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12902,'files','29530','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12903,'files','29531','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12904,'files','29532','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12905,'files','29533','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12906,'files','29534','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12907,'files','29535','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12908,'files','29536','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12909,'files','29537','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(12910,'files','29538','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12911,'files','29539','error','Deal not found: 1273',NULL,'2025-11-14 00:11:14'),
(12912,'files','29540','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12913,'files','29541','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12914,'files','29542','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12915,'files','29543','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12916,'files','29544','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12917,'files','29545','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12918,'files','29546','error','Deal not found: 1497',NULL,'2025-11-14 00:11:14'),
(12919,'files','29547','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12920,'files','29548','error','Deal not found: 1497',NULL,'2025-11-14 00:11:14'),
(12921,'files','29549','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12922,'files','29550','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12923,'files','29551','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12924,'files','29552','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12925,'files','29553','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12926,'files','29554','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12927,'files','29555','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12928,'files','29556','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12929,'files','29557','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12930,'files','29558','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12931,'files','29559','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12932,'files','29560','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12933,'files','29561','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12934,'files','29562','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12935,'files','29563','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12936,'files','29564','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12937,'files','29565','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12938,'files','29566','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12939,'files','29567','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12940,'files','29568','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12941,'files','29569','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12942,'files','29570','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12943,'files','29571','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12944,'files','29572','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12945,'files','29573','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12946,'files','29574','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12947,'files','29575','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12948,'files','29576','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12949,'files','29577','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12950,'files','29578','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12951,'files','29579','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12952,'files','29580','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12953,'files','29581','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12954,'files','29582','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12955,'files','29583','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12956,'files','29584','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12957,'files','29585','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12958,'files','29586','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12959,'files','29587','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12960,'files','29588','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12961,'files','29589','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12962,'files','29590','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12963,'files','29591','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12964,'files','29592','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12965,'files','29593','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12966,'files','29594','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12967,'files','29595','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12968,'files','29596','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12969,'files','29597','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12970,'files','29598','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12971,'files','29599','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12972,'files','29600','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12973,'files','29601','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12974,'files','29602','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12975,'files','29603','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12976,'files','29604','error','Deal not found: 1429',NULL,'2025-11-14 00:11:14'),
(12977,'files','29605','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12978,'files','29606','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12979,'files','29607','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12980,'files','29608','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12981,'files','29609','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12982,'files','29610','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12983,'files','29611','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12984,'files','29612','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12985,'files','29613','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12986,'files','29614','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12987,'files','29615','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12988,'files','29616','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12989,'files','29617','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12990,'files','29618','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12991,'files','29619','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12992,'files','29620','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12993,'files','29621','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12994,'files','29622','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12995,'files','29623','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12996,'files','29624','error','Deal not found: 1293',NULL,'2025-11-14 00:11:14'),
(12997,'files','29625','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(12998,'files','29626','error','Deal not found: 1724',NULL,'2025-11-14 00:11:14'),
(12999,'files','29627','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13000,'files','29628','error','Deal not found: 1724',NULL,'2025-11-14 00:11:14'),
(13001,'files','29629','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13002,'files','29630','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13003,'files','29631','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13004,'files','29632','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13005,'files','29633','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13006,'files','29634','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13007,'files','29635','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13008,'files','29636','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13009,'files','29637','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13010,'files','29638','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13011,'files','29639','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13012,'files','29640','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13013,'files','29641','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13014,'files','29642','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13015,'files','29643','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13016,'files','29644','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13017,'files','29645','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13018,'files','29646','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13019,'files','29647','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13020,'files','29648','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13021,'files','29649','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13022,'files','29650','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13023,'files','29651','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13024,'files','29652','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13025,'files','29653','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13026,'files','29654','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13027,'files','29655','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13028,'files','29656','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13029,'files','29657','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13030,'files','29658','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13031,'files','29659','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13032,'files','29660','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13033,'files','29661','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13034,'files','29662','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13035,'files','29663','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13036,'files','29664','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13037,'files','29665','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13038,'files','29666','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13039,'files','29667','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13040,'files','29668','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13041,'files','29669','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13042,'files','29670','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13043,'files','29671','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13044,'files','29672','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13045,'files','29673','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13046,'files','29674','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13047,'files','29675','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13048,'files','29676','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13049,'files','29677','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13050,'files','29678','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13051,'files','29679','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13052,'files','29680','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13053,'files','29681','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13054,'files','29682','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13055,'files','29683','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13056,'files','29684','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13057,'files','29685','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13058,'files','29686','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13059,'files','29687','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13060,'files','29688','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13061,'files','29689','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13062,'files','29690','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13063,'files','29691','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13064,'files','29692','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13065,'files','29693','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13066,'files','29694','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13067,'files','29695','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13068,'files','29696','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13069,'files','29697','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13070,'files','29698','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13071,'files','29699','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13072,'files','29700','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13073,'files','29701','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13074,'files','29702','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13075,'files','29703','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13076,'files','29704','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13077,'files','29705','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13078,'files','29706','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13079,'files','29707','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13080,'files','29708','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13081,'files','29709','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13082,'files','29710','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13083,'files','29711','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13084,'files','29712','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13085,'files','29713','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13086,'files','29714','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13087,'files','29715','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13088,'files','29716','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13089,'files','29717','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13090,'files','29718','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13091,'files','29719','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13092,'files','29720','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13093,'files','29721','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13094,'files','29722','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13095,'files','29723','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13096,'files','29724','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13097,'files','29725','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13098,'files','29726','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13099,'files','29727','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13100,'files','29728','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13101,'files','29729','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13102,'files','29730','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13103,'files','29731','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13104,'files','29732','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13105,'files','29733','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13106,'files','29734','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13107,'files','29735','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13108,'files','29736','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13109,'files','29737','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13110,'files','29738','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13111,'files','29739','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13112,'files','29740','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13113,'files','29741','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13114,'files','29742','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13115,'files','29743','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13116,'files','29744','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13117,'files','29745','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13118,'files','29746','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13119,'files','29747','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13120,'files','29748','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13121,'files','29749','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13122,'files','29750','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13123,'files','29751','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13124,'files','29752','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13125,'files','29753','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13126,'files','29754','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13127,'files','29755','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13128,'files','29756','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13129,'files','29757','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13130,'files','29758','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13131,'files','29759','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13132,'files','29760','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13133,'files','29761','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13134,'files','29762','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13135,'files','29763','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13136,'files','29764','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13137,'files','29765','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13138,'files','29766','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13139,'files','29767','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13140,'files','29768','error','Deal not found: 1435',NULL,'2025-11-14 00:11:14'),
(13141,'files','29769','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13142,'files','29770','error','Deal not found: 1435',NULL,'2025-11-14 00:11:14'),
(13143,'files','29771','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13144,'files','29772','error','Deal not found: 1435',NULL,'2025-11-14 00:11:14'),
(13145,'files','29773','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13146,'files','29774','error','Deal not found: 1435',NULL,'2025-11-14 00:11:14'),
(13147,'files','29775','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13148,'files','29776','error','Deal not found: 1435',NULL,'2025-11-14 00:11:14'),
(13149,'files','29777','error','Deal not found: 1435',NULL,'2025-11-14 00:11:14'),
(13150,'files','29778','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13151,'files','29779','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13152,'files','29780','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13153,'files','29781','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13154,'files','29782','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13155,'files','29783','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13156,'files','29784','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13157,'files','29785','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13158,'files','29786','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13159,'files','29787','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13160,'files','29788','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13161,'files','29789','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13162,'files','29790','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13163,'files','29791','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13164,'files','29792','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13165,'files','29793','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13166,'files','29794','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13167,'files','29795','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13168,'files','29796','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13169,'files','29797','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13170,'files','29798','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13171,'files','29799','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13172,'files','29800','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13173,'files','29801','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13174,'files','29802','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13175,'files','29803','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13176,'files','29804','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13177,'files','29805','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13178,'files','29806','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13179,'files','29807','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13180,'files','29808','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13181,'files','29809','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13182,'files','29810','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13183,'files','29811','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13184,'files','29812','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13185,'files','29813','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13186,'files','29814','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13187,'files','29815','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13188,'files','29816','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13189,'files','29817','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13190,'files','29818','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13191,'files','29819','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13192,'files','29820','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13193,'files','29821','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13194,'files','29822','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13195,'files','29823','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13196,'files','29824','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13197,'files','29825','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13198,'files','29826','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13199,'files','29827','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13200,'files','29828','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13201,'files','29829','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13202,'files','29830','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13203,'files','29831','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13204,'files','29832','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13205,'files','29833','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13206,'files','29834','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13207,'files','29835','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13208,'files','29836','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13209,'files','29837','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13210,'files','29838','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13211,'files','29839','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13212,'files','29840','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13213,'files','29841','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13214,'files','29842','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13215,'files','29843','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13216,'files','29844','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13217,'files','29845','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13218,'files','29846','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13219,'files','29847','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13220,'files','29848','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13221,'files','29849','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13222,'files','29850','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13223,'files','29851','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13224,'files','29852','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13225,'files','29853','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13226,'files','29854','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13227,'files','29855','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13228,'files','29856','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13229,'files','29857','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13230,'files','29858','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13231,'files','29859','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13232,'files','29860','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13233,'files','29861','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13234,'files','29862','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13235,'files','29863','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13236,'files','29864','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13237,'files','29865','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13238,'files','29866','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13239,'files','29867','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13240,'files','29868','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13241,'files','29869','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13242,'files','29870','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13243,'files','29871','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13244,'files','29872','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13245,'files','29873','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13246,'files','29874','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13247,'files','29875','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13248,'files','29876','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13249,'files','29877','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13250,'files','29878','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13251,'files','29879','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13252,'files','29880','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13253,'files','29881','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13254,'files','29882','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13255,'files','29883','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13256,'files','29884','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13257,'files','29885','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13258,'files','29886','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13259,'files','29887','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13260,'files','29888','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13261,'files','29889','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13262,'files','29890','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13263,'files','29891','error','Deal not found: 1718',NULL,'2025-11-14 00:11:14'),
(13264,'files','29892','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13265,'files','29893','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13266,'files','29894','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13267,'files','29895','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13268,'files','29896','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13269,'files','29897','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13270,'files','29898','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13271,'files','29899','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13272,'files','29900','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13273,'files','29901','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13274,'files','29902','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13275,'files','29903','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13276,'files','29904','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13277,'files','29905','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13278,'files','29906','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13279,'files','29907','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13280,'files','29908','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13281,'files','29909','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13282,'files','29910','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13283,'files','29911','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13284,'files','29912','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13285,'files','29913','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13286,'files','29914','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13287,'files','29915','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13288,'files','29916','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13289,'files','29917','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13290,'files','29918','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13291,'files','29919','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13292,'files','29920','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13293,'files','29921','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13294,'files','29922','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13295,'files','29923','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13296,'files','29924','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13297,'files','29925','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13298,'files','29926','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13299,'files','29927','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13300,'files','29928','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13301,'files','29929','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13302,'files','29930','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13303,'files','29931','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13304,'files','29932','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13305,'files','29933','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13306,'files','29934','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13307,'files','29935','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13308,'files','29936','error','Deal not found: 1293',NULL,'2025-11-14 00:11:14'),
(13309,'files','29937','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13310,'files','29938','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13311,'files','29939','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13312,'files','29940','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13313,'files','29941','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13314,'files','29942','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13315,'files','29943','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13316,'files','29944','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13317,'files','29945','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13318,'files','29946','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13319,'files','29947','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13320,'files','29948','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13321,'files','29949','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13322,'files','29950','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13323,'files','29951','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13324,'files','29952','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13325,'files','29953','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13326,'files','29954','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13327,'files','29955','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13328,'files','29956','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13329,'files','29957','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13330,'files','29958','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13331,'files','29959','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13332,'files','29960','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13333,'files','29961','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13334,'files','29962','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13335,'files','29963','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13336,'files','29964','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13337,'files','29965','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13338,'files','29966','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13339,'files','29967','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13340,'files','29968','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13341,'files','29969','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13342,'files','29970','error','Deal not found: 1014',NULL,'2025-11-14 00:11:14'),
(13343,'files','29971','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13344,'files','29972','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13345,'files','29973','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13346,'files','29974','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13347,'files','29975','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13348,'files','29976','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13349,'files','29977','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13350,'files','29978','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13351,'files','29979','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13352,'files','29980','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13353,'files','29981','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13354,'files','29982','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13355,'files','29983','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13356,'files','29984','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13357,'files','29985','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13358,'files','29986','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13359,'files','29987','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13360,'files','29988','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13361,'files','29989','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13362,'files','29990','error','Deal not found: 566',NULL,'2025-11-14 00:11:14'),
(13363,'files','29991','error','Deal not found: 566',NULL,'2025-11-14 00:11:14'),
(13364,'files','29992','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13365,'files','29993','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13366,'files','29994','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13367,'files','29995','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13368,'files','29996','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13369,'files','29997','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13370,'files','29998','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13371,'files','29999','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13372,'files','30000','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13373,'files','30001','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13374,'files','30002','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13375,'files','30003','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13376,'files','30004','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13377,'files','30005','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13378,'files','30006','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13379,'files','30007','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13380,'files','30008','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13381,'files','30009','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13382,'files','30010','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13383,'files','30011','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13384,'files','30012','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13385,'files','30013','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13386,'files','30014','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13387,'files','30015','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13388,'files','30016','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13389,'files','30017','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13390,'files','30018','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13391,'files','30019','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13392,'files','30020','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13393,'files','30021','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13394,'files','30022','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13395,'files','30023','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13396,'files','30024','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13397,'files','30025','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13398,'files','30026','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13399,'files','30027','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13400,'files','30028','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13401,'files','30029','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13402,'files','30030','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13403,'files','30031','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13404,'files','30032','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13405,'files','30033','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13406,'files','30034','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13407,'files','30035','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13408,'files','30036','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13409,'files','30037','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13410,'files','30038','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13411,'files','30039','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13412,'files','30040','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13413,'files','30041','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13414,'files','30042','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13415,'files','30043','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13416,'files','30044','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13417,'files','30045','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13418,'files','30046','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13419,'files','30047','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13420,'files','30048','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13421,'files','30049','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13422,'files','30050','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13423,'files','30051','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13424,'files','30052','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13425,'files','30053','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13426,'files','30054','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13427,'files','30055','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13428,'files','30056','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13429,'files','30057','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13430,'files','30058','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13431,'files','30059','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13432,'files','30060','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13433,'files','30061','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13434,'files','30062','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13435,'files','30063','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13436,'files','30064','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13437,'files','30065','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13438,'files','30066','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13439,'files','30067','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13440,'files','30068','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13441,'files','30069','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13442,'files','30070','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13443,'files','30071','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13444,'files','30072','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13445,'files','30073','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13446,'files','30074','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13447,'files','30075','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13448,'files','30076','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13449,'files','30077','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13450,'files','30078','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13451,'files','30079','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13452,'files','30080','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13453,'files','30081','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13454,'files','30082','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13455,'files','30083','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13456,'files','30086','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13457,'files','30089','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13458,'files','30091','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13459,'files','30094','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13460,'files','30095','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13461,'files','30097','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13462,'files','30100','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13463,'files','30102','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13464,'files','30103','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13465,'files','30104','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13466,'files','30105','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13467,'files','30106','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13468,'files','30107','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13469,'files','30108','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13470,'files','30109','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13471,'files','30110','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13472,'files','30111','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13473,'files','30112','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13474,'files','30113','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13475,'files','30114','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13476,'files','30115','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13477,'files','30116','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13478,'files','30117','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13479,'files','30118','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13480,'files','30119','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13481,'files','30120','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13482,'files','30121','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13483,'files','30122','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13484,'files','30123','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13485,'files','30124','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13486,'files','30125','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13487,'files','30126','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13488,'files','30127','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13489,'files','30128','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13490,'files','30129','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13491,'files','30130','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13492,'files','30131','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13493,'files','30132','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13494,'files','30133','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13495,'files','30134','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13496,'files','30135','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13497,'files','30136','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13498,'files','30137','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13499,'files','30138','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13500,'files','30139','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13501,'files','30140','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13502,'files','30141','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13503,'files','30142','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13504,'files','30143','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13505,'files','30144','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13506,'files','30145','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13507,'files','30146','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13508,'files','30147','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13509,'files','30148','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13510,'files','30149','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13511,'files','30150','error','Deal not found: 566',NULL,'2025-11-14 00:11:14'),
(13512,'files','30151','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13513,'files','30152','error','Deal not found: 566',NULL,'2025-11-14 00:11:14'),
(13514,'files','30153','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13515,'files','30154','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13516,'files','30155','error','Deal not found: 566',NULL,'2025-11-14 00:11:14'),
(13517,'files','30156','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13518,'files','30157','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13519,'files','30158','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13520,'files','30159','error','Deal not found: 566',NULL,'2025-11-14 00:11:14'),
(13521,'files','30160','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13522,'files','30161','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13523,'files','30162','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13524,'files','30163','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13525,'files','30164','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13526,'files','30165','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13527,'files','30166','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13528,'files','30167','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13529,'files','30168','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13530,'files','30169','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13531,'files','30170','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13532,'files','30171','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13533,'files','30172','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13534,'files','30173','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13535,'files','30174','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13536,'files','30175','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13537,'files','30176','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13538,'files','30177','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13539,'files','30178','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13540,'files','30179','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13541,'files','30180','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13542,'files','30181','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13543,'files','30182','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13544,'files','30183','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13545,'files','30184','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13546,'files','30185','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13547,'files','30186','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13548,'files','30187','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13549,'files','30188','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13550,'files','30189','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13551,'files','30190','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13552,'files','30191','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13553,'files','30192','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13554,'files','30193','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13555,'files','30194','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13556,'files','30195','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13557,'files','30196','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13558,'files','30197','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13559,'files','30198','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13560,'files','30199','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13561,'files','30200','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13562,'files','30201','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13563,'files','30202','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13564,'files','30203','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13565,'files','30204','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13566,'files','30205','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13567,'files','30206','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13568,'files','30207','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13569,'files','30208','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13570,'files','30209','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13571,'files','30210','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13572,'files','30211','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13573,'files','30212','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13574,'files','30213','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13575,'files','30214','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13576,'files','30215','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13577,'files','30216','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13578,'files','30217','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13579,'files','30218','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13580,'files','30219','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13581,'files','30220','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13582,'files','30221','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13583,'files','30222','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13584,'files','30223','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13585,'files','30224','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13586,'files','30225','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13587,'files','30226','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13588,'files','30227','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13589,'files','30228','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13590,'files','30229','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13591,'files','30230','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13592,'files','30231','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13593,'files','30232','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13594,'files','30233','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13595,'files','30234','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13596,'files','30235','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13597,'files','30236','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13598,'files','30237','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13599,'files','30238','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13600,'files','30239','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13601,'files','30240','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13602,'files','30241','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13603,'files','30242','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13604,'files','30243','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13605,'files','30244','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13606,'files','30245','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13607,'files','30246','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13608,'files','30247','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13609,'files','30248','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13610,'files','30249','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13611,'files','30250','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13612,'files','30251','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13613,'files','30252','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13614,'files','30253','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13615,'files','30254','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13616,'files','30255','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13617,'files','30256','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13618,'files','30257','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13619,'files','30258','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13620,'files','30259','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13621,'files','30260','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13622,'files','30261','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13623,'files','30262','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13624,'files','30263','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13625,'files','30264','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13626,'files','30265','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13627,'files','30266','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13628,'files','30267','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13629,'files','30268','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13630,'files','30269','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13631,'files','30270','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13632,'files','30271','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13633,'files','30272','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13634,'files','30273','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13635,'files','30274','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13636,'files','30275','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13637,'files','30276','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13638,'files','30277','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13639,'files','30279','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13640,'files','30280','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13641,'files','30281','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13642,'files','30282','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13643,'files','30283','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13644,'files','30284','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13645,'files','30285','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13646,'files','30286','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13647,'files','30287','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13648,'files','30288','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13649,'files','30289','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13650,'files','30290','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13651,'files','30291','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13652,'files','30292','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13653,'files','30293','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13654,'files','30294','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13655,'files','30295','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13656,'files','30296','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13657,'files','30297','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13658,'files','30298','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13659,'files','30299','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13660,'files','30300','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13661,'files','30301','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13662,'files','30302','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13663,'files','30303','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13664,'files','30304','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13665,'files','30305','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13666,'files','30306','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13667,'files','30307','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13668,'files','30308','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13669,'files','30309','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13670,'files','30310','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13671,'files','30311','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13672,'files','30312','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13673,'files','30313','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13674,'files','30314','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13675,'files','30315','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13676,'files','30316','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13677,'files','30317','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13678,'files','30318','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13679,'files','30319','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13680,'files','30320','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13681,'files','30321','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13682,'files','30322','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13683,'files','30323','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13684,'files','30324','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13685,'files','30325','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13686,'files','30326','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13687,'files','30327','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13688,'files','30328','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13689,'files','30329','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13690,'files','30330','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13691,'files','30331','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13692,'files','30332','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13693,'files','30333','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13694,'files','30334','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13695,'files','30335','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13696,'files','30336','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13697,'files','30337','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13698,'files','30338','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13699,'files','30339','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13700,'files','30340','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13701,'files','30341','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13702,'files','30342','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13703,'files','30343','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13704,'files','30344','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13705,'files','30345','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13706,'files','30346','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13707,'files','30347','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13708,'files','30348','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13709,'files','30349','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13710,'files','30350','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13711,'files','30351','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13712,'files','30352','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13713,'files','30353','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13714,'files','30354','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13715,'files','30355','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13716,'files','30356','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13717,'files','30357','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13718,'files','30358','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13719,'files','30359','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13720,'files','30360','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13721,'files','30361','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13722,'files','30362','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13723,'files','30363','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13724,'files','30364','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13725,'files','30365','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13726,'files','30366','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13727,'files','30367','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13728,'files','30368','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13729,'files','30369','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13730,'files','30370','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13731,'files','30371','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13732,'files','30372','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13733,'files','30373','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13734,'files','30374','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13735,'files','30375','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13736,'files','30376','error','Deal not found: 1527',NULL,'2025-11-14 00:11:14'),
(13737,'files','30787','error','Deal not found: 4',NULL,'2025-11-14 00:11:14'),
(13738,'files','30839','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13739,'files','30840','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13740,'files','33211','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13741,'files','35340','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13742,'files','35415','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13743,'files','37367','error','Deal not found: 58',NULL,'2025-11-14 00:11:14'),
(13744,'files','37368','error','Deal not found: 58',NULL,'2025-11-14 00:11:14'),
(13745,'files','38011','error','Deal not found: 1596',NULL,'2025-11-14 00:11:14'),
(13746,'files','38012','error','Deal not found: 1596',NULL,'2025-11-14 00:11:14'),
(13747,'files','38013','error','Deal not found: 1596',NULL,'2025-11-14 00:11:14'),
(13748,'files','38014','error','Deal not found: 1596',NULL,'2025-11-14 00:11:14'),
(13749,'files','38404','error','Deal not found: 1597',NULL,'2025-11-14 00:11:14'),
(13750,'files','38405','error','Deal not found: 1597',NULL,'2025-11-14 00:11:14'),
(13751,'files','38634','error','Deal not found: 1604',NULL,'2025-11-14 00:11:14'),
(13752,'files','39390','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13753,'files','39393','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13754,'files','40097','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13755,'files','40098','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13756,'files','40240','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13757,'files','40241','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13758,'files','41182','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13759,'files','41374','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13760,'files','41629','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13761,'files','41632','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13762,'files','42056','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13763,'files','42808','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13764,'files','43324','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13765,'files','43325','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13766,'files','43356','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13767,'files','43433','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13768,'files','43555','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13769,'files','43697','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13770,'files','43698','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13771,'files','43699','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13772,'files','43754','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13773,'files','43758','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13774,'files','43791','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13775,'files','43821','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13776,'files','43822','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13777,'files','43823','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13778,'files','43824','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13779,'files','43825','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13780,'files','43826','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13781,'files','43827','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13782,'files','43828','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13783,'files','43829','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13784,'files','43830','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13785,'files','43831','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13786,'files','43832','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13787,'files','43833','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13788,'files','43923','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13789,'files','43924','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13790,'files','43925','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13791,'files','43981','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13792,'files','44005','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13793,'files','44006','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13794,'files','44007','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13795,'files','44122','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13796,'files','44123','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13797,'files','44124','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13798,'files','44244','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13799,'files','44245','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13800,'files','44257','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13801,'files','44267','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13802,'files','44268','error','Deal not found: 1641',NULL,'2025-11-14 00:11:14'),
(13803,'files','44269','error','Deal not found: 1641',NULL,'2025-11-14 00:11:14'),
(13804,'files','44279','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13805,'files','44280','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13806,'files','44281','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13807,'files','44282','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13808,'files','44293','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13809,'files','44309','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13810,'files','44310','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13811,'files','44311','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13812,'files','44394','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13813,'files','44438','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13814,'files','44439','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13815,'files','44445','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13816,'files','44472','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13817,'files','44484','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13818,'files','44486','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13819,'files','44487','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13820,'files','44513','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13821,'files','44637','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13822,'files','44779','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13823,'files','44783','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13824,'files','44784','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13825,'files','44875','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13826,'files','44876','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13827,'files','44877','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13828,'files','44978','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13829,'files','44981','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13830,'files','44982','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13831,'files','44983','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13832,'files','44987','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13833,'files','44989','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13834,'files','44990','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13835,'files','44991','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13836,'files','44992','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13837,'files','45031','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13838,'files','45032','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13839,'files','45033','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13840,'files','45034','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13841,'files','45053','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13842,'files','45054','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13843,'files','45094','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13844,'files','45283','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13845,'files','45357','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13846,'files','45358','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13847,'files','45362','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13848,'files','45378','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13849,'files','45379','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13850,'files','45386','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13851,'files','45387','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13852,'files','45388','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13853,'files','45389','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13854,'files','45390','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13855,'files','45391','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13856,'files','45423','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13857,'files','45576','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13858,'files','45651','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13859,'files','45652','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13860,'files','45653','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13861,'files','45774','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13862,'files','45778','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13863,'files','45853','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13864,'files','45865','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13865,'files','46029','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13866,'files','46030','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13867,'files','46031','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13868,'files','46032','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13869,'files','46033','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13870,'files','46041','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13871,'files','46042','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13872,'files','46084','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13873,'files','46086','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13874,'files','46087','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13875,'files','46092','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13876,'files','46140','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13877,'files','46141','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13878,'files','46142','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13879,'files','46143','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13880,'files','46184','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13881,'files','46196','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13882,'files','46219','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13883,'files','46221','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13884,'files','46222','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13885,'files','46229','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13886,'files','46230','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13887,'files','46236','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13888,'files','46289','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13889,'files','46360','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13890,'files','46361','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13891,'files','46385','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13892,'files','46386','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13893,'files','46422','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13894,'files','46423','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13895,'files','46424','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13896,'files','61401','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13897,'files','61402','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13898,'files','61404','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13899,'files','61405','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13900,'files','61454','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13901,'files','61458','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13902,'files','61459','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13903,'files','61460','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13904,'files','61461','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13905,'files','61462','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13906,'files','61470','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13907,'files','61471','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13908,'files','61547','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13909,'files','61548','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13910,'files','61582','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13911,'files','61583','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13912,'files','61584','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13913,'files','61585','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13914,'files','61586','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13915,'files','61587','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13916,'files','61643','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13917,'files','61644','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13918,'files','61682','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13919,'files','61683','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13920,'files','61926','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13921,'files','61927','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13922,'files','61931','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13923,'files','61932','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13924,'files','61933','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13925,'files','61951','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13926,'files','61952','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13927,'files','61953','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13928,'files','61954','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13929,'files','62216','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13930,'files','62279','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13931,'files','62742','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13932,'files','62743','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13933,'files','62744','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13934,'files','62801','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13935,'files','62862','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13936,'files','62863','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13937,'files','62886','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13938,'files','62887','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13939,'files','62888','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13940,'files','62889','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13941,'files','62890','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13942,'files','62891','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13943,'files','62892','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13944,'files','63048','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13945,'files','63132','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13946,'files','63137','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13947,'files','63181','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13948,'files','63185','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13949,'files','63188','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13950,'files','63189','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13951,'files','63312','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13952,'files','63348','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13953,'files','63394','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13954,'files','63395','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13955,'files','63396','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13956,'files','63397','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13957,'files','63398','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13958,'files','63399','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13959,'files','63400','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13960,'files','63420','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13961,'files','63421','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13962,'files','63629','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13963,'files','63630','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13964,'files','63631','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13965,'files','63632','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13966,'files','63633','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13967,'files','63634','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13968,'files','63635','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13969,'files','63636','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13970,'files','63642','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13971,'files','63758','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13972,'files','63759','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13973,'files','63955','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13974,'files','64053','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13975,'files','64210','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13976,'files','64501','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13977,'files','64502','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13978,'files','64503','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13979,'files','64504','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13980,'files','64505','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13981,'files','64515','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13982,'files','64538','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13983,'files','64851','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13984,'files','64950','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13985,'files','65255','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13986,'files','65256','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13987,'files','65291','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13988,'files','65292','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13989,'files','65318','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13990,'files','65356','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13991,'files','65441','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13992,'files','65442','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13993,'files','65443','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13994,'files','65444','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13995,'files','65445','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13996,'files','65446','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13997,'files','65447','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13998,'files','65448','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(13999,'files','65449','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14000,'files','65450','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14001,'files','65451','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14002,'files','65452','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14003,'files','65491','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14004,'files','65542','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14005,'files','65594','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14006,'files','65595','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14007,'files','65596','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14008,'files','65597','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14009,'files','65598','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14010,'files','65602','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14011,'files','65603','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14012,'files','65604','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14013,'files','65605','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14014,'files','65606','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14015,'files','65607','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14016,'files','65693','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14017,'files','65694','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14018,'files','65823','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14019,'files','65824','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14020,'files','65825','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14021,'files','65826','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14022,'files','65827','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14023,'files','65828','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14024,'files','65829','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14025,'files','65830','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14026,'files','65836','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14027,'files','65837','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14028,'files','65838','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14029,'files','65839','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14030,'files','65840','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14031,'files','65842','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14032,'files','65844','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14033,'files','65845','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14034,'files','65846','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14035,'files','65847','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14036,'files','65848','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14037,'files','65849','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14038,'files','65851','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14039,'files','65852','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14040,'files','66057','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14041,'files','66058','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14042,'files','66059','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14043,'files','66060','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14044,'files','66061','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14045,'files','66065','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14046,'files','66066','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14047,'files','66083','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14048,'files','66122','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14049,'files','66190','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14050,'files','66382','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14051,'files','66384','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14052,'files','66385','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14053,'files','66402','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14054,'files','66555','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14055,'files','66556','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14056,'files','66557','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14057,'files','66558','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14058,'files','66559','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14059,'files','66795','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14060,'files','66815','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14061,'files','66928','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14062,'files','66942','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14063,'files','66943','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14064,'files','66944','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14065,'files','66945','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14066,'files','67015','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14067,'files','67036','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14068,'files','67091','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14069,'files','67092','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14070,'files','67094','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14071,'files','67095','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14072,'files','67096','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14073,'files','67099','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14074,'files','67118','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14075,'files','67124','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14076,'files','67272','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14077,'files','67367','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14078,'files','67378','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14079,'files','67431','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14080,'files','67511','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14081,'files','67512','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14082,'files','67514','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14083,'files','67515','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14084,'files','67542','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14085,'files','67543','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14086,'files','67544','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14087,'files','67545','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14088,'files','67546','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14089,'files','67547','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14090,'files','67566','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14091,'files','67622','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14092,'files','67623','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14093,'files','67670','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14094,'files','67671','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14095,'files','67675','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14096,'files','67676','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14097,'files','67677','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14098,'files','67678','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14099,'files','67680','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14100,'files','67681','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14101,'files','67745','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14102,'files','67968','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14103,'files','68084','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14104,'files','68085','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14105,'files','68086','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14106,'files','68087','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14107,'files','68088','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14108,'files','68104','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14109,'files','68137','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14110,'files','68138','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14111,'files','68139','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14112,'files','68140','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14113,'files','68201','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14114,'files','68278','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14115,'files','68363','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14116,'files','68364','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14117,'files','68365','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14118,'files','68366','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14119,'files','68367','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14120,'files','68368','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14121,'files','68382','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14122,'files','68480','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14123,'files','68481','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14124,'files','68482','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14125,'files','68483','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14126,'files','68484','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14127,'files','68489','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14128,'files','68490','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14129,'files','68491','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14130,'files','68521','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14131,'files','68522','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14132,'files','68548','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14133,'files','68549','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14134,'files','68564','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14135,'files','68565','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14136,'files','68566','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14137,'files','68567','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14138,'files','68680','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14139,'files','68705','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14140,'files','68706','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14141,'files','68707','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14142,'files','68708','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14143,'files','68709','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14144,'files','68788','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14145,'files','68960','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14146,'files','68961','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14147,'files','68962','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14148,'files','68963','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14149,'files','68984','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14150,'files','69055','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14151,'files','69066','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14152,'files','69098','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14153,'files','69130','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14154,'files','69236','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14155,'files','69237','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14156,'files','69266','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14157,'files','69269','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14158,'files','69370','error','Deal not found: 1767',NULL,'2025-11-14 00:11:14'),
(14159,'files','69382','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14160,'files','69383','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14161,'files','69384','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14162,'files','69385','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14163,'files','69435','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14164,'files','69486','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14165,'files','69487','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14166,'files','69528','error','Deal not found: 1766',NULL,'2025-11-14 00:11:14'),
(14167,'files','69532','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14168,'files','69579','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14169,'files','69580','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14170,'files','69595','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14171,'files','69612','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14172,'files','69791','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14173,'files','69929','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14174,'files','69969','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14175,'files','69970','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14176,'files','69991','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14177,'files','69999','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14178,'files','70008','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14179,'files','70073','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14180,'files','70074','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14181,'files','70075','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14182,'files','70081','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14183,'files','70082','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14184,'files','70083','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14185,'files','70084','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14186,'files','70085','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14187,'files','70086','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14188,'files','70193','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14189,'files','70227','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14190,'files','70228','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14191,'files','70234','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14192,'files','70235','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14193,'files','70319','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14194,'files','70320','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14195,'files','70323','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14196,'files','70326','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14197,'files','70327','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14198,'files','70328','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14199,'files','70475','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14200,'files','70478','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14201,'files','70717','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14202,'files','70718','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14203,'files','70719','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14204,'files','70839','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14205,'files','70840','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14206,'files','70841','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14207,'files','70842','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14208,'files','70864','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14209,'files','70865','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14210,'files','70866','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14211,'files','70905','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14212,'files','70915','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14213,'files','70916','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14214,'files','70917','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14215,'files','70932','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14216,'files','71005','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14217,'files','71013','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14218,'files','71107','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14219,'files','71108','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14220,'files','71113','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14221,'files','71114','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14222,'files','71115','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14223,'files','71116','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14224,'files','71141','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14225,'files','71204','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14226,'files','71205','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14227,'files','71207','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14228,'files','71208','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14229,'files','71209','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14230,'files','71214','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14231,'files','71215','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14232,'files','71216','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14233,'files','71392','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14234,'files','71394','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14235,'files','71395','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14236,'files','71396','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14237,'files','71397','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14238,'files','71398','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14239,'files','71414','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14240,'files','71415','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14241,'files','71416','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14242,'files','71417','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14243,'files','71430','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14244,'files','71487','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14245,'files','71532','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14246,'files','71536','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14247,'files','71538','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14248,'files','71539','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14249,'files','71560','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14250,'files','71720','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14251,'files','71721','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14252,'files','71836','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14253,'files','71846','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14254,'files','71847','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14255,'files','71850','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14256,'files','71854','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14257,'files','71855','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14258,'files','71856','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14259,'files','71936','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14260,'files','72048','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14261,'files','72167','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14262,'files','72231','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14263,'files','72262','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14264,'files','72323','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14265,'files','72606','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14266,'files','72899','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14267,'files','72931','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14268,'files','72941','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14269,'files','72946','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14270,'files','72947','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14271,'files','73088','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14272,'files','73089','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14273,'files','73090','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14274,'files','73091','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14275,'files','73092','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14276,'files','73120','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14277,'files','73121','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14278,'files','73122','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14279,'files','73123','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14280,'files','73248','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14281,'files','73351','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14282,'files','73352','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14283,'files','73359','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14284,'files','73360','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14285,'files','73361','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14286,'files','73362','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14287,'files','73507','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14288,'files','73594','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14289,'files','73595','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14290,'files','73596','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14291,'files','73597','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14292,'files','73608','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14293,'files','73614','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14294,'files','73873','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14295,'files','73874','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14296,'files','73875','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14297,'files','73876','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14298,'files','73877','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14299,'files','73878','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14300,'files','73934','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14301,'files','74074','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14302,'files','74133','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14303,'files','74168','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14304,'files','74169','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14305,'files','74215','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14306,'files','74361','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14307,'files','74362','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14308,'files','74446','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14309,'files','74531','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14310,'files','74532','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14311,'files','74533','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14312,'files','74534','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14313,'files','74535','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14314,'files','74536','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14315,'files','74965','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14316,'files','74979','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14317,'files','75013','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14318,'files','75014','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14319,'files','75017','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14320,'files','75024','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14321,'files','75025','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14322,'files','75026','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14323,'files','75027','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14324,'files','75028','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14325,'files','75030','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14326,'files','75031','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14327,'files','75033','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14328,'files','75036','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14329,'files','75334','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14330,'files','75471','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14331,'files','75472','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14332,'files','75515','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14333,'files','75516','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14334,'files','75519','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14335,'files','75520','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14336,'files','75521','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14337,'files','75522','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14338,'files','75639','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14339,'files','75688','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14340,'files','75689','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14341,'files','75691','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14342,'files','75723','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14343,'files','75724','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14344,'files','75797','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14345,'files','75911','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14346,'files','76005','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14347,'files','76006','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14348,'files','76190','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14349,'files','76238','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14350,'files','76951','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14351,'files','77005','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14352,'files','77037','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14353,'files','77163','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14354,'files','77164','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14355,'files','77327','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14356,'files','77634','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14357,'files','77635','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14358,'files','77776','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14359,'files','77777','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14360,'files','77778','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14361,'files','77779','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14362,'files','77780','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14363,'files','77881','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14364,'files','77882','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14365,'files','77883','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14366,'files','77884','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14367,'files','77890','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14368,'files','77891','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14369,'files','77892','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14370,'files','77893','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14371,'files','78006','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14372,'files','78008','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14373,'files','78011','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14374,'files','78012','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14375,'files','78013','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14376,'files','78242','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14377,'files','78243','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14378,'files','78244','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14379,'files','78256','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14380,'files','78258','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14381,'files','78259','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14382,'files','78260','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14383,'files','78344','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14384,'files','78345','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14385,'files','78360','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14386,'files','78361','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14387,'files','78364','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14388,'files','78365','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14389,'files','78367','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14390,'files','78372','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14391,'files','78373','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14392,'files','78374','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14393,'files','78375','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14394,'files','78429','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14395,'files','78430','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14396,'files','78431','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14397,'files','78432','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14398,'files','78433','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14399,'files','78434','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14400,'files','78438','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14401,'files','78444','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14402,'files','78457','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14403,'files','78458','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14404,'files','78459','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14405,'files','78460','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14406,'files','78462','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14407,'files','78532','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14408,'files','78548','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14409,'files','78552','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14410,'files','78880','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14411,'files','78900','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14412,'files','78901','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14413,'files','78902','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14414,'files','78948','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14415,'files','78992','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14416,'files','79018','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14417,'files','79168','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14418,'files','79190','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14419,'files','79191','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14420,'files','79192','error','Deal not found: 1566',NULL,'2025-11-14 00:11:14'),
(14421,'files','79193','error','Deal not found: 4',NULL,'2025-11-14 00:11:14'),
(14422,'files','79202','error','Deal not found: 1707',NULL,'2025-11-14 00:11:14'),
(14423,'files','79203','error','Deal not found: 1572',NULL,'2025-11-14 00:11:14'),
(14424,'files','79234','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14425,'files','79235','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14426,'files','79272','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14427,'files','79278','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14428,'files','79311','error','Deal not found: 1638',NULL,'2025-11-14 00:11:14'),
(14429,'files','79312','error','Deal not found: 1638',NULL,'2025-11-14 00:11:14'),
(14430,'files','79313','error','Deal not found: 1638',NULL,'2025-11-14 00:11:14'),
(14431,'files','79492','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14432,'files','79493','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14433,'files','79582','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14434,'files','79583','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14435,'files','79584','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14436,'files','79906','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14437,'files','79931','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14438,'files','79932','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14439,'files','80111','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14440,'files','80112','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14441,'files','80113','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14442,'files','80167','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14443,'files','80205','error','Deal not found: 1827',NULL,'2025-11-14 00:11:14'),
(14444,'files','80301','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14445,'files','80336','error','Deal not found: 1802',NULL,'2025-11-14 00:11:14'),
(14446,'files','80501','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14447,'files','80502','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14448,'files','80503','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14449,'files','80504','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14450,'files','81097','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14451,'files','81126','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14452,'files','81593','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14453,'files','81610','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14454,'files','81611','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14455,'files','81612','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14456,'files','81613','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14457,'files','81624','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14458,'files','81625','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14459,'files','81851','error','Deal not found: 1812',NULL,'2025-11-14 00:11:14'),
(14460,'files','81852','error','Deal not found: 1812',NULL,'2025-11-14 00:11:14'),
(14461,'files','81853','error','Deal not found: 1812',NULL,'2025-11-14 00:11:14'),
(14462,'files','81854','error','Deal not found: 1812',NULL,'2025-11-14 00:11:14'),
(14463,'files','81915','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14464,'files','81916','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14465,'files','81917','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14466,'files','81918','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14467,'files','81919','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14468,'files','82664','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14469,'files','82715','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14470,'files','82716','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14471,'files','82717','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14472,'files','82732','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14473,'files','82733','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14474,'files','82762','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14475,'files','82763','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14476,'files','82783','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14477,'files','82904','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14478,'files','83031','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14479,'files','83032','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14480,'files','83033','skipped','No deal associated',NULL,'2025-11-14 00:11:14'),
(14481,'files','83034','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14482,'files','83061','error','Deal not found: 1852',NULL,'2025-11-14 00:11:15'),
(14483,'files','83229','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14484,'files','83237','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14485,'files','83350','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14486,'files','83503','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14487,'files','83524','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14488,'files','83525','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14489,'files','83642','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14490,'files','83643','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14491,'files','84258','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14492,'files','85285','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14493,'files','85286','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14494,'files','85287','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14495,'files','85288','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14496,'files','85289','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14497,'files','85439','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14498,'files','86284','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14499,'files','86608','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14500,'files','86609','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14501,'files','86957','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14502,'files','87009','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14503,'files','87010','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14504,'files','87011','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14505,'files','87012','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14506,'files','87050','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14507,'files','87055','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14508,'files','87677','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14509,'files','87678','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14510,'files','88027','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14511,'files','88028','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14512,'files','88029','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14513,'files','88038','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14514,'files','88263','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14515,'files','88505','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14516,'files','88868','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14517,'files','88874','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14518,'files','88875','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14519,'files','88876','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14520,'files','88877','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14521,'files','88910','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14522,'files','88911','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14523,'files','88912','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14524,'files','88925','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14525,'files','89258','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14526,'files','89261','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14527,'files','89262','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14528,'files','89263','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14529,'files','89288','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14530,'files','89297','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14531,'files','89338','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14532,'files','89340','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14533,'files','89447','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14534,'files','89448','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14535,'files','90082','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14536,'files','90083','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14537,'files','90084','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14538,'files','90085','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14539,'files','90086','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14540,'files','90087','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14541,'files','90158','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14542,'files','90159','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14543,'files','90160','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14544,'files','90161','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14545,'files','90162','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14546,'files','90163','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14547,'files','90753','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14548,'files','90754','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14549,'files','90755','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14550,'files','90756','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14551,'files','90757','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14552,'files','90758','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14553,'files','90766','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14554,'files','90767','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14555,'files','90768','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14556,'files','90913','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14557,'files','90914','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14558,'files','90915','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14559,'files','90916','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14560,'files','90917','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14561,'files','90918','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14562,'files','96562','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14563,'files','96563','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14564,'files','96779','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14565,'files','96780','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14566,'files','97793','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14567,'files','97794','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14568,'files','100036','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14569,'files','100177','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14570,'files','100919','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14571,'files','102829','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14572,'files','103159','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14573,'files','104050','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14574,'files','104998','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14575,'files','104999','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14576,'files','105000','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14577,'files','105001','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14578,'files','105002','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14579,'files','105003','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14580,'files','105004','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14581,'files','105005','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14582,'files','105540','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14583,'files','106018','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14584,'files','106019','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14585,'files','106020','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14586,'files','108115','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14587,'files','108279','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14588,'files','108426','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14589,'files','108427','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14590,'files','108650','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14591,'files','108997','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14592,'files','109201','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14593,'files','109222','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14594,'files','109223','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14595,'files','109443','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14596,'files','110516','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14597,'files','110550','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14598,'files','110576','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14599,'files','112970','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14600,'files','113672','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14601,'files','113817','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14602,'files','114588','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14603,'files','114589','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14604,'files','114590','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14605,'files','115016','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14606,'files','115140','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14607,'files','115565','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14608,'files','116486','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14609,'files','116756','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14610,'files','116757','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14611,'files','116758','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14612,'files','116759','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14613,'files','116760','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14614,'files','116897','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14615,'files','116898','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14616,'files','116913','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14617,'files','117081','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14618,'files','117150','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14619,'files','117151','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14620,'files','117352','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14621,'files','117444','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14622,'files','117445','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14623,'files','117446','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14624,'files','117562','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14625,'files','117563','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14626,'files','117564','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14627,'files','117565','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14628,'files','117567','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14629,'files','117713','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14630,'files','117714','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14631,'files','118327','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14632,'files','118387','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14633,'files','118405','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14634,'files','118442','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14635,'files','118460','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14636,'files','118485','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14637,'files','118548','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14638,'files','118553','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14639,'files','118836','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14640,'files','118966','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14641,'files','119017','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14642,'files','119045','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14643,'files','119090','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14644,'files','119351','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14645,'files','119358','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14646,'files','119359','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14647,'files','119509','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14648,'files','119534','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14649,'files','119732','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14650,'files','119733','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14651,'files','119744','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14652,'files','119745','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14653,'files','119746','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14654,'files','119929','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14655,'files','119930','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14656,'files','119931','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14657,'files','120156','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14658,'files','120157','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14659,'files','120347','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14660,'files','120348','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14661,'files','120349','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14662,'files','120350','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14663,'files','120351','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14664,'files','120352','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14665,'files','120569','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14666,'files','120570','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14667,'files','120571','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14668,'files','120572','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14669,'files','120573','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14670,'files','120574','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14671,'files','120831','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14672,'files','120832','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14673,'files','120867','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14674,'files','120868','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14675,'files','120869','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14676,'files','120870','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14677,'files','120902','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14678,'files','120903','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14679,'files','120904','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14680,'files','121022','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14681,'files','121271','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14682,'files','121272','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14683,'files','121273','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14684,'files','121274','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14685,'files','121275','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14686,'files','121710','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14687,'files','122218','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14688,'files','123189','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14689,'files','123190','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14690,'files','123278','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14691,'files','123820','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14692,'files','123821','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14693,'files','124136','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14694,'files','124137','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14695,'files','124138','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14696,'files','125140','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14697,'files','125727','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14698,'files','125728','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14699,'files','125805','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14700,'files','126002','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14701,'files','126021','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14702,'files','126022','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14703,'files','126023','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14704,'files','127828','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14705,'files','127832','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14706,'files','127833','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14707,'files','127834','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14708,'files','127835','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14709,'files','127836','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14710,'files','128218','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14711,'files','128254','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14712,'files','129007','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14713,'files','129054','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14714,'files','129151','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14715,'files','129938','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14716,'files','131161','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14717,'files','131654','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14718,'files','133367','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14719,'files','133864','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14720,'files','133865','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14721,'files','133866','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14722,'files','134151','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14723,'files','134152','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14724,'files','134153','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14725,'files','134305','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14726,'files','134306','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14727,'files','134307','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14728,'files','135998','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14729,'files','136124','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14730,'files','136380','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14731,'files','136381','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14732,'files','136742','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14733,'files','136743','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14734,'files','136744','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14735,'files','136745','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14736,'files','136746','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14737,'files','137029','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14738,'files','137030','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14739,'files','137031','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14740,'files','137032','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14741,'files','137343','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14742,'files','137344','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14743,'files','137345','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14744,'files','137519','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14745,'files','137614','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14746,'files','137615','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14747,'files','137616','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14748,'files','137620','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14749,'files','137633','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14750,'files','137724','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14751,'files','138237','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14752,'files','139016','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14753,'files','139626','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14754,'files','139627','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14755,'files','139798','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14756,'files','139799','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14757,'files','139800','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14758,'files','140264','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14759,'files','140422','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14760,'files','140758','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14761,'files','140819','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14762,'files','141905','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14763,'files','142203','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14764,'files','142380','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14765,'files','142381','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14766,'files','142382','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14767,'files','142383','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14768,'files','143284','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14769,'files','143285','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14770,'files','143286','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14771,'files','143738','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14772,'files','143910','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14773,'files','144696','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14774,'files','144697','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14775,'files','144698','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14776,'files','144699','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14777,'files','144700','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14778,'files','144701','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14779,'files','147546','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14780,'files','147825','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14781,'files','147985','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14782,'files','148389','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14783,'files','148556','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14784,'files','148557','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14785,'files','148558','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14786,'files','148892','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14787,'files','148991','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14788,'files','149739','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14789,'files','150065','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14790,'files','150322','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14791,'files','151541','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14792,'files','153015','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14793,'files','153336','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14794,'files','153337','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14795,'files','153338','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14796,'files','155695','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14797,'files','155696','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14798,'files','156110','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14799,'files','156111','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14800,'files','156112','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14801,'files','156113','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14802,'files','156115','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14803,'files','156116','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14804,'files','156117','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14805,'files','156118','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14806,'files','156119','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14807,'files','156880','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14808,'files','156881','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14809,'files','156882','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14810,'files','156883','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14811,'files','156884','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14812,'files','156885','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14813,'files','156886','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14814,'files','156887','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14815,'files','157558','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14816,'files','157559','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14817,'files','157560','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14818,'files','157561','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14819,'files','157847','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14820,'files','157848','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14821,'files','158239','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14822,'files','158240','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14823,'files','158241','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14824,'files','158242','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14825,'files','158243','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14826,'files','158244','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14827,'files','158549','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14828,'files','158550','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14829,'files','158551','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14830,'files','158552','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14831,'files','158553','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14832,'files','158554','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14833,'files','158555','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14834,'files','158556','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14835,'files','158557','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14836,'files','158558','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14837,'files','158559','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14838,'files','159086','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14839,'files','159087','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14840,'files','159088','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14841,'files','159255','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14842,'files','159256','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14843,'files','159257','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14844,'files','159845','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14845,'files','159848','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14846,'files','159849','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14847,'files','159851','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14848,'files','159852','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14849,'files','159853','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14850,'files','159854','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14851,'files','160344','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14852,'files','171710','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14853,'files','171711','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14854,'files','171815','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14855,'files','171969','skipped','No deal associated',NULL,'2025-11-14 00:11:15'),
(14856,'leads','6f361c30-2b5f-11f0-b07c-d722488bb431','warning','Would create missing organization: ASPETTO INC',NULL,'2025-11-14 00:16:35'),
(14857,'leads','fb866860-efba-11ef-9354-679a087e5dde','warning','Would create missing organization: Analyticsystems',NULL,'2025-11-14 00:16:35'),
(14858,'leads','ffe57cc0-efba-11ef-a25f-27af6aa53296','warning','Would create missing organization: Analyticsystems',NULL,'2025-11-14 00:16:35'),
(14859,'leads','0b43c180-d440-11ef-8a91-dd55c3e12ee5','warning','Would create missing organization: Enginuity Innovation',NULL,'2025-11-14 00:16:35'),
(14860,'leads','05230a40-efbb-11ef-89e4-8f6bc68f48ca','warning','Would create missing organization: MIT',NULL,'2025-11-14 00:16:35'),
(14861,'leads','ec25f6a0-1167-11f0-b0ea-9dcf99750a6f','warning','Would create missing organization: Kippertool',NULL,'2025-11-14 00:16:35'),
(14862,'leads','5a350db0-1169-11f0-8a93-f56042dc8e77','warning','Would create missing organization: HumaNoid',NULL,'2025-11-14 00:16:35'),
(14863,'leads','6cc1d900-4557-11f0-b7c8-dfe6c1885cc5','warning','Would create missing organization: Applied Research Laboratories',NULL,'2025-11-14 00:16:35'),
(14864,'leads','04ba3c30-c9f1-11ef-a932-67e1e8676586','warning','Would create missing organization: Anirudh Sundar organization',NULL,'2025-11-14 00:16:35'),
(14865,'leads','bea716a0-d9a4-11ef-a239-457311a42633','warning','Would create missing organization: Alto Connect',NULL,'2025-11-14 00:16:35'),
(14866,'leads','864d34e0-d9a6-11ef-9388-bd9b59a2c5c0','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(14867,'leads','ed8db2f0-e965-11ef-b439-67371fcb719d','warning','Would create missing organization: Mid Atlantic Drone Development, LLC',NULL,'2025-11-14 00:16:35'),
(14868,'leads','19f446e0-e4a9-11ef-8386-6bcd4ee3c2c8','warning','Would create missing organization: Bluetti',NULL,'2025-11-14 00:16:35'),
(14869,'leads','213370c0-e4a9-11ef-a6d5-b7b59f53aff5','warning','Would create missing organization: Inergysolar',NULL,'2025-11-14 00:16:35'),
(14870,'leads','a380f520-d9aa-11ef-9388-bd9b59a2c5c0','warning','Would create missing organization: Advanced Roofing',NULL,'2025-11-14 00:16:35'),
(14871,'leads','2e7b4dd0-ea2f-11ef-9cfc-81286b7fb5b5','warning','Would create missing organization: On Site Robotics',NULL,'2025-11-14 00:16:35'),
(14872,'leads','dfed1230-fac2-11ef-8428-d3134bbcb217','warning','Would create missing organization: Empirical Systems Aerospace',NULL,'2025-11-14 00:16:35'),
(14873,'leads','f6b8fd20-fac3-11ef-9cb1-57d748d48e5a','warning','Would create missing organization: Richard Root organization',NULL,'2025-11-14 00:16:35'),
(14874,'leads','f74fa930-ee1d-11ef-9959-1b0e2676ae4b','warning','Would create missing organization: Malloy Aeronautics',NULL,'2025-11-14 00:16:35'),
(14875,'leads','18bfb060-ee1e-11ef-966d-c1c045126985','warning','Would create missing organization: Nicolas Montoya organization',NULL,'2025-11-14 00:16:35'),
(14876,'leads','af51b000-ff44-11ef-be17-0516b8e868aa','warning','Would create missing organization: COTA Karting Battery',NULL,'2025-11-14 00:16:35'),
(14877,'leads','b494bbc0-ff44-11ef-a1c9-01f10428b671','warning','Would create missing organization: Six-15 Glasses',NULL,'2025-11-14 00:16:35'),
(14878,'leads','46204050-4559-11f0-97a6-e1b74ced1001','warning','Would create missing organization: RAILBLAZA',NULL,'2025-11-14 00:16:35'),
(14879,'leads','4f43dd40-6287-11f0-9355-89f1a44fb036','warning','Would create missing organization: Texas Marine',NULL,'2025-11-14 00:16:35'),
(14880,'leads','f064b940-829b-11f0-b332-31dbace912b4','warning','Would create missing organization: Mirco Vehicle Technology LLC',NULL,'2025-11-14 00:16:35'),
(14881,'leads','456f54c0-00da-11f0-9c97-276fd154ba62','warning','Would create missing organization: Doble',NULL,'2025-11-14 00:16:35'),
(14882,'leads','d7a78010-4559-11f0-a567-cbc2bb9c049d','warning','Would create missing organization: Steve Statema organization',NULL,'2025-11-14 00:16:35'),
(14883,'leads','aced73a0-1b03-11f0-a838-71ef90d7f1d9','warning','Would create missing organization: Department of Homeland Security',NULL,'2025-11-14 00:16:35'),
(14884,'leads','a4222bd0-829b-11f0-b332-31dbace912b4','warning','Would create missing organization: Golf Cart OEM',NULL,'2025-11-14 00:16:35'),
(14885,'leads','3f0b43d0-829b-11f0-a59e-cf7ab09132ac','warning','Would create missing organization: Shaider Tech LLC',NULL,'2025-11-14 00:16:35'),
(14886,'leads','0e81d440-6284-11f0-97b6-8b92c8e9e9e9','warning','Would create missing organization: US Nacy CENSECFOR DET GULFPORT',NULL,'2025-11-14 00:16:35'),
(14887,'leads','430506b0-829b-11f0-8479-f5fe35a5a21f','warning','Would create missing organization: Trimverse - 72V',NULL,'2025-11-14 00:16:35'),
(14888,'leads','2ddafdc0-4ae8-11f0-bb93-af18be670375','warning','Would create missing organization: Havenhill Synergy Ltd',NULL,'2025-11-14 00:16:35'),
(14889,'leads','951e6e50-6284-11f0-9355-89f1a44fb036','warning','Would create missing organization: National Park Service',NULL,'2025-11-14 00:16:35'),
(14890,'leads','24ec3e40-6285-11f0-9355-89f1a44fb036','warning','Would create missing organization: Advance Boat',NULL,'2025-11-14 00:16:35'),
(14891,'leads','679dc290-6285-11f0-93db-21362d29a27b','warning','Would create missing organization: Dealers Electric Supply',NULL,'2025-11-14 00:16:35'),
(14892,'leads','3f293410-6286-11f0-91a5-397fb148a72c','warning','Would create missing organization: Dauer Manufacturing -',NULL,'2025-11-14 00:16:35'),
(14893,'leads','c630c9b0-67d0-11f0-a2af-81f18c53c554','warning','Would create missing organization: HubSpot, Inc.',NULL,'2025-11-14 00:16:35'),
(14894,'leads','484ba720-79e3-11f0-9483-d3784b88346c','warning','Would create missing organization: James  Kurczewski  organization',NULL,'2025-11-14 00:16:35'),
(14895,'leads','2cec74f0-8294-11f0-a59e-cf7ab09132ac','warning','Would create missing organization: Office of Commander Surgeon',NULL,'2025-11-14 00:16:35'),
(14896,'leads','39f578b0-8292-11f0-a59e-cf7ab09132ac','warning','Would create missing organization: Student',NULL,'2025-11-14 00:16:35'),
(14897,'leads','800d1d50-8290-11f0-a59e-cf7ab09132ac','warning','Would create missing organization: Propelemarine | Electric paddle',NULL,'2025-11-14 00:16:35'),
(14898,'leads','581d2820-8291-11f0-ae40-4b6df05ef984','warning','Would create missing organization: Electric Yacht',NULL,'2025-11-14 00:16:35'),
(14899,'leads','5d22b5b0-8291-11f0-8479-f5fe35a5a21f','warning','Would create missing organization: Tesla',NULL,'2025-11-14 00:16:35'),
(14900,'leads','04013730-8292-11f0-8479-f5fe35a5a21f','warning','Would create missing organization: SynDaver',NULL,'2025-11-14 00:16:35'),
(14901,'leads','a4988360-8292-11f0-b9b4-9d43547fe062','warning','Would create missing organization: Systems by Green Choice',NULL,'2025-11-14 00:16:35'),
(14902,'leads','fa26e1c0-d9a8-11ef-8a2f-2704684e7441','warning','Would create missing organization: ElectricFish',NULL,'2025-11-14 00:16:35'),
(14903,'leads','bee916e0-ee17-11ef-9b54-fb8e43539ea2','warning','Would create missing organization: Alex Ruiz organization',NULL,'2025-11-14 00:16:35'),
(14904,'leads','f9630790-ee17-11ef-963e-2df1899fc200','warning','Would create missing organization: US SOC POE MARATIME',NULL,'2025-11-14 00:16:35'),
(14905,'leads','9d098f90-ee18-11ef-9b54-fb8e43539ea2','warning','Would create missing organization: HTS AmeriTek',NULL,'2025-11-14 00:16:35'),
(14906,'leads','a2fe8630-ee18-11ef-966d-c1c045126985','warning','Would create missing organization: Optum',NULL,'2025-11-14 00:16:35'),
(14907,'leads','309fad60-f9e6-11ef-ab1c-87e12a8bd78f','warning','Would create missing organization: B E Marine Service',NULL,'2025-11-14 00:16:35'),
(14908,'leads','f7420dd0-fac4-11ef-bfb3-0d53ac223cec','warning','Would create missing organization: Project Canary',NULL,'2025-11-14 00:16:35'),
(14909,'leads','1c7efb80-fac5-11ef-a8ce-438f90876d58','warning','Would create missing organization: Grander Marine',NULL,'2025-11-14 00:16:35'),
(14910,'leads','be6761c0-ff44-11ef-a1c9-01f10428b671','warning','Would create missing organization: Mercurius Tech',NULL,'2025-11-14 00:16:35'),
(14911,'leads','c99d26f0-ff54-11ef-b60c-49fa3e21c67c','warning','Would create missing organization: ClearWorld',NULL,'2025-11-14 00:16:35'),
(14912,'leads','6776c5d0-2b5f-11f0-953a-914460d42c56','warning','Would create missing organization: Exfo',NULL,'2025-11-14 00:16:35'),
(14913,'leads','6a9718a0-2b5f-11f0-a754-fb727b1d14ed','warning','Would create missing organization: Swarmbotics AI',NULL,'2025-11-14 00:16:35'),
(14914,'leads','97cbe2a0-455a-11f0-9b40-ef4957727fb6','warning','Would create missing organization: Defense Threat Reduction Agency',NULL,'2025-11-14 00:16:35'),
(14915,'leads','d17c5b40-457a-11f0-a78c-39ccd61f57dc','warning','Would create missing organization: Black Saber Group',NULL,'2025-11-14 00:16:35'),
(14916,'leads','0565e0f0-4631-11f0-ad09-951b989969ea','warning','Would create missing organization: Bounce Imaging',NULL,'2025-11-14 00:16:35'),
(14917,'leads','0a200da0-4631-11f0-895c-711eab65d642','warning','Would create missing organization: JetSurf',NULL,'2025-11-14 00:16:35'),
(14918,'leads','603fe290-6284-11f0-91a5-397fb148a72c','warning','Would create missing organization: AIRBOSS DEFENSE GROUP LLC',NULL,'2025-11-14 00:16:35'),
(14919,'leads','c874d370-6284-11f0-91a5-397fb148a72c','warning','Would create missing organization: Aqua-Vu',NULL,'2025-11-14 00:16:35'),
(14920,'leads','19317750-6285-11f0-9355-89f1a44fb036','warning','Would create missing organization: Soundside Carts',NULL,'2025-11-14 00:16:35'),
(14921,'leads','2488cea0-829c-11f0-a59e-cf7ab09132ac','warning','Would create missing organization: BHI, CO',NULL,'2025-11-14 00:16:35'),
(14922,'leads','27e54010-829c-11f0-ae40-4b6df05ef984','warning','Would create missing organization: MR Miami',NULL,'2025-11-14 00:16:35'),
(14923,'leads','9c8cfd40-829c-11f0-b332-31dbace912b4','warning','Would create missing organization: Vanjen Group',NULL,'2025-11-14 00:16:35'),
(14924,'leads','a8a1cb10-829c-11f0-a59e-cf7ab09132ac','warning','Would create missing organization: Hydrants',NULL,'2025-11-14 00:16:35'),
(14925,'leads','55687520-82a1-11f0-92ee-8dcbb1af7f0b','warning','Would create missing organization: Batteries Plus',NULL,'2025-11-14 00:16:35'),
(14926,'leads','dc3922d0-8a89-11f0-921a-57afd5b2529a','warning','Would create missing organization: Streetleaf',NULL,'2025-11-14 00:16:35'),
(14927,'leads','e25d3fc0-8a89-11f0-921a-57afd5b2529a','warning','Would create missing organization: National Battery Supply',NULL,'2025-11-14 00:16:35'),
(14928,'leads','e632ffe0-8a89-11f0-af93-ff2ea65fc23d','warning','Would create missing organization: Fechheimer Brothers Co.',NULL,'2025-11-14 00:16:35'),
(14929,'leads','aaaab360-54f1-11ef-99fa-b3cc65f4605b','warning','Would create missing organization: Applied Physics Laboratory',NULL,'2025-11-14 00:16:35'),
(14930,'leads','48b1b670-5b42-11ef-8d90-f5c271ae4e5d','warning','Would create missing organization: n/A',NULL,'2025-11-14 00:16:35'),
(14931,'leads','1fec77d0-063c-11ef-88af-1d5859aff86d','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(14932,'leads','647e6290-63cb-11ef-b701-c5bea3976d00','warning','Would create missing organization: Big Toe Engineering LLC',NULL,'2025-11-14 00:16:35'),
(14933,'leads','88271310-5361-11ef-b44c-95f9bc766e6d','warning','Would create missing organization: Aris Wind, LLC',NULL,'2025-11-14 00:16:35'),
(14934,'leads','55fb8210-275e-11ef-8fa1-632a4d9ccf1c','warning','Would create missing organization: https://www.paradigmrobotics.tech/',NULL,'2025-11-14 00:16:35'),
(14935,'leads','af27e040-71ff-11ef-bfef-eb4c9f6f3a09','warning','Would create missing organization: Genomekey',NULL,'2025-11-14 00:16:35'),
(14936,'leads','7b346940-5967-11ee-a15e-8138d7a20f29','warning','Would create missing organization: Advanced Aircraft',NULL,'2025-11-14 00:16:35'),
(14937,'leads','7ce493e0-4045-11ee-a156-d58111db5cff','warning','Would create missing organization: VDOT',NULL,'2025-11-14 00:16:35'),
(14938,'leads','a0618210-4045-11ee-a41f-8946312ebb35','warning','Would create missing organization: Feel Free Kayaks- Custom Battery',NULL,'2025-11-14 00:16:35'),
(14939,'leads','38493030-4061-11ee-89c2-339bf2edd26b','warning','Would create missing organization: Shimano- Custom Battery for Reel',NULL,'2025-11-14 00:16:35'),
(14940,'leads','c364f740-4105-11ee-a41f-8946312ebb35','warning','Would create missing organization: Pallet Shuttle - 24V 150',NULL,'2025-11-14 00:16:35'),
(14941,'leads','089b78c0-4106-11ee-89c2-339bf2edd26b','warning','Would create missing organization: World Fishing Tackle - 14.4V 8Ah-4AH',NULL,'2025-11-14 00:16:35'),
(14942,'leads','c056db30-4dae-11ee-a7f5-859c9b8714a6','warning','Would create missing organization: Practical Technology',NULL,'2025-11-14 00:16:35'),
(14943,'leads','116ce240-4e76-11ee-b187-7323711a5671','warning','Would create missing organization: Mayer Electric Inc.',NULL,'2025-11-14 00:16:35'),
(14944,'leads','a63a2540-4e76-11ee-b187-7323711a5671','warning','Would create missing organization: Sunshine Solar Services Inc.',NULL,'2025-11-14 00:16:35'),
(14945,'leads','a9705490-4e77-11ee-a2c8-0181c13ca46c','warning','Would create missing organization: DCS Corp',NULL,'2025-11-14 00:16:35'),
(14946,'leads','206f8300-531d-11ee-9324-11d3355add0b','warning','Would create missing organization: Ekozone Development',NULL,'2025-11-14 00:16:35'),
(14947,'leads','bf676a60-572b-11ee-9a1a-fb22609a01aa','warning','Would create missing organization: X, the moonshoot factory, Google',NULL,'2025-11-14 00:16:35'),
(14948,'leads','7bbaece0-6795-11ee-b93f-63c9bb229d58','warning','Would create missing organization: Hatteras',NULL,'2025-11-14 00:16:35'),
(14949,'leads','9ed03680-7344-11ee-b195-bd18778d2562','warning','Would create missing organization: Gcc-Na',NULL,'2025-11-14 00:16:35'),
(14950,'leads','9e34ecb0-9e8d-11ee-be68-c1e203ae4ffd','warning','Would create missing organization: Howeandhowe',NULL,'2025-11-14 00:16:35'),
(14951,'leads','4f94cbc0-a0f4-11ee-b2c3-6d13ad8bd97c','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(14952,'leads','38048f00-bad4-11ee-b122-9d9a49454552','warning','Would create missing organization: Solis Energy',NULL,'2025-11-14 00:16:35'),
(14953,'leads','71c31ef0-bad4-11ee-b68f-f367d5a5e9a2','warning','Would create missing organization: Nabeel Perfumes',NULL,'2025-11-14 00:16:35'),
(14954,'leads','95f2bb50-bad4-11ee-b122-9d9a49454552','warning','Would create missing organization: Ecosense Lighting',NULL,'2025-11-14 00:16:35'),
(14955,'leads','9bcf47f0-bad4-11ee-b68f-f367d5a5e9a2','warning','Would create missing organization: Elements to Energy (E2E)',NULL,'2025-11-14 00:16:35'),
(14956,'leads','a23b1c40-bad4-11ee-b68f-f367d5a5e9a2','warning','Would create missing organization: Process Integration',NULL,'2025-11-14 00:16:35'),
(14957,'leads','c15f85c0-bad4-11ee-b68f-f367d5a5e9a2','warning','Would create missing organization: Sartorius',NULL,'2025-11-14 00:16:35'),
(14958,'leads','c7c31cb0-bad4-11ee-a67a-21e2d0399d09','warning','Would create missing organization: QinetiQ Group PLC',NULL,'2025-11-14 00:16:35'),
(14959,'leads','e8877a90-bad4-11ee-b122-9d9a49454552','warning','Would create missing organization: Intercomp USA',NULL,'2025-11-14 00:16:35'),
(14960,'leads','ee1523e0-bad4-11ee-b122-9d9a49454552','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(14961,'leads','f69d96a0-bad4-11ee-b68f-f367d5a5e9a2','warning','Would create missing organization: RAILBLAZA',NULL,'2025-11-14 00:16:35'),
(14962,'leads','3ba0d320-bad5-11ee-b122-9d9a49454552','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(14963,'leads','5b8cf970-bad5-11ee-a67a-21e2d0399d09','warning','Would create missing organization: Doug Shelby Engineering',NULL,'2025-11-14 00:16:35'),
(14964,'leads','6fe23480-bad5-11ee-b122-9d9a49454552','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(14965,'leads','955e4e10-bad5-11ee-a67a-21e2d0399d09','warning','Would create missing organization: Environmentum',NULL,'2025-11-14 00:16:35'),
(14966,'leads','5c0b34b0-bad6-11ee-b122-9d9a49454552','warning','Would create missing organization: Volatus Aerospace',NULL,'2025-11-14 00:16:35'),
(14967,'leads','cd1da0b0-bad7-11ee-b68f-f367d5a5e9a2','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(14968,'leads','d367e340-bad7-11ee-b68f-f367d5a5e9a2','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(14969,'leads','e6ad0de0-bad7-11ee-b68f-f367d5a5e9a2','warning','Would create missing organization: Gcc-Na',NULL,'2025-11-14 00:16:35'),
(14970,'leads','90522970-bad8-11ee-a67a-21e2d0399d09','warning','Would create missing organization: Vallen Distribution INC.',NULL,'2025-11-14 00:16:35'),
(14971,'leads','97a32da0-bad8-11ee-a67a-21e2d0399d09','warning','Would create missing organization: Alumacart,',NULL,'2025-11-14 00:16:35'),
(14972,'leads','bb90b7f0-bad8-11ee-b68f-f367d5a5e9a2','warning','Would create missing organization: U.S. Navy NCIS',NULL,'2025-11-14 00:16:35'),
(14973,'leads','ea059240-bad8-11ee-b122-9d9a49454552','warning','Would create missing organization: Mayer Electric Supply',NULL,'2025-11-14 00:16:35'),
(14974,'leads','5b7b4960-bad9-11ee-b68f-f367d5a5e9a2','warning','Would create missing organization: VIRGINIA DEPARTMENT OF TRANSPORTATION',NULL,'2025-11-14 00:16:35'),
(14975,'leads','af8bac20-bad9-11ee-a67a-21e2d0399d09','warning','Would create missing organization: Anglers Choice Marine-MART',NULL,'2025-11-14 00:16:35'),
(14976,'leads','7c040ed0-bc8f-11ee-b68f-f367d5a5e9a2','warning','Would create missing organization: Offworld',NULL,'2025-11-14 00:16:35'),
(14977,'leads','5df33900-c141-11ee-9f06-899b6c712b6e','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(14978,'leads','3c8ac2c0-c43d-11ee-9f06-899b6c712b6e','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(14979,'leads','ddcedd90-c9cb-11ee-9385-5593ab22350e','warning','Would create missing organization: Project Canary',NULL,'2025-11-14 00:16:35'),
(14980,'leads','48dccd10-ca92-11ee-a52a-1f4c71091bd4','warning','Would create missing organization: Personal - 48V 5Kwh Powerwalls',NULL,'2025-11-14 00:16:35'),
(14981,'leads','05484910-d4d5-11ee-8db7-f1722cfa26ee','warning','Would create missing organization: MIB',NULL,'2025-11-14 00:16:35'),
(14982,'leads','9c183f00-d587-11ee-8889-d1da495a3273','warning','Would create missing organization: Blueline Video surveillance',NULL,'2025-11-14 00:16:35'),
(14983,'leads','100f2d20-da46-11ee-9a5a-79c7439886bc','warning','Would create missing organization: Forms inc.',NULL,'2025-11-14 00:16:35'),
(14984,'leads','bc35a010-e541-11ee-8cb7-e57c04ba7b5d','warning','Would create missing organization: SDMS Robotics',NULL,'2025-11-14 00:16:35'),
(14985,'leads','3a0ad210-eab2-11ee-ba2c-b7d818aab9f9','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(14986,'leads','6b029660-eb65-11ee-8fcc-0585346bdbe4','warning','Would create missing organization: Silicon Techno Circuits',NULL,'2025-11-14 00:16:35'),
(14987,'leads','ec0a0f40-eb74-11ee-b5da-f35f012d50d9','warning','Would create missing organization: Emerson Ornstein organization',NULL,'2025-11-14 00:16:35'),
(14988,'leads','16b962b0-ed0d-11ee-8a15-b13982013ab3','warning','Would create missing organization: JettWatt',NULL,'2025-11-14 00:16:35'),
(14989,'leads','a579e570-f03b-11ee-b746-7917a4a0bc4f','warning','Would create missing organization: Global Concept',NULL,'2025-11-14 00:16:35'),
(14990,'leads','6a8948b0-f03c-11ee-89ff-679ba970e042','warning','Would create missing organization: University of Wisconsin Madison',NULL,'2025-11-14 00:16:35'),
(14991,'leads','e5567070-f03e-11ee-89ff-679ba970e042','warning','Would create missing organization: Emerson Ornstein organization',NULL,'2025-11-14 00:16:35'),
(14992,'leads','b0425920-f067-11ee-820c-33dab0a80226','warning','Would create missing organization: Abay organization',NULL,'2025-11-14 00:16:35'),
(14993,'leads','8987b8c0-f0ee-11ee-951a-d70139889d2e','warning','Would create missing organization: James  Kurczewski  organization',NULL,'2025-11-14 00:16:35'),
(14994,'leads','00149990-f103-11ee-a1f1-47e4a2743c8f','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(14995,'leads','6e447480-f103-11ee-bca9-956007a2c12d','warning','Would create missing organization: Intovision',NULL,'2025-11-14 00:16:35'),
(14996,'leads','107894e0-f111-11ee-bca9-956007a2c12d','warning','Would create missing organization: Steve Statema organization',NULL,'2025-11-14 00:16:35'),
(14997,'leads','75a596c0-f12e-11ee-a59f-47efee9cdae4','warning','Would create missing organization: Scott Messick  organization',NULL,'2025-11-14 00:16:35'),
(14998,'leads','4adc26e0-f681-11ee-9c2c-b796f5528e02','warning','Would create missing organization: CU Boulder',NULL,'2025-11-14 00:16:35'),
(14999,'leads','39ac9290-f741-11ee-88d2-675f5687e930','warning','Would create missing organization: Menno T Bauman organization',NULL,'2025-11-14 00:16:35'),
(15000,'leads','f26b9f20-fb32-11ee-833f-b763a46c6611','warning','Would create missing organization: Ethan Rowe organization',NULL,'2025-11-14 00:16:35'),
(15001,'leads','b516d800-fb51-11ee-9fbb-3b479f4719b7','warning','Would create missing organization: Next Level Automotive',NULL,'2025-11-14 00:16:35'),
(15002,'leads','7d403000-fb53-11ee-b2b9-1b356a63ceac','warning','Would create missing organization: Dario Dentes organization',NULL,'2025-11-14 00:16:35'),
(15003,'leads','cacaaba0-0186-11ef-a951-e10196e4111c','warning','Would create missing organization: Globus Medical',NULL,'2025-11-14 00:16:35'),
(15004,'leads','d822e400-03f9-11ef-96d0-3b2b639686a3','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(15005,'leads','aa7b1c50-062b-11ef-bec7-91fd24d17c88','warning','Would create missing organization: Teresa Moore organization',NULL,'2025-11-14 00:16:35'),
(15006,'leads','9aa311b0-063b-11ef-af12-e5a2924242d9','warning','Would create missing organization: Ocutrap',NULL,'2025-11-14 00:16:35'),
(15007,'leads','cf917bf0-063b-11ef-8b5e-d990dc5b5e43','warning','Would create missing organization: Chand brilliance',NULL,'2025-11-14 00:16:35'),
(15008,'leads','fd0b0fe0-0647-11ef-96d0-3b2b639686a3','warning','Would create missing organization: Steven Salter organization',NULL,'2025-11-14 00:16:35'),
(15009,'leads','d3895950-0657-11ef-b9ea-b137f71f6a60','warning','Would create missing organization: EZ Kruiser Golf Cart',NULL,'2025-11-14 00:16:35'),
(15010,'leads','a05ea390-0711-11ef-a68e-dff3f93acbc4','warning','Would create missing organization: Dueitts Battery Supply Inc.',NULL,'2025-11-14 00:16:35'),
(15011,'leads','cce03830-0968-11ef-b3ba-e7336aadab95','warning','Would create missing organization: Xworx Inc',NULL,'2025-11-14 00:16:35'),
(15012,'leads','6ef43950-0969-11ef-97b7-1717425e0835','warning','Would create missing organization: Bajaj',NULL,'2025-11-14 00:16:35'),
(15013,'leads','b2b9f1c0-0e14-11ef-9b70-d91355cad6f6','warning','Would create missing organization: Delmer & Associates, LCC',NULL,'2025-11-14 00:16:35'),
(15014,'leads','584c60d0-0efd-11ef-b6b2-9354883a4197','warning','Would create missing organization: Anthony Thomas organization',NULL,'2025-11-14 00:16:35'),
(15015,'leads','04473340-12cf-11ef-a699-4d714b2a54f2','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(15016,'leads','a0e73f10-1347-11ef-9e11-c101c1b0a59d','warning','Would create missing organization: Ryan Somai organization',NULL,'2025-11-14 00:16:35'),
(15017,'leads','031614f0-138d-11ef-b59a-f5796a9a3e88','warning','Would create missing organization: nano power a.s.',NULL,'2025-11-14 00:16:35'),
(15018,'leads','9593f5d0-13f2-11ef-9e11-c101c1b0a59d','warning','Would create missing organization: Kiang Loong Ng organization',NULL,'2025-11-14 00:16:35'),
(15019,'leads','8c9da370-145d-11ef-8d00-b3d319f4b9b9','warning','Would create missing organization: PICODE',NULL,'2025-11-14 00:16:35'),
(15020,'leads','c230d930-145d-11ef-9df3-191803d8bc06','warning','Would create missing organization: Accesshardware Inc.',NULL,'2025-11-14 00:16:35'),
(15021,'leads','ee1f4190-1790-11ef-87d1-bd61cc9f3289','warning','Would create missing organization: Discovery Ford',NULL,'2025-11-14 00:16:35'),
(15022,'leads','b1e004c0-1791-11ef-a1e7-514068a29cd4','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(15023,'leads','1e8aa270-1796-11ef-a1e7-514068a29cd4','warning','Would create missing organization: Encore Boat Works',NULL,'2025-11-14 00:16:35'),
(15024,'leads','a34cf4a0-184e-11ef-a498-5bb397ef0249','warning','Would create missing organization: Good Luck LLC',NULL,'2025-11-14 00:16:35'),
(15025,'leads','a6bdea50-1910-11ef-9688-b1d73b6a5dcf','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(15026,'leads','a675c0f0-1914-11ef-9a6b-71055cc5f8fb','warning','Would create missing organization: Segway Hollywood',NULL,'2025-11-14 00:16:35'),
(15027,'leads','12856d30-19d4-11ef-aa27-9bcd37a14e94','warning','Would create missing organization: WSSA',NULL,'2025-11-14 00:16:35'),
(15028,'leads','d4e60510-1cfe-11ef-b8cf-1fbf5e5198f8','warning','Would create missing organization: Martin Rebuilds',NULL,'2025-11-14 00:16:35'),
(15029,'leads','28ba2fe0-1d04-11ef-b8cf-1fbf5e5198f8','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(15030,'leads','9e554fe0-1dd7-11ef-a841-8f0ae69dba57','warning','Would create missing organization: Bill Daniels organization',NULL,'2025-11-14 00:16:35'),
(15031,'leads','5bfcab30-1eee-11ef-b2cf-5fa52f512284','warning','Would create missing organization: Martin Meek organization',NULL,'2025-11-14 00:16:35'),
(15032,'leads','3d9fa890-1f6b-11ef-9a19-59a18cd49924','warning','Would create missing organization: Track Master Mobility',NULL,'2025-11-14 00:16:35'),
(15033,'leads','e3b1bbe0-1f77-11ef-9a19-59a18cd49924','warning','Would create missing organization: Telecom Battery',NULL,'2025-11-14 00:16:35'),
(15034,'leads','1ee93030-1f78-11ef-aa4e-4f4e2660fd7b','warning','Would create missing organization: Vishwaracers',NULL,'2025-11-14 00:16:35'),
(15035,'leads','59188350-1f78-11ef-9a19-59a18cd49924','warning','Would create missing organization: Network Experts',NULL,'2025-11-14 00:16:35'),
(15036,'leads','35f02fe0-1f9b-11ef-aa4e-4f4e2660fd7b','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(15037,'leads','cf722ea0-228b-11ef-b2cf-5fa52f512284','warning','Would create missing organization: General RV Center',NULL,'2025-11-14 00:16:35'),
(15038,'leads','30dcfe90-228c-11ef-9923-0f43df108a4b','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(15039,'leads','2446fd60-228d-11ef-9923-0f43df108a4b','warning','Would create missing organization: Zakian Rugs',NULL,'2025-11-14 00:16:35'),
(15040,'leads','6b48a1f0-228d-11ef-bf85-dd911e2a6349','warning','Would create missing organization: EMB Motorsport',NULL,'2025-11-14 00:16:35'),
(15041,'leads','b28d77c0-2292-11ef-9cb4-994a5793db83','warning','Would create missing organization: M&P Security',NULL,'2025-11-14 00:16:35'),
(15042,'leads','8da4c850-2305-11ef-b2cf-5fa52f512284','warning','Would create missing organization: Anatolii organization',NULL,'2025-11-14 00:16:35'),
(15043,'leads','5fc4d320-2446-11ef-946f-13b75546807f','warning','Would create missing organization: Atomic Cool Kartz',NULL,'2025-11-14 00:16:35'),
(15044,'leads','11e401f0-24e9-11ef-8ccb-ff8532d8e9f8','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(15045,'leads','93c41370-24eb-11ef-b74f-6f6461a13fe8','warning','Would create missing organization: Reid-Ashman Mfg.',NULL,'2025-11-14 00:16:35'),
(15046,'leads','29e009a0-2504-11ef-8534-4d08477509db','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(15047,'leads','205f16d0-2759-11ef-8fa1-632a4d9ccf1c','warning','Would create missing organization: Advance Boat',NULL,'2025-11-14 00:16:35'),
(15048,'leads','db0e11c0-2803-11ef-9bef-cd12d9a9d969','warning','Would create missing organization: Mystery Flight',NULL,'2025-11-14 00:16:35'),
(15049,'leads','3b5cc670-28cc-11ef-9c05-13f52b414c93','warning','Would create missing organization: Roush',NULL,'2025-11-14 00:16:35'),
(15050,'leads','ac30b5f0-28e5-11ef-a0ab-43b9a7fa6a42','warning','Would create missing organization: Electric Yacht',NULL,'2025-11-14 00:16:35'),
(15051,'leads','e9b21fa0-28f8-11ef-a841-8f0ae69dba57','warning','Would create missing organization: Price Electronics',NULL,'2025-11-14 00:16:35'),
(15052,'leads','beda6bf0-2cab-11ef-b680-91ad9d1991a4','warning','Would create missing organization: Thomas Wadsworth organization',NULL,'2025-11-14 00:16:35'),
(15053,'leads','045acf20-2e56-11ef-b69b-f170eca3ee31','warning','Would create missing organization: Leidos',NULL,'2025-11-14 00:16:35'),
(15054,'leads','949b1400-3248-11ef-99a4-d3346253e2c6','warning','Would create missing organization: Navia Energy Inc.',NULL,'2025-11-14 00:16:35'),
(15055,'leads','d93782f0-3249-11ef-9e56-a5bdc7b7d8d8','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(15056,'leads','466f1b30-324a-11ef-91a5-ddf712cba00f','warning','Would create missing organization: Soaring Concepts Aerospace',NULL,'2025-11-14 00:16:35'),
(15057,'leads','31185930-324b-11ef-8f87-2febb96654ea','warning','Would create missing organization: JP Equipment & Service Co.',NULL,'2025-11-14 00:16:35'),
(15058,'leads','7d3d4c80-324b-11ef-99a4-d3346253e2c6','warning','Would create missing organization: Chris Grondman organization',NULL,'2025-11-14 00:16:35'),
(15059,'leads','9d198f20-325d-11ef-9866-edd510b5f338','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(15060,'leads','cc4d50d0-34c7-11ef-ae44-b93f5d4649fe','warning','Would create missing organization: Jay Rasi organization',NULL,'2025-11-14 00:16:35'),
(15061,'leads','c99db420-388b-11ef-9e56-a5bdc7b7d8d8','warning','Would create missing organization: Concept DD Inc',NULL,'2025-11-14 00:16:35'),
(15062,'leads','5c223fa0-388c-11ef-849f-8b74dc1802d9','warning','Would create missing organization: LFP Consumer Power Tool',NULL,'2025-11-14 00:16:35'),
(15063,'leads','e97aad80-38b2-11ef-849f-8b74dc1802d9','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(15064,'leads','b68ceb40-3e02-11ef-a02e-79dbbbddf863','warning','Would create missing organization: Lotuccusa Inc',NULL,'2025-11-14 00:16:35'),
(15065,'leads','5da3a090-3fc0-11ef-8975-2d5057077cbf','warning','Would create missing organization: Scott Blew organization',NULL,'2025-11-14 00:16:35'),
(15066,'leads','440ef8e0-3fe4-11ef-88e7-cf0db74c6016','warning','Would create missing organization: Scott Blew organization',NULL,'2025-11-14 00:16:35'),
(15067,'leads','c4a4d270-439c-11ef-a493-852435243172','warning','Would create missing organization: Personal',NULL,'2025-11-14 00:16:35'),
(15068,'leads','b6755210-45f9-11ef-901d-25624c1d8a42','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(15069,'leads','e0a325f0-4840-11ef-8f97-c1c5192a041d','warning','Would create missing organization: Operation Send it',NULL,'2025-11-14 00:16:35'),
(15070,'leads','80ab0df0-4842-11ef-8f97-c1c5192a041d','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(15071,'leads','190c5560-49bd-11ef-9388-b9dff8bd2fab','warning','Would create missing organization: Majesty AI',NULL,'2025-11-14 00:16:35'),
(15072,'leads','8967dc60-49dd-11ef-81ac-5b2abd8371f8','warning','Would create missing organization: Blue Water Battery',NULL,'2025-11-14 00:16:35'),
(15073,'leads','d168b680-4aa3-11ef-b910-03284540ed82','warning','Would create missing organization: Repsol International',NULL,'2025-11-14 00:16:35'),
(15074,'leads','c936f890-4b4e-11ef-8563-cb0a2734e89d','warning','Would create missing organization: HumaNoid',NULL,'2025-11-14 00:16:35'),
(15075,'leads','d5f47120-4e7d-11ef-99a6-4bf71821d30b','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(15076,'leads','96c68430-5331-11ef-bf32-81d389b181df','warning','Would create missing organization: Battery Bills LLC',NULL,'2025-11-14 00:16:35'),
(15077,'leads','abc756a0-5333-11ef-9d17-c51e9e5fa5ca','warning','Would create missing organization: ABA Marine Consulting INC.',NULL,'2025-11-14 00:16:35'),
(15078,'leads','a75f1cc0-54ef-11ef-8794-03a7a8ec6de8','warning','Would create missing organization: Marine Customer',NULL,'2025-11-14 00:16:35'),
(15079,'leads','fbacba20-54f0-11ef-9113-8d86bb63387c','warning','Would create missing organization: Integrated Marine Solutions',NULL,'2025-11-14 00:16:35'),
(15080,'leads','ab109be0-55c7-11ef-adce-b5c0deaed1fd','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(15081,'leads','ce114960-58e1-11ef-9941-17650adb0418','warning','Would create missing organization: VJF',NULL,'2025-11-14 00:16:35'),
(15082,'leads','2f3f1e00-59ab-11ef-9e31-bb24ab08945d','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(15083,'leads','47f94750-5f31-11ef-8ac2-cd51ff4693d5','skipped','No organization specified',NULL,'2025-11-14 00:16:35'),
(15084,'leads','1d1ee5c0-618a-11ef-a702-659adcbee65a','warning','Would create missing organization: Profound Home Improvement',NULL,'2025-11-14 00:16:35'),
(15085,'leads','1b21a730-64a0-11ef-b4cc-13d3d3de7ea0','warning','Would create missing organization: Advanced Green Technologies',NULL,'2025-11-14 00:16:35'),
(15086,'leads','a5a78b40-6612-11ef-acf7-cfad48ddfff8','warning','Would create missing organization: Hayatcomm.net',NULL,'2025-11-14 00:16:35'),
(15087,'leads','46396240-6eb0-11ef-b2c1-ed044c57f72b','warning','Would create missing organization: Swarmbotics AI',NULL,'2025-11-14 00:16:35'),
(15088,'leads','6b7aba80-7447-11ef-9e80-a9fcb8936b1d','warning','Would create missing organization: EnergyX',NULL,'2025-11-14 00:16:35'),
(15089,'leads','9a16caf0-cde3-11ef-8263-7fe51e11e07f','warning','Would create missing organization: METABOTS',NULL,'2025-11-14 00:16:35'),
(15090,'notes','1','error','Deal not found: 2',NULL,'2025-11-14 00:17:00'),
(15091,'notes','2','error','Deal not found: 7',NULL,'2025-11-14 00:17:00'),
(15092,'notes','3','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15093,'notes','4','error','Deal not found: 8',NULL,'2025-11-14 00:17:00'),
(15094,'notes','5','error','Deal not found: 9',NULL,'2025-11-14 00:17:00'),
(15095,'notes','6','error','Deal not found: 2',NULL,'2025-11-14 00:17:00'),
(15096,'notes','7','error','Deal not found: 10',NULL,'2025-11-14 00:17:00'),
(15097,'notes','8','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15098,'notes','9','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15099,'notes','10','error','Deal not found: 14',NULL,'2025-11-14 00:17:00'),
(15100,'notes','11','error','Deal not found: 15',NULL,'2025-11-14 00:17:00'),
(15101,'notes','12','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15102,'notes','13','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15103,'notes','14','error','Deal not found: 2',NULL,'2025-11-14 00:17:00'),
(15104,'notes','15','error','Deal not found: 19',NULL,'2025-11-14 00:17:00'),
(15105,'notes','16','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15106,'notes','17','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15107,'notes','18','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15108,'notes','19','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15109,'notes','20','error','Deal not found: 4',NULL,'2025-11-14 00:17:00'),
(15110,'notes','21','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15111,'notes','22','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15112,'notes','23','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15113,'notes','24','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15114,'notes','25','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15115,'notes','26','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15116,'notes','27','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15117,'notes','28','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15118,'notes','29','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15119,'notes','30','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15120,'notes','31','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15121,'notes','32','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15122,'notes','33','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15123,'notes','34','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15124,'notes','35','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15125,'notes','36','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15126,'notes','37','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15127,'notes','38','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15128,'notes','39','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15129,'notes','40','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15130,'notes','41','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15131,'notes','42','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15132,'notes','43','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15133,'notes','44','error','Deal not found: 58',NULL,'2025-11-14 00:17:00'),
(15134,'notes','45','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15135,'notes','46','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15136,'notes','47','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15137,'notes','48','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15138,'notes','49','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15139,'notes','50','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15140,'notes','51','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15141,'notes','52','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15142,'notes','53','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15143,'notes','54','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15144,'notes','55','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15145,'notes','56','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15146,'notes','57','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15147,'notes','58','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15148,'notes','59','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15149,'notes','60','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15150,'notes','61','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15151,'notes','62','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15152,'notes','63','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15153,'notes','64','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15154,'notes','65','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15155,'notes','66','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15156,'notes','67','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15157,'notes','68','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15158,'notes','69','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15159,'notes','70','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15160,'notes','71','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15161,'notes','72','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15162,'notes','73','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15163,'notes','74','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15164,'notes','75','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15165,'notes','76','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15166,'notes','77','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15167,'notes','78','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15168,'notes','79','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15169,'notes','80','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15170,'notes','81','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15171,'notes','82','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15172,'notes','83','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15173,'notes','84','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15174,'notes','85','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15175,'notes','86','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15176,'notes','87','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15177,'notes','88','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15178,'notes','89','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15179,'notes','90','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15180,'notes','91','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15181,'notes','92','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15182,'notes','93','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15183,'notes','94','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15184,'notes','95','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15185,'notes','96','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15186,'notes','97','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15187,'notes','98','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15188,'notes','99','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15189,'notes','100','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15190,'notes','101','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15191,'notes','102','error','Deal not found: 61',NULL,'2025-11-14 00:17:00'),
(15192,'notes','103','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15193,'notes','104','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15194,'notes','105','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15195,'notes','106','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15196,'notes','107','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15197,'notes','108','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15198,'notes','109','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15199,'notes','110','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15200,'notes','111','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15201,'notes','112','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15202,'notes','113','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15203,'notes','114','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15204,'notes','115','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15205,'notes','116','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15206,'notes','117','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15207,'notes','118','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15208,'notes','119','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15209,'notes','120','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15210,'notes','121','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15211,'notes','122','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15212,'notes','123','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15213,'notes','124','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15214,'notes','125','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15215,'notes','126','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15216,'notes','127','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15217,'notes','128','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15218,'notes','129','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15219,'notes','130','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15220,'notes','131','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15221,'notes','132','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15222,'notes','133','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15223,'notes','134','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15224,'notes','135','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15225,'notes','136','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15226,'notes','137','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15227,'notes','138','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15228,'notes','139','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15229,'notes','140','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15230,'notes','141','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15231,'notes','142','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15232,'notes','143','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15233,'notes','144','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15234,'notes','145','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15235,'notes','146','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15236,'notes','148','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15237,'notes','149','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15238,'notes','150','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15239,'notes','151','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15240,'notes','152','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15241,'notes','153','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15242,'notes','154','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15243,'notes','155','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15244,'notes','156','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15245,'notes','157','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15246,'notes','158','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15247,'notes','159','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15248,'notes','160','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15249,'notes','161','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15250,'notes','162','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15251,'notes','163','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15252,'notes','164','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15253,'notes','165','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15254,'notes','166','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15255,'notes','167','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15256,'notes','168','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15257,'notes','169','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15258,'notes','170','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15259,'notes','171','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15260,'notes','172','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15261,'notes','173','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15262,'notes','174','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15263,'notes','175','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15264,'notes','176','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15265,'notes','177','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15266,'notes','178','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15267,'notes','179','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15268,'notes','180','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15269,'notes','181','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15270,'notes','182','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15271,'notes','183','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15272,'notes','184','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15273,'notes','185','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15274,'notes','186','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15275,'notes','187','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15276,'notes','188','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15277,'notes','189','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15278,'notes','190','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15279,'notes','191','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15280,'notes','192','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15281,'notes','193','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15282,'notes','194','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15283,'notes','195','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15284,'notes','196','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15285,'notes','197','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15286,'notes','198','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15287,'notes','199','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15288,'notes','200','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15289,'notes','201','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15290,'notes','202','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15291,'notes','203','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15292,'notes','204','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15293,'notes','205','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15294,'notes','206','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15295,'notes','207','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15296,'notes','208','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15297,'notes','209','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15298,'notes','210','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15299,'notes','211','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15300,'notes','212','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15301,'notes','213','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15302,'notes','214','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15303,'notes','215','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15304,'notes','216','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15305,'notes','217','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15306,'notes','218','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15307,'notes','219','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15308,'notes','220','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15309,'notes','221','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15310,'notes','222','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15311,'notes','223','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15312,'notes','224','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15313,'notes','225','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15314,'notes','226','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15315,'notes','227','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15316,'notes','228','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15317,'notes','229','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15318,'notes','230','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15319,'notes','231','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15320,'notes','232','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15321,'notes','233','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15322,'notes','234','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15323,'notes','235','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15324,'notes','236','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15325,'notes','237','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15326,'notes','238','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15327,'notes','239','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15328,'notes','240','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15329,'notes','241','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15330,'notes','242','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15331,'notes','243','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15332,'notes','244','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15333,'notes','245','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15334,'notes','246','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15335,'notes','247','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15336,'notes','248','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15337,'notes','249','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15338,'notes','250','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15339,'notes','251','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15340,'notes','252','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15341,'notes','253','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15342,'notes','254','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15343,'notes','255','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15344,'notes','256','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15345,'notes','257','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15346,'notes','258','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15347,'notes','259','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15348,'notes','260','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15349,'notes','261','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15350,'notes','262','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15351,'notes','263','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15352,'notes','264','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15353,'notes','265','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15354,'notes','266','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15355,'notes','267','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15356,'notes','268','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15357,'notes','269','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15358,'notes','270','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15359,'notes','271','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15360,'notes','272','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15361,'notes','273','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15362,'notes','274','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15363,'notes','275','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15364,'notes','276','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15365,'notes','277','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15366,'notes','278','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15367,'notes','279','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15368,'notes','280','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15369,'notes','281','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15370,'notes','282','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15371,'notes','283','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15372,'notes','284','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15373,'notes','285','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15374,'notes','286','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15375,'notes','287','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15376,'notes','288','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15377,'notes','289','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15378,'notes','290','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15379,'notes','291','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15380,'notes','292','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15381,'notes','293','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15382,'notes','294','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15383,'notes','295','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15384,'notes','296','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15385,'notes','297','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15386,'notes','298','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15387,'notes','299','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15388,'notes','300','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15389,'notes','301','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15390,'notes','302','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15391,'notes','303','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15392,'notes','304','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15393,'notes','305','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15394,'notes','306','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15395,'notes','307','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15396,'notes','308','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15397,'notes','309','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15398,'notes','310','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15399,'notes','311','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15400,'notes','312','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15401,'notes','313','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15402,'notes','314','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15403,'notes','315','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15404,'notes','316','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15405,'notes','317','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15406,'notes','318','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15407,'notes','319','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15408,'notes','320','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15409,'notes','321','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15410,'notes','322','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15411,'notes','323','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15412,'notes','324','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15413,'notes','325','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15414,'notes','326','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15415,'notes','327','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15416,'notes','328','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15417,'notes','329','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15418,'notes','330','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15419,'notes','331','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15420,'notes','332','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15421,'notes','333','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15422,'notes','334','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15423,'notes','335','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15424,'notes','336','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15425,'notes','337','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15426,'notes','338','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15427,'notes','339','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15428,'notes','340','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15429,'notes','341','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15430,'notes','342','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15431,'notes','343','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15432,'notes','344','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15433,'notes','345','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15434,'notes','346','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15435,'notes','347','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15436,'notes','348','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15437,'notes','349','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15438,'notes','350','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15439,'notes','351','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15440,'notes','352','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15441,'notes','353','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15442,'notes','354','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15443,'notes','355','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15444,'notes','356','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15445,'notes','357','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15446,'notes','358','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15447,'notes','359','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15448,'notes','360','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15449,'notes','361','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15450,'notes','362','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15451,'notes','363','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15452,'notes','364','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15453,'notes','365','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15454,'notes','366','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15455,'notes','367','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15456,'notes','368','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15457,'notes','369','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15458,'notes','370','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15459,'notes','371','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15460,'notes','372','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15461,'notes','373','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15462,'notes','374','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15463,'notes','375','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15464,'notes','376','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15465,'notes','377','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15466,'notes','378','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15467,'notes','379','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15468,'notes','380','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15469,'notes','381','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15470,'notes','382','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15471,'notes','383','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15472,'notes','384','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15473,'notes','385','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15474,'notes','386','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15475,'notes','387','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15476,'notes','388','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15477,'notes','389','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15478,'notes','390','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15479,'notes','391','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15480,'notes','392','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15481,'notes','393','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15482,'notes','394','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15483,'notes','395','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15484,'notes','396','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15485,'notes','397','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15486,'notes','398','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15487,'notes','399','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15488,'notes','400','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15489,'notes','402','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15490,'notes','403','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15491,'notes','404','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15492,'notes','405','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15493,'notes','406','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15494,'notes','407','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15495,'notes','408','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15496,'notes','409','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15497,'notes','410','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15498,'notes','411','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15499,'notes','412','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15500,'notes','413','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15501,'notes','414','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15502,'notes','415','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15503,'notes','416','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15504,'notes','417','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15505,'notes','418','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15506,'notes','419','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15507,'notes','420','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15508,'notes','421','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15509,'notes','422','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15510,'notes','423','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15511,'notes','424','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15512,'notes','425','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15513,'notes','426','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15514,'notes','427','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15515,'notes','428','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15516,'notes','429','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15517,'notes','430','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15518,'notes','431','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15519,'notes','432','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15520,'notes','433','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15521,'notes','434','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15522,'notes','435','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15523,'notes','436','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15524,'notes','437','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15525,'notes','438','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15526,'notes','439','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15527,'notes','440','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15528,'notes','441','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15529,'notes','442','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15530,'notes','443','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15531,'notes','444','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15532,'notes','445','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15533,'notes','446','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15534,'notes','447','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15535,'notes','448','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15536,'notes','449','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15537,'notes','450','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15538,'notes','451','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15539,'notes','452','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15540,'notes','453','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15541,'notes','454','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15542,'notes','455','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15543,'notes','456','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15544,'notes','457','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15545,'notes','458','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15546,'notes','459','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15547,'notes','460','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15548,'notes','461','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15549,'notes','462','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15550,'notes','463','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15551,'notes','464','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15552,'notes','465','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15553,'notes','466','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15554,'notes','467','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15555,'notes','468','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15556,'notes','469','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15557,'notes','470','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15558,'notes','471','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15559,'notes','472','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15560,'notes','473','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15561,'notes','474','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15562,'notes','475','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15563,'notes','476','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15564,'notes','477','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15565,'notes','478','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15566,'notes','479','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15567,'notes','480','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15568,'notes','481','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15569,'notes','482','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15570,'notes','483','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15571,'notes','484','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15572,'notes','485','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15573,'notes','486','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15574,'notes','487','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15575,'notes','488','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15576,'notes','489','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15577,'notes','490','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15578,'notes','491','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15579,'notes','492','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15580,'notes','493','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15581,'notes','494','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15582,'notes','495','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15583,'notes','496','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15584,'notes','497','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15585,'notes','498','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15586,'notes','499','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15587,'notes','500','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15588,'notes','501','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15589,'notes','502','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15590,'notes','503','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15591,'notes','504','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15592,'notes','505','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15593,'notes','507','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15594,'notes','508','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15595,'notes','509','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15596,'notes','510','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15597,'notes','511','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15598,'notes','512','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15599,'notes','513','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15600,'notes','514','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15601,'notes','515','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15602,'notes','516','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15603,'notes','517','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15604,'notes','518','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15605,'notes','519','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15606,'notes','520','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15607,'notes','521','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15608,'notes','522','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15609,'notes','523','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15610,'notes','524','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15611,'notes','525','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15612,'notes','526','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15613,'notes','527','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15614,'notes','528','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15615,'notes','529','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15616,'notes','530','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15617,'notes','531','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15618,'notes','532','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15619,'notes','533','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15620,'notes','534','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15621,'notes','535','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15622,'notes','536','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15623,'notes','537','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15624,'notes','538','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15625,'notes','539','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15626,'notes','540','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15627,'notes','542','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15628,'notes','543','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15629,'notes','544','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15630,'notes','545','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15631,'notes','546','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15632,'notes','547','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15633,'notes','548','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15634,'notes','549','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15635,'notes','550','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15636,'notes','551','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15637,'notes','552','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15638,'notes','553','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15639,'notes','554','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15640,'notes','555','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15641,'notes','556','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15642,'notes','557','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15643,'notes','558','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15644,'notes','559','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15645,'notes','560','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15646,'notes','561','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15647,'notes','562','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15648,'notes','563','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15649,'notes','564','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15650,'notes','565','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15651,'notes','566','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15652,'notes','567','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15653,'notes','568','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15654,'notes','570','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15655,'notes','571','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15656,'notes','572','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15657,'notes','573','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15658,'notes','574','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15659,'notes','575','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15660,'notes','576','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15661,'notes','577','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15662,'notes','578','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15663,'notes','579','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15664,'notes','580','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15665,'notes','581','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15666,'notes','582','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15667,'notes','583','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15668,'notes','584','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15669,'notes','585','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15670,'notes','586','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15671,'notes','587','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15672,'notes','588','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15673,'notes','589','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15674,'notes','590','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15675,'notes','591','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15676,'notes','592','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15677,'notes','593','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15678,'notes','594','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15679,'notes','595','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15680,'notes','596','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15681,'notes','597','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15682,'notes','599','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15683,'notes','600','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15684,'notes','601','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15685,'notes','602','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15686,'notes','603','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15687,'notes','604','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15688,'notes','605','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15689,'notes','606','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15690,'notes','607','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15691,'notes','608','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15692,'notes','609','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15693,'notes','610','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15694,'notes','611','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15695,'notes','612','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15696,'notes','614','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15697,'notes','615','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15698,'notes','616','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15699,'notes','617','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15700,'notes','618','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15701,'notes','619','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15702,'notes','620','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15703,'notes','621','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15704,'notes','622','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15705,'notes','623','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15706,'notes','624','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15707,'notes','625','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15708,'notes','626','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15709,'notes','627','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15710,'notes','628','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15711,'notes','629','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15712,'notes','630','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15713,'notes','631','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15714,'notes','632','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15715,'notes','633','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15716,'notes','634','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15717,'notes','635','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15718,'notes','636','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15719,'notes','637','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15720,'notes','638','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15721,'notes','639','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15722,'notes','641','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15723,'notes','643','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15724,'notes','644','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15725,'notes','645','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15726,'notes','646','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15727,'notes','647','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15728,'notes','648','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15729,'notes','650','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15730,'notes','651','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15731,'notes','652','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15732,'notes','653','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15733,'notes','654','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15734,'notes','656','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15735,'notes','657','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15736,'notes','658','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15737,'notes','659','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15738,'notes','660','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15739,'notes','661','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15740,'notes','662','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15741,'notes','663','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15742,'notes','664','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15743,'notes','665','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15744,'notes','666','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15745,'notes','667','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15746,'notes','668','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15747,'notes','669','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15748,'notes','670','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15749,'notes','673','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15750,'notes','674','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15751,'notes','675','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15752,'notes','676','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15753,'notes','677','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15754,'notes','678','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15755,'notes','679','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15756,'notes','680','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15757,'notes','681','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15758,'notes','682','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15759,'notes','684','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15760,'notes','685','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15761,'notes','686','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15762,'notes','688','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15763,'notes','689','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15764,'notes','690','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15765,'notes','691','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15766,'notes','692','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15767,'notes','693','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15768,'notes','694','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15769,'notes','695','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15770,'notes','696','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15771,'notes','698','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15772,'notes','699','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15773,'notes','700','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15774,'notes','701','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15775,'notes','702','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15776,'notes','703','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15777,'notes','704','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15778,'notes','705','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15779,'notes','706','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15780,'notes','707','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15781,'notes','708','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15782,'notes','709','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15783,'notes','710','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15784,'notes','711','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15785,'notes','712','error','Deal not found: 147',NULL,'2025-11-14 00:17:00'),
(15786,'notes','713','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15787,'notes','714','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15788,'notes','715','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15789,'notes','716','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15790,'notes','717','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15791,'notes','718','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15792,'notes','719','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15793,'notes','720','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15794,'notes','721','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15795,'notes','722','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15796,'notes','723','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15797,'notes','724','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15798,'notes','725','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15799,'notes','726','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15800,'notes','727','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15801,'notes','728','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15802,'notes','730','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15803,'notes','731','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15804,'notes','732','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15805,'notes','733','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15806,'notes','734','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15807,'notes','735','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15808,'notes','736','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15809,'notes','738','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15810,'notes','739','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15811,'notes','740','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15812,'notes','741','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15813,'notes','742','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15814,'notes','743','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15815,'notes','744','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15816,'notes','745','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15817,'notes','746','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15818,'notes','747','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15819,'notes','748','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15820,'notes','749','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15821,'notes','750','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15822,'notes','751','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15823,'notes','752','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15824,'notes','753','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15825,'notes','754','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15826,'notes','755','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15827,'notes','756','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15828,'notes','757','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15829,'notes','758','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15830,'notes','759','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15831,'notes','760','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15832,'notes','761','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15833,'notes','762','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15834,'notes','763','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15835,'notes','764','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15836,'notes','765','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15837,'notes','766','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15838,'notes','767','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15839,'notes','768','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15840,'notes','769','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15841,'notes','770','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15842,'notes','771','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15843,'notes','772','error','Deal not found: 717',NULL,'2025-11-14 00:17:00'),
(15844,'notes','773','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15845,'notes','774','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15846,'notes','775','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15847,'notes','776','error','Deal not found: 717',NULL,'2025-11-14 00:17:00'),
(15848,'notes','777','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15849,'notes','778','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15850,'notes','779','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15851,'notes','780','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15852,'notes','781','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15853,'notes','782','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15854,'notes','783','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15855,'notes','784','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15856,'notes','785','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15857,'notes','786','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15858,'notes','787','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15859,'notes','788','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15860,'notes','789','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15861,'notes','790','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15862,'notes','791','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15863,'notes','792','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15864,'notes','793','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15865,'notes','794','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15866,'notes','795','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15867,'notes','796','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15868,'notes','797','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15869,'notes','798','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15870,'notes','799','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15871,'notes','800','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15872,'notes','801','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15873,'notes','802','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15874,'notes','803','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15875,'notes','804','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15876,'notes','805','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15877,'notes','806','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15878,'notes','807','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15879,'notes','808','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15880,'notes','809','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15881,'notes','810','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15882,'notes','811','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15883,'notes','812','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15884,'notes','813','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15885,'notes','815','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15886,'notes','816','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15887,'notes','817','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15888,'notes','818','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15889,'notes','819','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15890,'notes','820','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15891,'notes','821','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15892,'notes','822','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15893,'notes','823','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15894,'notes','824','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15895,'notes','825','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15896,'notes','826','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15897,'notes','827','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15898,'notes','829','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15899,'notes','830','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15900,'notes','831','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15901,'notes','832','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15902,'notes','833','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15903,'notes','834','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15904,'notes','835','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15905,'notes','836','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15906,'notes','839','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15907,'notes','840','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15908,'notes','841','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15909,'notes','842','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15910,'notes','843','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15911,'notes','844','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15912,'notes','845','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15913,'notes','846','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15914,'notes','847','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15915,'notes','848','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15916,'notes','849','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15917,'notes','850','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15918,'notes','852','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15919,'notes','853','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15920,'notes','854','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15921,'notes','855','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15922,'notes','856','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15923,'notes','857','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15924,'notes','858','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15925,'notes','859','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15926,'notes','860','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15927,'notes','861','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15928,'notes','862','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15929,'notes','863','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15930,'notes','864','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15931,'notes','865','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15932,'notes','866','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15933,'notes','867','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15934,'notes','868','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15935,'notes','869','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15936,'notes','870','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15937,'notes','871','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15938,'notes','872','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15939,'notes','874','error','Deal not found: 717',NULL,'2025-11-14 00:17:00'),
(15940,'notes','875','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15941,'notes','876','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15942,'notes','877','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15943,'notes','878','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15944,'notes','879','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15945,'notes','880','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15946,'notes','881','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15947,'notes','882','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15948,'notes','883','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15949,'notes','884','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15950,'notes','885','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15951,'notes','886','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15952,'notes','887','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15953,'notes','888','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15954,'notes','889','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15955,'notes','890','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15956,'notes','892','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15957,'notes','893','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15958,'notes','894','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15959,'notes','895','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15960,'notes','896','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15961,'notes','897','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15962,'notes','898','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15963,'notes','899','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15964,'notes','900','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15965,'notes','901','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15966,'notes','902','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15967,'notes','903','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15968,'notes','904','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15969,'notes','905','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15970,'notes','906','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15971,'notes','907','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15972,'notes','908','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15973,'notes','909','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15974,'notes','910','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15975,'notes','911','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15976,'notes','912','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15977,'notes','913','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15978,'notes','914','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15979,'notes','915','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15980,'notes','916','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15981,'notes','917','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15982,'notes','918','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15983,'notes','919','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15984,'notes','920','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15985,'notes','921','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15986,'notes','923','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15987,'notes','924','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15988,'notes','925','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15989,'notes','926','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15990,'notes','927','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15991,'notes','928','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15992,'notes','929','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15993,'notes','930','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15994,'notes','931','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15995,'notes','932','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15996,'notes','933','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(15997,'notes','934','error','Deal not found: 517',NULL,'2025-11-14 00:17:00'),
(15998,'notes','935','error','Deal not found: 508',NULL,'2025-11-14 00:17:00'),
(15999,'notes','936','error','Deal not found: 508',NULL,'2025-11-14 00:17:00'),
(16000,'notes','937','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16001,'notes','938','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16002,'notes','939','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16003,'notes','940','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16004,'notes','941','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16005,'notes','942','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16006,'notes','943','error','Deal not found: 508',NULL,'2025-11-14 00:17:00'),
(16007,'notes','944','error','Deal not found: 508',NULL,'2025-11-14 00:17:00'),
(16008,'notes','945','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16009,'notes','946','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16010,'notes','947','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16011,'notes','948','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16012,'notes','949','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16013,'notes','950','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16014,'notes','951','error','Deal not found: 508',NULL,'2025-11-14 00:17:00'),
(16015,'notes','952','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16016,'notes','953','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16017,'notes','954','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16018,'notes','955','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16019,'notes','956','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16020,'notes','957','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16021,'notes','958','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16022,'notes','959','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16023,'notes','960','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16024,'notes','961','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16025,'notes','962','error','Deal not found: 196',NULL,'2025-11-14 00:17:00'),
(16026,'notes','963','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16027,'notes','964','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16028,'notes','965','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16029,'notes','966','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16030,'notes','967','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16031,'notes','968','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16032,'notes','969','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16033,'notes','970','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16034,'notes','971','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16035,'notes','972','error','Deal not found: 203',NULL,'2025-11-14 00:17:00'),
(16036,'notes','973','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16037,'notes','974','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16038,'notes','975','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16039,'notes','976','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16040,'notes','977','error','Deal not found: 212',NULL,'2025-11-14 00:17:00'),
(16041,'notes','978','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16042,'notes','979','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16043,'notes','980','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16044,'notes','981','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16045,'notes','982','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16046,'notes','983','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16047,'notes','984','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16048,'notes','985','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16049,'notes','986','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16050,'notes','988','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16051,'notes','989','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16052,'notes','990','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16053,'notes','991','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16054,'notes','992','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16055,'notes','993','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16056,'notes','994','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16057,'notes','995','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16058,'notes','996','error','Deal not found: 251',NULL,'2025-11-14 00:17:00'),
(16059,'notes','997','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16060,'notes','998','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16061,'notes','999','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16062,'notes','1000','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16063,'notes','1001','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16064,'notes','1002','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16065,'notes','1003','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16066,'notes','1004','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16067,'notes','1005','error','Deal not found: 256',NULL,'2025-11-14 00:17:00'),
(16068,'notes','1006','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16069,'notes','1007','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16070,'notes','1008','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16071,'notes','1009','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16072,'notes','1010','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16073,'notes','1011','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16074,'notes','1012','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16075,'notes','1013','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16076,'notes','1014','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16077,'notes','1015','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16078,'notes','1016','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16079,'notes','1017','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16080,'notes','1018','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16081,'notes','1019','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16082,'notes','1020','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16083,'notes','1021','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16084,'notes','1022','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16085,'notes','1023','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16086,'notes','1024','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16087,'notes','1025','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16088,'notes','1026','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16089,'notes','1027','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16090,'notes','1028','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16091,'notes','1029','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16092,'notes','1030','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16093,'notes','1031','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16094,'notes','1032','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16095,'notes','1033','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16096,'notes','1034','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16097,'notes','1035','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16098,'notes','1036','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16099,'notes','1037','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16100,'notes','1038','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16101,'notes','1039','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16102,'notes','1040','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16103,'notes','1041','error','Deal not found: 313',NULL,'2025-11-14 00:17:00'),
(16104,'notes','1042','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16105,'notes','1043','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16106,'notes','1044','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16107,'notes','1045','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16108,'notes','1046','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16109,'notes','1047','error','Deal not found: 338',NULL,'2025-11-14 00:17:00'),
(16110,'notes','1048','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16111,'notes','1049','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16112,'notes','1050','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16113,'notes','1051','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16114,'notes','1052','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16115,'notes','1053','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16116,'notes','1054','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16117,'notes','1055','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16118,'notes','1056','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16119,'notes','1057','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16120,'notes','1059','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16121,'notes','1060','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16122,'notes','1061','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16123,'notes','1062','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16124,'notes','1063','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16125,'notes','1064','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16126,'notes','1065','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16127,'notes','1066','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16128,'notes','1067','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16129,'notes','1068','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16130,'notes','1069','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16131,'notes','1070','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16132,'notes','1071','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16133,'notes','1072','error','Deal not found: 418',NULL,'2025-11-14 00:17:00'),
(16134,'notes','1073','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16135,'notes','1074','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16136,'notes','1075','error','Deal not found: 448',NULL,'2025-11-14 00:17:00'),
(16137,'notes','1076','error','Deal not found: 193',NULL,'2025-11-14 00:17:00'),
(16138,'notes','1077','error','Deal not found: 542',NULL,'2025-11-14 00:17:00'),
(16139,'notes','1078','error','Deal not found: 542',NULL,'2025-11-14 00:17:00'),
(16140,'notes','1079','error','Deal not found: 540',NULL,'2025-11-14 00:17:00'),
(16141,'notes','1080','error','Deal not found: 542',NULL,'2025-11-14 00:17:00'),
(16142,'notes','1081','error','Deal not found: 542',NULL,'2025-11-14 00:17:00'),
(16143,'notes','1082','error','Deal not found: 291',NULL,'2025-11-14 00:17:00'),
(16144,'notes','1083','error','Deal not found: 540',NULL,'2025-11-14 00:17:00'),
(16145,'notes','1084','error','Deal not found: 381',NULL,'2025-11-14 00:17:00'),
(16146,'notes','1085','error','Deal not found: 430',NULL,'2025-11-14 00:17:00'),
(16147,'notes','1086','error','Deal not found: 497',NULL,'2025-11-14 00:17:00'),
(16148,'notes','1087','error','Deal not found: 476',NULL,'2025-11-14 00:17:00'),
(16149,'notes','1088','error','Deal not found: 546',NULL,'2025-11-14 00:17:00'),
(16150,'notes','1089','error','Deal not found: 257',NULL,'2025-11-14 00:17:00'),
(16151,'notes','1090','error','Deal not found: 443',NULL,'2025-11-14 00:17:00'),
(16152,'notes','1091','error','Deal not found: 268',NULL,'2025-11-14 00:17:00'),
(16153,'notes','1092','error','Deal not found: 430',NULL,'2025-11-14 00:17:00'),
(16154,'notes','1093','error','Deal not found: 407',NULL,'2025-11-14 00:17:00'),
(16155,'notes','1094','error','Deal not found: 505',NULL,'2025-11-14 00:17:00'),
(16156,'notes','1095','error','Deal not found: 315',NULL,'2025-11-14 00:17:00'),
(16157,'notes','1096','error','Deal not found: 532',NULL,'2025-11-14 00:17:00'),
(16158,'notes','1097','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16159,'notes','1098','error','Deal not found: 234',NULL,'2025-11-14 00:17:00'),
(16160,'notes','1099','error','Deal not found: 249',NULL,'2025-11-14 00:17:00'),
(16161,'notes','1100','error','Deal not found: 431',NULL,'2025-11-14 00:17:00'),
(16162,'notes','1101','error','Deal not found: 520',NULL,'2025-11-14 00:17:00'),
(16163,'notes','1102','error','Deal not found: 543',NULL,'2025-11-14 00:17:00'),
(16164,'notes','1103','error','Deal not found: 462',NULL,'2025-11-14 00:17:00'),
(16165,'notes','1104','error','Deal not found: 200',NULL,'2025-11-14 00:17:00'),
(16166,'notes','1105','error','Deal not found: 519',NULL,'2025-11-14 00:17:00'),
(16167,'notes','1106','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16168,'notes','1107','error','Deal not found: 197',NULL,'2025-11-14 00:17:00'),
(16169,'notes','1108','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16170,'notes','1109','error','Deal not found: 509',NULL,'2025-11-14 00:17:00'),
(16171,'notes','1110','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16172,'notes','1111','error','Deal not found: 315',NULL,'2025-11-14 00:17:00'),
(16173,'notes','1112','error','Deal not found: 531',NULL,'2025-11-14 00:17:00'),
(16174,'notes','1113','error','Deal not found: 490',NULL,'2025-11-14 00:17:00'),
(16175,'notes','1114','error','Deal not found: 310',NULL,'2025-11-14 00:17:00'),
(16176,'notes','1115','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16177,'notes','1116','error','Deal not found: 481',NULL,'2025-11-14 00:17:00'),
(16178,'notes','1117','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16179,'notes','1118','error','Deal not found: 249',NULL,'2025-11-14 00:17:00'),
(16180,'notes','1119','error','Deal not found: 525',NULL,'2025-11-14 00:17:00'),
(16181,'notes','1120','error','Deal not found: 568',NULL,'2025-11-14 00:17:00'),
(16182,'notes','1121','error','Deal not found: 426',NULL,'2025-11-14 00:17:00'),
(16183,'notes','1122','error','Deal not found: 305',NULL,'2025-11-14 00:17:00'),
(16184,'notes','1123','error','Deal not found: 530',NULL,'2025-11-14 00:17:00'),
(16185,'notes','1124','error','Deal not found: 483',NULL,'2025-11-14 00:17:00'),
(16186,'notes','1125','error','Deal not found: 431',NULL,'2025-11-14 00:17:00'),
(16187,'notes','1126','error','Deal not found: 465',NULL,'2025-11-14 00:17:00'),
(16188,'notes','1127','error','Deal not found: 431',NULL,'2025-11-14 00:17:00'),
(16189,'notes','1128','error','Deal not found: 518',NULL,'2025-11-14 00:17:00'),
(16190,'notes','1129','error','Deal not found: 477',NULL,'2025-11-14 00:17:00'),
(16191,'notes','1130','error','Deal not found: 528',NULL,'2025-11-14 00:17:00'),
(16192,'notes','1131','error','Deal not found: 477',NULL,'2025-11-14 00:17:00'),
(16193,'notes','1132','error','Deal not found: 431',NULL,'2025-11-14 00:17:00'),
(16194,'notes','1133','error','Deal not found: 463',NULL,'2025-11-14 00:17:00'),
(16195,'notes','1134','error','Deal not found: 533',NULL,'2025-11-14 00:17:00'),
(16196,'notes','1135','error','Deal not found: 372',NULL,'2025-11-14 00:17:00'),
(16197,'notes','1136','error','Deal not found: 533',NULL,'2025-11-14 00:17:00'),
(16198,'notes','1137','error','Deal not found: 372',NULL,'2025-11-14 00:17:00'),
(16199,'notes','1138','error','Deal not found: 457',NULL,'2025-11-14 00:17:00'),
(16200,'notes','1139','error','Deal not found: 460',NULL,'2025-11-14 00:17:00'),
(16201,'notes','1140','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16202,'notes','1141','error','Deal not found: 193',NULL,'2025-11-14 00:17:00'),
(16203,'notes','1142','error','Deal not found: 515',NULL,'2025-11-14 00:17:00'),
(16204,'notes','1143','error','Deal not found: 193',NULL,'2025-11-14 00:17:00'),
(16205,'notes','1144','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16206,'notes','1145','error','Deal not found: 492',NULL,'2025-11-14 00:17:00'),
(16207,'notes','1146','error','Deal not found: 526',NULL,'2025-11-14 00:17:00'),
(16208,'notes','1147','error','Deal not found: 539',NULL,'2025-11-14 00:17:00'),
(16209,'notes','1148','error','Deal not found: 257',NULL,'2025-11-14 00:17:00'),
(16210,'notes','1149','error','Deal not found: 463',NULL,'2025-11-14 00:17:00'),
(16211,'notes','1150','error','Deal not found: 447',NULL,'2025-11-14 00:17:00'),
(16212,'notes','1151','error','Deal not found: 489',NULL,'2025-11-14 00:17:00'),
(16213,'notes','1152','error','Deal not found: 463',NULL,'2025-11-14 00:17:00'),
(16214,'notes','1153','error','Deal not found: 397',NULL,'2025-11-14 00:17:00'),
(16215,'notes','1154','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16216,'notes','1155','error','Deal not found: 430',NULL,'2025-11-14 00:17:00'),
(16217,'notes','1156','error','Deal not found: 462',NULL,'2025-11-14 00:17:00'),
(16218,'notes','1157','error','Deal not found: 542',NULL,'2025-11-14 00:17:00'),
(16219,'notes','1158','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16220,'notes','1159','error','Deal not found: 509',NULL,'2025-11-14 00:17:00'),
(16221,'notes','1160','error','Deal not found: 296',NULL,'2025-11-14 00:17:00'),
(16222,'notes','1161','error','Deal not found: 460',NULL,'2025-11-14 00:17:00'),
(16223,'notes','1162','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16224,'notes','1164','error','Deal not found: 472',NULL,'2025-11-14 00:17:00'),
(16225,'notes','1165','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16226,'notes','1166','error','Deal not found: 469',NULL,'2025-11-14 00:17:00'),
(16227,'notes','1167','error','Deal not found: 472',NULL,'2025-11-14 00:17:00'),
(16228,'notes','1168','error','Deal not found: 213',NULL,'2025-11-14 00:17:00'),
(16229,'notes','1169','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16230,'notes','1170','error','Deal not found: 472',NULL,'2025-11-14 00:17:00'),
(16231,'notes','1171','error','Deal not found: 427',NULL,'2025-11-14 00:17:00'),
(16232,'notes','1172','error','Deal not found: 200',NULL,'2025-11-14 00:17:00'),
(16233,'notes','1173','error','Deal not found: 604',NULL,'2025-11-14 00:17:00'),
(16234,'notes','1174','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16235,'notes','1175','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16236,'notes','1176','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16237,'notes','1177','error','Deal not found: 584',NULL,'2025-11-14 00:17:00'),
(16238,'notes','1179','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16239,'notes','1180','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16240,'notes','1181','error','Deal not found: 536',NULL,'2025-11-14 00:17:00'),
(16241,'notes','1182','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16242,'notes','1183','error','Deal not found: 385',NULL,'2025-11-14 00:17:00'),
(16243,'notes','1184','error','Deal not found: 427',NULL,'2025-11-14 00:17:00'),
(16244,'notes','1185','error','Deal not found: 427',NULL,'2025-11-14 00:17:00'),
(16245,'notes','1186','error','Deal not found: 427',NULL,'2025-11-14 00:17:00'),
(16246,'notes','1187','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16247,'notes','1188','error','Deal not found: 427',NULL,'2025-11-14 00:17:00'),
(16248,'notes','1189','error','Deal not found: 380',NULL,'2025-11-14 00:17:00'),
(16249,'notes','1190','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16250,'notes','1191','error','Deal not found: 627',NULL,'2025-11-14 00:17:00'),
(16251,'notes','1192','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16252,'notes','1193','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16253,'notes','1194','error','Deal not found: 442',NULL,'2025-11-14 00:17:00'),
(16254,'notes','1195','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16255,'notes','1196','error','Deal not found: 532',NULL,'2025-11-14 00:17:00'),
(16256,'notes','1197','error','Deal not found: 287',NULL,'2025-11-14 00:17:00'),
(16257,'notes','1198','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16258,'notes','1199','error','Deal not found: 542',NULL,'2025-11-14 00:17:00'),
(16259,'notes','1200','error','Deal not found: 497',NULL,'2025-11-14 00:17:00'),
(16260,'notes','1201','error','Deal not found: 287',NULL,'2025-11-14 00:17:00'),
(16261,'notes','1202','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16262,'notes','1203','error','Deal not found: 497',NULL,'2025-11-14 00:17:00'),
(16263,'notes','1204','error','Deal not found: 636',NULL,'2025-11-14 00:17:00'),
(16264,'notes','1205','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16265,'notes','1206','error','Deal not found: 469',NULL,'2025-11-14 00:17:00'),
(16266,'notes','1207','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16267,'notes','1208','error','Deal not found: 249',NULL,'2025-11-14 00:17:00'),
(16268,'notes','1209','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16269,'notes','1210','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16270,'notes','1211','error','Deal not found: 526',NULL,'2025-11-14 00:17:00'),
(16271,'notes','1212','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16272,'notes','1213','error','Deal not found: 498',NULL,'2025-11-14 00:17:00'),
(16273,'notes','1214','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16274,'notes','1215','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16275,'notes','1216','error','Deal not found: 601',NULL,'2025-11-14 00:17:00'),
(16276,'notes','1217','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16277,'notes','1218','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16278,'notes','1219','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16279,'notes','1220','error','Deal not found: 257',NULL,'2025-11-14 00:17:00'),
(16280,'notes','1221','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16281,'notes','1222','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16282,'notes','1223','error','Deal not found: 655',NULL,'2025-11-14 00:17:00'),
(16283,'notes','1224','error','Deal not found: 323',NULL,'2025-11-14 00:17:00'),
(16284,'notes','1225','error','Deal not found: 301',NULL,'2025-11-14 00:17:00'),
(16285,'notes','1226','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16286,'notes','1227','error','Deal not found: 487',NULL,'2025-11-14 00:17:00'),
(16287,'notes','1228','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16288,'notes','1229','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16289,'notes','1230','error','Deal not found: 315',NULL,'2025-11-14 00:17:00'),
(16290,'notes','1231','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16291,'notes','1232','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16292,'notes','1233','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16293,'notes','1234','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16294,'notes','1235','error','Deal not found: 223',NULL,'2025-11-14 00:17:00'),
(16295,'notes','1236','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16296,'notes','1237','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16297,'notes','1238','error','Deal not found: 315',NULL,'2025-11-14 00:17:00'),
(16298,'notes','1239','error','Deal not found: 479',NULL,'2025-11-14 00:17:00'),
(16299,'notes','1240','error','Deal not found: 684',NULL,'2025-11-14 00:17:00'),
(16300,'notes','1242','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16301,'notes','1243','error','Deal not found: 542',NULL,'2025-11-14 00:17:00'),
(16302,'notes','1244','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16303,'notes','1245','error','Deal not found: 147',NULL,'2025-11-14 00:17:00'),
(16304,'notes','1246','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16305,'notes','1247','error','Deal not found: 249',NULL,'2025-11-14 00:17:00'),
(16306,'notes','1248','error','Deal not found: 147',NULL,'2025-11-14 00:17:00'),
(16307,'notes','1249','error','Deal not found: 313',NULL,'2025-11-14 00:17:00'),
(16308,'notes','1250','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16309,'notes','1251','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16310,'notes','1252','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16311,'notes','1253','error','Deal not found: 287',NULL,'2025-11-14 00:17:00'),
(16312,'notes','1254','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16313,'notes','1255','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16314,'notes','1256','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16315,'notes','1257','error','Deal not found: 636',NULL,'2025-11-14 00:17:00'),
(16316,'notes','1258','error','Deal not found: 636',NULL,'2025-11-14 00:17:00'),
(16317,'notes','1259','error','Deal not found: 636',NULL,'2025-11-14 00:17:00'),
(16318,'notes','1260','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16319,'notes','1261','error','Deal not found: 150',NULL,'2025-11-14 00:17:00'),
(16320,'notes','1262','error','Deal not found: 150',NULL,'2025-11-14 00:17:00'),
(16321,'notes','1263','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16322,'notes','1264','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16323,'notes','1265','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16324,'notes','1266','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16325,'notes','1267','error','Deal not found: 540',NULL,'2025-11-14 00:17:00'),
(16326,'notes','1268','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16327,'notes','1269','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16328,'notes','1270','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16329,'notes','1271','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16330,'notes','1272','error','Deal not found: 249',NULL,'2025-11-14 00:17:00'),
(16331,'notes','1273','error','Deal not found: 385',NULL,'2025-11-14 00:17:00'),
(16332,'notes','1274','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16333,'notes','1275','error','Deal not found: 492',NULL,'2025-11-14 00:17:00'),
(16334,'notes','1276','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16335,'notes','1277','error','Deal not found: 627',NULL,'2025-11-14 00:17:00'),
(16336,'notes','1278','error','Deal not found: 385',NULL,'2025-11-14 00:17:00'),
(16337,'notes','1279','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16338,'notes','1280','error','Deal not found: 385',NULL,'2025-11-14 00:17:00'),
(16339,'notes','1281','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16340,'notes','1282','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16341,'notes','1283','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16342,'notes','1284','error','Deal not found: 700',NULL,'2025-11-14 00:17:00'),
(16343,'notes','1285','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16344,'notes','1286','error','Deal not found: 636',NULL,'2025-11-14 00:17:00'),
(16345,'notes','1287','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16346,'notes','1288','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16347,'notes','1289','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16348,'notes','1290','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16349,'notes','1291','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16350,'notes','1292','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16351,'notes','1293','error','Deal not found: 204',NULL,'2025-11-14 00:17:00'),
(16352,'notes','1294','error','Deal not found: 427',NULL,'2025-11-14 00:17:00'),
(16353,'notes','1295','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16354,'notes','1296','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16355,'notes','1297','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16356,'notes','1298','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16357,'notes','1299','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16358,'notes','1300','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16359,'notes','1301','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16360,'notes','1302','error','Deal not found: 443',NULL,'2025-11-14 00:17:00'),
(16361,'notes','1303','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16362,'notes','1304','error','Deal not found: 403',NULL,'2025-11-14 00:17:00'),
(16363,'notes','1305','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16364,'notes','1306','error','Deal not found: 542',NULL,'2025-11-14 00:17:00'),
(16365,'notes','1307','error','Deal not found: 730',NULL,'2025-11-14 00:17:00'),
(16366,'notes','1308','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16367,'notes','1309','error','Deal not found: 442',NULL,'2025-11-14 00:17:00'),
(16368,'notes','1310','error','Deal not found: 204',NULL,'2025-11-14 00:17:00'),
(16369,'notes','1311','error','Deal not found: 403',NULL,'2025-11-14 00:17:00'),
(16370,'notes','1312','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16371,'notes','1313','error','Deal not found: 442',NULL,'2025-11-14 00:17:00'),
(16372,'notes','1314','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16373,'notes','1315','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16374,'notes','1316','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16375,'notes','1317','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16376,'notes','1318','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16377,'notes','1319','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16378,'notes','1320','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16379,'notes','1321','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16380,'notes','1322','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16381,'notes','1323','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16382,'notes','1324','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16383,'notes','1325','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16384,'notes','1326','error','Deal not found: 403',NULL,'2025-11-14 00:17:00'),
(16385,'notes','1327','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16386,'notes','1328','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16387,'notes','1329','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16388,'notes','1330','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16389,'notes','1331','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16390,'notes','1332','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16391,'notes','1333','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16392,'notes','1334','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16393,'notes','1335','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16394,'notes','1336','error','Deal not found: 403',NULL,'2025-11-14 00:17:00'),
(16395,'notes','1338','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16396,'notes','1339','error','Deal not found: 627',NULL,'2025-11-14 00:17:00'),
(16397,'notes','1341','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16398,'notes','1342','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16399,'notes','1343','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16400,'notes','1344','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16401,'notes','1345','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16402,'notes','1346','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16403,'notes','1347','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16404,'notes','1348','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16405,'notes','1349','error','Deal not found: 542',NULL,'2025-11-14 00:17:00'),
(16406,'notes','1350','error','Deal not found: 508',NULL,'2025-11-14 00:17:00'),
(16407,'notes','1351','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16408,'notes','1352','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16409,'notes','1353','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16410,'notes','1354','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16411,'notes','1355','error','Deal not found: 733',NULL,'2025-11-14 00:17:00'),
(16412,'notes','1356','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16413,'notes','1357','error','Deal not found: 708',NULL,'2025-11-14 00:17:00'),
(16414,'notes','1358','error','Deal not found: 730',NULL,'2025-11-14 00:17:00'),
(16415,'notes','1359','error','Deal not found: 730',NULL,'2025-11-14 00:17:00'),
(16416,'notes','1361','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16417,'notes','1362','error','Deal not found: 684',NULL,'2025-11-14 00:17:00'),
(16418,'notes','1363','error','Deal not found: 443',NULL,'2025-11-14 00:17:00'),
(16419,'notes','1364','error','Deal not found: 147',NULL,'2025-11-14 00:17:00'),
(16420,'notes','1365','error','Deal not found: 315',NULL,'2025-11-14 00:17:00'),
(16421,'notes','1366','error','Deal not found: 727',NULL,'2025-11-14 00:17:00'),
(16422,'notes','1367','error','Deal not found: 256',NULL,'2025-11-14 00:17:00'),
(16423,'notes','1368','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16424,'notes','1369','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16425,'notes','1370','error','Deal not found: 251',NULL,'2025-11-14 00:17:00'),
(16426,'notes','1371','error','Deal not found: 847',NULL,'2025-11-14 00:17:00'),
(16427,'notes','1372','error','Deal not found: 362',NULL,'2025-11-14 00:17:00'),
(16428,'notes','1373','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16429,'notes','1374','error','Deal not found: 192',NULL,'2025-11-14 00:17:00'),
(16430,'notes','1375','error','Deal not found: 212',NULL,'2025-11-14 00:17:00'),
(16431,'notes','1376','error','Deal not found: 61',NULL,'2025-11-14 00:17:00'),
(16432,'notes','1377','error','Deal not found: 61',NULL,'2025-11-14 00:17:00'),
(16433,'notes','1378','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16434,'notes','1379','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16435,'notes','1380','error','Deal not found: 943',NULL,'2025-11-14 00:17:00'),
(16436,'notes','1381','error','Deal not found: 517',NULL,'2025-11-14 00:17:00'),
(16437,'notes','1382','error','Deal not found: 986',NULL,'2025-11-14 00:17:00'),
(16438,'notes','1383','error','Deal not found: 986',NULL,'2025-11-14 00:17:00'),
(16439,'notes','1384','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16440,'notes','1385','error','Deal not found: 1013',NULL,'2025-11-14 00:17:00'),
(16441,'notes','1386','error','Deal not found: 990',NULL,'2025-11-14 00:17:00'),
(16442,'notes','1387','error','Deal not found: 990',NULL,'2025-11-14 00:17:00'),
(16443,'notes','1388','error','Deal not found: 998',NULL,'2025-11-14 00:17:00'),
(16444,'notes','1389','error','Deal not found: 994',NULL,'2025-11-14 00:17:00'),
(16445,'notes','1390','error','Deal not found: 1006',NULL,'2025-11-14 00:17:00'),
(16446,'notes','1391','error','Deal not found: 1009',NULL,'2025-11-14 00:17:00'),
(16447,'notes','1392','error','Deal not found: 867',NULL,'2025-11-14 00:17:00'),
(16448,'notes','1393','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16449,'notes','1394','error','Deal not found: 994',NULL,'2025-11-14 00:17:00'),
(16450,'notes','1395','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16451,'notes','1396','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16452,'notes','1397','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16453,'notes','1398','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16454,'notes','1399','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16455,'notes','1400','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16456,'notes','1401','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16457,'notes','1402','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16458,'notes','1403','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16459,'notes','1404','error','Deal not found: 61',NULL,'2025-11-14 00:17:00'),
(16460,'notes','1405','error','Deal not found: 442',NULL,'2025-11-14 00:17:00'),
(16461,'notes','1406','error','Deal not found: 249',NULL,'2025-11-14 00:17:00'),
(16462,'notes','1407','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16463,'notes','1408','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16464,'notes','1409','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16465,'notes','1410','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16466,'notes','1411','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16467,'notes','1412','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16468,'notes','1413','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16469,'notes','1414','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16470,'notes','1415','error','Deal not found: 1724',NULL,'2025-11-14 00:17:00'),
(16471,'notes','1416','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16472,'notes','1417','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16473,'notes','1418','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16474,'notes','1419','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16475,'notes','1420','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16476,'notes','1421','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16477,'notes','1422','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16478,'notes','1423','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16479,'notes','1424','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16480,'notes','1425','error','Deal not found: 1724',NULL,'2025-11-14 00:17:00'),
(16481,'notes','1426','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16482,'notes','1427','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16483,'notes','1428','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16484,'notes','1429','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16485,'notes','1430','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16486,'notes','1431','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16487,'notes','1432','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16488,'notes','1434','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16489,'notes','1435','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16490,'notes','1436','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16491,'notes','1437','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16492,'notes','1438','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16493,'notes','1439','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16494,'notes','1440','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16495,'notes','1441','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16496,'notes','1442','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16497,'notes','1443','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16498,'notes','1444','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16499,'notes','1445','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16500,'notes','1446','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16501,'notes','1447','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16502,'notes','1448','error','Deal not found: 1724',NULL,'2025-11-14 00:17:00'),
(16503,'notes','1449','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16504,'notes','1450','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16505,'notes','1451','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16506,'notes','1452','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16507,'notes','1453','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16508,'notes','1454','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16509,'notes','1455','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16510,'notes','1456','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16511,'notes','1457','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16512,'notes','1458','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16513,'notes','1459','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16514,'notes','1460','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16515,'notes','1461','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16516,'notes','1462','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16517,'notes','1463','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16518,'notes','1464','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16519,'notes','1465','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16520,'notes','1466','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16521,'notes','1467','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16522,'notes','1468','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16523,'notes','1469','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16524,'notes','1470','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16525,'notes','1471','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16526,'notes','1472','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16527,'notes','1473','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16528,'notes','1474','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16529,'notes','1475','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16530,'notes','1476','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16531,'notes','1477','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16532,'notes','1478','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16533,'notes','1479','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16534,'notes','1480','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16535,'notes','1481','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16536,'notes','1482','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16537,'notes','1483','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16538,'notes','1484','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16539,'notes','1485','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16540,'notes','1486','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16541,'notes','1487','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16542,'notes','1488','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16543,'notes','1489','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16544,'notes','1490','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16545,'notes','1491','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16546,'notes','1492','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16547,'notes','1493','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16548,'notes','1494','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16549,'notes','1495','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16550,'notes','1496','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16551,'notes','1497','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16552,'notes','1498','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16553,'notes','1499','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16554,'notes','1500','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16555,'notes','1501','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16556,'notes','1502','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16557,'notes','1504','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16558,'notes','1505','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16559,'notes','1506','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16560,'notes','1507','error','Deal not found: 1358',NULL,'2025-11-14 00:17:00'),
(16561,'notes','1508','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16562,'notes','1509','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16563,'notes','1510','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16564,'notes','1511','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16565,'notes','1512','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16566,'notes','1513','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16567,'notes','1514','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16568,'notes','1515','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16569,'notes','1516','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16570,'notes','1517','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16571,'notes','1518','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16572,'notes','1519','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16573,'notes','1520','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16574,'notes','1523','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16575,'notes','1524','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16576,'notes','1525','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16577,'notes','1526','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16578,'notes','1527','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16579,'notes','1528','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16580,'notes','1529','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16581,'notes','1530','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16582,'notes','1531','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16583,'notes','1532','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16584,'notes','1533','error','Deal not found: 1442',NULL,'2025-11-14 00:17:00'),
(16585,'notes','1534','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16586,'notes','1535','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16587,'notes','1536','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16588,'notes','1537','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16589,'notes','1538','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16590,'notes','1539','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16591,'notes','1540','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16592,'notes','1541','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16593,'notes','1542','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16594,'notes','1543','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16595,'notes','1544','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16596,'notes','1545','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16597,'notes','1546','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16598,'notes','1547','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16599,'notes','1548','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16600,'notes','1549','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16601,'notes','1550','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16602,'notes','1551','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16603,'notes','1552','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16604,'notes','1553','error','Deal not found: 4',NULL,'2025-11-14 00:17:00'),
(16605,'notes','1554','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16606,'notes','1555','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16607,'notes','1556','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16608,'notes','1557','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16609,'notes','1558','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16610,'notes','1559','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16611,'notes','1560','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16612,'notes','1561','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16613,'notes','1562','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16614,'notes','1563','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16615,'notes','1564','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16616,'notes','1565','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16617,'notes','1566','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16618,'notes','1567','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16619,'notes','1568','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16620,'notes','1569','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16621,'notes','1570','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16622,'notes','1571','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16623,'notes','1572','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16624,'notes','1573','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16625,'notes','1574','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16626,'notes','1575','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16627,'notes','1576','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16628,'notes','1577','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16629,'notes','1578','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16630,'notes','1579','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16631,'notes','1580','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16632,'notes','1581','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16633,'notes','1582','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16634,'notes','1583','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16635,'notes','1584','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16636,'notes','1585','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16637,'notes','1586','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16638,'notes','1587','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16639,'notes','1588','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16640,'notes','1589','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16641,'notes','1590','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16642,'notes','1591','error','Deal not found: 1570',NULL,'2025-11-14 00:17:00'),
(16643,'notes','1592','error','Deal not found: 14',NULL,'2025-11-14 00:17:00'),
(16644,'notes','1593','error','Deal not found: 1557',NULL,'2025-11-14 00:17:00'),
(16645,'notes','1594','error','Deal not found: 1557',NULL,'2025-11-14 00:17:00'),
(16646,'notes','1595','error','Deal not found: 1551',NULL,'2025-11-14 00:17:00'),
(16647,'notes','1597','error','Deal not found: 1551',NULL,'2025-11-14 00:17:00'),
(16648,'notes','1598','error','Deal not found: 1551',NULL,'2025-11-14 00:17:00'),
(16649,'notes','1599','error','Deal not found: 1555',NULL,'2025-11-14 00:17:00'),
(16650,'notes','1600','error','Deal not found: 1555',NULL,'2025-11-14 00:17:00'),
(16651,'notes','1601','error','Deal not found: 1555',NULL,'2025-11-14 00:17:00'),
(16652,'notes','1602','error','Deal not found: 1555',NULL,'2025-11-14 00:17:00'),
(16653,'notes','1603','error','Deal not found: 1555',NULL,'2025-11-14 00:17:00'),
(16654,'notes','1604','error','Deal not found: 1555',NULL,'2025-11-14 00:17:00'),
(16655,'notes','1605','error','Deal not found: 1553',NULL,'2025-11-14 00:17:00'),
(16656,'notes','1606','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16657,'notes','1607','error','Deal not found: 58',NULL,'2025-11-14 00:17:00'),
(16658,'notes','1608','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16659,'notes','1609','error','Deal not found: 56',NULL,'2025-11-14 00:17:00'),
(16660,'notes','1610','error','Deal not found: 1559',NULL,'2025-11-14 00:17:00'),
(16661,'notes','1611','error','Deal not found: 1563',NULL,'2025-11-14 00:17:00'),
(16662,'notes','1612','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16663,'notes','1613','error','Deal not found: 1563',NULL,'2025-11-14 00:17:00'),
(16664,'notes','1614','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16665,'notes','1618','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16666,'notes','1619','error','Deal not found: 1563',NULL,'2025-11-14 00:17:00'),
(16667,'notes','1620','error','Deal not found: 1559',NULL,'2025-11-14 00:17:00'),
(16668,'notes','1621','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16669,'notes','1622','error','Deal not found: 1965',NULL,'2025-11-14 00:17:00'),
(16670,'notes','1623','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16671,'notes','1624','error','Deal not found: 1572',NULL,'2025-11-14 00:17:00'),
(16672,'notes','1625','error','Deal not found: 1576',NULL,'2025-11-14 00:17:00'),
(16673,'notes','1626','error','Deal not found: 1577',NULL,'2025-11-14 00:17:00'),
(16674,'notes','1627','error','Deal not found: 1578',NULL,'2025-11-14 00:17:00'),
(16675,'notes','1628','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16676,'notes','1629','error','Deal not found: 1965',NULL,'2025-11-14 00:17:00'),
(16677,'notes','1630','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16678,'notes','1631','error','Deal not found: 4',NULL,'2025-11-14 00:17:00'),
(16679,'notes','1632','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16680,'notes','1633','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16681,'notes','1634','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16682,'notes','1635','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16683,'notes','1636','error','Deal not found: 1566',NULL,'2025-11-14 00:17:00'),
(16684,'notes','1637','error','Deal not found: 1582',NULL,'2025-11-14 00:17:00'),
(16685,'notes','1638','error','Deal not found: 1584',NULL,'2025-11-14 00:17:00'),
(16686,'notes','1639','error','Deal not found: 1582',NULL,'2025-11-14 00:17:00'),
(16687,'notes','1640','error','Deal not found: 1566',NULL,'2025-11-14 00:17:00'),
(16688,'notes','1641','error','Deal not found: 1582',NULL,'2025-11-14 00:17:00'),
(16689,'notes','1642','error','Deal not found: 1580',NULL,'2025-11-14 00:17:00'),
(16690,'notes','1643','error','Deal not found: 33',NULL,'2025-11-14 00:17:00'),
(16691,'notes','1644','error','Deal not found: 1582',NULL,'2025-11-14 00:17:00'),
(16692,'notes','1645','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16693,'notes','1646','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16694,'notes','1647','error','Deal not found: 1582',NULL,'2025-11-14 00:17:00'),
(16695,'notes','1648','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16696,'notes','1650','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16697,'notes','1651','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16698,'notes','1652','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16699,'notes','1653','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16700,'notes','1654','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16701,'notes','1655','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16702,'notes','1656','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16703,'notes','1657','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16704,'notes','1658','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16705,'notes','1659','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16706,'notes','1660','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16707,'notes','1661','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16708,'notes','1662','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16709,'notes','1663','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16710,'notes','1664','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16711,'notes','1665','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16712,'notes','1666','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16713,'notes','1667','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16714,'notes','1668','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16715,'notes','1669','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16716,'notes','1670','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16717,'notes','1671','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16718,'notes','1672','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16719,'notes','1673','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16720,'notes','1674','error','Deal not found: 1718',NULL,'2025-11-14 00:17:00'),
(16721,'notes','1675','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16722,'notes','1676','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16723,'notes','1677','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16724,'notes','1678','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16725,'notes','1679','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16726,'notes','1680','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16727,'notes','1681','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16728,'notes','1682','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16729,'notes','1683','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16730,'notes','1684','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16731,'notes','1685','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16732,'notes','1686','error','Deal not found: 1563',NULL,'2025-11-14 00:17:00'),
(16733,'notes','1687','error','Deal not found: 58',NULL,'2025-11-14 00:17:00'),
(16734,'notes','1688','error','Deal not found: 1563',NULL,'2025-11-14 00:17:00'),
(16735,'notes','1689','error','Deal not found: 1563',NULL,'2025-11-14 00:17:00'),
(16736,'notes','1690','error','Deal not found: 1582',NULL,'2025-11-14 00:17:00'),
(16737,'notes','1691','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16738,'notes','1692','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16739,'notes','1693','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16740,'notes','1694','error','Deal not found: 1595',NULL,'2025-11-14 00:17:00'),
(16741,'notes','1695','error','Deal not found: 1595',NULL,'2025-11-14 00:17:00'),
(16742,'notes','1696','error','Deal not found: 1595',NULL,'2025-11-14 00:17:00'),
(16743,'notes','1697','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16744,'notes','1698','error','Deal not found: 1596',NULL,'2025-11-14 00:17:00'),
(16745,'notes','1699','error','Deal not found: 1597',NULL,'2025-11-14 00:17:00'),
(16746,'notes','1700','error','Deal not found: 1594',NULL,'2025-11-14 00:17:00'),
(16747,'notes','1701','error','Deal not found: 1598',NULL,'2025-11-14 00:17:00'),
(16748,'notes','1702','error','Deal not found: 1600',NULL,'2025-11-14 00:17:00'),
(16749,'notes','1703','error','Deal not found: 1580',NULL,'2025-11-14 00:17:00'),
(16750,'notes','1704','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16751,'notes','1705','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16752,'notes','1706','error','Deal not found: 1597',NULL,'2025-11-14 00:17:00'),
(16753,'notes','1707','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16754,'notes','1708','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16755,'notes','1709','error','Deal not found: 1605',NULL,'2025-11-14 00:17:00'),
(16756,'notes','1710','error','Deal not found: 1577',NULL,'2025-11-14 00:17:00'),
(16757,'notes','1711','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16758,'notes','1712','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16759,'notes','1713','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16760,'notes','1714','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16761,'notes','1715','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16762,'notes','1716','error','Deal not found: 1604',NULL,'2025-11-14 00:17:00'),
(16763,'notes','1717','error','Deal not found: 1604',NULL,'2025-11-14 00:17:00'),
(16764,'notes','1718','error','Deal not found: 1597',NULL,'2025-11-14 00:17:00'),
(16765,'notes','1719','error','Deal not found: 1605',NULL,'2025-11-14 00:17:00'),
(16766,'notes','1720','error','Deal not found: 1597',NULL,'2025-11-14 00:17:00'),
(16767,'notes','1721','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16768,'notes','1722','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16769,'notes','1723','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16770,'notes','1724','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16771,'notes','1725','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16772,'notes','1726','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16773,'notes','1727','error','Deal not found: 1608',NULL,'2025-11-14 00:17:00'),
(16774,'notes','1728','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16775,'notes','1729','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16776,'notes','1730','error','Deal not found: 1608',NULL,'2025-11-14 00:17:00'),
(16777,'notes','1731','error','Deal not found: 1611',NULL,'2025-11-14 00:17:00'),
(16778,'notes','1732','error','Deal not found: 1611',NULL,'2025-11-14 00:17:00'),
(16779,'notes','1733','error','Deal not found: 1611',NULL,'2025-11-14 00:17:00'),
(16780,'notes','1734','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16781,'notes','1735','error','Deal not found: 1604',NULL,'2025-11-14 00:17:00'),
(16782,'notes','1736','error','Deal not found: 1584',NULL,'2025-11-14 00:17:00'),
(16783,'notes','1737','error','Deal not found: 1613',NULL,'2025-11-14 00:17:00'),
(16784,'notes','1738','error','Deal not found: 1582',NULL,'2025-11-14 00:17:00'),
(16785,'notes','1739','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16786,'notes','1740','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16787,'notes','1741','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16788,'notes','1742','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16789,'notes','1743','error','Deal not found: 1584',NULL,'2025-11-14 00:17:00'),
(16790,'notes','1744','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16791,'notes','1745','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16792,'notes','1746','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16793,'notes','1747','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16794,'notes','1748','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16795,'notes','1749','error','Deal not found: 1577',NULL,'2025-11-14 00:17:00'),
(16796,'notes','1750','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16797,'notes','1751','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16798,'notes','1752','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16799,'notes','1753','error','Deal not found: 1613',NULL,'2025-11-14 00:17:00'),
(16800,'notes','1754','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16801,'notes','1755','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16802,'notes','1756','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16803,'notes','1757','error','Deal not found: 1616',NULL,'2025-11-14 00:17:00'),
(16804,'notes','1758','error','Deal not found: 1616',NULL,'2025-11-14 00:17:00'),
(16805,'notes','1759','error','Deal not found: 1613',NULL,'2025-11-14 00:17:00'),
(16806,'notes','1760','error','Deal not found: 1613',NULL,'2025-11-14 00:17:00'),
(16807,'notes','1761','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16808,'notes','1762','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16809,'notes','1763','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16810,'notes','1764','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16811,'notes','1766','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16812,'notes','1767','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16813,'notes','1768','error','Deal not found: 1589',NULL,'2025-11-14 00:17:00'),
(16814,'notes','1769','error','Deal not found: 1622',NULL,'2025-11-14 00:17:00'),
(16815,'notes','1770','error','Deal not found: 1960',NULL,'2025-11-14 00:17:00'),
(16816,'notes','1772','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16817,'notes','1773','error','Deal not found: 1623',NULL,'2025-11-14 00:17:00'),
(16818,'notes','1774','error','Deal not found: 1625',NULL,'2025-11-14 00:17:00'),
(16819,'notes','1775','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16820,'notes','1776','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16821,'notes','1777','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16822,'notes','1778','error','Deal not found: 1626',NULL,'2025-11-14 00:17:00'),
(16823,'notes','1779','error','Deal not found: 1627',NULL,'2025-11-14 00:17:00'),
(16824,'notes','1780','error','Deal not found: 1627',NULL,'2025-11-14 00:17:00'),
(16825,'notes','1781','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16826,'notes','1782','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16827,'notes','1783','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16828,'notes','1784','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16829,'notes','1785','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16830,'notes','1786','error','Deal not found: 1628',NULL,'2025-11-14 00:17:00'),
(16831,'notes','1787','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16832,'notes','1788','error','Deal not found: 1594',NULL,'2025-11-14 00:17:00'),
(16833,'notes','1789','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16834,'notes','1790','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16835,'notes','1791','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16836,'notes','1792','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16837,'notes','1793','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16838,'notes','1794','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16839,'notes','1795','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16840,'notes','1796','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16841,'notes','1797','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16842,'notes','1798','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16843,'notes','1799','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16844,'notes','1800','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16845,'notes','1801','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16846,'notes','1802','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16847,'notes','1803','error','Deal not found: 1629',NULL,'2025-11-14 00:17:00'),
(16848,'notes','1804','error','Deal not found: 1760',NULL,'2025-11-14 00:17:00'),
(16849,'notes','1805','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16850,'notes','1806','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16851,'notes','1807','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16852,'notes','1808','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16853,'notes','1809','error','Deal not found: 1629',NULL,'2025-11-14 00:17:00'),
(16854,'notes','1810','error','Deal not found: 1632',NULL,'2025-11-14 00:17:00'),
(16855,'notes','1811','error','Deal not found: 1574',NULL,'2025-11-14 00:17:00'),
(16856,'notes','1812','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16857,'notes','1816','error','Deal not found: 1634',NULL,'2025-11-14 00:17:00'),
(16858,'notes','1817','error','Deal not found: 1634',NULL,'2025-11-14 00:17:00'),
(16859,'notes','1818','error','Deal not found: 1635',NULL,'2025-11-14 00:17:00'),
(16860,'notes','1819','error','Deal not found: 1634',NULL,'2025-11-14 00:17:00'),
(16861,'notes','1820','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16862,'notes','1821','error','Deal not found: 1641',NULL,'2025-11-14 00:17:00'),
(16863,'notes','1822','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16864,'notes','1823','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16865,'notes','1824','error','Deal not found: 1635',NULL,'2025-11-14 00:17:00'),
(16866,'notes','1825','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16867,'notes','1826','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16868,'notes','1827','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16869,'notes','1828','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16870,'notes','1829','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16871,'notes','1830','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16872,'notes','1831','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16873,'notes','1832','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16874,'notes','1833','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16875,'notes','1834','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16876,'notes','1835','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16877,'notes','1836','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16878,'notes','1837','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16879,'notes','1838','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16880,'notes','1839','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16881,'notes','1840','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16882,'notes','1841','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16883,'notes','1842','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16884,'notes','1843','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16885,'notes','1844','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16886,'notes','1845','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16887,'notes','1846','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16888,'notes','1847','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16889,'notes','1848','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16890,'notes','1849','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16891,'notes','1850','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16892,'notes','1851','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16893,'notes','1852','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16894,'notes','1853','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16895,'notes','1854','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16896,'notes','1855','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16897,'notes','1856','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16898,'notes','1857','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16899,'notes','1858','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16900,'notes','1859','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16901,'notes','1860','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16902,'notes','1861','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16903,'notes','1862','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16904,'notes','1863','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16905,'notes','1864','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16906,'notes','1865','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16907,'notes','1866','error','Deal not found: 1641',NULL,'2025-11-14 00:17:00'),
(16908,'notes','1867','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16909,'notes','1868','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16910,'notes','1869','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16911,'notes','1870','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16912,'notes','1871','error','Deal not found: 1873',NULL,'2025-11-14 00:17:00'),
(16913,'notes','1872','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16914,'notes','1873','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16915,'notes','1874','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16916,'notes','1875','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16917,'notes','1876','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16918,'notes','1877','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16919,'notes','1878','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16920,'notes','1879','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16921,'notes','1880','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16922,'notes','1881','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16923,'notes','1882','error','Deal not found: 1725',NULL,'2025-11-14 00:17:00'),
(16924,'notes','1883','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16925,'notes','1884','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16926,'notes','1885','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16927,'notes','1886','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16928,'notes','1887','error','Deal not found: 1635',NULL,'2025-11-14 00:17:00'),
(16929,'notes','1888','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16930,'notes','1889','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16931,'notes','1890','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16932,'notes','1891','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16933,'notes','1892','error','Deal not found: 1623',NULL,'2025-11-14 00:17:00'),
(16934,'notes','1893','error','Deal not found: 1640',NULL,'2025-11-14 00:17:00'),
(16935,'notes','1894','error','Deal not found: 1591',NULL,'2025-11-14 00:17:00'),
(16936,'notes','1895','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16937,'notes','1896','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16938,'notes','1897','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16939,'notes','1898','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16940,'notes','1899','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16941,'notes','1900','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16942,'notes','1901','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16943,'notes','1902','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16944,'notes','1903','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16945,'notes','1904','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16946,'notes','1905','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16947,'notes','1906','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16948,'notes','1907','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16949,'notes','1908','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16950,'notes','1909','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16951,'notes','1910','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16952,'notes','1911','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16953,'notes','1912','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16954,'notes','1913','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16955,'notes','1914','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16956,'notes','1915','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16957,'notes','1916','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16958,'notes','1917','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16959,'notes','1918','error','Deal not found: 1643',NULL,'2025-11-14 00:17:00'),
(16960,'notes','1919','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16961,'notes','1920','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16962,'notes','1921','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16963,'notes','1922','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16964,'notes','1923','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16965,'notes','1924','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16966,'notes','1925','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16967,'notes','1926','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16968,'notes','1927','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16969,'notes','1928','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16970,'notes','1929','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16971,'notes','1930','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16972,'notes','1931','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16973,'notes','1932','error','Deal not found: 1597',NULL,'2025-11-14 00:17:00'),
(16974,'notes','1933','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16975,'notes','1934','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16976,'notes','1935','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16977,'notes','1936','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16978,'notes','1937','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16979,'notes','1938','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16980,'notes','1939','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16981,'notes','1940','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16982,'notes','1941','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16983,'notes','1942','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16984,'notes','1943','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16985,'notes','1944','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16986,'notes','1945','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16987,'notes','1946','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16988,'notes','1947','error','Deal not found: 1648',NULL,'2025-11-14 00:17:00'),
(16989,'notes','1948','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16990,'notes','1949','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16991,'notes','1950','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16992,'notes','1951','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16993,'notes','1952','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16994,'notes','1953','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16995,'notes','1954','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16996,'notes','1955','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16997,'notes','1956','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16998,'notes','1957','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(16999,'notes','1958','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17000,'notes','1959','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17001,'notes','1960','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17002,'notes','1961','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17003,'notes','1962','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17004,'notes','1963','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17005,'notes','1964','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17006,'notes','1965','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17007,'notes','1966','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17008,'notes','1967','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17009,'notes','1968','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17010,'notes','1969','error','Deal not found: 1577',NULL,'2025-11-14 00:17:00'),
(17011,'notes','1970','error','Deal not found: 1638',NULL,'2025-11-14 00:17:00'),
(17012,'notes','1971','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17013,'notes','1972','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17014,'notes','1973','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17015,'notes','1974','error','Deal not found: 1650',NULL,'2025-11-14 00:17:00'),
(17016,'notes','1975','error','Deal not found: 1651',NULL,'2025-11-14 00:17:00'),
(17017,'notes','1976','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17018,'notes','1977','error','Deal not found: 1653',NULL,'2025-11-14 00:17:00'),
(17019,'notes','1978','error','Deal not found: 1654',NULL,'2025-11-14 00:17:00'),
(17020,'notes','1979','error','Deal not found: 1655',NULL,'2025-11-14 00:17:00'),
(17021,'notes','1980','error','Deal not found: 1656',NULL,'2025-11-14 00:17:00'),
(17022,'notes','1981','error','Deal not found: 1657',NULL,'2025-11-14 00:17:00'),
(17023,'notes','1982','error','Deal not found: 1658',NULL,'2025-11-14 00:17:00'),
(17024,'notes','1983','error','Deal not found: 1658',NULL,'2025-11-14 00:17:00'),
(17025,'notes','1984','error','Deal not found: 1659',NULL,'2025-11-14 00:17:00'),
(17026,'notes','1985','error','Deal not found: 1660',NULL,'2025-11-14 00:17:00'),
(17027,'notes','1986','error','Deal not found: 1661',NULL,'2025-11-14 00:17:00'),
(17028,'notes','1987','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17029,'notes','1988','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17030,'notes','1989','error','Deal not found: 1664',NULL,'2025-11-14 00:17:00'),
(17031,'notes','1990','error','Deal not found: 1665',NULL,'2025-11-14 00:17:00'),
(17032,'notes','1991','error','Deal not found: 1666',NULL,'2025-11-14 00:17:00'),
(17033,'notes','1992','error','Deal not found: 1667',NULL,'2025-11-14 00:17:00'),
(17034,'notes','1993','error','Deal not found: 1668',NULL,'2025-11-14 00:17:00'),
(17035,'notes','1994','error','Deal not found: 1669',NULL,'2025-11-14 00:17:00'),
(17036,'notes','1995','error','Deal not found: 1670',NULL,'2025-11-14 00:17:00'),
(17037,'notes','1996','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17038,'notes','1997','error','Deal not found: 1672',NULL,'2025-11-14 00:17:00'),
(17039,'notes','1998','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17040,'notes','1999','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17041,'notes','2000','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17042,'notes','2001','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17043,'notes','2002','error','Deal not found: 1676',NULL,'2025-11-14 00:17:00'),
(17044,'notes','2003','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17045,'notes','2004','error','Deal not found: 1678',NULL,'2025-11-14 00:17:00'),
(17046,'notes','2005','error','Deal not found: 1679',NULL,'2025-11-14 00:17:00'),
(17047,'notes','2006','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17048,'notes','2007','error','Deal not found: 1681',NULL,'2025-11-14 00:17:00'),
(17049,'notes','2008','error','Deal not found: 1682',NULL,'2025-11-14 00:17:00'),
(17050,'notes','2009','error','Deal not found: 1683',NULL,'2025-11-14 00:17:00'),
(17051,'notes','2010','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17052,'notes','2011','error','Deal not found: 1685',NULL,'2025-11-14 00:17:00'),
(17053,'notes','2012','error','Deal not found: 1686',NULL,'2025-11-14 00:17:00'),
(17054,'notes','2013','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17055,'notes','2014','error','Deal not found: 1688',NULL,'2025-11-14 00:17:00'),
(17056,'notes','2015','error','Deal not found: 1689',NULL,'2025-11-14 00:17:00'),
(17057,'notes','2016','error','Deal not found: 1690',NULL,'2025-11-14 00:17:00'),
(17058,'notes','2017','error','Deal not found: 1691',NULL,'2025-11-14 00:17:00'),
(17059,'notes','2018','error','Deal not found: 1692',NULL,'2025-11-14 00:17:00'),
(17060,'notes','2019','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17061,'notes','2020','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17062,'notes','2021','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17063,'notes','2022','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17064,'notes','2023','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17065,'notes','2024','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17066,'notes','2025','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17067,'notes','2026','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17068,'notes','2028','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17069,'notes','2029','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17070,'notes','2030','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17071,'notes','2031','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17072,'notes','2032','error','Deal not found: 1734',NULL,'2025-11-14 00:17:00'),
(17073,'notes','2033','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17074,'notes','2034','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17075,'notes','2035','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17076,'notes','2036','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17077,'notes','2037','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17078,'notes','2038','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17079,'notes','2039','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17080,'notes','2040','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17081,'notes','2041','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17082,'notes','2042','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17083,'notes','2043','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17084,'notes','2044','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17085,'notes','2045','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17086,'notes','2046','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17087,'notes','2047','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17088,'notes','2048','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17089,'notes','2049','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17090,'notes','2050','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17091,'notes','2051','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17092,'notes','2052','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17093,'notes','2053','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17094,'notes','2054','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17095,'notes','2055','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17096,'notes','2056','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17097,'notes','2057','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17098,'notes','2058','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17099,'notes','2059','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17100,'notes','2060','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17101,'notes','2061','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17102,'notes','2062','error','Deal not found: 1695',NULL,'2025-11-14 00:17:00'),
(17103,'notes','2063','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17104,'notes','2064','error','Deal not found: 1635',NULL,'2025-11-14 00:17:00'),
(17105,'notes','2065','error','Deal not found: 1696',NULL,'2025-11-14 00:17:00'),
(17106,'notes','2066','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17107,'notes','2067','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17108,'notes','2068','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17109,'notes','2069','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17110,'notes','2070','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17111,'notes','2071','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17112,'notes','2072','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17113,'notes','2073','error','Deal not found: 1697',NULL,'2025-11-14 00:17:00'),
(17114,'notes','2074','error','Deal not found: 1698',NULL,'2025-11-14 00:17:00'),
(17115,'notes','2075','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17116,'notes','2076','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17117,'notes','2077','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17118,'notes','2078','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17119,'notes','2079','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17120,'notes','2080','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17121,'notes','2081','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17122,'notes','2082','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17123,'notes','2083','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17124,'notes','2084','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17125,'notes','2085','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17126,'notes','2086','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17127,'notes','2087','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17128,'notes','2088','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17129,'notes','2089','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17130,'notes','2090','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17131,'notes','2091','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17132,'notes','2092','error','Deal not found: 1665',NULL,'2025-11-14 00:17:00'),
(17133,'notes','2093','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17134,'notes','2094','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17135,'notes','2095','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17136,'notes','2096','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17137,'notes','2097','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17138,'notes','2098','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17139,'notes','2099','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17140,'notes','2100','error','Deal not found: 1686',NULL,'2025-11-14 00:17:00'),
(17141,'notes','2101','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17142,'notes','2102','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17143,'notes','2103','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17144,'notes','2104','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17145,'notes','2105','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17146,'notes','2106','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17147,'notes','2107','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17148,'notes','2108','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17149,'notes','2109','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17150,'notes','2110','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17151,'notes','2111','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17152,'notes','2112','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17153,'notes','2113','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17154,'notes','2114','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17155,'notes','2115','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17156,'notes','2116','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17157,'notes','2117','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17158,'notes','2118','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17159,'notes','2119','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17160,'notes','2120','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17161,'notes','2121','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17162,'notes','2122','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17163,'notes','2123','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17164,'notes','2124','error','Deal not found: 1733',NULL,'2025-11-14 00:17:00'),
(17165,'notes','2125','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17166,'notes','2126','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17167,'notes','2127','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17168,'notes','2128','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17169,'notes','2129','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17170,'notes','2130','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17171,'notes','2131','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17172,'notes','2132','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17173,'notes','2133','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17174,'notes','2134','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17175,'notes','2135','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17176,'notes','2136','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17177,'notes','2137','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17178,'notes','2138','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17179,'notes','2139','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17180,'notes','2140','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17181,'notes','2141','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17182,'notes','2142','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17183,'notes','2143','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17184,'notes','2144','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17185,'notes','2145','error','Deal not found: 1755',NULL,'2025-11-14 00:17:00'),
(17186,'notes','2146','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17187,'notes','2147','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17188,'notes','2148','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17189,'notes','2149','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17190,'notes','2150','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17191,'notes','2151','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17192,'notes','2152','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17193,'notes','2153','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17194,'notes','2154','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17195,'notes','2155','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17196,'notes','2156','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17197,'notes','2157','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17198,'notes','2158','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17199,'notes','2159','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17200,'notes','2160','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17201,'notes','2161','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17202,'notes','2162','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17203,'notes','2163','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17204,'notes','2164','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17205,'notes','2165','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17206,'notes','2166','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17207,'notes','2167','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17208,'notes','2168','error','Deal not found: 1708',NULL,'2025-11-14 00:17:00'),
(17209,'notes','2169','error','Deal not found: 1708',NULL,'2025-11-14 00:17:00'),
(17210,'notes','2170','error','Deal not found: 1708',NULL,'2025-11-14 00:17:00'),
(17211,'notes','2171','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17212,'notes','2172','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17213,'notes','2173','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17214,'notes','2174','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17215,'notes','2175','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17216,'notes','2176','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17217,'notes','2177','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17218,'notes','2178','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17219,'notes','2179','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17220,'notes','2180','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17221,'notes','2181','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17222,'notes','2182','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17223,'notes','2183','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17224,'notes','2184','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17225,'notes','2185','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17226,'notes','2186','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17227,'notes','2187','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17228,'notes','2188','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17229,'notes','2189','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17230,'notes','2190','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17231,'notes','2191','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17232,'notes','2192','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17233,'notes','2193','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17234,'notes','2195','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17235,'notes','2196','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17236,'notes','2197','error','Deal not found: 1664',NULL,'2025-11-14 00:17:00'),
(17237,'notes','2198','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17238,'notes','2199','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17239,'notes','2200','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17240,'notes','2201','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17241,'notes','2202','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17242,'notes','2203','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17243,'notes','2204','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17244,'notes','2205','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17245,'notes','2206','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17246,'notes','2207','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17247,'notes','2208','error','Deal not found: 1665',NULL,'2025-11-14 00:17:00'),
(17248,'notes','2209','error','Deal not found: 1665',NULL,'2025-11-14 00:17:00'),
(17249,'notes','2210','error','Deal not found: 1597',NULL,'2025-11-14 00:17:00'),
(17250,'notes','2211','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17251,'notes','2212','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17252,'notes','2213','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17253,'notes','2214','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17254,'notes','2215','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17255,'notes','2216','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17256,'notes','2217','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17257,'notes','2218','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17258,'notes','2219','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17259,'notes','2220','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17260,'notes','2221','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17261,'notes','2222','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17262,'notes','2223','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17263,'notes','2224','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17264,'notes','2225','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17265,'notes','2226','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17266,'notes','2227','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17267,'notes','2228','error','Deal not found: 1713',NULL,'2025-11-14 00:17:00'),
(17268,'notes','2229','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17269,'notes','2230','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17270,'notes','2231','error','Deal not found: 1713',NULL,'2025-11-14 00:17:00'),
(17271,'notes','2232','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17272,'notes','2233','error','Deal not found: 1597',NULL,'2025-11-14 00:17:00'),
(17273,'notes','2234','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17274,'notes','2235','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17275,'notes','2236','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17276,'notes','2237','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17277,'notes','2238','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17278,'notes','2239','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17279,'notes','2240','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17280,'notes','2241','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17281,'notes','2242','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17282,'notes','2243','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17283,'notes','2244','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17284,'notes','2245','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17285,'notes','2246','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17286,'notes','2247','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17287,'notes','2248','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17288,'notes','2249','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17289,'notes','2250','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17290,'notes','2251','error','Deal not found: 1714',NULL,'2025-11-14 00:17:00'),
(17291,'notes','2252','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17292,'notes','2253','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17293,'notes','2254','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17294,'notes','2255','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17295,'notes','2256','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17296,'notes','2257','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17297,'notes','2258','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17298,'notes','2259','error','Deal not found: 1617',NULL,'2025-11-14 00:17:00'),
(17299,'notes','2260','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17300,'notes','2261','error','Deal not found: 1608',NULL,'2025-11-14 00:17:00'),
(17301,'notes','2262','error','Deal not found: 1693',NULL,'2025-11-14 00:17:00'),
(17302,'notes','2263','error','Deal not found: 1632',NULL,'2025-11-14 00:17:00'),
(17303,'notes','2264','error','Deal not found: 1582',NULL,'2025-11-14 00:17:00'),
(17304,'notes','2265','error','Deal not found: 6',NULL,'2025-11-14 00:17:00'),
(17305,'notes','2266','error','Deal not found: 1577',NULL,'2025-11-14 00:17:00'),
(17306,'notes','2267','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17307,'notes','2268','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17308,'notes','2269','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17309,'notes','2270','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17310,'notes','2271','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17311,'notes','2272','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17312,'notes','2273','error','Deal not found: 1620',NULL,'2025-11-14 00:17:00'),
(17313,'notes','2274','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17314,'notes','2275','error','Deal not found: 1557',NULL,'2025-11-14 00:17:00'),
(17315,'notes','2276','error','Deal not found: 1730',NULL,'2025-11-14 00:17:00'),
(17316,'notes','2277','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17317,'notes','2278','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17318,'notes','2279','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17319,'notes','2280','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17320,'notes','2281','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17321,'notes','2282','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17322,'notes','2283','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17323,'notes','2284','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17324,'notes','2285','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17325,'notes','2286','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17326,'notes','2287','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17327,'notes','2288','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17328,'notes','2290','error','Deal not found: 1744',NULL,'2025-11-14 00:17:00'),
(17329,'notes','2291','error','Deal not found: 1745',NULL,'2025-11-14 00:17:00'),
(17330,'notes','2292','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17331,'notes','2293','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17332,'notes','2294','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17333,'notes','2295','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17334,'notes','2296','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17335,'notes','2297','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17336,'notes','2298','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17337,'notes','2299','error','Deal not found: 1733',NULL,'2025-11-14 00:17:00'),
(17338,'notes','2300','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17339,'notes','2301','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17340,'notes','2302','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17341,'notes','2303','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17342,'notes','2304','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17343,'notes','2305','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17344,'notes','2306','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17345,'notes','2307','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17346,'notes','2308','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17347,'notes','2309','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17348,'notes','2310','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17349,'notes','2311','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17350,'notes','2312','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17351,'notes','2313','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17352,'notes','2314','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17353,'notes','2315','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17354,'notes','2316','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17355,'notes','2317','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17356,'notes','2318','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17357,'notes','2319','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17358,'notes','2320','error','Deal not found: 1714',NULL,'2025-11-14 00:17:00'),
(17359,'notes','2321','error','Deal not found: 1763',NULL,'2025-11-14 00:17:00'),
(17360,'notes','2322','error','Deal not found: 1714',NULL,'2025-11-14 00:17:00'),
(17361,'notes','2323','error','Deal not found: 1622',NULL,'2025-11-14 00:17:00'),
(17362,'notes','2324','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17363,'notes','2325','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17364,'notes','2326','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17365,'notes','2327','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17366,'notes','2328','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17367,'notes','2329','error','Deal not found: 1765',NULL,'2025-11-14 00:17:00'),
(17368,'notes','2330','error','Deal not found: 1766',NULL,'2025-11-14 00:17:00'),
(17369,'notes','2331','error','Deal not found: 1766',NULL,'2025-11-14 00:17:00'),
(17370,'notes','2332','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17371,'notes','2333','error','Deal not found: 1767',NULL,'2025-11-14 00:17:00'),
(17372,'notes','2334','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17373,'notes','2335','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17374,'notes','2337','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17375,'notes','2338','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17376,'notes','2339','error','Deal not found: 1771',NULL,'2025-11-14 00:17:00'),
(17377,'notes','2340','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17378,'notes','2341','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17379,'notes','2342','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17380,'notes','2343','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17381,'notes','2344','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17382,'notes','2345','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17383,'notes','2346','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17384,'notes','2347','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17385,'notes','2348','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17386,'notes','2349','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17387,'notes','2350','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17388,'notes','2351','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17389,'notes','2352','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17390,'notes','2353','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17391,'notes','2354','error','Deal not found: 1765',NULL,'2025-11-14 00:17:00'),
(17392,'notes','2355','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17393,'notes','2356','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17394,'notes','2357','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17395,'notes','2358','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17396,'notes','2359','error','Deal not found: 1755',NULL,'2025-11-14 00:17:00'),
(17397,'notes','2360','error','Deal not found: 1755',NULL,'2025-11-14 00:17:00'),
(17398,'notes','2361','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17399,'notes','2362','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17400,'notes','2363','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17401,'notes','2364','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17402,'notes','2365','error','Deal not found: 1751',NULL,'2025-11-14 00:17:00'),
(17403,'notes','2366','error','Deal not found: 1751',NULL,'2025-11-14 00:17:00'),
(17404,'notes','2367','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17405,'notes','2368','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17406,'notes','2369','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17407,'notes','2370','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17408,'notes','2371','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17409,'notes','2372','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17410,'notes','2373','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17411,'notes','2374','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17412,'notes','2375','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17413,'notes','2376','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17414,'notes','2377','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17415,'notes','2378','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17416,'notes','2379','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17417,'notes','2380','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17418,'notes','2381','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17419,'notes','2382','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17420,'notes','2383','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17421,'notes','2385','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17422,'notes','2386','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17423,'notes','2387','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17424,'notes','2388','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17425,'notes','2389','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17426,'notes','2390','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17427,'notes','2391','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17428,'notes','2392','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17429,'notes','2393','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17430,'notes','2394','error','Deal not found: 1775',NULL,'2025-11-14 00:17:00'),
(17431,'notes','2395','error','Deal not found: 1773',NULL,'2025-11-14 00:17:00'),
(17432,'notes','2396','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17433,'notes','2397','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17434,'notes','2398','error','Deal not found: 1708',NULL,'2025-11-14 00:17:00'),
(17435,'notes','2399','error','Deal not found: 1706',NULL,'2025-11-14 00:17:00'),
(17436,'notes','2400','error','Deal not found: 1665',NULL,'2025-11-14 00:17:00'),
(17437,'notes','2401','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17438,'notes','2402','error','Deal not found: 1781',NULL,'2025-11-14 00:17:00'),
(17439,'notes','2403','error','Deal not found: 1765',NULL,'2025-11-14 00:17:00'),
(17440,'notes','2404','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17441,'notes','2405','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17442,'notes','2406','error','Deal not found: 1784',NULL,'2025-11-14 00:17:00'),
(17443,'notes','2407','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17444,'notes','2408','error','Deal not found: 1622',NULL,'2025-11-14 00:17:00'),
(17445,'notes','2409','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17446,'notes','2410','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17447,'notes','2411','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17448,'notes','2412','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17449,'notes','2413','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17450,'notes','2414','error','Deal not found: 1780',NULL,'2025-11-14 00:17:00'),
(17451,'notes','2415','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17452,'notes','2416','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17453,'notes','2417','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17454,'notes','2418','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17455,'notes','2419','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17456,'notes','2420','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17457,'notes','2423','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17458,'notes','2424','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17459,'notes','2425','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17460,'notes','2426','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17461,'notes','2427','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17462,'notes','2428','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17463,'notes','2429','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17464,'notes','2430','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17465,'notes','2431','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17466,'notes','2432','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17467,'notes','2433','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17468,'notes','2434','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17469,'notes','2435','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17470,'notes','2436','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17471,'notes','2437','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17472,'notes','2438','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17473,'notes','2440','error','Deal not found: 1779',NULL,'2025-11-14 00:17:00'),
(17474,'notes','2441','error','Deal not found: 1776',NULL,'2025-11-14 00:17:00'),
(17475,'notes','2442','error','Deal not found: 1780',NULL,'2025-11-14 00:17:00'),
(17476,'notes','2443','error','Deal not found: 1792',NULL,'2025-11-14 00:17:00'),
(17477,'notes','2444','error','Deal not found: 1766',NULL,'2025-11-14 00:17:00'),
(17478,'notes','2445','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17479,'notes','2446','error','Deal not found: 1753',NULL,'2025-11-14 00:17:00'),
(17480,'notes','2447','error','Deal not found: 1733',NULL,'2025-11-14 00:17:00'),
(17481,'notes','2448','error','Deal not found: 1703',NULL,'2025-11-14 00:17:00'),
(17482,'notes','2449','error','Deal not found: 1647',NULL,'2025-11-14 00:17:00'),
(17483,'notes','2450','error','Deal not found: 1750',NULL,'2025-11-14 00:17:00'),
(17484,'notes','2451','error','Deal not found: 1778',NULL,'2025-11-14 00:17:00'),
(17485,'notes','2452','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17486,'notes','2453','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17487,'notes','2454','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17488,'notes','2455','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17489,'notes','2456','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17490,'notes','2457','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17491,'notes','2458','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17492,'notes','2459','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17493,'notes','2460','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17494,'notes','2463','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17495,'notes','2464','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17496,'notes','2465','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17497,'notes','2466','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17498,'notes','2467','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17499,'notes','2468','error','Deal not found: 1784',NULL,'2025-11-14 00:17:00'),
(17500,'notes','2469','error','Deal not found: 1798',NULL,'2025-11-14 00:17:00'),
(17501,'notes','2470','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17502,'notes','2471','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17503,'notes','2473','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17504,'notes','2474','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17505,'notes','2475','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17506,'notes','2476','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17507,'notes','2477','error','Deal not found: 1775',NULL,'2025-11-14 00:17:00'),
(17508,'notes','2478','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17509,'notes','2479','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17510,'notes','2480','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17511,'notes','2481','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17512,'notes','2482','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17513,'notes','2483','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17514,'notes','2484','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17515,'notes','2485','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17516,'notes','2486','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17517,'notes','2487','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17518,'notes','2488','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17519,'notes','2489','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17520,'notes','2490','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17521,'notes','2491','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17522,'notes','2492','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17523,'notes','2493','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17524,'notes','2494','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17525,'notes','2495','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17526,'notes','2496','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17527,'notes','2497','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17528,'notes','2498','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17529,'notes','2499','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17530,'notes','2500','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17531,'notes','2501','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17532,'notes','2502','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17533,'notes','2503','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17534,'notes','2504','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17535,'notes','2505','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17536,'notes','2506','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17537,'notes','2507','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17538,'notes','2508','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17539,'notes','2509','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17540,'notes','2510','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17541,'notes','2511','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17542,'notes','2512','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17543,'notes','2513','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17544,'notes','2514','error','Deal not found: 1776',NULL,'2025-11-14 00:17:00'),
(17545,'notes','2515','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17546,'notes','2516','error','Deal not found: 1642',NULL,'2025-11-14 00:17:00'),
(17547,'notes','2517','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17548,'notes','2518','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17549,'notes','2519','error','Deal not found: 1630',NULL,'2025-11-14 00:17:00'),
(17550,'notes','2520','error','Deal not found: 1713',NULL,'2025-11-14 00:17:00'),
(17551,'notes','2521','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17552,'notes','2522','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17553,'notes','2523','error','Deal not found: 1614',NULL,'2025-11-14 00:17:00'),
(17554,'notes','2524','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17555,'notes','2525','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17556,'notes','2526','error','Deal not found: 1595',NULL,'2025-11-14 00:17:00'),
(17557,'notes','2527','error','Deal not found: 1572',NULL,'2025-11-14 00:17:00'),
(17558,'notes','2528','error','Deal not found: 1584',NULL,'2025-11-14 00:17:00'),
(17559,'notes','2529','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17560,'notes','2530','error','Deal not found: 1664',NULL,'2025-11-14 00:17:00'),
(17561,'notes','2531','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17562,'notes','2532','error','Deal not found: 24',NULL,'2025-11-14 00:17:00'),
(17563,'notes','2533','error','Deal not found: 1596',NULL,'2025-11-14 00:17:00'),
(17564,'notes','2534','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17565,'notes','2535','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17566,'notes','2536','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17567,'notes','2537','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17568,'notes','2538','error','Deal not found: 1818',NULL,'2025-11-14 00:17:00'),
(17569,'notes','2539','error','Deal not found: 1818',NULL,'2025-11-14 00:17:00'),
(17570,'notes','2540','error','Deal not found: 1818',NULL,'2025-11-14 00:17:00'),
(17571,'notes','2541','error','Deal not found: 1818',NULL,'2025-11-14 00:17:00'),
(17572,'notes','2542','error','Deal not found: 1818',NULL,'2025-11-14 00:17:00'),
(17573,'notes','2543','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17574,'notes','2544','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17575,'notes','2545','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17576,'notes','2546','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17577,'notes','2547','error','Deal not found: 1810',NULL,'2025-11-14 00:17:00'),
(17578,'notes','2548','error','Deal not found: 1811',NULL,'2025-11-14 00:17:00'),
(17579,'notes','2549','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17580,'notes','2550','error','Deal not found: 1812',NULL,'2025-11-14 00:17:00'),
(17581,'notes','2551','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17582,'notes','2552','error','Deal not found: 1711',NULL,'2025-11-14 00:17:00'),
(17583,'notes','2553','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17584,'notes','2554','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17585,'notes','2555','error','Deal not found: 1638',NULL,'2025-11-14 00:17:00'),
(17586,'notes','2556','error','Deal not found: 1622',NULL,'2025-11-14 00:17:00'),
(17587,'notes','2557','error','Deal not found: 1600',NULL,'2025-11-14 00:17:00'),
(17588,'notes','2558','error','Deal not found: 1597',NULL,'2025-11-14 00:17:00'),
(17589,'notes','2559','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17590,'notes','2560','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17591,'notes','2561','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17592,'notes','2562','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17593,'notes','2563','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17594,'notes','2564','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17595,'notes','2565','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17596,'notes','2566','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17597,'notes','2567','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17598,'notes','2568','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17599,'notes','2569','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17600,'notes','2570','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17601,'notes','2571','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17602,'notes','2572','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17603,'notes','2573','error','Deal not found: 1820',NULL,'2025-11-14 00:17:00'),
(17604,'notes','2574','error','Deal not found: 1648',NULL,'2025-11-14 00:17:00'),
(17605,'notes','2576','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17606,'notes','2577','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17607,'notes','2578','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17608,'notes','2579','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17609,'notes','2580','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17610,'notes','2581','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17611,'notes','2582','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17612,'notes','2583','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17613,'notes','2584','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17614,'notes','2585','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17615,'notes','2586','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17616,'notes','2587','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17617,'notes','2588','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17618,'notes','2589','error','Deal not found: 1566',NULL,'2025-11-14 00:17:00'),
(17619,'notes','2590','error','Deal not found: 4',NULL,'2025-11-14 00:17:00'),
(17620,'notes','2591','error','Deal not found: 1707',NULL,'2025-11-14 00:17:00'),
(17621,'notes','2592','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17622,'notes','2593','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17623,'notes','2594','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17624,'notes','2595','error','Deal not found: 1665',NULL,'2025-11-14 00:17:00'),
(17625,'notes','2598','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17626,'notes','2599','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17627,'notes','2600','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17628,'notes','2601','error','Deal not found: 1767',NULL,'2025-11-14 00:17:00'),
(17629,'notes','2602','error','Deal not found: 1766',NULL,'2025-11-14 00:17:00'),
(17630,'notes','2603','error','Deal not found: 1753',NULL,'2025-11-14 00:17:00'),
(17631,'notes','2604','error','Deal not found: 1750',NULL,'2025-11-14 00:17:00'),
(17632,'notes','2605','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17633,'notes','2606','error','Deal not found: 1648',NULL,'2025-11-14 00:17:00'),
(17634,'notes','2607','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17635,'notes','2608','error','Deal not found: 1827',NULL,'2025-11-14 00:17:00'),
(17636,'notes','2609','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17637,'notes','2610','error','Deal not found: 1792',NULL,'2025-11-14 00:17:00'),
(17638,'notes','2611','error','Deal not found: 1703',NULL,'2025-11-14 00:17:00'),
(17639,'notes','2612','error','Deal not found: 1775',NULL,'2025-11-14 00:17:00'),
(17640,'notes','2613','error','Deal not found: 1802',NULL,'2025-11-14 00:17:00'),
(17641,'notes','2614','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17642,'notes','2615','error','Deal not found: 1778',NULL,'2025-11-14 00:17:00'),
(17643,'notes','2616','error','Deal not found: 1706',NULL,'2025-11-14 00:17:00'),
(17644,'notes','2617','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17645,'notes','2618','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17646,'notes','2619','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17647,'notes','2620','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17648,'notes','2621','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17649,'notes','2622','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17650,'notes','2623','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17651,'notes','2624','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17652,'notes','2625','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17653,'notes','2626','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17654,'notes','2627','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17655,'notes','2628','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17656,'notes','2629','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17657,'notes','2630','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17658,'notes','2631','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17659,'notes','2632','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17660,'notes','2633','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17661,'notes','2634','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17662,'notes','2635','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17663,'notes','2636','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17664,'notes','2637','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17665,'notes','2638','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17666,'notes','2639','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17667,'notes','2640','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17668,'notes','2641','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17669,'notes','2642','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17670,'notes','2643','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17671,'notes','2644','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17672,'notes','2645','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17673,'notes','2646','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17674,'notes','2647','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17675,'notes','2648','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17676,'notes','2649','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17677,'notes','2650','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17678,'notes','2651','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17679,'notes','2652','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17680,'notes','2653','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17681,'notes','2654','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17682,'notes','2655','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17683,'notes','2656','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17684,'notes','2657','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17685,'notes','2658','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17686,'notes','2659','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17687,'notes','2660','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17688,'notes','2661','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17689,'notes','2662','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17690,'notes','2663','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17691,'notes','2664','error','Deal not found: 1869',NULL,'2025-11-14 00:17:00'),
(17692,'notes','2665','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17693,'notes','2666','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17694,'notes','2667','error','Deal not found: 1872',NULL,'2025-11-14 00:17:00'),
(17695,'notes','2668','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17696,'notes','2669','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17697,'notes','2670','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17698,'notes','2671','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17699,'notes','2672','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17700,'notes','2673','error','Deal not found: 1874',NULL,'2025-11-14 00:17:00'),
(17701,'notes','2674','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17702,'notes','2675','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17703,'notes','2676','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17704,'notes','2677','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17705,'notes','2678','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17706,'notes','2679','error','Deal not found: 1880',NULL,'2025-11-14 00:17:00'),
(17707,'notes','2680','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17708,'notes','2681','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17709,'notes','2682','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17710,'notes','2683','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17711,'notes','2684','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17712,'notes','2685','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17713,'notes','2686','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17714,'notes','2687','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17715,'notes','2688','error','Deal not found: 1883',NULL,'2025-11-14 00:17:00'),
(17716,'notes','2689','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17717,'notes','2690','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17718,'notes','2691','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17719,'notes','2692','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17720,'notes','2693','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17721,'notes','2694','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17722,'notes','2695','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17723,'notes','2696','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17724,'notes','2697','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17725,'notes','2698','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17726,'notes','2699','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17727,'notes','2700','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17728,'notes','2701','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17729,'notes','2702','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17730,'notes','2703','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17731,'notes','2704','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17732,'notes','2705','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17733,'notes','2706','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17734,'notes','2707','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17735,'notes','2708','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17736,'notes','2709','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17737,'notes','2710','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17738,'notes','2711','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17739,'notes','2712','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17740,'notes','2713','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17741,'notes','2714','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17742,'notes','2715','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17743,'notes','2716','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17744,'notes','2717','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17745,'notes','2718','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17746,'notes','2719','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17747,'notes','2720','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17748,'notes','2721','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17749,'notes','2722','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17750,'notes','2723','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17751,'notes','2724','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17752,'notes','2725','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17753,'notes','2726','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17754,'notes','2727','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17755,'notes','2728','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17756,'notes','2729','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17757,'notes','2730','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17758,'notes','2731','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17759,'notes','2732','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17760,'notes','2733','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17761,'notes','2734','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17762,'notes','2737','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17763,'notes','2738','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17764,'notes','2739','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17765,'notes','2740','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17766,'notes','2741','error','Deal not found: 1689',NULL,'2025-11-14 00:17:00'),
(17767,'notes','2742','error','Deal not found: 1730',NULL,'2025-11-14 00:17:00'),
(17768,'notes','2743','error','Deal not found: 1780',NULL,'2025-11-14 00:17:00'),
(17769,'notes','2744','error','Deal not found: 1708',NULL,'2025-11-14 00:17:00'),
(17770,'notes','2745','error','Deal not found: 1699',NULL,'2025-11-14 00:17:00'),
(17771,'notes','2746','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17772,'notes','2747','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17773,'notes','2748','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17774,'notes','2749','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17775,'notes','2751','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17776,'notes','2752','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17777,'notes','2753','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17778,'notes','2754','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17779,'notes','2755','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17780,'notes','2756','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17781,'notes','2757','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17782,'notes','2758','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17783,'notes','2759','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17784,'notes','2760','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17785,'notes','2761','error','Deal not found: 1689',NULL,'2025-11-14 00:17:00'),
(17786,'notes','2762','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17787,'notes','2763','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17788,'notes','2764','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17789,'notes','2765','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17790,'notes','2766','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17791,'notes','2767','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17792,'notes','2768','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17793,'notes','2769','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17794,'notes','2770','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17795,'notes','2771','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17796,'notes','2772','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17797,'notes','2773','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17798,'notes','2774','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17799,'notes','2775','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17800,'notes','2776','error','Deal not found: 1697',NULL,'2025-11-14 00:17:00'),
(17801,'notes','2777','error','Deal not found: 1938',NULL,'2025-11-14 00:17:00'),
(17802,'notes','2778','error','Deal not found: 1943',NULL,'2025-11-14 00:17:00'),
(17803,'notes','2779','error','Deal not found: 1803',NULL,'2025-11-14 00:17:00'),
(17804,'notes','2780','error','Deal not found: 1944',NULL,'2025-11-14 00:17:00'),
(17805,'notes','2781','error','Deal not found: 1842',NULL,'2025-11-14 00:17:00'),
(17806,'notes','2782','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17807,'notes','2783','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17808,'notes','2784','error','Deal not found: 1945',NULL,'2025-11-14 00:17:00'),
(17809,'notes','2785','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17810,'notes','2786','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17811,'notes','2787','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17812,'notes','2788','error','Deal not found: 1948',NULL,'2025-11-14 00:17:00'),
(17813,'notes','2789','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17814,'notes','2790','error','Deal not found: 1686',NULL,'2025-11-14 00:17:00'),
(17815,'notes','2791','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17816,'notes','2792','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17817,'notes','2793','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17818,'notes','2794','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17819,'notes','2795','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17820,'notes','2796','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17821,'notes','2797','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17822,'notes','2798','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17823,'notes','2799','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17824,'notes','2800','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17825,'notes','2802','error','Deal not found: 1947',NULL,'2025-11-14 00:17:00'),
(17826,'notes','2803','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17827,'notes','2804','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17828,'notes','2805','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17829,'notes','2808','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17830,'notes','2809','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17831,'notes','2810','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17832,'notes','2811','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17833,'notes','2812','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17834,'notes','2813','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17835,'notes','2814','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17836,'notes','2815','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17837,'notes','2816','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17838,'notes','2817','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17839,'notes','2818','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17840,'notes','2819','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17841,'notes','2820','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17842,'notes','2821','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17843,'notes','2822','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17844,'notes','2823','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17845,'notes','2824','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17846,'notes','2825','error','Deal not found: 1951',NULL,'2025-11-14 00:17:00'),
(17847,'notes','2827','error','Deal not found: 1952',NULL,'2025-11-14 00:17:00'),
(17848,'notes','2828','error','Deal not found: 1957',NULL,'2025-11-14 00:17:00'),
(17849,'notes','2829','error','Deal not found: 1959',NULL,'2025-11-14 00:17:00'),
(17850,'notes','2830','error','Deal not found: 1958',NULL,'2025-11-14 00:17:00'),
(17851,'notes','2831','error','Deal not found: 1950',NULL,'2025-11-14 00:17:00'),
(17852,'notes','2832','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17853,'notes','2833','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17854,'notes','2835','error','Deal not found: 1958',NULL,'2025-11-14 00:17:00'),
(17855,'notes','2836','error','Deal not found: 1946',NULL,'2025-11-14 00:17:00'),
(17856,'notes','2837','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17857,'notes','2838','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17858,'notes','2839','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17859,'notes','2841','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17860,'notes','2842','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17861,'notes','2843','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17862,'notes','2844','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17863,'notes','2845','error','Deal not found: 1665',NULL,'2025-11-14 00:17:00'),
(17864,'notes','2846','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17865,'notes','2847','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17866,'notes','2848','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17867,'notes','2849','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17868,'notes','2850','error','Deal not found: 1998',NULL,'2025-11-14 00:17:00'),
(17869,'notes','2851','error','Deal not found: 1999',NULL,'2025-11-14 00:17:00'),
(17870,'notes','2852','error','Deal not found: 2001',NULL,'2025-11-14 00:17:00'),
(17871,'notes','2853','error','Deal not found: 2003',NULL,'2025-11-14 00:17:00'),
(17872,'notes','2854','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17873,'notes','2855','error','Deal not found: 2002',NULL,'2025-11-14 00:17:00'),
(17874,'notes','2856','error','Deal not found: 1996',NULL,'2025-11-14 00:17:00'),
(17875,'notes','2857','error','Deal not found: 1995',NULL,'2025-11-14 00:17:00'),
(17876,'notes','2858','error','Deal not found: 1994',NULL,'2025-11-14 00:17:00'),
(17877,'notes','2859','error','Deal not found: 1993',NULL,'2025-11-14 00:17:00'),
(17878,'notes','2860','error','Deal not found: 1992',NULL,'2025-11-14 00:17:00'),
(17879,'notes','2861','error','Deal not found: 1991',NULL,'2025-11-14 00:17:00'),
(17880,'notes','2862','error','Deal not found: 1990',NULL,'2025-11-14 00:17:00'),
(17881,'notes','2863','error','Deal not found: 1989',NULL,'2025-11-14 00:17:00'),
(17882,'notes','2864','error','Deal not found: 1987',NULL,'2025-11-14 00:17:00'),
(17883,'notes','2865','error','Deal not found: 1986',NULL,'2025-11-14 00:17:00'),
(17884,'notes','2866','error','Deal not found: 2004',NULL,'2025-11-14 00:17:00'),
(17885,'notes','2867','error','Deal not found: 2006',NULL,'2025-11-14 00:17:00'),
(17886,'notes','2868','error','Deal not found: 2007',NULL,'2025-11-14 00:17:00'),
(17887,'notes','2869','error','Deal not found: 2008',NULL,'2025-11-14 00:17:00'),
(17888,'notes','2870','error','Deal not found: 2009',NULL,'2025-11-14 00:17:00'),
(17889,'notes','2871','error','Deal not found: 2010',NULL,'2025-11-14 00:17:00'),
(17890,'notes','2872','error','Deal not found: 2011',NULL,'2025-11-14 00:17:00'),
(17891,'notes','2873','error','Deal not found: 2012',NULL,'2025-11-14 00:17:00'),
(17892,'notes','2874','error','Deal not found: 2013',NULL,'2025-11-14 00:17:00'),
(17893,'notes','2875','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17894,'notes','2876','error','Deal not found: 2015',NULL,'2025-11-14 00:17:00'),
(17895,'notes','2877','error','Deal not found: 2016',NULL,'2025-11-14 00:17:00'),
(17896,'notes','2878','error','Deal not found: 2017',NULL,'2025-11-14 00:17:00'),
(17897,'notes','2879','error','Deal not found: 2018',NULL,'2025-11-14 00:17:00'),
(17898,'notes','2880','error','Deal not found: 2019',NULL,'2025-11-14 00:17:00'),
(17899,'notes','2881','error','Deal not found: 2020',NULL,'2025-11-14 00:17:00'),
(17900,'notes','2882','error','Deal not found: 2021',NULL,'2025-11-14 00:17:00'),
(17901,'notes','2883','error','Deal not found: 2022',NULL,'2025-11-14 00:17:00'),
(17902,'notes','2884','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17903,'notes','2885','error','Deal not found: 2024',NULL,'2025-11-14 00:17:00'),
(17904,'notes','2886','error','Deal not found: 2025',NULL,'2025-11-14 00:17:00'),
(17905,'notes','2887','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17906,'notes','2888','error','Deal not found: 2027',NULL,'2025-11-14 00:17:00'),
(17907,'notes','2889','error','Deal not found: 1997',NULL,'2025-11-14 00:17:00'),
(17908,'notes','2891','error','Deal not found: 2028',NULL,'2025-11-14 00:17:00'),
(17909,'notes','2892','error','Deal not found: 2029',NULL,'2025-11-14 00:17:00'),
(17910,'notes','2893','error','Deal not found: 2030',NULL,'2025-11-14 00:17:00'),
(17911,'notes','2894','error','Deal not found: 2031',NULL,'2025-11-14 00:17:00'),
(17912,'notes','2895','error','Deal not found: 2032',NULL,'2025-11-14 00:17:00'),
(17913,'notes','2896','error','Deal not found: 2033',NULL,'2025-11-14 00:17:00'),
(17914,'notes','2897','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17915,'notes','2898','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17916,'notes','2899','error','Deal not found: 2036',NULL,'2025-11-14 00:17:00'),
(17917,'notes','2900','error','Deal not found: 2037',NULL,'2025-11-14 00:17:00'),
(17918,'notes','2901','error','Deal not found: 2038',NULL,'2025-11-14 00:17:00'),
(17919,'notes','2902','error','Deal not found: 2039',NULL,'2025-11-14 00:17:00'),
(17920,'notes','2903','error','Deal not found: 2040',NULL,'2025-11-14 00:17:00'),
(17921,'notes','2904','error','Deal not found: 2041',NULL,'2025-11-14 00:17:00'),
(17922,'notes','2905','error','Deal not found: 2042',NULL,'2025-11-14 00:17:00'),
(17923,'notes','2907','error','Deal not found: 2044',NULL,'2025-11-14 00:17:00'),
(17924,'notes','2908','error','Deal not found: 2045',NULL,'2025-11-14 00:17:00'),
(17925,'notes','2909','error','Deal not found: 2046',NULL,'2025-11-14 00:17:00'),
(17926,'notes','2910','error','Deal not found: 2047',NULL,'2025-11-14 00:17:00'),
(17927,'notes','2911','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17928,'notes','2912','error','Deal not found: 2049',NULL,'2025-11-14 00:17:00'),
(17929,'notes','2913','error','Deal not found: 1988',NULL,'2025-11-14 00:17:00'),
(17930,'notes','2915','error','Deal not found: 2050',NULL,'2025-11-14 00:17:00'),
(17931,'notes','2916','error','Deal not found: 2051',NULL,'2025-11-14 00:17:00'),
(17932,'notes','2917','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17933,'notes','2918','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17934,'notes','2919','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17935,'notes','2920','error','Deal not found: 2052',NULL,'2025-11-14 00:17:00'),
(17936,'notes','2921','error','Deal not found: 2053',NULL,'2025-11-14 00:17:00'),
(17937,'notes','2922','error','Deal not found: 2054',NULL,'2025-11-14 00:17:00'),
(17938,'notes','2923','error','Deal not found: 2055',NULL,'2025-11-14 00:17:00'),
(17939,'notes','2924','error','Deal not found: 2056',NULL,'2025-11-14 00:17:00'),
(17940,'notes','2925','error','Deal not found: 2057',NULL,'2025-11-14 00:17:00'),
(17941,'notes','2926','error','Deal not found: 2058',NULL,'2025-11-14 00:17:00'),
(17942,'notes','2927','error','Deal not found: 2059',NULL,'2025-11-14 00:17:00'),
(17943,'notes','2928','error','Deal not found: 2060',NULL,'2025-11-14 00:17:00'),
(17944,'notes','2929','error','Deal not found: 2061',NULL,'2025-11-14 00:17:00'),
(17945,'notes','2930','error','Deal not found: 2062',NULL,'2025-11-14 00:17:00'),
(17946,'notes','2931','error','Deal not found: 2063',NULL,'2025-11-14 00:17:00'),
(17947,'notes','2932','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17948,'notes','2933','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17949,'notes','2934','error','Deal not found: 2064',NULL,'2025-11-14 00:17:00'),
(17950,'notes','2935','error','Deal not found: 2065',NULL,'2025-11-14 00:17:00'),
(17951,'notes','2936','error','Deal not found: 2066',NULL,'2025-11-14 00:17:00'),
(17952,'notes','2937','error','Deal not found: 2067',NULL,'2025-11-14 00:17:00'),
(17953,'notes','2938','error','Deal not found: 2068',NULL,'2025-11-14 00:17:00'),
(17954,'notes','2939','error','Deal not found: 2069',NULL,'2025-11-14 00:17:00'),
(17955,'notes','2940','error','Deal not found: 2070',NULL,'2025-11-14 00:17:00'),
(17956,'notes','2941','error','Deal not found: 2071',NULL,'2025-11-14 00:17:00'),
(17957,'notes','2942','error','Deal not found: 2072',NULL,'2025-11-14 00:17:00'),
(17958,'notes','2943','error','Deal not found: 2073',NULL,'2025-11-14 00:17:00'),
(17959,'notes','2944','error','Deal not found: 2074',NULL,'2025-11-14 00:17:00'),
(17960,'notes','2945','error','Deal not found: 2075',NULL,'2025-11-14 00:17:00'),
(17961,'notes','2946','error','Deal not found: 2076',NULL,'2025-11-14 00:17:00'),
(17962,'notes','2947','error','Deal not found: 2077',NULL,'2025-11-14 00:17:00'),
(17963,'notes','2948','error','Deal not found: 2078',NULL,'2025-11-14 00:17:00'),
(17964,'notes','2949','error','Deal not found: 2079',NULL,'2025-11-14 00:17:00'),
(17965,'notes','2950','error','Deal not found: 2080',NULL,'2025-11-14 00:17:00'),
(17966,'notes','2951','error','Deal not found: 2081',NULL,'2025-11-14 00:17:00'),
(17967,'notes','2952','error','Deal not found: 2082',NULL,'2025-11-14 00:17:00'),
(17968,'notes','2953','error','Deal not found: 2083',NULL,'2025-11-14 00:17:00'),
(17969,'notes','2954','error','Deal not found: 2084',NULL,'2025-11-14 00:17:00'),
(17970,'notes','2955','error','Deal not found: 2085',NULL,'2025-11-14 00:17:00'),
(17971,'notes','2956','error','Deal not found: 2086',NULL,'2025-11-14 00:17:00'),
(17972,'notes','2957','error','Deal not found: 2087',NULL,'2025-11-14 00:17:00'),
(17973,'notes','2958','error','Deal not found: 2088',NULL,'2025-11-14 00:17:00'),
(17974,'notes','2959','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17975,'notes','2960','error','Deal not found: 2089',NULL,'2025-11-14 00:17:00'),
(17976,'notes','2961','error','Deal not found: 2090',NULL,'2025-11-14 00:17:00'),
(17977,'notes','2962','error','Deal not found: 2091',NULL,'2025-11-14 00:17:00'),
(17978,'notes','2963','error','Deal not found: 2092',NULL,'2025-11-14 00:17:00'),
(17979,'notes','2964','error','Deal not found: 2093',NULL,'2025-11-14 00:17:00'),
(17980,'notes','2965','error','Deal not found: 2094',NULL,'2025-11-14 00:17:00'),
(17981,'notes','2966','error','Deal not found: 2095',NULL,'2025-11-14 00:17:00'),
(17982,'notes','2967','error','Deal not found: 2096',NULL,'2025-11-14 00:17:00'),
(17983,'notes','2968','error','Deal not found: 2097',NULL,'2025-11-14 00:17:00'),
(17984,'notes','2969','error','Deal not found: 2098',NULL,'2025-11-14 00:17:00'),
(17985,'notes','2970','error','Deal not found: 2099',NULL,'2025-11-14 00:17:00'),
(17986,'notes','2971','error','Deal not found: 2100',NULL,'2025-11-14 00:17:00'),
(17987,'notes','2972','error','Deal not found: 2101',NULL,'2025-11-14 00:17:00'),
(17988,'notes','2973','error','Deal not found: 2102',NULL,'2025-11-14 00:17:00'),
(17989,'notes','2974','error','Deal not found: 2103',NULL,'2025-11-14 00:17:00'),
(17990,'notes','2975','error','Deal not found: 2104',NULL,'2025-11-14 00:17:00'),
(17991,'notes','2976','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(17992,'notes','2977','error','Deal not found: 2106',NULL,'2025-11-14 00:17:00'),
(17993,'notes','2978','error','Deal not found: 2107',NULL,'2025-11-14 00:17:00'),
(17994,'notes','2979','error','Deal not found: 2108',NULL,'2025-11-14 00:17:00'),
(17995,'notes','2980','error','Deal not found: 2109',NULL,'2025-11-14 00:17:00'),
(17996,'notes','2981','error','Deal not found: 2110',NULL,'2025-11-14 00:17:00'),
(17997,'notes','2982','error','Deal not found: 2111',NULL,'2025-11-14 00:17:00'),
(17998,'notes','2983','error','Deal not found: 2112',NULL,'2025-11-14 00:17:00'),
(17999,'notes','2984','error','Deal not found: 2113',NULL,'2025-11-14 00:17:00'),
(18000,'notes','2985','error','Deal not found: 2114',NULL,'2025-11-14 00:17:00'),
(18001,'notes','2986','error','Deal not found: 2115',NULL,'2025-11-14 00:17:00'),
(18002,'notes','2987','error','Deal not found: 2116',NULL,'2025-11-14 00:17:00'),
(18003,'notes','2988','error','Deal not found: 2117',NULL,'2025-11-14 00:17:00'),
(18004,'notes','2989','error','Deal not found: 2043',NULL,'2025-11-14 00:17:00'),
(18005,'notes','2990','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18006,'notes','2991','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18007,'notes','2992','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18008,'notes','2993','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18009,'notes','2994','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18010,'notes','2995','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18011,'notes','2996','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18012,'notes','2997','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18013,'notes','2998','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18014,'notes','2999','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18015,'notes','3000','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18016,'notes','3001','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18017,'notes','3002','error','Deal not found: 1955',NULL,'2025-11-14 00:17:00'),
(18018,'notes','3003','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18019,'notes','3004','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18020,'notes','3005','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18021,'notes','3006','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18022,'notes','3007','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18023,'notes','3008','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18024,'notes','3009','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18025,'notes','3010','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18026,'notes','3011','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18027,'notes','3012','error','Deal not found: 1997',NULL,'2025-11-14 00:17:00'),
(18028,'notes','3013','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18029,'notes','3014','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18030,'notes','3015','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18031,'notes','3016','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18032,'notes','3017','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18033,'notes','3018','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18034,'notes','3019','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18035,'notes','3020','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18036,'notes','3021','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18037,'notes','3022','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18038,'notes','3023','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18039,'notes','3024','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18040,'notes','3025','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18041,'notes','3026','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18042,'notes','3027','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18043,'notes','3028','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18044,'notes','3029','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18045,'notes','3030','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18046,'notes','3031','error','Deal not found: 2131',NULL,'2025-11-14 00:17:00'),
(18047,'notes','3032','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18048,'notes','3033','error','Deal not found: 2133',NULL,'2025-11-14 00:17:00'),
(18049,'notes','3034','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18050,'notes','3035','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18051,'notes','3036','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18052,'notes','3037','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18053,'notes','3038','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18054,'notes','3039','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18055,'notes','3040','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18056,'notes','3041','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18057,'notes','3042','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18058,'notes','3043','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18059,'notes','3044','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18060,'notes','3045','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18061,'notes','3046','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18062,'notes','3047','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18063,'notes','3048','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18064,'notes','3049','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18065,'notes','3050','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18066,'notes','3051','error','Deal not found: 1951',NULL,'2025-11-14 00:17:00'),
(18067,'notes','3052','error','Deal not found: 1970',NULL,'2025-11-14 00:17:00'),
(18068,'notes','3053','error','Deal not found: 1966',NULL,'2025-11-14 00:17:00'),
(18069,'notes','3054','error','Deal not found: 1943',NULL,'2025-11-14 00:17:00'),
(18070,'notes','3055','error','Deal not found: 1997',NULL,'2025-11-14 00:17:00'),
(18071,'notes','3056','error','Deal not found: 1997',NULL,'2025-11-14 00:17:00'),
(18072,'notes','3057','error','Deal not found: 2000',NULL,'2025-11-14 00:17:00'),
(18073,'notes','3058','error','Deal not found: 2000',NULL,'2025-11-14 00:17:00'),
(18074,'notes','3059','error','Deal not found: 2131',NULL,'2025-11-14 00:17:00'),
(18075,'notes','3060','error','Deal not found: 2131',NULL,'2025-11-14 00:17:00'),
(18076,'notes','3061','error','Deal not found: 1952',NULL,'2025-11-14 00:17:00'),
(18077,'notes','3062','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18078,'notes','3063','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18079,'notes','3064','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18080,'notes','3065','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18081,'notes','3066','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18082,'notes','3067','error','Deal not found: 2141',NULL,'2025-11-14 00:17:00'),
(18083,'notes','3068','error','Deal not found: 2140',NULL,'2025-11-14 00:17:00'),
(18084,'notes','3069','error','Deal not found: 2145',NULL,'2025-11-14 00:17:00'),
(18085,'notes','3070','error','Deal not found: 2147',NULL,'2025-11-14 00:17:00'),
(18086,'notes','3071','error','Deal not found: 2150',NULL,'2025-11-14 00:17:00'),
(18087,'notes','3072','error','Deal not found: 2141',NULL,'2025-11-14 00:17:00'),
(18088,'notes','3073','error','Deal not found: 2127',NULL,'2025-11-14 00:17:00'),
(18089,'notes','3074','error','Deal not found: 2147',NULL,'2025-11-14 00:17:00'),
(18090,'notes','3075','error','Deal not found: 2151',NULL,'2025-11-14 00:17:00'),
(18091,'notes','3076','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18092,'notes','3077','error','Deal not found: 2152',NULL,'2025-11-14 00:17:00'),
(18093,'notes','3078','error','Deal not found: 2150',NULL,'2025-11-14 00:17:00'),
(18094,'notes','3079','error','Deal not found: 2156',NULL,'2025-11-14 00:17:00'),
(18095,'notes','3080','error','Deal not found: 2156',NULL,'2025-11-14 00:17:00'),
(18096,'notes','3081','error','Deal not found: 2159',NULL,'2025-11-14 00:17:00'),
(18097,'notes','3082','error','Deal not found: 2159',NULL,'2025-11-14 00:17:00'),
(18098,'notes','3083','error','Deal not found: 2160',NULL,'2025-11-14 00:17:00'),
(18099,'notes','3084','error','Deal not found: 2160',NULL,'2025-11-14 00:17:00'),
(18100,'notes','3085','error','Deal not found: 2160',NULL,'2025-11-14 00:17:00'),
(18101,'notes','3086','error','Deal not found: 2147',NULL,'2025-11-14 00:17:00'),
(18102,'notes','3087','error','Deal not found: 2140',NULL,'2025-11-14 00:17:00'),
(18103,'notes','3088','error','Deal not found: 2169',NULL,'2025-11-14 00:17:00'),
(18104,'notes','3089','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18105,'notes','3090','error','Deal not found: 1773',NULL,'2025-11-14 00:17:00'),
(18106,'notes','3091','skipped','No deal associated',NULL,'2025-11-14 00:17:00'),
(18107,'files','4171','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18108,'files','15076','error','Deal not found: 7',NULL,'2025-11-14 00:17:02'),
(18109,'files','15077','error','Deal not found: 7',NULL,'2025-11-14 00:17:02'),
(18110,'files','15133','error','Deal not found: 4',NULL,'2025-11-14 00:17:02'),
(18111,'files','15195','error','Deal not found: 12',NULL,'2025-11-14 00:17:02'),
(18112,'files','15196','error','Deal not found: 12',NULL,'2025-11-14 00:17:02'),
(18113,'files','15197','error','Deal not found: 12',NULL,'2025-11-14 00:17:02'),
(18114,'files','15313','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18115,'files','15314','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18116,'files','15315','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18117,'files','15316','error','Deal not found: 14',NULL,'2025-11-14 00:17:02'),
(18118,'files','15393','error','Deal not found: 15',NULL,'2025-11-14 00:17:02'),
(18119,'files','15394','error','Deal not found: 15',NULL,'2025-11-14 00:17:02'),
(18120,'files','15395','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18121,'files','15396','error','Deal not found: 17',NULL,'2025-11-14 00:17:02'),
(18122,'files','15397','error','Deal not found: 17',NULL,'2025-11-14 00:17:02'),
(18123,'files','15398','error','Deal not found: 17',NULL,'2025-11-14 00:17:02'),
(18124,'files','15399','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18125,'files','15400','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18126,'files','15401','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18127,'files','15884','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18128,'files','15885','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18129,'files','15886','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18130,'files','15887','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18131,'files','15888','error','Deal not found: 19',NULL,'2025-11-14 00:17:02'),
(18132,'files','15889','error','Deal not found: 19',NULL,'2025-11-14 00:17:02'),
(18133,'files','15890','error','Deal not found: 19',NULL,'2025-11-14 00:17:02'),
(18134,'files','15891','error','Deal not found: 19',NULL,'2025-11-14 00:17:02'),
(18135,'files','15892','error','Deal not found: 19',NULL,'2025-11-14 00:17:02'),
(18136,'files','15893','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18137,'files','15894','error','Deal not found: 21',NULL,'2025-11-14 00:17:02'),
(18138,'files','15895','error','Deal not found: 21',NULL,'2025-11-14 00:17:02'),
(18139,'files','15899','error','Deal not found: 22',NULL,'2025-11-14 00:17:02'),
(18140,'files','15922','error','Deal not found: 23',NULL,'2025-11-14 00:17:02'),
(18141,'files','15923','error','Deal not found: 23',NULL,'2025-11-14 00:17:02'),
(18142,'files','16851','error','Deal not found: 33',NULL,'2025-11-14 00:17:02'),
(18143,'files','16852','error','Deal not found: 33',NULL,'2025-11-14 00:17:02'),
(18144,'files','16853','error','Deal not found: 33',NULL,'2025-11-14 00:17:02'),
(18145,'files','16854','error','Deal not found: 53',NULL,'2025-11-14 00:17:02'),
(18146,'files','16855','error','Deal not found: 53',NULL,'2025-11-14 00:17:02'),
(18147,'files','16856','error','Deal not found: 52',NULL,'2025-11-14 00:17:02'),
(18148,'files','16857','error','Deal not found: 52',NULL,'2025-11-14 00:17:02'),
(18149,'files','16858','error','Deal not found: 52',NULL,'2025-11-14 00:17:02'),
(18150,'files','16859','error','Deal not found: 1724',NULL,'2025-11-14 00:17:02'),
(18151,'files','16982','error','Deal not found: 50',NULL,'2025-11-14 00:17:02'),
(18152,'files','16983','error','Deal not found: 50',NULL,'2025-11-14 00:17:02'),
(18153,'files','16984','error','Deal not found: 50',NULL,'2025-11-14 00:17:02'),
(18154,'files','18605','error','Deal not found: 55',NULL,'2025-11-14 00:17:02'),
(18155,'files','18606','error','Deal not found: 55',NULL,'2025-11-14 00:17:02'),
(18156,'files','18607','error','Deal not found: 55',NULL,'2025-11-14 00:17:02'),
(18157,'files','21448','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18158,'files','21449','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18159,'files','21450','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18160,'files','21451','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18161,'files','21452','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18162,'files','21453','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18163,'files','21454','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18164,'files','21455','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18165,'files','21456','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18166,'files','21457','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18167,'files','21459','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18168,'files','21460','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18169,'files','21461','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18170,'files','21462','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18171,'files','21463','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18172,'files','21464','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18173,'files','21465','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18174,'files','21466','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18175,'files','21467','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18176,'files','21468','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18177,'files','21469','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18178,'files','21472','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18179,'files','21473','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18180,'files','21474','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18181,'files','21475','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18182,'files','21476','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18183,'files','21477','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18184,'files','21478','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18185,'files','21479','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18186,'files','21480','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18187,'files','21481','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18188,'files','21482','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18189,'files','21483','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18190,'files','21484','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18191,'files','21485','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18192,'files','21486','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18193,'files','21487','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18194,'files','21488','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18195,'files','21489','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18196,'files','21490','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18197,'files','21491','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18198,'files','21492','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18199,'files','21494','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18200,'files','21495','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18201,'files','21496','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18202,'files','21497','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18203,'files','21498','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18204,'files','21499','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18205,'files','21500','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18206,'files','21501','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18207,'files','21502','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18208,'files','21503','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18209,'files','21504','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18210,'files','21505','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18211,'files','21506','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18212,'files','21507','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18213,'files','21508','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18214,'files','21509','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18215,'files','21510','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18216,'files','21511','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18217,'files','21512','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18218,'files','21513','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18219,'files','21514','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18220,'files','21515','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18221,'files','21516','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18222,'files','21517','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18223,'files','21518','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18224,'files','21519','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18225,'files','21520','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18226,'files','21521','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18227,'files','21522','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18228,'files','21523','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18229,'files','21524','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18230,'files','21525','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18231,'files','21526','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18232,'files','21527','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18233,'files','21528','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18234,'files','21529','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18235,'files','21530','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18236,'files','21531','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18237,'files','21532','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18238,'files','21533','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18239,'files','21534','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18240,'files','21535','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18241,'files','21536','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18242,'files','21537','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18243,'files','21538','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18244,'files','21539','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18245,'files','21540','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18246,'files','21541','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18247,'files','21542','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18248,'files','21543','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18249,'files','21544','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18250,'files','21545','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18251,'files','21546','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18252,'files','21547','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18253,'files','21548','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18254,'files','21549','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18255,'files','21550','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18256,'files','21551','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18257,'files','21552','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18258,'files','21553','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18259,'files','21555','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18260,'files','21556','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18261,'files','21557','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18262,'files','21558','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18263,'files','21559','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18264,'files','21560','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18265,'files','21561','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18266,'files','21562','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18267,'files','21563','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18268,'files','21564','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18269,'files','21565','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18270,'files','21566','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18271,'files','21567','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18272,'files','21568','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18273,'files','21569','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18274,'files','21570','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18275,'files','21571','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18276,'files','21574','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18277,'files','21575','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18278,'files','21577','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18279,'files','21578','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18280,'files','21579','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18281,'files','21580','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18282,'files','21581','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18283,'files','21582','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18284,'files','21583','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18285,'files','21584','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18286,'files','21585','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18287,'files','21586','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18288,'files','21587','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18289,'files','21588','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18290,'files','21589','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18291,'files','21590','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18292,'files','21591','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18293,'files','21592','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18294,'files','21593','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18295,'files','21594','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18296,'files','21595','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18297,'files','21596','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18298,'files','21597','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18299,'files','21598','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18300,'files','21599','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18301,'files','21601','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18302,'files','21602','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18303,'files','21603','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18304,'files','21604','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18305,'files','21605','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18306,'files','21606','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18307,'files','21607','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18308,'files','21608','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18309,'files','21609','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18310,'files','21610','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18311,'files','21611','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18312,'files','21612','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18313,'files','21613','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18314,'files','21614','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18315,'files','21615','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18316,'files','21616','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18317,'files','21617','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18318,'files','21618','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18319,'files','21619','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18320,'files','21620','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18321,'files','21621','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18322,'files','21622','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18323,'files','21623','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18324,'files','21624','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18325,'files','21625','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18326,'files','21626','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18327,'files','21627','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18328,'files','21628','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18329,'files','21629','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18330,'files','21630','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18331,'files','21631','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18332,'files','21632','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18333,'files','21633','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18334,'files','21636','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18335,'files','21637','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18336,'files','21638','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18337,'files','21639','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18338,'files','21640','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18339,'files','21641','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18340,'files','21642','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18341,'files','21643','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18342,'files','21644','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18343,'files','21645','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18344,'files','21646','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18345,'files','21647','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18346,'files','21648','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18347,'files','21649','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18348,'files','21650','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18349,'files','21651','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18350,'files','21652','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18351,'files','21653','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18352,'files','21654','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18353,'files','21655','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18354,'files','21656','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18355,'files','21657','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18356,'files','21658','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18357,'files','21659','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18358,'files','21660','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18359,'files','21661','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18360,'files','21662','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18361,'files','21663','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18362,'files','21664','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18363,'files','21665','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18364,'files','21666','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18365,'files','21667','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18366,'files','21668','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18367,'files','21669','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18368,'files','21670','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18369,'files','21671','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18370,'files','21672','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18371,'files','21673','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18372,'files','21674','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18373,'files','21675','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18374,'files','21676','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18375,'files','21677','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18376,'files','21678','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18377,'files','21679','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18378,'files','21680','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18379,'files','21682','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18380,'files','21683','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18381,'files','21684','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18382,'files','21685','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18383,'files','21686','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18384,'files','21687','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18385,'files','21688','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18386,'files','21689','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18387,'files','21690','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18388,'files','21691','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18389,'files','21692','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18390,'files','21693','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18391,'files','21694','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18392,'files','21695','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18393,'files','21696','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18394,'files','21697','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18395,'files','21698','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18396,'files','21699','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18397,'files','21700','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18398,'files','21701','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18399,'files','21702','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18400,'files','21703','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18401,'files','21704','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18402,'files','21705','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18403,'files','21706','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18404,'files','21707','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18405,'files','21708','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18406,'files','21709','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18407,'files','21710','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18408,'files','21712','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18409,'files','21713','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18410,'files','21714','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18411,'files','21715','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18412,'files','21716','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18413,'files','21717','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18414,'files','21719','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18415,'files','21720','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18416,'files','21721','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18417,'files','21722','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18418,'files','21723','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18419,'files','21724','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18420,'files','21725','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18421,'files','21726','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18422,'files','21727','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18423,'files','21728','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18424,'files','21729','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18425,'files','21730','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18426,'files','21731','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18427,'files','21732','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18428,'files','21733','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18429,'files','21734','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18430,'files','21735','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18431,'files','21736','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18432,'files','21737','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18433,'files','21738','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18434,'files','21739','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18435,'files','21740','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18436,'files','21741','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18437,'files','21742','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18438,'files','21743','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18439,'files','21744','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18440,'files','21745','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18441,'files','21746','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18442,'files','21747','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18443,'files','21748','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18444,'files','21749','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18445,'files','21750','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18446,'files','21751','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18447,'files','21752','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18448,'files','21753','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18449,'files','21754','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18450,'files','21755','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18451,'files','21756','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18452,'files','21757','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18453,'files','21758','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18454,'files','21759','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18455,'files','21760','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18456,'files','21761','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18457,'files','21762','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18458,'files','21763','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18459,'files','21764','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18460,'files','21765','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18461,'files','21766','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18462,'files','21767','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18463,'files','21768','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18464,'files','21769','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18465,'files','21770','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18466,'files','21771','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18467,'files','21772','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18468,'files','21773','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18469,'files','21774','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18470,'files','21775','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18471,'files','21776','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18472,'files','21777','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18473,'files','21778','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18474,'files','21779','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18475,'files','21780','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18476,'files','21781','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18477,'files','21782','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18478,'files','21783','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18479,'files','21784','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18480,'files','21785','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18481,'files','21786','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18482,'files','21787','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18483,'files','21788','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18484,'files','21789','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18485,'files','21790','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18486,'files','21791','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18487,'files','21792','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18488,'files','21793','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18489,'files','21794','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18490,'files','21795','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18491,'files','21796','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18492,'files','21797','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18493,'files','21798','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18494,'files','21799','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18495,'files','21800','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18496,'files','21801','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18497,'files','21802','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18498,'files','21803','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18499,'files','21804','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18500,'files','21805','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18501,'files','21806','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18502,'files','21807','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18503,'files','21808','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18504,'files','21809','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18505,'files','21810','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18506,'files','21811','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18507,'files','21812','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18508,'files','21813','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18509,'files','21814','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18510,'files','21815','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18511,'files','21816','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18512,'files','21817','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18513,'files','21818','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18514,'files','21819','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18515,'files','21820','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18516,'files','21821','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18517,'files','21822','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18518,'files','21823','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18519,'files','21824','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18520,'files','21825','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18521,'files','21826','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18522,'files','21827','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18523,'files','21828','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18524,'files','21829','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18525,'files','21830','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18526,'files','21831','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18527,'files','21832','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18528,'files','21833','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18529,'files','21834','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18530,'files','21835','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18531,'files','21836','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18532,'files','21837','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18533,'files','21838','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18534,'files','21839','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18535,'files','21840','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18536,'files','21841','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18537,'files','21842','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18538,'files','21843','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18539,'files','21844','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18540,'files','21845','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18541,'files','21846','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18542,'files','21847','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18543,'files','21848','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18544,'files','21849','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18545,'files','21850','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18546,'files','21851','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18547,'files','21852','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18548,'files','21853','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18549,'files','21854','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18550,'files','21855','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18551,'files','21856','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18552,'files','21857','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18553,'files','21858','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18554,'files','21859','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18555,'files','21860','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18556,'files','21861','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18557,'files','21862','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18558,'files','21863','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18559,'files','21864','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18560,'files','21865','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18561,'files','21866','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18562,'files','21867','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18563,'files','21868','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18564,'files','21869','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18565,'files','21870','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18566,'files','21871','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18567,'files','21872','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18568,'files','21873','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18569,'files','21874','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18570,'files','21875','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18571,'files','21876','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18572,'files','21877','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18573,'files','21878','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18574,'files','21879','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18575,'files','21880','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18576,'files','21881','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18577,'files','21882','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18578,'files','21883','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18579,'files','21884','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18580,'files','21885','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18581,'files','21886','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18582,'files','21887','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18583,'files','21888','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18584,'files','21889','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18585,'files','21890','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18586,'files','21891','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18587,'files','21892','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18588,'files','21893','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18589,'files','21894','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18590,'files','21895','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18591,'files','21896','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18592,'files','21897','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18593,'files','21898','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18594,'files','21899','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18595,'files','21900','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18596,'files','21901','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18597,'files','21902','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18598,'files','21903','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18599,'files','21904','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18600,'files','21905','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18601,'files','21906','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18602,'files','21907','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18603,'files','21908','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18604,'files','21909','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18605,'files','21910','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18606,'files','21911','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18607,'files','21912','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18608,'files','21913','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18609,'files','21914','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18610,'files','21915','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18611,'files','21916','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18612,'files','21917','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18613,'files','21918','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18614,'files','21919','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18615,'files','21920','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18616,'files','21921','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18617,'files','21922','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18618,'files','21923','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18619,'files','21924','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18620,'files','21925','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18621,'files','21926','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18622,'files','21927','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18623,'files','21928','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18624,'files','21929','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18625,'files','21930','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18626,'files','21931','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18627,'files','21932','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18628,'files','21933','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18629,'files','21934','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18630,'files','21935','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18631,'files','21936','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18632,'files','21937','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18633,'files','21938','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18634,'files','21939','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18635,'files','21940','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18636,'files','21941','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18637,'files','21942','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18638,'files','21943','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18639,'files','21944','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18640,'files','21945','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18641,'files','21946','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18642,'files','21947','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18643,'files','21948','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18644,'files','21949','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18645,'files','21950','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18646,'files','21951','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18647,'files','21952','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18648,'files','21953','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18649,'files','21954','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18650,'files','21956','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18651,'files','21957','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18652,'files','21958','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18653,'files','21959','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18654,'files','21960','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18655,'files','21961','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18656,'files','21962','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18657,'files','21963','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18658,'files','21964','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18659,'files','21965','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18660,'files','21966','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18661,'files','21967','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18662,'files','21968','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18663,'files','21969','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18664,'files','21970','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18665,'files','21971','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18666,'files','21972','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18667,'files','21973','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18668,'files','21974','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18669,'files','21975','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18670,'files','21976','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18671,'files','21977','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18672,'files','21978','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18673,'files','21979','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18674,'files','21980','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18675,'files','21981','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18676,'files','21982','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18677,'files','21983','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18678,'files','21984','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18679,'files','21985','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18680,'files','21986','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18681,'files','21987','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18682,'files','21988','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18683,'files','21989','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18684,'files','21990','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18685,'files','21991','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18686,'files','21992','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18687,'files','21993','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18688,'files','21994','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18689,'files','21995','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18690,'files','21996','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18691,'files','21997','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18692,'files','21998','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18693,'files','21999','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18694,'files','22000','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18695,'files','22001','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18696,'files','22002','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18697,'files','22003','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18698,'files','22004','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18699,'files','22005','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18700,'files','22006','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18701,'files','22007','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18702,'files','22008','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18703,'files','22009','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18704,'files','22010','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18705,'files','22011','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18706,'files','22012','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18707,'files','22013','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18708,'files','22014','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18709,'files','22015','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18710,'files','22016','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18711,'files','22017','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18712,'files','22018','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18713,'files','22019','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18714,'files','22020','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18715,'files','22021','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18716,'files','22022','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18717,'files','22023','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18718,'files','22024','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18719,'files','22025','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18720,'files','22026','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18721,'files','22027','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18722,'files','22028','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18723,'files','22029','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18724,'files','22030','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18725,'files','22031','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18726,'files','22032','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18727,'files','22033','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18728,'files','22034','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18729,'files','22035','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18730,'files','22036','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18731,'files','22037','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18732,'files','22038','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18733,'files','22039','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18734,'files','22040','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18735,'files','22041','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18736,'files','22042','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18737,'files','22043','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18738,'files','22044','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18739,'files','22045','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18740,'files','22046','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18741,'files','22047','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18742,'files','22048','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18743,'files','22049','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18744,'files','22050','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18745,'files','22051','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18746,'files','22052','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18747,'files','22053','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18748,'files','22054','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18749,'files','22055','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18750,'files','22056','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18751,'files','22057','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18752,'files','22058','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18753,'files','22059','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18754,'files','22060','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18755,'files','22061','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18756,'files','22062','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18757,'files','22063','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18758,'files','22064','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18759,'files','22065','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18760,'files','22066','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18761,'files','22067','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18762,'files','22068','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18763,'files','22069','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18764,'files','22070','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18765,'files','22071','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18766,'files','22072','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18767,'files','22073','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18768,'files','22074','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18769,'files','22075','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18770,'files','22076','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18771,'files','22077','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18772,'files','22078','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18773,'files','22079','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18774,'files','22080','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18775,'files','22081','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18776,'files','22082','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18777,'files','22083','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18778,'files','22084','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18779,'files','22085','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18780,'files','22086','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18781,'files','22087','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18782,'files','22088','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18783,'files','22089','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18784,'files','22090','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18785,'files','22091','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18786,'files','22092','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18787,'files','22093','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18788,'files','22094','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18789,'files','22095','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18790,'files','22096','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18791,'files','22097','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18792,'files','22098','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18793,'files','22099','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18794,'files','22100','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18795,'files','22101','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18796,'files','22102','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18797,'files','22103','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18798,'files','22104','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18799,'files','22105','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18800,'files','22106','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18801,'files','22107','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18802,'files','22108','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18803,'files','22109','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18804,'files','22110','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18805,'files','22111','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18806,'files','22112','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18807,'files','22113','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18808,'files','22114','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18809,'files','22116','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18810,'files','22117','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18811,'files','22118','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18812,'files','22119','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18813,'files','22120','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18814,'files','22121','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18815,'files','22122','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18816,'files','22123','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18817,'files','22124','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18818,'files','22125','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18819,'files','22126','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18820,'files','22127','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18821,'files','22128','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18822,'files','22129','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18823,'files','22130','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18824,'files','22132','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18825,'files','22133','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18826,'files','22134','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18827,'files','22135','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18828,'files','22136','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18829,'files','22137','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18830,'files','22138','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18831,'files','22139','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18832,'files','22140','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18833,'files','22141','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18834,'files','22142','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18835,'files','22143','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18836,'files','22144','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18837,'files','22145','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18838,'files','22146','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18839,'files','22147','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18840,'files','22148','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18841,'files','22149','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18842,'files','22150','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18843,'files','22151','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18844,'files','22152','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18845,'files','22153','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18846,'files','22154','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18847,'files','22155','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18848,'files','22156','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18849,'files','22157','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18850,'files','22158','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18851,'files','22159','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18852,'files','22160','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18853,'files','22161','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18854,'files','22162','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18855,'files','22163','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18856,'files','22164','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18857,'files','22165','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18858,'files','22166','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18859,'files','22167','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18860,'files','22168','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18861,'files','22169','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18862,'files','22170','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18863,'files','22171','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18864,'files','22172','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18865,'files','22173','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18866,'files','22174','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18867,'files','22175','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18868,'files','22176','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18869,'files','22177','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18870,'files','22178','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18871,'files','22179','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18872,'files','22180','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18873,'files','22181','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18874,'files','22182','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18875,'files','22183','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18876,'files','22184','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18877,'files','22185','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18878,'files','22186','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18879,'files','22187','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18880,'files','22188','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18881,'files','22189','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18882,'files','22190','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18883,'files','22191','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18884,'files','22192','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18885,'files','22193','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18886,'files','22194','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18887,'files','22195','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18888,'files','22196','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18889,'files','22197','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18890,'files','22198','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18891,'files','22199','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18892,'files','22200','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18893,'files','22201','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18894,'files','22202','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18895,'files','22203','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18896,'files','22204','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18897,'files','22205','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18898,'files','22206','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18899,'files','22207','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18900,'files','22208','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18901,'files','22209','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18902,'files','22210','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18903,'files','22211','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18904,'files','22212','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18905,'files','22213','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18906,'files','22214','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18907,'files','22215','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18908,'files','22216','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18909,'files','22217','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18910,'files','22218','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18911,'files','22219','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18912,'files','22220','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18913,'files','22221','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18914,'files','22222','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18915,'files','22223','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18916,'files','22224','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18917,'files','22225','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18918,'files','22226','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18919,'files','22227','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18920,'files','22228','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18921,'files','22229','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18922,'files','22230','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18923,'files','22231','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18924,'files','22232','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18925,'files','22233','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18926,'files','22234','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18927,'files','22235','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18928,'files','22236','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18929,'files','22238','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18930,'files','22239','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18931,'files','22240','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18932,'files','22241','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18933,'files','22242','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18934,'files','22243','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18935,'files','22244','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18936,'files','22245','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18937,'files','22246','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18938,'files','22247','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18939,'files','22248','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18940,'files','22249','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18941,'files','22250','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18942,'files','22251','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18943,'files','22252','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18944,'files','22253','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18945,'files','22254','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18946,'files','22255','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18947,'files','22256','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18948,'files','22257','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18949,'files','22258','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18950,'files','22259','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18951,'files','22260','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18952,'files','22261','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18953,'files','22262','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18954,'files','22263','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18955,'files','22264','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18956,'files','22265','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18957,'files','22266','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18958,'files','22267','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18959,'files','22268','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18960,'files','22269','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18961,'files','22270','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18962,'files','22271','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18963,'files','22272','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18964,'files','22273','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18965,'files','22274','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18966,'files','22275','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18967,'files','22276','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18968,'files','22277','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18969,'files','22278','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18970,'files','22279','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18971,'files','22280','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18972,'files','22281','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18973,'files','22282','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18974,'files','22283','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18975,'files','22284','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18976,'files','22285','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18977,'files','22286','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18978,'files','22287','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18979,'files','22288','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18980,'files','22289','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18981,'files','22290','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18982,'files','22291','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18983,'files','22292','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18984,'files','22293','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18985,'files','22294','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18986,'files','22295','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18987,'files','22296','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18988,'files','22297','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18989,'files','22298','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18990,'files','22299','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18991,'files','22300','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18992,'files','22301','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18993,'files','22302','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18994,'files','22303','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18995,'files','22304','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18996,'files','22305','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18997,'files','22306','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18998,'files','22307','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(18999,'files','22308','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19000,'files','22309','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19001,'files','22310','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19002,'files','22311','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19003,'files','22312','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19004,'files','22313','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19005,'files','22314','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19006,'files','22315','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19007,'files','22316','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19008,'files','22317','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19009,'files','22318','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19010,'files','22319','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19011,'files','22320','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19012,'files','22321','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19013,'files','22322','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19014,'files','22323','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19015,'files','22324','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19016,'files','22325','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19017,'files','22326','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19018,'files','22327','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19019,'files','22328','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19020,'files','22329','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19021,'files','22330','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19022,'files','22331','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19023,'files','22332','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19024,'files','22333','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19025,'files','22334','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19026,'files','22335','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19027,'files','22336','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19028,'files','22337','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19029,'files','22338','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19030,'files','22339','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19031,'files','22340','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19032,'files','22341','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19033,'files','22342','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19034,'files','22343','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19035,'files','22344','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19036,'files','22345','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19037,'files','22346','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19038,'files','22347','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19039,'files','22348','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19040,'files','22349','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19041,'files','22350','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19042,'files','22351','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19043,'files','22352','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19044,'files','22353','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19045,'files','22354','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19046,'files','22355','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19047,'files','22356','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19048,'files','22357','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19049,'files','22358','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19050,'files','22359','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19051,'files','22360','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19052,'files','22361','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19053,'files','22362','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19054,'files','22363','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19055,'files','22364','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19056,'files','22365','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19057,'files','22366','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19058,'files','22367','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19059,'files','22368','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19060,'files','22369','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19061,'files','22370','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19062,'files','22371','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19063,'files','22372','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19064,'files','22373','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19065,'files','22374','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19066,'files','22375','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19067,'files','22376','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19068,'files','22377','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19069,'files','22378','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19070,'files','22379','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19071,'files','22380','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19072,'files','22381','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19073,'files','22382','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19074,'files','22383','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19075,'files','22384','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19076,'files','22385','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19077,'files','22386','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19078,'files','22387','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19079,'files','22388','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19080,'files','22389','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19081,'files','22390','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19082,'files','22391','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19083,'files','22392','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19084,'files','22393','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19085,'files','22394','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19086,'files','22395','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19087,'files','22396','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19088,'files','22397','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19089,'files','22398','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19090,'files','22399','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19091,'files','22400','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19092,'files','22401','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19093,'files','22402','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19094,'files','22403','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19095,'files','22404','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19096,'files','22405','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19097,'files','22406','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19098,'files','22407','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19099,'files','22408','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19100,'files','22409','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19101,'files','22410','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19102,'files','22411','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19103,'files','22412','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19104,'files','22413','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19105,'files','22414','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19106,'files','22415','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19107,'files','22416','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19108,'files','22417','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19109,'files','22418','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19110,'files','22419','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19111,'files','22420','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19112,'files','22421','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19113,'files','22422','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19114,'files','22423','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19115,'files','22424','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19116,'files','22425','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19117,'files','22426','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19118,'files','22427','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19119,'files','22428','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19120,'files','22429','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19121,'files','22430','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19122,'files','22431','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19123,'files','22432','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19124,'files','22433','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19125,'files','22434','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19126,'files','22435','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19127,'files','22436','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19128,'files','22437','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19129,'files','22438','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19130,'files','22439','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19131,'files','22440','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19132,'files','22441','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19133,'files','22442','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19134,'files','22443','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19135,'files','22444','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19136,'files','22445','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19137,'files','22446','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19138,'files','22447','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19139,'files','22448','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19140,'files','22449','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19141,'files','22450','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19142,'files','22451','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19143,'files','22452','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19144,'files','22453','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19145,'files','22454','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19146,'files','22455','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19147,'files','22456','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19148,'files','22457','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19149,'files','22458','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19150,'files','22459','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19151,'files','22460','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19152,'files','22461','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19153,'files','22462','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19154,'files','22463','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19155,'files','22464','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19156,'files','22465','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19157,'files','22466','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19158,'files','22467','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19159,'files','22468','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19160,'files','22469','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19161,'files','22470','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19162,'files','22471','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19163,'files','22472','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19164,'files','22473','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19165,'files','22474','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19166,'files','22475','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19167,'files','22476','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19168,'files','22477','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19169,'files','22478','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19170,'files','22479','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19171,'files','22480','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19172,'files','22481','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19173,'files','22482','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19174,'files','22483','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19175,'files','22484','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19176,'files','22485','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19177,'files','22486','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19178,'files','22487','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19179,'files','22488','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19180,'files','22489','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19181,'files','22490','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19182,'files','22491','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19183,'files','22492','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19184,'files','22493','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19185,'files','22494','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19186,'files','22495','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19187,'files','22496','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19188,'files','22497','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19189,'files','22498','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19190,'files','22499','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19191,'files','22500','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19192,'files','22501','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19193,'files','22502','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19194,'files','22503','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19195,'files','22504','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19196,'files','22505','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19197,'files','22506','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19198,'files','22507','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19199,'files','22508','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19200,'files','22509','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19201,'files','22510','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19202,'files','22511','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19203,'files','22512','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19204,'files','22513','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19205,'files','22514','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19206,'files','22515','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19207,'files','22516','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19208,'files','22517','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19209,'files','22518','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19210,'files','22519','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19211,'files','22520','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19212,'files','22521','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19213,'files','22522','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19214,'files','22523','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19215,'files','22524','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19216,'files','22525','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19217,'files','22526','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19218,'files','22528','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19219,'files','22530','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19220,'files','22531','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19221,'files','22532','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19222,'files','22533','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19223,'files','22534','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19224,'files','22535','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19225,'files','22536','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19226,'files','22537','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19227,'files','22538','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19228,'files','22539','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19229,'files','22540','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19230,'files','22541','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19231,'files','22542','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19232,'files','22543','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19233,'files','22544','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19234,'files','22545','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19235,'files','22546','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19236,'files','22547','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19237,'files','22548','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19238,'files','22549','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19239,'files','22550','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19240,'files','22551','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19241,'files','22552','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19242,'files','22553','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19243,'files','22554','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19244,'files','22555','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19245,'files','22556','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19246,'files','22557','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19247,'files','22558','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19248,'files','22559','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19249,'files','22560','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19250,'files','22561','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19251,'files','22562','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19252,'files','22563','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19253,'files','22564','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19254,'files','22565','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19255,'files','22566','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19256,'files','22567','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19257,'files','22568','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19258,'files','22569','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19259,'files','22570','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19260,'files','22571','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19261,'files','22572','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19262,'files','22573','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19263,'files','22574','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19264,'files','22575','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19265,'files','22576','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19266,'files','22577','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19267,'files','22578','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19268,'files','22579','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19269,'files','22580','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19270,'files','22581','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19271,'files','22582','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19272,'files','22583','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19273,'files','22584','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19274,'files','22585','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19275,'files','22586','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19276,'files','22587','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19277,'files','22588','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19278,'files','22589','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19279,'files','22590','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19280,'files','22591','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19281,'files','22592','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19282,'files','22593','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19283,'files','22594','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19284,'files','22595','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19285,'files','22596','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19286,'files','22597','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19287,'files','22598','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19288,'files','22599','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19289,'files','22600','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19290,'files','22601','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19291,'files','22602','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19292,'files','22603','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19293,'files','22604','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19294,'files','22605','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19295,'files','22606','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19296,'files','22607','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19297,'files','22608','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19298,'files','22609','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19299,'files','22610','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19300,'files','22611','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19301,'files','22612','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19302,'files','22613','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19303,'files','22614','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19304,'files','22615','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19305,'files','22616','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19306,'files','22617','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19307,'files','22618','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19308,'files','22619','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19309,'files','22620','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19310,'files','22621','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19311,'files','22622','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19312,'files','22623','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19313,'files','22624','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19314,'files','22625','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19315,'files','22626','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19316,'files','22627','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19317,'files','22629','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19318,'files','22630','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19319,'files','22631','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19320,'files','22632','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19321,'files','22633','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19322,'files','22634','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19323,'files','22635','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19324,'files','22636','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19325,'files','22637','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19326,'files','22638','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19327,'files','22639','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19328,'files','22640','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19329,'files','22641','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19330,'files','22642','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19331,'files','22643','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19332,'files','22644','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19333,'files','22645','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19334,'files','22646','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19335,'files','22647','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19336,'files','22648','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19337,'files','22649','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19338,'files','22650','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19339,'files','22651','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19340,'files','22652','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19341,'files','22653','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19342,'files','22654','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19343,'files','22655','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19344,'files','22656','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19345,'files','22657','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19346,'files','22658','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19347,'files','22659','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19348,'files','22660','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19349,'files','22661','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19350,'files','22662','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19351,'files','22663','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19352,'files','22664','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19353,'files','22665','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19354,'files','22666','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19355,'files','22667','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19356,'files','22668','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19357,'files','22669','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19358,'files','22670','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19359,'files','22671','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19360,'files','22672','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19361,'files','22673','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19362,'files','22674','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19363,'files','22675','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19364,'files','22676','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19365,'files','22677','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19366,'files','22678','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19367,'files','22679','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19368,'files','22680','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19369,'files','22681','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19370,'files','22682','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19371,'files','22683','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19372,'files','22684','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19373,'files','22685','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19374,'files','22686','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19375,'files','22687','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19376,'files','22688','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19377,'files','22689','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19378,'files','22690','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19379,'files','22691','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19380,'files','22692','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19381,'files','22693','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19382,'files','22694','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19383,'files','22695','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19384,'files','22696','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19385,'files','22697','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19386,'files','22698','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19387,'files','22699','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19388,'files','22700','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19389,'files','22701','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19390,'files','22702','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19391,'files','22703','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19392,'files','22704','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19393,'files','22705','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19394,'files','22706','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19395,'files','22707','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19396,'files','22708','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19397,'files','22709','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19398,'files','22710','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19399,'files','22711','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19400,'files','22712','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19401,'files','22713','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19402,'files','22714','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19403,'files','22715','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19404,'files','22716','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19405,'files','22717','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19406,'files','22718','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19407,'files','22719','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19408,'files','22720','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19409,'files','22721','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19410,'files','22722','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19411,'files','22723','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19412,'files','22724','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19413,'files','22725','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19414,'files','22726','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19415,'files','22727','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19416,'files','22728','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19417,'files','22729','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19418,'files','22730','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19419,'files','22731','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19420,'files','22732','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19421,'files','22733','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19422,'files','22734','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19423,'files','22735','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19424,'files','22736','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19425,'files','22737','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19426,'files','22738','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19427,'files','22739','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19428,'files','22740','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19429,'files','22741','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19430,'files','22742','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19431,'files','22743','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19432,'files','22744','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19433,'files','22745','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19434,'files','22746','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19435,'files','22747','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19436,'files','22748','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19437,'files','22749','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19438,'files','22750','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19439,'files','22751','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19440,'files','22752','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19441,'files','22753','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19442,'files','22754','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19443,'files','22755','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19444,'files','22756','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19445,'files','22757','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19446,'files','22758','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19447,'files','22759','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19448,'files','22760','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19449,'files','22761','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19450,'files','22762','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19451,'files','22763','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19452,'files','22764','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19453,'files','22765','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19454,'files','22766','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19455,'files','22767','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19456,'files','22768','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19457,'files','22769','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19458,'files','22770','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19459,'files','22771','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19460,'files','22772','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19461,'files','22773','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19462,'files','22774','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19463,'files','22775','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19464,'files','22776','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19465,'files','22777','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19466,'files','22778','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19467,'files','22779','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19468,'files','22780','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19469,'files','22781','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19470,'files','22782','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19471,'files','22783','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19472,'files','22784','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19473,'files','22785','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19474,'files','22786','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19475,'files','22787','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19476,'files','22788','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19477,'files','22789','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19478,'files','22790','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19479,'files','22791','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19480,'files','22792','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19481,'files','22793','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19482,'files','22794','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19483,'files','22795','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19484,'files','22796','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19485,'files','22797','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19486,'files','22798','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19487,'files','22799','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19488,'files','22800','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19489,'files','22801','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19490,'files','22802','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19491,'files','22803','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19492,'files','22804','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19493,'files','22805','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19494,'files','22806','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19495,'files','22807','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19496,'files','22808','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19497,'files','22809','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19498,'files','22810','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19499,'files','22811','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19500,'files','22812','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19501,'files','22813','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19502,'files','22814','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19503,'files','22815','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19504,'files','22816','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19505,'files','22817','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19506,'files','22818','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19507,'files','22819','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19508,'files','22820','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19509,'files','22821','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19510,'files','22822','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19511,'files','22823','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19512,'files','22824','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19513,'files','22825','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19514,'files','22826','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19515,'files','22827','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19516,'files','22828','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19517,'files','22829','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19518,'files','22830','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19519,'files','22831','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19520,'files','22832','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19521,'files','22833','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19522,'files','22834','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19523,'files','22835','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19524,'files','22836','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19525,'files','22837','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19526,'files','22838','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19527,'files','22839','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19528,'files','22840','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19529,'files','22841','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19530,'files','22842','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19531,'files','22843','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19532,'files','22844','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19533,'files','22845','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19534,'files','22846','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19535,'files','22847','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19536,'files','22848','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19537,'files','22849','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19538,'files','22850','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19539,'files','22851','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19540,'files','22852','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19541,'files','22853','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19542,'files','22854','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19543,'files','22855','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19544,'files','22856','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19545,'files','22857','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19546,'files','22858','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19547,'files','22859','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19548,'files','22860','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19549,'files','22861','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19550,'files','22862','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19551,'files','22863','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19552,'files','22864','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19553,'files','22865','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19554,'files','22866','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19555,'files','22867','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19556,'files','22868','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19557,'files','22869','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19558,'files','22870','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19559,'files','22871','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19560,'files','22872','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19561,'files','22873','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19562,'files','22874','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19563,'files','22875','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19564,'files','22876','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19565,'files','22877','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19566,'files','22878','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19567,'files','22879','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19568,'files','22880','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19569,'files','22881','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19570,'files','22882','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19571,'files','22883','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19572,'files','22884','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19573,'files','22885','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19574,'files','22886','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19575,'files','22887','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19576,'files','22888','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19577,'files','22889','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19578,'files','22890','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19579,'files','22891','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19580,'files','22892','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19581,'files','22893','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19582,'files','22894','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19583,'files','22895','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19584,'files','22896','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19585,'files','22897','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19586,'files','22898','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19587,'files','22899','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19588,'files','22900','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19589,'files','22901','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19590,'files','22902','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19591,'files','22903','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19592,'files','22904','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19593,'files','22905','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19594,'files','22906','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19595,'files','22907','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19596,'files','22908','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19597,'files','22909','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19598,'files','22910','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19599,'files','22911','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19600,'files','22912','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19601,'files','22913','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19602,'files','22914','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19603,'files','22915','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19604,'files','22916','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19605,'files','22917','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19606,'files','22918','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19607,'files','22919','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19608,'files','22920','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19609,'files','22921','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19610,'files','22922','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19611,'files','22923','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19612,'files','22924','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19613,'files','22925','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19614,'files','22926','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19615,'files','22927','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19616,'files','22928','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19617,'files','22929','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19618,'files','22930','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19619,'files','22931','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19620,'files','22932','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19621,'files','22933','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19622,'files','22934','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19623,'files','22935','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19624,'files','22936','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19625,'files','22937','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19626,'files','22938','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19627,'files','22939','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19628,'files','22940','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19629,'files','22941','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19630,'files','22942','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19631,'files','22943','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19632,'files','22944','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19633,'files','22945','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19634,'files','22946','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19635,'files','22947','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19636,'files','22948','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19637,'files','22949','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19638,'files','22950','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19639,'files','22951','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19640,'files','22952','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19641,'files','22953','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19642,'files','22954','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19643,'files','22955','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19644,'files','22956','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19645,'files','22957','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19646,'files','22958','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19647,'files','22959','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19648,'files','22960','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19649,'files','22961','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19650,'files','22962','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19651,'files','22963','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19652,'files','22964','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19653,'files','22965','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19654,'files','22966','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19655,'files','22967','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19656,'files','22968','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19657,'files','22969','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19658,'files','22970','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19659,'files','22971','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19660,'files','22972','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19661,'files','22973','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19662,'files','22974','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19663,'files','22975','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19664,'files','22976','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19665,'files','22977','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19666,'files','22978','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19667,'files','22979','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19668,'files','22980','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19669,'files','22981','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19670,'files','22982','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19671,'files','22983','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19672,'files','22984','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19673,'files','22985','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19674,'files','22986','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19675,'files','22987','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19676,'files','22988','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19677,'files','22989','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19678,'files','22990','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19679,'files','22991','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19680,'files','22992','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19681,'files','22993','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19682,'files','22994','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19683,'files','22995','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19684,'files','22996','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19685,'files','22997','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19686,'files','22998','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19687,'files','22999','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19688,'files','23000','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19689,'files','23001','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19690,'files','23002','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19691,'files','23003','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19692,'files','23004','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19693,'files','23005','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19694,'files','23006','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19695,'files','23007','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19696,'files','23008','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19697,'files','23009','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19698,'files','23010','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19699,'files','23011','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19700,'files','23012','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19701,'files','23013','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19702,'files','23014','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19703,'files','23015','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19704,'files','23016','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19705,'files','23017','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19706,'files','23018','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19707,'files','23019','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19708,'files','23020','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19709,'files','23021','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19710,'files','23022','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19711,'files','23023','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19712,'files','23024','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19713,'files','23025','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19714,'files','23026','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19715,'files','23027','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19716,'files','23028','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19717,'files','23029','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19718,'files','23030','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19719,'files','23031','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19720,'files','23032','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19721,'files','23033','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19722,'files','23034','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19723,'files','23035','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19724,'files','23036','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19725,'files','23037','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19726,'files','23038','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19727,'files','23039','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19728,'files','23040','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19729,'files','23041','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19730,'files','23042','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19731,'files','23043','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19732,'files','23044','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19733,'files','23045','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19734,'files','23046','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19735,'files','23047','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19736,'files','23048','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19737,'files','23049','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19738,'files','23050','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19739,'files','23051','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19740,'files','23052','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19741,'files','23053','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19742,'files','23054','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19743,'files','23055','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19744,'files','23056','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19745,'files','23057','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19746,'files','23058','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19747,'files','23059','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19748,'files','23060','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19749,'files','23061','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19750,'files','23062','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19751,'files','23063','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19752,'files','23064','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19753,'files','23065','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19754,'files','23066','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19755,'files','23067','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19756,'files','23068','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19757,'files','23069','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19758,'files','23070','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19759,'files','23071','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19760,'files','23072','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19761,'files','23073','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19762,'files','23074','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19763,'files','23076','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19764,'files','23077','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19765,'files','23078','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19766,'files','23079','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19767,'files','23080','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19768,'files','23081','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19769,'files','23082','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19770,'files','23083','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19771,'files','23084','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19772,'files','23085','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19773,'files','23086','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19774,'files','23087','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19775,'files','23088','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19776,'files','23089','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19777,'files','23090','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19778,'files','23091','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19779,'files','23092','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19780,'files','23093','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19781,'files','23094','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19782,'files','23095','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19783,'files','23096','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19784,'files','23097','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19785,'files','23098','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19786,'files','23099','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19787,'files','23100','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19788,'files','23101','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19789,'files','23102','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19790,'files','23103','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19791,'files','23104','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19792,'files','23105','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19793,'files','23106','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19794,'files','23107','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19795,'files','23108','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19796,'files','23109','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19797,'files','23110','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19798,'files','23111','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19799,'files','23112','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19800,'files','23113','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19801,'files','23114','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19802,'files','23115','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19803,'files','23116','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19804,'files','23117','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19805,'files','23118','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19806,'files','23119','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19807,'files','23120','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19808,'files','23121','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19809,'files','23122','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19810,'files','23123','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19811,'files','23124','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19812,'files','23125','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19813,'files','23126','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19814,'files','23127','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19815,'files','23128','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19816,'files','23129','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19817,'files','23130','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19818,'files','23131','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19819,'files','23132','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19820,'files','23133','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19821,'files','23134','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19822,'files','23135','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19823,'files','23136','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19824,'files','23137','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19825,'files','23138','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19826,'files','23139','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19827,'files','23141','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19828,'files','23142','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19829,'files','23144','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19830,'files','23145','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19831,'files','23147','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19832,'files','23148','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19833,'files','23150','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19834,'files','23152','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19835,'files','23154','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19836,'files','23155','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19837,'files','23157','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19838,'files','23158','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19839,'files','23160','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19840,'files','23161','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19841,'files','23162','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19842,'files','23163','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19843,'files','23164','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19844,'files','23165','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19845,'files','23166','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19846,'files','23167','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19847,'files','23168','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19848,'files','23169','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19849,'files','23170','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19850,'files','23171','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19851,'files','23172','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19852,'files','23173','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19853,'files','23174','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19854,'files','23175','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19855,'files','23176','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19856,'files','23177','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19857,'files','23178','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19858,'files','23180','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19859,'files','23181','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19860,'files','23182','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19861,'files','23183','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19862,'files','23184','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19863,'files','23185','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19864,'files','23186','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19865,'files','23187','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19866,'files','23188','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19867,'files','23189','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19868,'files','23190','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19869,'files','23191','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19870,'files','23192','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19871,'files','23193','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19872,'files','23194','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19873,'files','23195','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19874,'files','23196','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19875,'files','23197','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19876,'files','23198','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19877,'files','23199','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19878,'files','23200','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19879,'files','23201','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19880,'files','23202','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19881,'files','23203','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19882,'files','23204','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19883,'files','23205','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19884,'files','23206','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19885,'files','23207','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19886,'files','23209','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19887,'files','23212','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19888,'files','23213','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19889,'files','23214','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19890,'files','23215','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19891,'files','23216','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19892,'files','23217','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19893,'files','23218','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19894,'files','23219','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19895,'files','23220','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19896,'files','23221','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19897,'files','23222','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19898,'files','23223','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19899,'files','23224','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19900,'files','23225','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19901,'files','23226','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19902,'files','23227','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19903,'files','23228','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19904,'files','23229','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19905,'files','23230','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19906,'files','23231','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19907,'files','23232','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19908,'files','23233','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19909,'files','23234','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19910,'files','23235','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19911,'files','23236','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19912,'files','23237','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19913,'files','23238','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19914,'files','23239','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19915,'files','23240','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19916,'files','23241','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19917,'files','23242','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19918,'files','23243','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19919,'files','23244','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19920,'files','23245','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19921,'files','23246','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19922,'files','23247','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19923,'files','23248','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19924,'files','23249','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19925,'files','23250','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19926,'files','23251','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19927,'files','23252','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19928,'files','23253','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19929,'files','23254','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19930,'files','23255','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19931,'files','23256','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19932,'files','23257','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19933,'files','23258','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19934,'files','23259','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19935,'files','23260','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19936,'files','23261','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19937,'files','23262','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19938,'files','23263','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19939,'files','23264','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19940,'files','23265','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19941,'files','23266','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19942,'files','23267','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19943,'files','23268','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19944,'files','23269','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19945,'files','23270','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19946,'files','23271','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19947,'files','23272','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19948,'files','23273','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19949,'files','23274','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19950,'files','23275','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19951,'files','23276','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19952,'files','23277','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19953,'files','23278','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19954,'files','23279','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19955,'files','23280','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19956,'files','23281','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19957,'files','23282','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19958,'files','23283','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19959,'files','23284','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19960,'files','23285','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19961,'files','23286','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19962,'files','23287','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19963,'files','23288','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19964,'files','23289','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19965,'files','23290','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19966,'files','23291','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19967,'files','23292','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19968,'files','23293','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19969,'files','23294','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19970,'files','23295','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19971,'files','23296','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19972,'files','23297','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19973,'files','23298','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19974,'files','23299','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19975,'files','23300','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19976,'files','23301','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19977,'files','23302','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19978,'files','23303','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19979,'files','23304','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19980,'files','23305','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19981,'files','23306','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19982,'files','23307','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19983,'files','23308','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19984,'files','23309','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19985,'files','23310','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19986,'files','23311','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19987,'files','23312','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19988,'files','23313','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19989,'files','23314','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19990,'files','23315','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19991,'files','23316','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19992,'files','23317','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19993,'files','23318','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19994,'files','23319','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19995,'files','23320','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19996,'files','23321','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19997,'files','23322','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19998,'files','23323','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(19999,'files','23324','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20000,'files','23325','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20001,'files','23326','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20002,'files','23327','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20003,'files','23328','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20004,'files','23329','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20005,'files','23330','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20006,'files','23331','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20007,'files','23332','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20008,'files','23333','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20009,'files','23334','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20010,'files','23335','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20011,'files','23336','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20012,'files','23337','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20013,'files','23338','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20014,'files','23339','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20015,'files','23340','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20016,'files','23341','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20017,'files','23342','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20018,'files','23343','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20019,'files','23344','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20020,'files','23345','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20021,'files','23346','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20022,'files','23347','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20023,'files','23348','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20024,'files','23349','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20025,'files','23350','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20026,'files','23351','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20027,'files','23352','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20028,'files','23353','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20029,'files','23354','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20030,'files','23355','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20031,'files','23356','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20032,'files','23357','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20033,'files','23358','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20034,'files','23359','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20035,'files','23360','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20036,'files','23361','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20037,'files','23362','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20038,'files','23363','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20039,'files','23364','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20040,'files','23365','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20041,'files','23366','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20042,'files','23367','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20043,'files','23368','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20044,'files','23369','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20045,'files','23370','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20046,'files','23371','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20047,'files','23372','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20048,'files','23373','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20049,'files','23374','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20050,'files','23375','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20051,'files','23376','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20052,'files','23377','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20053,'files','23378','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20054,'files','23379','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20055,'files','23380','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20056,'files','23381','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20057,'files','23382','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20058,'files','23383','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20059,'files','23384','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20060,'files','23386','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20061,'files','23387','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20062,'files','23388','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20063,'files','23390','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20064,'files','23391','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20065,'files','23392','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20066,'files','23393','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20067,'files','23394','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20068,'files','23395','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20069,'files','23396','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20070,'files','23397','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20071,'files','23398','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20072,'files','23399','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20073,'files','23400','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20074,'files','23401','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20075,'files','23402','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20076,'files','23403','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20077,'files','23404','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20078,'files','23405','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20079,'files','23406','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20080,'files','23407','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20081,'files','23409','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20082,'files','23410','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20083,'files','23411','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20084,'files','23412','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20085,'files','23413','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20086,'files','23414','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20087,'files','23415','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20088,'files','23416','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20089,'files','23417','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20090,'files','23418','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20091,'files','23419','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20092,'files','23420','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20093,'files','23421','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20094,'files','23422','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20095,'files','23423','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20096,'files','23424','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20097,'files','23425','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20098,'files','23426','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20099,'files','23427','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20100,'files','23428','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20101,'files','23429','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20102,'files','23430','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20103,'files','23431','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20104,'files','23432','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20105,'files','23433','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20106,'files','23434','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20107,'files','23435','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20108,'files','23436','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20109,'files','23437','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20110,'files','23438','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20111,'files','23439','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20112,'files','23440','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20113,'files','23441','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20114,'files','23442','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20115,'files','23443','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20116,'files','23444','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20117,'files','23445','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20118,'files','23446','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20119,'files','23447','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20120,'files','23448','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20121,'files','23449','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20122,'files','23450','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20123,'files','23451','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20124,'files','23452','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20125,'files','23453','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20126,'files','23454','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20127,'files','23455','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20128,'files','23456','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20129,'files','23457','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20130,'files','23458','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20131,'files','23459','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20132,'files','23460','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20133,'files','23461','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20134,'files','23462','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20135,'files','23463','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20136,'files','23464','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20137,'files','23465','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20138,'files','23466','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20139,'files','23467','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20140,'files','23468','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20141,'files','23469','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20142,'files','23470','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20143,'files','23471','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20144,'files','23472','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20145,'files','23474','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20146,'files','23475','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20147,'files','23476','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20148,'files','23477','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20149,'files','23478','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20150,'files','23479','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20151,'files','23480','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20152,'files','23481','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20153,'files','23482','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20154,'files','23483','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20155,'files','23484','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20156,'files','23485','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20157,'files','23486','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20158,'files','23487','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20159,'files','23488','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20160,'files','23489','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20161,'files','23490','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20162,'files','23491','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20163,'files','23492','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20164,'files','23493','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20165,'files','23494','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20166,'files','23495','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20167,'files','23496','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20168,'files','23497','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20169,'files','23498','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20170,'files','23499','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20171,'files','23500','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20172,'files','23501','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20173,'files','23502','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20174,'files','23503','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20175,'files','23504','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20176,'files','23505','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20177,'files','23506','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20178,'files','23507','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20179,'files','23508','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20180,'files','23509','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20181,'files','23510','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20182,'files','23511','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20183,'files','23512','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20184,'files','23513','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20185,'files','23514','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20186,'files','23515','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20187,'files','23516','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20188,'files','23517','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20189,'files','23518','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20190,'files','23519','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20191,'files','23520','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20192,'files','23521','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20193,'files','23522','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20194,'files','23523','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20195,'files','23524','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20196,'files','23526','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20197,'files','23527','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20198,'files','23528','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20199,'files','23529','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20200,'files','23530','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20201,'files','23531','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20202,'files','23532','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20203,'files','23533','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20204,'files','23534','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20205,'files','23535','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20206,'files','23536','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20207,'files','23537','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20208,'files','23538','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20209,'files','23539','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20210,'files','23540','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20211,'files','23541','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20212,'files','23542','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20213,'files','23543','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20214,'files','23544','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20215,'files','23545','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20216,'files','23546','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20217,'files','23547','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20218,'files','23548','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20219,'files','23549','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20220,'files','23550','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20221,'files','23551','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20222,'files','23552','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20223,'files','23553','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20224,'files','23554','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20225,'files','23555','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20226,'files','23556','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20227,'files','23557','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20228,'files','23558','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20229,'files','23559','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20230,'files','23560','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20231,'files','23561','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20232,'files','23562','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20233,'files','23563','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20234,'files','23564','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20235,'files','23565','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20236,'files','23566','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20237,'files','23567','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20238,'files','23568','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20239,'files','23569','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20240,'files','23570','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20241,'files','23571','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20242,'files','23572','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20243,'files','23573','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20244,'files','23574','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20245,'files','23575','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20246,'files','23576','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20247,'files','23577','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20248,'files','23578','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20249,'files','23579','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20250,'files','23580','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20251,'files','23581','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20252,'files','23583','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20253,'files','23584','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20254,'files','23586','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20255,'files','23587','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20256,'files','23588','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20257,'files','23589','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20258,'files','23591','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20259,'files','23592','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20260,'files','23593','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20261,'files','23594','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20262,'files','23595','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20263,'files','23596','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20264,'files','23597','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20265,'files','23598','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20266,'files','23599','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20267,'files','23600','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20268,'files','23601','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20269,'files','23602','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20270,'files','23603','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20271,'files','23604','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20272,'files','23605','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20273,'files','23606','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20274,'files','23607','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20275,'files','23608','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20276,'files','23609','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20277,'files','23610','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20278,'files','23611','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20279,'files','23612','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20280,'files','23614','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20281,'files','23615','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20282,'files','23616','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20283,'files','23617','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20284,'files','23618','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20285,'files','23619','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20286,'files','23620','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20287,'files','23621','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20288,'files','23622','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20289,'files','23623','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20290,'files','23624','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20291,'files','23625','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20292,'files','23626','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20293,'files','23627','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20294,'files','23628','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20295,'files','23629','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20296,'files','23630','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20297,'files','23631','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20298,'files','23632','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20299,'files','23633','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20300,'files','23634','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20301,'files','23635','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20302,'files','23636','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20303,'files','23637','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20304,'files','23638','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20305,'files','23639','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20306,'files','23640','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20307,'files','23641','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20308,'files','23642','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20309,'files','23643','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20310,'files','23644','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20311,'files','23645','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20312,'files','23646','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20313,'files','23647','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20314,'files','23648','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20315,'files','23649','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20316,'files','23650','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20317,'files','23651','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20318,'files','23652','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20319,'files','23653','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20320,'files','23654','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20321,'files','23655','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20322,'files','23656','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20323,'files','23657','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20324,'files','23658','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20325,'files','23659','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20326,'files','23660','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20327,'files','23661','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20328,'files','23662','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20329,'files','23663','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20330,'files','23664','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20331,'files','23665','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20332,'files','23666','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20333,'files','23667','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20334,'files','23668','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20335,'files','23669','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20336,'files','23670','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20337,'files','23671','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20338,'files','23672','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20339,'files','23673','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20340,'files','23674','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20341,'files','23675','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20342,'files','23676','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20343,'files','23677','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20344,'files','23678','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20345,'files','23679','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20346,'files','23680','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20347,'files','23681','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20348,'files','23682','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20349,'files','23683','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20350,'files','23684','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20351,'files','23685','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20352,'files','23686','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20353,'files','23687','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20354,'files','23688','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20355,'files','23689','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20356,'files','23690','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20357,'files','23691','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20358,'files','23692','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20359,'files','23693','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20360,'files','23694','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20361,'files','23695','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20362,'files','23696','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20363,'files','23697','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20364,'files','23698','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20365,'files','23699','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20366,'files','23700','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20367,'files','23701','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20368,'files','23702','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20369,'files','23703','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20370,'files','23704','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20371,'files','23705','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20372,'files','23706','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20373,'files','23707','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20374,'files','23708','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20375,'files','23709','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20376,'files','23710','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20377,'files','23711','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20378,'files','23712','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20379,'files','23713','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20380,'files','23714','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20381,'files','23715','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20382,'files','23716','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20383,'files','23717','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20384,'files','23718','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20385,'files','23719','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20386,'files','23720','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20387,'files','23721','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20388,'files','23722','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20389,'files','23723','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20390,'files','23724','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20391,'files','23725','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20392,'files','23726','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20393,'files','23727','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20394,'files','23728','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20395,'files','23729','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20396,'files','23730','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20397,'files','23731','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20398,'files','23732','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20399,'files','23733','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20400,'files','23734','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20401,'files','23735','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20402,'files','23736','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20403,'files','23737','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20404,'files','23738','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20405,'files','23739','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20406,'files','23740','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20407,'files','23741','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20408,'files','23742','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20409,'files','23743','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20410,'files','23744','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20411,'files','23745','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20412,'files','23746','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20413,'files','23747','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20414,'files','23748','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20415,'files','23749','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20416,'files','23750','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20417,'files','23751','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20418,'files','23752','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20419,'files','23753','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20420,'files','23754','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20421,'files','23755','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20422,'files','23756','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20423,'files','23757','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20424,'files','23758','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20425,'files','23759','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20426,'files','23760','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20427,'files','23761','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20428,'files','23762','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20429,'files','23763','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20430,'files','23764','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20431,'files','23765','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20432,'files','23766','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20433,'files','23767','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20434,'files','23768','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20435,'files','23769','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20436,'files','23770','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20437,'files','23771','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20438,'files','23772','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20439,'files','23773','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20440,'files','23774','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20441,'files','23775','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20442,'files','23776','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20443,'files','23777','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20444,'files','23778','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20445,'files','23779','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20446,'files','23780','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20447,'files','23781','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20448,'files','23782','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20449,'files','23783','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20450,'files','23785','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20451,'files','23787','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20452,'files','23788','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20453,'files','23789','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20454,'files','23790','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20455,'files','23791','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20456,'files','23792','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20457,'files','23793','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20458,'files','23794','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20459,'files','23795','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20460,'files','23796','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20461,'files','23797','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20462,'files','23798','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20463,'files','23799','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20464,'files','23800','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20465,'files','23801','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20466,'files','23802','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20467,'files','23803','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20468,'files','23804','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20469,'files','23805','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20470,'files','23806','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20471,'files','23807','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20472,'files','23808','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20473,'files','23809','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20474,'files','23811','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20475,'files','23813','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20476,'files','23815','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20477,'files','23817','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20478,'files','23818','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20479,'files','23819','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20480,'files','23820','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20481,'files','23821','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20482,'files','23822','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20483,'files','23823','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20484,'files','23824','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20485,'files','23825','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20486,'files','23826','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20487,'files','23827','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20488,'files','23828','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20489,'files','23829','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20490,'files','23830','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20491,'files','23831','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20492,'files','23832','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20493,'files','23833','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20494,'files','23834','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20495,'files','23835','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20496,'files','23836','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20497,'files','23837','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20498,'files','23838','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20499,'files','23839','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20500,'files','23840','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20501,'files','23841','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20502,'files','23842','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20503,'files','23843','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20504,'files','23844','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20505,'files','23845','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20506,'files','23846','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20507,'files','23847','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20508,'files','23848','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20509,'files','23849','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20510,'files','23850','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20511,'files','23851','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20512,'files','23852','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20513,'files','23853','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20514,'files','23854','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20515,'files','23855','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20516,'files','23856','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20517,'files','23857','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20518,'files','23858','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20519,'files','23859','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20520,'files','23860','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20521,'files','23861','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20522,'files','23862','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20523,'files','23863','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20524,'files','23864','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20525,'files','23865','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20526,'files','23866','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20527,'files','23867','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20528,'files','23868','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20529,'files','23869','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20530,'files','23870','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20531,'files','23871','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20532,'files','23872','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20533,'files','23873','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20534,'files','23874','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20535,'files','23875','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20536,'files','23876','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20537,'files','23877','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20538,'files','23878','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20539,'files','23879','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20540,'files','23880','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20541,'files','23881','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20542,'files','23882','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20543,'files','23883','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20544,'files','23884','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20545,'files','23885','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20546,'files','23886','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20547,'files','23887','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20548,'files','23888','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20549,'files','23889','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20550,'files','23890','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20551,'files','23891','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20552,'files','23892','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20553,'files','23893','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20554,'files','23894','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20555,'files','23895','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20556,'files','23896','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20557,'files','23897','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20558,'files','23898','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20559,'files','23899','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20560,'files','23900','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20561,'files','23901','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20562,'files','23902','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20563,'files','23903','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20564,'files','23904','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20565,'files','23905','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20566,'files','23906','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20567,'files','23907','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20568,'files','23908','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20569,'files','23909','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20570,'files','23910','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20571,'files','23911','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20572,'files','23912','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20573,'files','23913','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20574,'files','23914','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20575,'files','23915','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20576,'files','23917','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20577,'files','23921','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20578,'files','23922','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20579,'files','23923','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20580,'files','23924','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20581,'files','23925','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20582,'files','23926','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20583,'files','23927','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20584,'files','23928','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20585,'files','23929','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20586,'files','23930','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20587,'files','23931','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20588,'files','23932','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20589,'files','23933','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20590,'files','23934','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20591,'files','23935','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20592,'files','23936','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20593,'files','23937','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20594,'files','23938','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20595,'files','23939','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20596,'files','23940','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20597,'files','23941','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20598,'files','23942','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20599,'files','23943','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20600,'files','23944','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20601,'files','23945','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20602,'files','23946','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20603,'files','23947','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20604,'files','23948','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20605,'files','23949','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20606,'files','23950','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20607,'files','23951','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20608,'files','23952','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20609,'files','23953','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20610,'files','23954','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20611,'files','23955','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20612,'files','23956','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20613,'files','23957','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20614,'files','23958','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20615,'files','23959','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20616,'files','23960','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20617,'files','23961','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20618,'files','23962','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20619,'files','23963','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20620,'files','23964','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20621,'files','23965','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20622,'files','23966','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20623,'files','23967','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20624,'files','23968','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20625,'files','23969','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20626,'files','23970','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20627,'files','23971','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20628,'files','23972','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20629,'files','23973','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20630,'files','23974','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20631,'files','23975','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20632,'files','23976','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20633,'files','23977','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20634,'files','23978','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20635,'files','23979','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20636,'files','23980','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20637,'files','23981','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20638,'files','23982','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20639,'files','23983','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20640,'files','23984','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20641,'files','23985','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20642,'files','23986','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20643,'files','23987','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20644,'files','23988','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20645,'files','23989','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20646,'files','23990','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20647,'files','23991','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20648,'files','23992','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20649,'files','23993','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20650,'files','23994','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20651,'files','23995','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20652,'files','23996','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20653,'files','23997','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20654,'files','23998','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20655,'files','23999','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20656,'files','24000','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20657,'files','24001','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20658,'files','24002','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20659,'files','24003','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20660,'files','24004','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20661,'files','24005','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20662,'files','24006','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20663,'files','24007','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20664,'files','24008','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20665,'files','24010','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20666,'files','24011','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20667,'files','24012','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20668,'files','24014','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20669,'files','24015','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20670,'files','24016','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20671,'files','24017','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20672,'files','24018','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20673,'files','24019','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20674,'files','24020','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20675,'files','24021','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20676,'files','24022','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20677,'files','24023','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20678,'files','24024','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20679,'files','24025','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20680,'files','24026','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20681,'files','24027','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20682,'files','24028','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20683,'files','24029','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20684,'files','24030','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20685,'files','24031','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20686,'files','24032','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20687,'files','24033','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20688,'files','24034','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20689,'files','24035','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20690,'files','24036','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20691,'files','24037','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20692,'files','24038','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20693,'files','24039','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20694,'files','24040','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20695,'files','24041','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20696,'files','24042','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20697,'files','24043','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20698,'files','24044','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20699,'files','24045','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20700,'files','24046','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20701,'files','24047','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20702,'files','24048','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20703,'files','24049','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20704,'files','24050','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20705,'files','24051','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20706,'files','24052','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20707,'files','24053','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20708,'files','24054','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20709,'files','24055','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20710,'files','24056','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20711,'files','24057','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20712,'files','24058','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20713,'files','24060','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20714,'files','24061','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20715,'files','24062','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20716,'files','24063','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20717,'files','24065','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20718,'files','24066','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20719,'files','24067','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20720,'files','24068','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20721,'files','24069','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20722,'files','24070','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20723,'files','24071','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20724,'files','24072','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20725,'files','24073','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20726,'files','24074','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20727,'files','24075','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20728,'files','24076','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20729,'files','24077','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20730,'files','24078','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20731,'files','24079','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20732,'files','24080','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20733,'files','24081','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20734,'files','24082','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20735,'files','24083','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20736,'files','24084','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20737,'files','24085','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20738,'files','24086','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20739,'files','24087','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20740,'files','24088','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20741,'files','24089','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20742,'files','24090','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20743,'files','24091','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20744,'files','24092','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20745,'files','24093','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20746,'files','24094','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20747,'files','24095','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20748,'files','24096','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20749,'files','24097','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20750,'files','24098','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20751,'files','24099','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20752,'files','24100','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20753,'files','24101','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20754,'files','24102','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20755,'files','24103','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20756,'files','24104','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20757,'files','24105','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20758,'files','24106','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20759,'files','24107','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20760,'files','24108','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20761,'files','24109','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20762,'files','24110','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20763,'files','24111','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20764,'files','24112','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20765,'files','24113','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20766,'files','24114','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20767,'files','24115','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20768,'files','24116','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20769,'files','24117','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20770,'files','24118','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20771,'files','24119','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20772,'files','24120','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20773,'files','24121','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20774,'files','24122','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20775,'files','24123','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20776,'files','24124','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20777,'files','24125','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20778,'files','24126','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20779,'files','24127','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20780,'files','24128','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20781,'files','24129','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20782,'files','24130','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20783,'files','24131','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20784,'files','24132','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20785,'files','24133','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20786,'files','24134','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20787,'files','24135','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20788,'files','24136','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20789,'files','24137','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20790,'files','24138','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20791,'files','24139','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20792,'files','24140','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20793,'files','24141','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20794,'files','24142','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20795,'files','24143','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20796,'files','24144','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20797,'files','24145','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20798,'files','24146','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20799,'files','24147','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20800,'files','24148','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20801,'files','24149','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20802,'files','24150','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20803,'files','24151','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20804,'files','24152','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20805,'files','24153','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20806,'files','24154','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20807,'files','24155','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20808,'files','24156','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20809,'files','24157','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20810,'files','24158','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20811,'files','24159','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20812,'files','24160','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20813,'files','24161','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20814,'files','24162','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20815,'files','24163','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20816,'files','24164','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20817,'files','24165','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20818,'files','24166','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20819,'files','24167','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20820,'files','24168','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20821,'files','24169','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20822,'files','24170','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20823,'files','24171','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20824,'files','24172','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20825,'files','24173','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20826,'files','24174','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20827,'files','24175','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20828,'files','24176','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20829,'files','24177','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20830,'files','24178','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20831,'files','24179','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20832,'files','24180','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20833,'files','24181','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20834,'files','24182','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20835,'files','24183','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20836,'files','24184','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20837,'files','24185','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20838,'files','24186','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20839,'files','24187','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20840,'files','24188','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20841,'files','24189','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20842,'files','24190','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20843,'files','24191','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20844,'files','24192','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20845,'files','24193','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20846,'files','24194','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20847,'files','24195','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20848,'files','24196','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20849,'files','24197','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20850,'files','24198','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20851,'files','24200','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20852,'files','24201','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20853,'files','24202','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20854,'files','24203','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20855,'files','24204','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20856,'files','24205','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20857,'files','24206','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20858,'files','24207','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20859,'files','24208','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20860,'files','24209','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20861,'files','24210','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20862,'files','24211','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20863,'files','24212','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20864,'files','24214','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20865,'files','24215','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20866,'files','24216','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20867,'files','24217','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20868,'files','24218','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20869,'files','24219','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20870,'files','24220','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20871,'files','24221','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20872,'files','24222','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20873,'files','24223','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20874,'files','24224','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20875,'files','24225','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20876,'files','24226','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20877,'files','24227','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20878,'files','24228','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20879,'files','24229','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20880,'files','24230','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20881,'files','24231','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20882,'files','24232','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20883,'files','24233','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20884,'files','24234','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20885,'files','24235','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20886,'files','24236','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20887,'files','24237','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20888,'files','24238','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20889,'files','24239','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20890,'files','24240','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20891,'files','24241','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20892,'files','24242','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20893,'files','24243','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20894,'files','24252','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20895,'files','24253','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20896,'files','24254','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20897,'files','24255','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20898,'files','24256','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20899,'files','24257','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20900,'files','24258','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20901,'files','24259','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20902,'files','24260','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20903,'files','24261','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20904,'files','24262','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20905,'files','24263','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20906,'files','24264','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20907,'files','24265','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20908,'files','24266','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20909,'files','24267','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20910,'files','24268','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20911,'files','24269','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20912,'files','24270','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20913,'files','24271','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20914,'files','24272','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20915,'files','24273','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20916,'files','24274','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20917,'files','24275','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20918,'files','24276','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20919,'files','24277','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20920,'files','24278','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20921,'files','24279','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20922,'files','24280','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20923,'files','24281','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20924,'files','24282','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20925,'files','24283','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20926,'files','24284','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20927,'files','24285','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20928,'files','24286','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20929,'files','24287','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20930,'files','24288','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20931,'files','24289','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20932,'files','24290','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20933,'files','24291','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20934,'files','24292','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20935,'files','24293','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20936,'files','24294','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20937,'files','24295','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20938,'files','24296','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20939,'files','24297','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20940,'files','24298','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20941,'files','24299','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20942,'files','24300','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20943,'files','24301','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20944,'files','24302','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20945,'files','24303','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20946,'files','24304','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20947,'files','24305','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20948,'files','24306','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20949,'files','24307','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20950,'files','24308','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20951,'files','24309','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20952,'files','24310','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20953,'files','24311','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20954,'files','24312','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20955,'files','24313','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20956,'files','24314','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20957,'files','24315','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20958,'files','24316','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20959,'files','24317','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20960,'files','24318','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20961,'files','24319','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20962,'files','24320','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20963,'files','24321','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20964,'files','24322','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20965,'files','24323','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20966,'files','24324','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20967,'files','24325','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20968,'files','24326','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20969,'files','24327','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20970,'files','24328','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20971,'files','24329','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20972,'files','24330','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20973,'files','24331','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20974,'files','24332','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20975,'files','24334','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20976,'files','24335','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20977,'files','24336','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20978,'files','24337','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20979,'files','24338','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20980,'files','24339','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20981,'files','24340','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20982,'files','24341','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20983,'files','24342','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20984,'files','24343','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20985,'files','24344','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20986,'files','24345','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20987,'files','24346','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20988,'files','24347','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20989,'files','24348','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20990,'files','24349','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20991,'files','24350','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20992,'files','24351','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20993,'files','24352','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20994,'files','24353','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20995,'files','24354','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20996,'files','24355','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20997,'files','24356','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20998,'files','24357','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(20999,'files','24358','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21000,'files','24359','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21001,'files','24360','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21002,'files','24361','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21003,'files','24362','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21004,'files','24363','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21005,'files','24364','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21006,'files','24365','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21007,'files','24366','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21008,'files','24367','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21009,'files','24368','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21010,'files','24369','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21011,'files','24370','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21012,'files','24371','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21013,'files','24372','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21014,'files','24373','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21015,'files','24374','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21016,'files','24375','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21017,'files','24376','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21018,'files','24377','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21019,'files','24378','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21020,'files','24379','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21021,'files','24380','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21022,'files','24381','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21023,'files','24382','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21024,'files','24383','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21025,'files','24384','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21026,'files','24385','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21027,'files','24386','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21028,'files','24387','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21029,'files','24388','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21030,'files','24389','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21031,'files','24390','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21032,'files','24391','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21033,'files','24392','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21034,'files','24393','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21035,'files','24394','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21036,'files','24395','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21037,'files','24396','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21038,'files','24397','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21039,'files','24398','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21040,'files','24399','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21041,'files','24400','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21042,'files','24401','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21043,'files','24402','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21044,'files','24403','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21045,'files','24404','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21046,'files','24405','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21047,'files','24406','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21048,'files','24407','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21049,'files','24408','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21050,'files','24409','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21051,'files','24410','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21052,'files','24411','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21053,'files','24412','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21054,'files','24413','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21055,'files','24414','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21056,'files','24415','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21057,'files','24416','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21058,'files','24417','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21059,'files','24418','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21060,'files','24419','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21061,'files','24420','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21062,'files','24421','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21063,'files','24422','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21064,'files','24423','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21065,'files','24424','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21066,'files','24425','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21067,'files','24426','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21068,'files','24427','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21069,'files','24428','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21070,'files','24429','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21071,'files','24430','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21072,'files','24431','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21073,'files','24432','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21074,'files','24433','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21075,'files','24434','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21076,'files','24435','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21077,'files','24436','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21078,'files','24437','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21079,'files','24438','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21080,'files','24439','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21081,'files','24440','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21082,'files','24441','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21083,'files','24442','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21084,'files','24443','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21085,'files','24444','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21086,'files','24445','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21087,'files','24446','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21088,'files','24447','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21089,'files','24448','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21090,'files','24449','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21091,'files','24450','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21092,'files','24451','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21093,'files','24452','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21094,'files','24453','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21095,'files','24454','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21096,'files','24455','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21097,'files','24456','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21098,'files','24457','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21099,'files','24458','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21100,'files','24459','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21101,'files','24460','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21102,'files','24461','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21103,'files','24462','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21104,'files','24463','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21105,'files','24464','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21106,'files','24465','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21107,'files','24466','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21108,'files','24467','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21109,'files','24468','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21110,'files','24469','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21111,'files','24470','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21112,'files','24471','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21113,'files','24472','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21114,'files','24475','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21115,'files','24476','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21116,'files','24477','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21117,'files','24478','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21118,'files','24479','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21119,'files','24480','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21120,'files','24481','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21121,'files','24482','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21122,'files','24483','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21123,'files','24484','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21124,'files','24485','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21125,'files','24486','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21126,'files','24487','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21127,'files','24488','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21128,'files','24489','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21129,'files','24490','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21130,'files','24491','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21131,'files','24492','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21132,'files','24493','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21133,'files','24494','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21134,'files','24495','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21135,'files','24496','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21136,'files','24497','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21137,'files','24498','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21138,'files','24499','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21139,'files','24500','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21140,'files','24501','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21141,'files','24502','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21142,'files','24503','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21143,'files','24504','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21144,'files','24505','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21145,'files','24506','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21146,'files','24507','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21147,'files','24508','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21148,'files','24510','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21149,'files','24511','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21150,'files','24512','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21151,'files','24513','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21152,'files','24514','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21153,'files','24516','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21154,'files','24517','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21155,'files','24518','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21156,'files','24519','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21157,'files','24520','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21158,'files','24521','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21159,'files','24522','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21160,'files','24523','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21161,'files','24524','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21162,'files','24525','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21163,'files','24526','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21164,'files','24527','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21165,'files','24528','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21166,'files','24529','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21167,'files','24530','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21168,'files','24531','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21169,'files','24532','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21170,'files','24533','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21171,'files','24534','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21172,'files','24535','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21173,'files','24536','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21174,'files','24537','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21175,'files','24538','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21176,'files','24539','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21177,'files','24540','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21178,'files','24541','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21179,'files','24542','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21180,'files','24543','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21181,'files','24544','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21182,'files','24545','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21183,'files','24546','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21184,'files','24547','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21185,'files','24548','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21186,'files','24549','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21187,'files','24550','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21188,'files','24551','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21189,'files','24552','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21190,'files','24553','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21191,'files','24554','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21192,'files','24555','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21193,'files','24556','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21194,'files','24557','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21195,'files','24558','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21196,'files','24559','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21197,'files','24560','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21198,'files','24561','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21199,'files','24562','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21200,'files','24563','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21201,'files','24564','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21202,'files','24565','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21203,'files','24566','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21204,'files','24567','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21205,'files','24568','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21206,'files','24569','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21207,'files','24570','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21208,'files','24571','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21209,'files','24572','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21210,'files','24573','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21211,'files','24574','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21212,'files','24575','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21213,'files','24576','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21214,'files','24577','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21215,'files','24578','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21216,'files','24579','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21217,'files','24580','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21218,'files','24581','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21219,'files','24582','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21220,'files','24583','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21221,'files','24584','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21222,'files','24585','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21223,'files','24586','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21224,'files','24587','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21225,'files','24588','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21226,'files','24589','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21227,'files','24590','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21228,'files','24591','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21229,'files','24592','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21230,'files','24593','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21231,'files','24594','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21232,'files','24595','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21233,'files','24596','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21234,'files','24597','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21235,'files','24598','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21236,'files','24599','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21237,'files','24600','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21238,'files','24601','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21239,'files','24603','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21240,'files','24605','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21241,'files','24606','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21242,'files','24607','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21243,'files','24608','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21244,'files','24609','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21245,'files','24610','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21246,'files','24611','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21247,'files','24612','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21248,'files','24613','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21249,'files','24614','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21250,'files','24615','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21251,'files','24616','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21252,'files','24617','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21253,'files','24618','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21254,'files','24619','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21255,'files','24620','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21256,'files','24621','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21257,'files','24622','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21258,'files','24623','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21259,'files','24624','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21260,'files','24625','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21261,'files','24626','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21262,'files','24627','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21263,'files','24628','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21264,'files','24629','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21265,'files','24630','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21266,'files','24631','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21267,'files','24632','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21268,'files','24633','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21269,'files','24634','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21270,'files','24635','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21271,'files','24636','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21272,'files','24637','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21273,'files','24638','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21274,'files','24639','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21275,'files','24640','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21276,'files','24641','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21277,'files','24642','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21278,'files','24643','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21279,'files','24644','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21280,'files','24645','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21281,'files','24646','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21282,'files','24647','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21283,'files','24648','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21284,'files','24649','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21285,'files','24650','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21286,'files','24651','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21287,'files','24652','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21288,'files','24653','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21289,'files','24654','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21290,'files','24655','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21291,'files','24656','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21292,'files','24657','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21293,'files','24658','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21294,'files','24659','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21295,'files','24660','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21296,'files','24661','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21297,'files','24662','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21298,'files','24663','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21299,'files','24664','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21300,'files','24665','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21301,'files','24666','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21302,'files','24667','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21303,'files','24668','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21304,'files','24669','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21305,'files','24670','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21306,'files','24671','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21307,'files','24672','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21308,'files','24673','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21309,'files','24674','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21310,'files','24675','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21311,'files','24676','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21312,'files','24677','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21313,'files','24678','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21314,'files','24679','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21315,'files','24680','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21316,'files','24681','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21317,'files','24682','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21318,'files','24683','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21319,'files','24684','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21320,'files','24685','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21321,'files','24686','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21322,'files','24687','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21323,'files','24688','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21324,'files','24689','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21325,'files','24690','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21326,'files','24691','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21327,'files','24692','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21328,'files','24693','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21329,'files','24694','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21330,'files','24695','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21331,'files','24696','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21332,'files','24697','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21333,'files','24698','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21334,'files','24699','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21335,'files','24700','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21336,'files','24701','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21337,'files','24702','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21338,'files','24703','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21339,'files','24704','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21340,'files','24705','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21341,'files','24706','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21342,'files','24707','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21343,'files','24708','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21344,'files','24709','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21345,'files','24710','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21346,'files','24711','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21347,'files','24712','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21348,'files','24713','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21349,'files','24714','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21350,'files','24715','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21351,'files','24716','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21352,'files','24717','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21353,'files','24718','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21354,'files','24719','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21355,'files','24720','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21356,'files','24721','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21357,'files','24722','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21358,'files','24723','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21359,'files','24724','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21360,'files','24725','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21361,'files','24726','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21362,'files','24727','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21363,'files','24728','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21364,'files','24729','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21365,'files','24730','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21366,'files','24731','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21367,'files','24732','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21368,'files','24733','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21369,'files','24734','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21370,'files','24735','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21371,'files','24736','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21372,'files','24737','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21373,'files','24738','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21374,'files','24739','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21375,'files','24740','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21376,'files','24741','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21377,'files','24742','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21378,'files','24743','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21379,'files','24744','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21380,'files','24745','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21381,'files','24746','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21382,'files','24747','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21383,'files','24748','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21384,'files','24749','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21385,'files','24750','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21386,'files','24751','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21387,'files','24752','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21388,'files','24753','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21389,'files','24754','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21390,'files','24755','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21391,'files','24756','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21392,'files','24757','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21393,'files','24758','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21394,'files','24759','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21395,'files','24760','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21396,'files','24761','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21397,'files','24762','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21398,'files','24763','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21399,'files','24764','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21400,'files','24765','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21401,'files','24766','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21402,'files','24767','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21403,'files','24768','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21404,'files','24769','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21405,'files','24770','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21406,'files','24774','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21407,'files','24775','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21408,'files','24776','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21409,'files','24777','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21410,'files','24778','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21411,'files','24779','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21412,'files','24780','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21413,'files','24781','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21414,'files','24782','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21415,'files','24783','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21416,'files','24784','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21417,'files','24785','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21418,'files','24786','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21419,'files','24787','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21420,'files','24788','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21421,'files','24789','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21422,'files','24790','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21423,'files','24791','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21424,'files','24792','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21425,'files','24793','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21426,'files','24794','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21427,'files','24795','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21428,'files','24796','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21429,'files','24797','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21430,'files','24798','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21431,'files','24799','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21432,'files','24800','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21433,'files','24801','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21434,'files','24802','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21435,'files','24803','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21436,'files','24804','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21437,'files','24805','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21438,'files','24806','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21439,'files','24807','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21440,'files','24808','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21441,'files','24809','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21442,'files','24810','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21443,'files','24811','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21444,'files','24812','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21445,'files','24813','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21446,'files','24814','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21447,'files','24815','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21448,'files','24816','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21449,'files','24817','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21450,'files','24818','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21451,'files','24819','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21452,'files','24820','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21453,'files','24821','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21454,'files','24822','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21455,'files','24823','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21456,'files','24824','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21457,'files','24825','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21458,'files','24826','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21459,'files','24827','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21460,'files','24828','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21461,'files','24829','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21462,'files','24830','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21463,'files','24831','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21464,'files','24832','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21465,'files','24833','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21466,'files','24834','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21467,'files','24835','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21468,'files','24836','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21469,'files','24837','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21470,'files','24838','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21471,'files','24839','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21472,'files','24840','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21473,'files','24841','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21474,'files','24842','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21475,'files','24843','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21476,'files','24844','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21477,'files','24845','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21478,'files','24846','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21479,'files','24847','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21480,'files','24848','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21481,'files','24849','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21482,'files','24850','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21483,'files','24851','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21484,'files','24852','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21485,'files','24853','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21486,'files','24854','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21487,'files','24855','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21488,'files','24856','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21489,'files','24857','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21490,'files','24858','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21491,'files','24859','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21492,'files','24860','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21493,'files','24861','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21494,'files','24862','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21495,'files','24863','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21496,'files','24864','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21497,'files','24865','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21498,'files','24866','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21499,'files','24867','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21500,'files','24868','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21501,'files','24869','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21502,'files','24870','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21503,'files','24871','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21504,'files','24872','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21505,'files','24873','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21506,'files','24874','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21507,'files','24875','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21508,'files','24876','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21509,'files','24877','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21510,'files','24878','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21511,'files','24879','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21512,'files','24880','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21513,'files','24881','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21514,'files','24882','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21515,'files','24884','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21516,'files','24885','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21517,'files','24886','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21518,'files','24887','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21519,'files','24888','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21520,'files','24889','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21521,'files','24890','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21522,'files','24891','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21523,'files','24892','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21524,'files','24893','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21525,'files','24894','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21526,'files','24895','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21527,'files','24896','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21528,'files','24897','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21529,'files','24898','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21530,'files','24899','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21531,'files','24900','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21532,'files','24901','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21533,'files','24902','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21534,'files','24903','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21535,'files','24904','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21536,'files','24905','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21537,'files','24906','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21538,'files','24907','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21539,'files','24908','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21540,'files','24909','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21541,'files','24910','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21542,'files','24911','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21543,'files','24912','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21544,'files','24913','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21545,'files','24914','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21546,'files','24915','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21547,'files','24916','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21548,'files','24917','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21549,'files','24918','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21550,'files','24919','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21551,'files','24920','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21552,'files','24921','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21553,'files','24922','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21554,'files','24923','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21555,'files','24924','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21556,'files','24925','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21557,'files','24926','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21558,'files','24927','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21559,'files','24928','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21560,'files','24929','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21561,'files','24930','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21562,'files','24931','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21563,'files','24932','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21564,'files','24933','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21565,'files','24934','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21566,'files','24935','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21567,'files','24936','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21568,'files','24937','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21569,'files','24938','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21570,'files','24939','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21571,'files','24940','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21572,'files','24941','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21573,'files','24942','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21574,'files','24943','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21575,'files','24944','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21576,'files','24945','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21577,'files','24946','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21578,'files','24947','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21579,'files','24948','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21580,'files','24949','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21581,'files','24950','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21582,'files','24951','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21583,'files','24952','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21584,'files','24953','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21585,'files','24954','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21586,'files','24955','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21587,'files','24956','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21588,'files','24957','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21589,'files','24958','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21590,'files','24959','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21591,'files','24960','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21592,'files','24961','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21593,'files','24962','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21594,'files','24963','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21595,'files','24964','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21596,'files','24965','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21597,'files','24966','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21598,'files','24967','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21599,'files','24968','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21600,'files','24969','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21601,'files','24970','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21602,'files','24971','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21603,'files','24972','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21604,'files','24973','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21605,'files','24974','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21606,'files','24975','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21607,'files','24977','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21608,'files','24978','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21609,'files','24979','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21610,'files','24980','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21611,'files','24981','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21612,'files','24982','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21613,'files','24983','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21614,'files','24984','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21615,'files','24985','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21616,'files','24987','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21617,'files','24989','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21618,'files','24990','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21619,'files','24993','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21620,'files','24994','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21621,'files','24996','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21622,'files','24997','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21623,'files','24999','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21624,'files','25000','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21625,'files','25001','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21626,'files','25002','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21627,'files','25003','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21628,'files','25004','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21629,'files','25005','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21630,'files','25006','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21631,'files','25007','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21632,'files','25008','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21633,'files','25009','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21634,'files','25010','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21635,'files','25011','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21636,'files','25012','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21637,'files','25013','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21638,'files','25014','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21639,'files','25015','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21640,'files','25016','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21641,'files','25018','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21642,'files','25020','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21643,'files','25021','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21644,'files','25022','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21645,'files','25023','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21646,'files','25024','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21647,'files','25025','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21648,'files','25026','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21649,'files','25027','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21650,'files','25028','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21651,'files','25029','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21652,'files','25030','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21653,'files','25031','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21654,'files','25032','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21655,'files','25033','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21656,'files','25035','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21657,'files','25036','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21658,'files','25038','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21659,'files','25039','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21660,'files','25040','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21661,'files','25041','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21662,'files','25042','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21663,'files','25043','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21664,'files','25044','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21665,'files','25045','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21666,'files','25046','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21667,'files','25047','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21668,'files','25048','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21669,'files','25050','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21670,'files','25051','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21671,'files','25052','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21672,'files','25053','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21673,'files','25054','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21674,'files','25055','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21675,'files','25056','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21676,'files','25057','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21677,'files','25058','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21678,'files','25059','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21679,'files','25060','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21680,'files','25061','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21681,'files','25062','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21682,'files','25063','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21683,'files','25064','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21684,'files','25065','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21685,'files','25067','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21686,'files','25068','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21687,'files','25069','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21688,'files','25070','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21689,'files','25071','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21690,'files','25072','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21691,'files','25073','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21692,'files','25074','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21693,'files','25075','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21694,'files','25076','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21695,'files','25077','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21696,'files','25078','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21697,'files','25079','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21698,'files','25080','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21699,'files','25081','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21700,'files','25082','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21701,'files','25083','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21702,'files','25084','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21703,'files','25085','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21704,'files','25086','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21705,'files','25087','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21706,'files','25088','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21707,'files','25089','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21708,'files','25090','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21709,'files','25091','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21710,'files','25092','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21711,'files','25093','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21712,'files','25094','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21713,'files','25095','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21714,'files','25096','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21715,'files','25097','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21716,'files','25098','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21717,'files','25099','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21718,'files','25100','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21719,'files','25101','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21720,'files','25102','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21721,'files','25103','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21722,'files','25104','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21723,'files','25105','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21724,'files','25106','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21725,'files','25107','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21726,'files','25108','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21727,'files','25109','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21728,'files','25110','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21729,'files','25111','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21730,'files','25112','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21731,'files','25113','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21732,'files','25114','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21733,'files','25115','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21734,'files','25116','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21735,'files','25117','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21736,'files','25118','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21737,'files','25119','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21738,'files','25120','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21739,'files','25121','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21740,'files','25122','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21741,'files','25123','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21742,'files','25124','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21743,'files','25125','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21744,'files','25126','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21745,'files','25127','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21746,'files','25128','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21747,'files','25129','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21748,'files','25130','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21749,'files','25131','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21750,'files','25132','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21751,'files','25133','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21752,'files','25134','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21753,'files','25135','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21754,'files','25136','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21755,'files','25137','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21756,'files','25138','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21757,'files','25139','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21758,'files','25140','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21759,'files','25141','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21760,'files','25142','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21761,'files','25143','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21762,'files','25144','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21763,'files','25145','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21764,'files','25146','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21765,'files','25147','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21766,'files','25148','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21767,'files','25149','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21768,'files','25150','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21769,'files','25151','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21770,'files','25152','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21771,'files','25153','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21772,'files','25154','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21773,'files','25156','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21774,'files','25157','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21775,'files','25158','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21776,'files','25159','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21777,'files','25160','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21778,'files','25161','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21779,'files','25162','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21780,'files','25164','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21781,'files','25165','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21782,'files','25166','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21783,'files','25167','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21784,'files','25168','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21785,'files','25169','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21786,'files','25170','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21787,'files','25171','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21788,'files','25172','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21789,'files','25173','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21790,'files','25174','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21791,'files','25175','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21792,'files','25176','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21793,'files','25177','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21794,'files','25178','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21795,'files','25179','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21796,'files','25180','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21797,'files','25181','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21798,'files','25182','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21799,'files','25183','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21800,'files','25184','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21801,'files','25185','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21802,'files','25187','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21803,'files','25188','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21804,'files','25189','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21805,'files','25190','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21806,'files','25191','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21807,'files','25192','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21808,'files','25193','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21809,'files','25194','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21810,'files','25195','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21811,'files','25196','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21812,'files','25197','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21813,'files','25198','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21814,'files','25199','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21815,'files','25200','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21816,'files','25201','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21817,'files','25202','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21818,'files','25203','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21819,'files','25204','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21820,'files','25205','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21821,'files','25206','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21822,'files','25207','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21823,'files','25208','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21824,'files','25209','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21825,'files','25210','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21826,'files','25211','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21827,'files','25212','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21828,'files','25214','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21829,'files','25217','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21830,'files','25218','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21831,'files','25219','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21832,'files','25220','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21833,'files','25221','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21834,'files','25222','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21835,'files','25224','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21836,'files','25225','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21837,'files','25226','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21838,'files','25227','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21839,'files','25229','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21840,'files','25230','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21841,'files','25231','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21842,'files','25232','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21843,'files','25233','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21844,'files','25234','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21845,'files','25235','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21846,'files','25236','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21847,'files','25237','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21848,'files','25238','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21849,'files','25239','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21850,'files','25240','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21851,'files','25241','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21852,'files','25242','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21853,'files','25243','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21854,'files','25244','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21855,'files','25245','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21856,'files','25246','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21857,'files','25247','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21858,'files','25248','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21859,'files','25249','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21860,'files','25250','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21861,'files','25251','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21862,'files','25252','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21863,'files','25253','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21864,'files','25254','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21865,'files','25255','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21866,'files','25256','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21867,'files','25257','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21868,'files','25258','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21869,'files','25259','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21870,'files','25260','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21871,'files','25261','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21872,'files','25262','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21873,'files','25263','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21874,'files','25264','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21875,'files','25265','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21876,'files','25266','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21877,'files','25267','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21878,'files','25268','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21879,'files','25269','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21880,'files','25270','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21881,'files','25271','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21882,'files','25272','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21883,'files','25273','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21884,'files','25274','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21885,'files','25275','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21886,'files','25276','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21887,'files','25277','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21888,'files','25278','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21889,'files','25279','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21890,'files','25280','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21891,'files','25281','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21892,'files','25282','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21893,'files','25283','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21894,'files','25284','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21895,'files','25285','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21896,'files','25286','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21897,'files','25287','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21898,'files','25288','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21899,'files','25289','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21900,'files','25290','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21901,'files','25291','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21902,'files','25292','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21903,'files','25293','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21904,'files','25294','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21905,'files','25295','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21906,'files','25296','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21907,'files','25297','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21908,'files','25298','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21909,'files','25299','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21910,'files','25300','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21911,'files','25301','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21912,'files','25302','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21913,'files','25303','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21914,'files','25304','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21915,'files','25305','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21916,'files','25306','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21917,'files','25307','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21918,'files','25308','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21919,'files','25309','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21920,'files','25310','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21921,'files','25311','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21922,'files','25312','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21923,'files','25313','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21924,'files','25314','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21925,'files','25315','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21926,'files','25316','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21927,'files','25317','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21928,'files','25318','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21929,'files','25319','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21930,'files','25320','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21931,'files','25321','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21932,'files','25322','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21933,'files','25323','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21934,'files','25324','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21935,'files','25325','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21936,'files','25326','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21937,'files','25327','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21938,'files','25328','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21939,'files','25329','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21940,'files','25330','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21941,'files','25331','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21942,'files','25332','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21943,'files','25333','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21944,'files','25334','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21945,'files','25335','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21946,'files','25336','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21947,'files','25337','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21948,'files','25338','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21949,'files','25339','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21950,'files','25340','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21951,'files','25341','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21952,'files','25342','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21953,'files','25343','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21954,'files','25344','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21955,'files','25345','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21956,'files','25346','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21957,'files','25347','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21958,'files','25348','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21959,'files','25349','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21960,'files','25350','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21961,'files','25351','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21962,'files','25352','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21963,'files','25353','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21964,'files','25354','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21965,'files','25355','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21966,'files','25356','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21967,'files','25357','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21968,'files','25358','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21969,'files','25359','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21970,'files','25360','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21971,'files','25361','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21972,'files','25362','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21973,'files','25363','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21974,'files','25364','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21975,'files','25365','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21976,'files','25366','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21977,'files','25367','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21978,'files','25368','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21979,'files','25369','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21980,'files','25370','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21981,'files','25371','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21982,'files','25372','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21983,'files','25373','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21984,'files','25374','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21985,'files','25375','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21986,'files','25376','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21987,'files','25377','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21988,'files','25378','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21989,'files','25379','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21990,'files','25380','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21991,'files','25381','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21992,'files','25382','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21993,'files','25383','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21994,'files','25384','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21995,'files','25385','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21996,'files','25386','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21997,'files','25387','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21998,'files','25388','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(21999,'files','25389','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22000,'files','25390','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22001,'files','25391','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22002,'files','25392','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22003,'files','25393','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22004,'files','25394','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22005,'files','25395','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22006,'files','25396','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22007,'files','25397','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22008,'files','25398','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22009,'files','25400','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22010,'files','25401','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22011,'files','25402','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22012,'files','25405','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22013,'files','25406','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22014,'files','25407','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22015,'files','25408','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22016,'files','25409','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22017,'files','25410','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22018,'files','25411','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22019,'files','25412','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22020,'files','25413','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22021,'files','25414','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22022,'files','25415','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22023,'files','25416','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22024,'files','25417','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22025,'files','25418','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22026,'files','25419','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22027,'files','25420','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22028,'files','25421','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22029,'files','25422','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22030,'files','25423','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22031,'files','25424','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22032,'files','25425','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22033,'files','25426','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22034,'files','25427','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22035,'files','25428','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22036,'files','25429','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22037,'files','25430','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22038,'files','25431','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22039,'files','25432','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22040,'files','25433','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22041,'files','25434','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22042,'files','25435','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22043,'files','25436','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22044,'files','25437','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22045,'files','25438','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22046,'files','25439','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22047,'files','25440','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22048,'files','25441','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22049,'files','25442','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22050,'files','25443','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22051,'files','25444','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22052,'files','25445','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22053,'files','25446','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22054,'files','25447','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22055,'files','25448','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22056,'files','25449','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22057,'files','25450','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22058,'files','25451','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22059,'files','25452','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22060,'files','25453','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22061,'files','25454','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22062,'files','25455','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22063,'files','25456','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22064,'files','25457','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22065,'files','25458','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22066,'files','25459','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22067,'files','25460','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22068,'files','25461','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22069,'files','25462','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22070,'files','25463','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22071,'files','25464','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22072,'files','25465','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22073,'files','25466','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22074,'files','25467','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22075,'files','25468','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22076,'files','25469','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22077,'files','25470','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22078,'files','25471','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22079,'files','25472','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22080,'files','25473','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22081,'files','25474','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22082,'files','25475','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22083,'files','25476','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22084,'files','25477','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22085,'files','25478','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22086,'files','25479','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22087,'files','25480','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22088,'files','25481','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22089,'files','25482','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22090,'files','25483','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22091,'files','25484','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22092,'files','25485','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22093,'files','25486','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22094,'files','25487','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22095,'files','25488','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22096,'files','25489','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22097,'files','25490','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22098,'files','25491','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22099,'files','25492','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22100,'files','25493','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22101,'files','25494','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22102,'files','25495','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22103,'files','25496','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22104,'files','25498','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22105,'files','25499','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22106,'files','25500','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22107,'files','25501','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22108,'files','25502','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22109,'files','25503','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22110,'files','25504','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22111,'files','25505','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22112,'files','25506','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22113,'files','25507','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22114,'files','25508','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22115,'files','25509','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22116,'files','25510','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22117,'files','25511','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22118,'files','25512','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22119,'files','25513','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22120,'files','25514','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22121,'files','25515','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22122,'files','25516','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22123,'files','25517','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22124,'files','25518','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22125,'files','25519','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22126,'files','25520','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22127,'files','25521','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22128,'files','25522','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22129,'files','25523','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22130,'files','25524','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22131,'files','25525','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22132,'files','25526','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22133,'files','25527','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22134,'files','25528','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22135,'files','25529','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22136,'files','25530','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22137,'files','25531','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22138,'files','25532','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22139,'files','25533','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22140,'files','25534','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22141,'files','25535','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22142,'files','25536','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22143,'files','25537','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22144,'files','25538','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22145,'files','25539','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22146,'files','25540','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22147,'files','25541','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22148,'files','25542','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22149,'files','25543','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22150,'files','25544','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22151,'files','25545','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22152,'files','25546','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22153,'files','25547','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22154,'files','25548','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22155,'files','25549','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22156,'files','25550','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22157,'files','25551','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22158,'files','25552','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22159,'files','25553','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22160,'files','25554','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22161,'files','25555','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22162,'files','25556','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22163,'files','25557','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22164,'files','25558','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22165,'files','25559','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22166,'files','25560','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22167,'files','25561','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22168,'files','25562','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22169,'files','25563','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22170,'files','25564','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22171,'files','25565','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22172,'files','25566','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22173,'files','25567','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22174,'files','25568','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22175,'files','25569','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22176,'files','25570','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22177,'files','25571','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22178,'files','25572','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22179,'files','25573','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22180,'files','25574','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22181,'files','25575','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22182,'files','25576','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22183,'files','25577','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22184,'files','25578','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22185,'files','25579','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22186,'files','25580','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22187,'files','25581','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22188,'files','25582','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22189,'files','25583','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22190,'files','25584','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22191,'files','25585','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22192,'files','25586','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22193,'files','25587','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22194,'files','25588','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22195,'files','25589','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22196,'files','25590','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22197,'files','25591','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22198,'files','25592','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22199,'files','25593','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22200,'files','25594','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22201,'files','25595','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22202,'files','25596','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22203,'files','25597','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22204,'files','25598','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22205,'files','25599','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22206,'files','25600','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22207,'files','25601','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22208,'files','25602','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22209,'files','25603','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22210,'files','25604','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22211,'files','25605','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22212,'files','25606','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22213,'files','25607','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22214,'files','25608','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22215,'files','25609','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22216,'files','25610','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22217,'files','25611','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22218,'files','25612','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22219,'files','25613','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22220,'files','25614','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22221,'files','25615','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22222,'files','25616','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22223,'files','25617','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22224,'files','25618','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22225,'files','25619','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22226,'files','25620','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22227,'files','25621','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22228,'files','25622','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22229,'files','25623','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22230,'files','25624','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22231,'files','25625','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22232,'files','25626','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22233,'files','25627','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22234,'files','25628','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22235,'files','25629','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22236,'files','25630','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22237,'files','25631','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22238,'files','25632','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22239,'files','25633','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22240,'files','25634','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22241,'files','25635','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22242,'files','25636','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22243,'files','25637','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22244,'files','25638','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22245,'files','25639','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22246,'files','25640','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22247,'files','25641','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22248,'files','25642','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22249,'files','25643','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22250,'files','25644','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22251,'files','25645','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22252,'files','25647','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22253,'files','25649','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22254,'files','25650','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22255,'files','25651','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22256,'files','25652','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22257,'files','25653','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22258,'files','25654','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22259,'files','25655','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22260,'files','25656','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22261,'files','25657','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22262,'files','25658','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22263,'files','25659','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22264,'files','25660','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22265,'files','25661','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22266,'files','25662','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22267,'files','25663','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22268,'files','25664','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22269,'files','25665','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22270,'files','25666','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22271,'files','25667','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22272,'files','25668','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22273,'files','25669','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22274,'files','25670','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22275,'files','25671','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22276,'files','25672','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22277,'files','25673','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22278,'files','25674','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22279,'files','25675','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22280,'files','25676','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22281,'files','25677','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22282,'files','25678','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22283,'files','25679','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22284,'files','25680','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22285,'files','25681','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22286,'files','25682','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22287,'files','25683','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22288,'files','25684','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22289,'files','25685','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22290,'files','25686','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22291,'files','25687','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22292,'files','25688','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22293,'files','25689','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22294,'files','25690','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22295,'files','25691','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22296,'files','25692','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22297,'files','25693','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22298,'files','25694','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22299,'files','25695','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22300,'files','25696','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22301,'files','25697','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22302,'files','25698','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22303,'files','25699','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22304,'files','25700','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22305,'files','25701','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22306,'files','25702','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22307,'files','25703','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22308,'files','25704','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22309,'files','25705','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22310,'files','25706','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22311,'files','25707','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22312,'files','25708','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22313,'files','25709','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22314,'files','25710','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22315,'files','25711','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22316,'files','25712','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22317,'files','25713','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22318,'files','25714','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22319,'files','25715','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22320,'files','25716','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22321,'files','25717','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22322,'files','25718','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22323,'files','25719','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22324,'files','25720','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22325,'files','25721','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22326,'files','25722','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22327,'files','25723','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22328,'files','25724','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22329,'files','25725','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22330,'files','25726','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22331,'files','25727','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22332,'files','25728','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22333,'files','25729','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22334,'files','25730','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22335,'files','25731','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22336,'files','25732','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22337,'files','25733','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22338,'files','25734','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22339,'files','25735','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22340,'files','25736','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22341,'files','25737','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22342,'files','25738','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22343,'files','25739','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22344,'files','25740','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22345,'files','25741','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22346,'files','25742','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22347,'files','25743','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22348,'files','25744','error','Deal not found: 150',NULL,'2025-11-14 00:17:02'),
(22349,'files','25745','error','Deal not found: 150',NULL,'2025-11-14 00:17:02'),
(22350,'files','25746','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22351,'files','25747','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22352,'files','25748','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22353,'files','25749','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22354,'files','25750','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22355,'files','25751','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22356,'files','25752','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22357,'files','25753','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22358,'files','25754','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22359,'files','25755','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22360,'files','25756','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22361,'files','25757','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22362,'files','25758','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22363,'files','25759','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22364,'files','25760','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22365,'files','25761','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22366,'files','25762','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22367,'files','25763','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22368,'files','25764','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22369,'files','25765','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22370,'files','25766','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22371,'files','25767','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22372,'files','25768','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22373,'files','25769','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22374,'files','25770','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22375,'files','25771','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22376,'files','25772','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22377,'files','25773','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22378,'files','25774','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22379,'files','25775','skipped','No deal associated',NULL,'2025-11-14 00:17:02'),
(22380,'files','25776','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22381,'files','25777','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22382,'files','25778','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22383,'files','25779','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22384,'files','25780','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22385,'files','25781','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22386,'files','25782','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22387,'files','25783','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22388,'files','25784','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22389,'files','25786','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22390,'files','25787','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22391,'files','25788','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22392,'files','25789','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22393,'files','25790','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22394,'files','25791','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22395,'files','25792','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22396,'files','25793','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22397,'files','25794','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22398,'files','25795','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22399,'files','25796','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22400,'files','25797','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22401,'files','25798','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22402,'files','25799','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22403,'files','25800','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22404,'files','25801','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22405,'files','25802','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22406,'files','25803','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22407,'files','25804','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22408,'files','25805','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22409,'files','25806','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22410,'files','25807','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22411,'files','25808','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22412,'files','25809','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22413,'files','25812','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22414,'files','25813','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22415,'files','25814','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22416,'files','25815','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22417,'files','25816','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22418,'files','25817','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22419,'files','25818','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22420,'files','25819','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22421,'files','25820','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22422,'files','25821','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22423,'files','25822','error','Deal not found: 717',NULL,'2025-11-14 00:17:03'),
(22424,'files','25823','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22425,'files','25824','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22426,'files','25825','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22427,'files','25826','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22428,'files','25827','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22429,'files','25828','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22430,'files','25829','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22431,'files','25830','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22432,'files','25831','error','Deal not found: 717',NULL,'2025-11-14 00:17:03'),
(22433,'files','25832','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22434,'files','25833','error','Deal not found: 717',NULL,'2025-11-14 00:17:03'),
(22435,'files','25834','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22436,'files','25835','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22437,'files','25836','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22438,'files','25837','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22439,'files','25838','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22440,'files','25839','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22441,'files','25840','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22442,'files','25841','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22443,'files','25842','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22444,'files','25843','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22445,'files','25844','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22446,'files','25845','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22447,'files','25846','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22448,'files','25847','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22449,'files','25848','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22450,'files','25849','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22451,'files','25850','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22452,'files','25851','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22453,'files','25852','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22454,'files','25853','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22455,'files','25854','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22456,'files','25855','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22457,'files','25856','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22458,'files','25857','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22459,'files','25858','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22460,'files','25859','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22461,'files','25860','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22462,'files','25861','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22463,'files','25862','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22464,'files','25863','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22465,'files','25864','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22466,'files','25865','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22467,'files','25866','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22468,'files','25867','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22469,'files','25868','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22470,'files','25869','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22471,'files','25870','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22472,'files','25871','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22473,'files','25872','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22474,'files','25873','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22475,'files','25874','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22476,'files','25875','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22477,'files','25876','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22478,'files','25877','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22479,'files','25878','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22480,'files','25879','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22481,'files','25880','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22482,'files','25881','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22483,'files','25882','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22484,'files','25883','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22485,'files','25884','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22486,'files','25885','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22487,'files','25886','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22488,'files','25887','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22489,'files','25888','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22490,'files','25889','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22491,'files','25890','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22492,'files','25891','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22493,'files','25892','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22494,'files','25893','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22495,'files','25894','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22496,'files','25895','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22497,'files','25897','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22498,'files','25898','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22499,'files','25899','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22500,'files','25900','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22501,'files','25901','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22502,'files','25902','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22503,'files','25903','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22504,'files','25904','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22505,'files','25905','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22506,'files','25906','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22507,'files','25907','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22508,'files','25908','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22509,'files','25909','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22510,'files','25910','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22511,'files','25911','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22512,'files','25912','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22513,'files','25913','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22514,'files','25914','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22515,'files','25915','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22516,'files','25916','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22517,'files','25917','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22518,'files','25918','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22519,'files','25919','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22520,'files','25920','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22521,'files','25921','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22522,'files','25922','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22523,'files','25923','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22524,'files','25924','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22525,'files','25925','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22526,'files','25926','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22527,'files','25927','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22528,'files','25928','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22529,'files','25930','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22530,'files','25931','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22531,'files','25932','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22532,'files','25933','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22533,'files','25934','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22534,'files','25935','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22535,'files','25936','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22536,'files','25937','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22537,'files','25938','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22538,'files','25939','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22539,'files','25940','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22540,'files','25941','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22541,'files','25942','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22542,'files','25943','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22543,'files','25944','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22544,'files','25945','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22545,'files','25946','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22546,'files','25947','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22547,'files','25948','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22548,'files','25949','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22549,'files','25950','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22550,'files','25951','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22551,'files','25952','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22552,'files','25953','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22553,'files','25954','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22554,'files','25955','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22555,'files','25956','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22556,'files','25957','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22557,'files','25958','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22558,'files','25959','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22559,'files','25960','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22560,'files','25961','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22561,'files','25962','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22562,'files','25963','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22563,'files','25964','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22564,'files','25965','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22565,'files','25966','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22566,'files','25967','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22567,'files','25968','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22568,'files','25969','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22569,'files','25970','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22570,'files','25971','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22571,'files','25972','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22572,'files','25973','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22573,'files','25974','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22574,'files','25975','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22575,'files','25976','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22576,'files','25977','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22577,'files','25978','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22578,'files','25979','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22579,'files','25980','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22580,'files','25981','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22581,'files','25982','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22582,'files','25983','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22583,'files','25984','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22584,'files','25985','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22585,'files','25986','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22586,'files','25987','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22587,'files','25988','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22588,'files','25989','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22589,'files','25990','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22590,'files','25991','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22591,'files','25992','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22592,'files','25993','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22593,'files','25994','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22594,'files','25995','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22595,'files','25996','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22596,'files','25997','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22597,'files','25998','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22598,'files','25999','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22599,'files','26000','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22600,'files','26001','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22601,'files','26002','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22602,'files','26003','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22603,'files','26004','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22604,'files','26005','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22605,'files','26006','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22606,'files','26007','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22607,'files','26008','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22608,'files','26009','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22609,'files','26010','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22610,'files','26011','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22611,'files','26012','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22612,'files','26013','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22613,'files','26014','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22614,'files','26015','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22615,'files','26016','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22616,'files','26017','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22617,'files','26018','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22618,'files','26019','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22619,'files','26020','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22620,'files','26021','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22621,'files','26022','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22622,'files','26023','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22623,'files','26024','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22624,'files','26025','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22625,'files','26026','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22626,'files','26027','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22627,'files','26028','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22628,'files','26029','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22629,'files','26030','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22630,'files','26031','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22631,'files','26032','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22632,'files','26033','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22633,'files','26034','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22634,'files','26035','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22635,'files','26036','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22636,'files','26037','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22637,'files','26038','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22638,'files','26039','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22639,'files','26040','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22640,'files','26041','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22641,'files','26042','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22642,'files','26043','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22643,'files','26044','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22644,'files','26045','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22645,'files','26046','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22646,'files','26047','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22647,'files','26048','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22648,'files','26049','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22649,'files','26050','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22650,'files','26051','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22651,'files','26052','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22652,'files','26053','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22653,'files','26054','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22654,'files','26055','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22655,'files','26056','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22656,'files','26057','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22657,'files','26058','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22658,'files','26059','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22659,'files','26060','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22660,'files','26061','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22661,'files','26062','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22662,'files','26063','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22663,'files','26064','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22664,'files','26065','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22665,'files','26066','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22666,'files','26067','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22667,'files','26068','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22668,'files','26069','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22669,'files','26070','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22670,'files','26071','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22671,'files','26072','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22672,'files','26073','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22673,'files','26074','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22674,'files','26075','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22675,'files','26076','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22676,'files','26077','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22677,'files','26078','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22678,'files','26079','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22679,'files','26080','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22680,'files','26081','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22681,'files','26082','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22682,'files','26083','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22683,'files','26084','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22684,'files','26085','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22685,'files','26086','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22686,'files','26087','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22687,'files','26088','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22688,'files','26089','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22689,'files','26090','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22690,'files','26091','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22691,'files','26092','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22692,'files','26093','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22693,'files','26094','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22694,'files','26095','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22695,'files','26096','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22696,'files','26097','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22697,'files','26098','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22698,'files','26099','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22699,'files','26100','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22700,'files','26101','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22701,'files','26102','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22702,'files','26103','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22703,'files','26104','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22704,'files','26105','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22705,'files','26106','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22706,'files','26107','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22707,'files','26108','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22708,'files','26109','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22709,'files','26110','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22710,'files','26111','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22711,'files','26112','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22712,'files','26113','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22713,'files','26114','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22714,'files','26115','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22715,'files','26116','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22716,'files','26117','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22717,'files','26118','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22718,'files','26119','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22719,'files','26120','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22720,'files','26121','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22721,'files','26122','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22722,'files','26123','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22723,'files','26124','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22724,'files','26125','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22725,'files','26126','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22726,'files','26127','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22727,'files','26128','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22728,'files','26129','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22729,'files','26130','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22730,'files','26131','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22731,'files','26132','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22732,'files','26133','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22733,'files','26134','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22734,'files','26135','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22735,'files','26136','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22736,'files','26137','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22737,'files','26138','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22738,'files','26139','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22739,'files','26140','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22740,'files','26141','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22741,'files','26142','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22742,'files','26143','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22743,'files','26144','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22744,'files','26145','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22745,'files','26146','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22746,'files','26147','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22747,'files','26148','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22748,'files','26149','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22749,'files','26150','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22750,'files','26151','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22751,'files','26152','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22752,'files','26153','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22753,'files','26154','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22754,'files','26155','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22755,'files','26156','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22756,'files','26157','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22757,'files','26158','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22758,'files','26159','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22759,'files','26160','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22760,'files','26161','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22761,'files','26162','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22762,'files','26163','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22763,'files','26164','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22764,'files','26165','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22765,'files','26166','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22766,'files','26167','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22767,'files','26168','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22768,'files','26169','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22769,'files','26170','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22770,'files','26171','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22771,'files','26172','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22772,'files','26173','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22773,'files','26174','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22774,'files','26175','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22775,'files','26176','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22776,'files','26177','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22777,'files','26178','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22778,'files','26179','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22779,'files','26180','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22780,'files','26181','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22781,'files','26182','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22782,'files','26183','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22783,'files','26184','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22784,'files','26185','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22785,'files','26186','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22786,'files','26187','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22787,'files','26188','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22788,'files','26189','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22789,'files','26190','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22790,'files','26191','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22791,'files','26192','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22792,'files','26193','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22793,'files','26194','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22794,'files','26195','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22795,'files','26196','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22796,'files','26197','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22797,'files','26198','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22798,'files','26199','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22799,'files','26200','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22800,'files','26201','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22801,'files','26202','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22802,'files','26203','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22803,'files','26204','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22804,'files','26205','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22805,'files','26206','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22806,'files','26207','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22807,'files','26208','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22808,'files','26209','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22809,'files','26210','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22810,'files','26211','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22811,'files','26212','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22812,'files','26213','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22813,'files','26214','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22814,'files','26215','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22815,'files','26216','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22816,'files','26217','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22817,'files','26218','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22818,'files','26219','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22819,'files','26220','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22820,'files','26221','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22821,'files','26222','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22822,'files','26223','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22823,'files','26224','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22824,'files','26225','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22825,'files','26226','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22826,'files','26227','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22827,'files','26228','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22828,'files','26229','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22829,'files','26230','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22830,'files','26231','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22831,'files','26232','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22832,'files','26233','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22833,'files','26234','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22834,'files','26235','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22835,'files','26236','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22836,'files','26237','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22837,'files','26238','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22838,'files','26239','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22839,'files','26240','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22840,'files','26241','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22841,'files','26242','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22842,'files','26243','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22843,'files','26244','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22844,'files','26245','error','Deal not found: 375',NULL,'2025-11-14 00:17:03'),
(22845,'files','26246','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22846,'files','26247','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22847,'files','26248','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22848,'files','26249','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22849,'files','26250','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22850,'files','26251','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22851,'files','26252','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22852,'files','26254','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22853,'files','26258','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22854,'files','26259','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22855,'files','26260','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22856,'files','26261','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22857,'files','26262','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22858,'files','26263','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22859,'files','26264','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22860,'files','26265','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22861,'files','26266','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22862,'files','26267','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22863,'files','26268','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22864,'files','26269','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22865,'files','26270','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22866,'files','26271','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22867,'files','26272','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22868,'files','26273','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22869,'files','26274','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22870,'files','26275','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22871,'files','26276','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22872,'files','26277','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22873,'files','26278','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22874,'files','26279','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22875,'files','26280','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22876,'files','26281','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22877,'files','26282','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22878,'files','26283','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22879,'files','26284','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22880,'files','26285','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22881,'files','26286','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22882,'files','26287','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22883,'files','26288','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22884,'files','26289','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22885,'files','26290','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22886,'files','26291','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22887,'files','26292','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22888,'files','26293','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22889,'files','26294','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22890,'files','26295','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22891,'files','26296','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22892,'files','26298','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22893,'files','26299','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22894,'files','26300','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22895,'files','26301','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22896,'files','26302','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22897,'files','26303','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22898,'files','26304','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22899,'files','26305','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22900,'files','26306','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22901,'files','26307','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22902,'files','26308','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22903,'files','26309','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22904,'files','26310','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22905,'files','26311','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22906,'files','26312','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22907,'files','26313','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22908,'files','26314','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22909,'files','26315','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22910,'files','26316','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22911,'files','26317','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22912,'files','26318','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22913,'files','26319','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22914,'files','26320','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22915,'files','26321','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22916,'files','26322','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22917,'files','26323','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22918,'files','26324','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22919,'files','26325','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22920,'files','26326','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22921,'files','26327','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22922,'files','26328','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22923,'files','26329','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22924,'files','26330','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22925,'files','26331','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22926,'files','26332','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22927,'files','26333','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22928,'files','26334','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22929,'files','26335','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22930,'files','26336','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22931,'files','26337','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22932,'files','26338','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22933,'files','26339','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22934,'files','26340','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22935,'files','26341','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22936,'files','26342','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22937,'files','26343','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22938,'files','26344','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22939,'files','26345','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22940,'files','26346','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22941,'files','26347','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22942,'files','26348','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22943,'files','26349','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22944,'files','26350','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22945,'files','26351','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22946,'files','26352','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22947,'files','26353','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22948,'files','26354','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22949,'files','26355','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22950,'files','26356','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22951,'files','26357','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22952,'files','26358','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22953,'files','26359','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22954,'files','26360','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22955,'files','26361','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22956,'files','26362','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22957,'files','26363','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22958,'files','26364','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22959,'files','26365','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22960,'files','26366','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22961,'files','26367','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22962,'files','26368','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22963,'files','26369','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22964,'files','26370','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22965,'files','26371','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22966,'files','26372','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22967,'files','26373','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22968,'files','26374','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22969,'files','26375','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22970,'files','26376','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22971,'files','26377','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22972,'files','26378','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22973,'files','26379','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22974,'files','26380','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22975,'files','26381','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22976,'files','26382','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22977,'files','26383','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22978,'files','26384','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22979,'files','26385','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22980,'files','26386','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22981,'files','26387','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22982,'files','26388','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22983,'files','26389','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22984,'files','26390','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22985,'files','26391','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22986,'files','26392','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22987,'files','26393','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22988,'files','26394','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22989,'files','26395','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22990,'files','26396','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22991,'files','26397','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22992,'files','26398','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22993,'files','26399','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22994,'files','26400','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22995,'files','26401','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22996,'files','26402','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22997,'files','26403','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22998,'files','26404','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(22999,'files','26405','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23000,'files','26406','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23001,'files','26407','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23002,'files','26408','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23003,'files','26409','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23004,'files','26410','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23005,'files','26411','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23006,'files','26412','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23007,'files','26413','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23008,'files','26414','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23009,'files','26415','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23010,'files','26416','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23011,'files','26417','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23012,'files','26418','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23013,'files','26419','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23014,'files','26420','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23015,'files','26421','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23016,'files','26422','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23017,'files','26423','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23018,'files','26424','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23019,'files','26425','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23020,'files','26426','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23021,'files','26427','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23022,'files','26428','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23023,'files','26429','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23024,'files','26430','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23025,'files','26431','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23026,'files','26432','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23027,'files','26433','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23028,'files','26434','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23029,'files','26435','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23030,'files','26436','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23031,'files','26437','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23032,'files','26438','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23033,'files','26439','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23034,'files','26440','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23035,'files','26441','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23036,'files','26442','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23037,'files','26443','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23038,'files','26444','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23039,'files','26445','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23040,'files','26446','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23041,'files','26447','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23042,'files','26448','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23043,'files','26450','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23044,'files','26451','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23045,'files','26452','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23046,'files','26453','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23047,'files','26454','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23048,'files','26455','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23049,'files','26456','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23050,'files','26457','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23051,'files','26458','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23052,'files','26459','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23053,'files','26460','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23054,'files','26461','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23055,'files','26462','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23056,'files','26463','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23057,'files','26464','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23058,'files','26465','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23059,'files','26466','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23060,'files','26467','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23061,'files','26468','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23062,'files','26469','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23063,'files','26470','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23064,'files','26471','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23065,'files','26472','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23066,'files','26473','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23067,'files','26474','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23068,'files','26475','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23069,'files','26476','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23070,'files','26477','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23071,'files','26478','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23072,'files','26479','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23073,'files','26481','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23074,'files','26482','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23075,'files','26483','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23076,'files','26484','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23077,'files','26485','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23078,'files','26486','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23079,'files','26487','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23080,'files','26488','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23081,'files','26489','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23082,'files','26490','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23083,'files','26491','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23084,'files','26492','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23085,'files','26493','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23086,'files','26494','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23087,'files','26495','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23088,'files','26496','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23089,'files','26497','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23090,'files','26498','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23091,'files','26499','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23092,'files','26500','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23093,'files','26501','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23094,'files','26502','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23095,'files','26503','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23096,'files','26504','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23097,'files','26505','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23098,'files','26506','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23099,'files','26507','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23100,'files','26508','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23101,'files','26509','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23102,'files','26510','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23103,'files','26511','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23104,'files','26512','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23105,'files','26513','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23106,'files','26514','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23107,'files','26515','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23108,'files','26516','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23109,'files','26517','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23110,'files','26518','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23111,'files','26519','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23112,'files','26520','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23113,'files','26521','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23114,'files','26522','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23115,'files','26523','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23116,'files','26524','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23117,'files','26525','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23118,'files','26526','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23119,'files','26527','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23120,'files','26528','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23121,'files','26529','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23122,'files','26530','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23123,'files','26531','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23124,'files','26532','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23125,'files','26533','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23126,'files','26534','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23127,'files','26535','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23128,'files','26536','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23129,'files','26537','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23130,'files','26538','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23131,'files','26539','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23132,'files','26540','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23133,'files','26541','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23134,'files','26542','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23135,'files','26543','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23136,'files','26544','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23137,'files','26545','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23138,'files','26546','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23139,'files','26547','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23140,'files','26548','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23141,'files','26549','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23142,'files','26550','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23143,'files','26551','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23144,'files','26552','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23145,'files','26553','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23146,'files','26554','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23147,'files','26555','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23148,'files','26556','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23149,'files','26557','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23150,'files','26558','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23151,'files','26559','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23152,'files','26560','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23153,'files','26561','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23154,'files','26562','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23155,'files','26563','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23156,'files','26564','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23157,'files','26565','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23158,'files','26566','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23159,'files','26567','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23160,'files','26568','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23161,'files','26569','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23162,'files','26570','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23163,'files','26571','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23164,'files','26572','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23165,'files','26573','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23166,'files','26574','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23167,'files','26575','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23168,'files','26576','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23169,'files','26577','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23170,'files','26578','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23171,'files','26579','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23172,'files','26580','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23173,'files','26581','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23174,'files','26582','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23175,'files','26583','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23176,'files','26584','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23177,'files','26585','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23178,'files','26586','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23179,'files','26587','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23180,'files','26588','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23181,'files','26589','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23182,'files','26590','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23183,'files','26591','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23184,'files','26592','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23185,'files','26594','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23186,'files','26595','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23187,'files','26596','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23188,'files','26597','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23189,'files','26598','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23190,'files','26599','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23191,'files','26600','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23192,'files','26601','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23193,'files','26602','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23194,'files','26603','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23195,'files','26604','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23196,'files','26605','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23197,'files','26606','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23198,'files','26607','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23199,'files','26608','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23200,'files','26609','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23201,'files','26610','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23202,'files','26611','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23203,'files','26612','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23204,'files','26613','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23205,'files','26614','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23206,'files','26615','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23207,'files','26616','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23208,'files','26617','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23209,'files','26618','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23210,'files','26619','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23211,'files','26620','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23212,'files','26621','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23213,'files','26622','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23214,'files','26623','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23215,'files','26624','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23216,'files','26625','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23217,'files','26626','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23218,'files','26627','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23219,'files','26628','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23220,'files','26629','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23221,'files','26630','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23222,'files','26631','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23223,'files','26632','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23224,'files','26633','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23225,'files','26634','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23226,'files','26635','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23227,'files','26636','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23228,'files','26637','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23229,'files','26638','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23230,'files','26639','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23231,'files','26640','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23232,'files','26641','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23233,'files','26642','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23234,'files','26643','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23235,'files','26644','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23236,'files','26645','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23237,'files','26646','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23238,'files','26647','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23239,'files','26648','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23240,'files','26649','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23241,'files','26650','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23242,'files','26651','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23243,'files','26652','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23244,'files','26653','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23245,'files','26654','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23246,'files','26655','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23247,'files','26656','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23248,'files','26657','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23249,'files','26658','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23250,'files','26660','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23251,'files','26661','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23252,'files','26662','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23253,'files','26663','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23254,'files','26664','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23255,'files','26665','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23256,'files','26666','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23257,'files','26667','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23258,'files','26668','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23259,'files','26669','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23260,'files','26670','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23261,'files','26671','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23262,'files','26672','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23263,'files','26673','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23264,'files','26674','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23265,'files','26675','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23266,'files','26676','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23267,'files','26677','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23268,'files','26678','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23269,'files','26679','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23270,'files','26680','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23271,'files','26681','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23272,'files','26682','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23273,'files','26683','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23274,'files','26684','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23275,'files','26685','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23276,'files','26686','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23277,'files','26687','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23278,'files','26688','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23279,'files','26689','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23280,'files','26690','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23281,'files','26691','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23282,'files','26692','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23283,'files','26693','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23284,'files','26694','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23285,'files','26695','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23286,'files','26696','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23287,'files','26697','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23288,'files','26698','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23289,'files','26699','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23290,'files','26700','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23291,'files','26701','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23292,'files','26702','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23293,'files','26703','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23294,'files','26704','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23295,'files','26705','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23296,'files','26706','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23297,'files','26707','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23298,'files','26708','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23299,'files','26709','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23300,'files','26710','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23301,'files','26711','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23302,'files','26712','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23303,'files','26713','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23304,'files','26714','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23305,'files','26715','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23306,'files','26716','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23307,'files','26717','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23308,'files','26718','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23309,'files','26719','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23310,'files','26720','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23311,'files','26721','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23312,'files','26722','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23313,'files','26723','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23314,'files','26724','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23315,'files','26725','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23316,'files','26726','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23317,'files','26727','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23318,'files','26728','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23319,'files','26729','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23320,'files','26730','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23321,'files','26732','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23322,'files','26733','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23323,'files','26734','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23324,'files','26735','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23325,'files','26736','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23326,'files','26737','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23327,'files','26738','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23328,'files','26739','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23329,'files','26740','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23330,'files','26741','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23331,'files','26742','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23332,'files','26743','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23333,'files','26744','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23334,'files','26745','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23335,'files','26746','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23336,'files','26747','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23337,'files','26748','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23338,'files','26749','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23339,'files','26750','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23340,'files','26751','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23341,'files','26752','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23342,'files','26753','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23343,'files','26754','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23344,'files','26755','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23345,'files','26756','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23346,'files','26757','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23347,'files','26758','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23348,'files','26759','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23349,'files','26760','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23350,'files','26761','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23351,'files','26762','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23352,'files','26763','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23353,'files','26764','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23354,'files','26765','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23355,'files','26766','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23356,'files','26767','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23357,'files','26768','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23358,'files','26769','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23359,'files','26770','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23360,'files','26771','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23361,'files','26772','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23362,'files','26773','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23363,'files','26774','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23364,'files','26775','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23365,'files','26776','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23366,'files','26777','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23367,'files','26778','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23368,'files','26779','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23369,'files','26780','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23370,'files','26781','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23371,'files','26782','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23372,'files','26783','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23373,'files','26784','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23374,'files','26785','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23375,'files','26786','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23376,'files','26787','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23377,'files','26788','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23378,'files','26789','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23379,'files','26790','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23380,'files','26791','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23381,'files','26792','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23382,'files','26793','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23383,'files','26794','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23384,'files','26795','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23385,'files','26798','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23386,'files','26799','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23387,'files','26800','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23388,'files','26801','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23389,'files','26802','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23390,'files','26803','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23391,'files','26804','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23392,'files','26805','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23393,'files','26806','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23394,'files','26807','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23395,'files','26808','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23396,'files','26812','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23397,'files','26813','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23398,'files','26814','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23399,'files','26815','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23400,'files','26816','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23401,'files','26817','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23402,'files','26818','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23403,'files','26819','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23404,'files','26820','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23405,'files','26821','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23406,'files','26822','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23407,'files','26823','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23408,'files','26825','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23409,'files','26826','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23410,'files','26827','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23411,'files','26828','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23412,'files','26829','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23413,'files','26830','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23414,'files','26831','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23415,'files','26832','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23416,'files','26833','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23417,'files','26834','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23418,'files','26835','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23419,'files','26836','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23420,'files','26837','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23421,'files','26838','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23422,'files','26839','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23423,'files','26840','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23424,'files','26841','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23425,'files','26842','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23426,'files','26843','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23427,'files','26844','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23428,'files','26845','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23429,'files','26846','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23430,'files','26847','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23431,'files','26848','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23432,'files','26849','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23433,'files','26850','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23434,'files','26851','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23435,'files','26852','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23436,'files','26853','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23437,'files','26854','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23438,'files','26855','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23439,'files','26856','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23440,'files','26857','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23441,'files','26858','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23442,'files','26859','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23443,'files','26860','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23444,'files','26861','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23445,'files','26862','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23446,'files','26863','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23447,'files','26864','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23448,'files','26865','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23449,'files','26866','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23450,'files','26867','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23451,'files','26868','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23452,'files','26869','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23453,'files','26870','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23454,'files','26871','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23455,'files','26872','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23456,'files','26873','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23457,'files','26874','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23458,'files','26875','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23459,'files','26876','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23460,'files','26877','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23461,'files','26878','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23462,'files','26879','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23463,'files','26880','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23464,'files','26881','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23465,'files','26882','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23466,'files','26883','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23467,'files','26884','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23468,'files','26885','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23469,'files','26886','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23470,'files','26887','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23471,'files','26888','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23472,'files','26889','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23473,'files','26890','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23474,'files','26891','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23475,'files','26892','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23476,'files','26893','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23477,'files','26894','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23478,'files','26895','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23479,'files','26896','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23480,'files','26897','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23481,'files','26898','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23482,'files','26899','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23483,'files','26900','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23484,'files','26901','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23485,'files','26902','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23486,'files','26903','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23487,'files','26904','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23488,'files','26905','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23489,'files','26906','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23490,'files','26907','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23491,'files','26908','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23492,'files','26909','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23493,'files','26910','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23494,'files','26911','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23495,'files','26912','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23496,'files','26913','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23497,'files','26914','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23498,'files','26915','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23499,'files','26916','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23500,'files','26917','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23501,'files','26918','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23502,'files','26919','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23503,'files','26920','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23504,'files','26921','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23505,'files','26922','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23506,'files','26923','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23507,'files','26924','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23508,'files','26925','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23509,'files','26926','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23510,'files','26927','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23511,'files','26928','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23512,'files','26929','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23513,'files','26930','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23514,'files','26931','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23515,'files','26932','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23516,'files','26933','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23517,'files','26934','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23518,'files','26935','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23519,'files','26936','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23520,'files','26937','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23521,'files','26938','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23522,'files','26939','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23523,'files','26940','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23524,'files','26941','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23525,'files','26942','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23526,'files','26943','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23527,'files','26944','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23528,'files','26945','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23529,'files','26946','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23530,'files','26947','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23531,'files','26948','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23532,'files','26950','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23533,'files','26952','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23534,'files','26953','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23535,'files','26954','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23536,'files','26955','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23537,'files','26956','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23538,'files','26957','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23539,'files','26958','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23540,'files','26959','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23541,'files','26960','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23542,'files','26961','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23543,'files','26962','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23544,'files','26963','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23545,'files','26964','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23546,'files','26965','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23547,'files','26967','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23548,'files','26968','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23549,'files','26969','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23550,'files','26970','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23551,'files','26971','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23552,'files','26972','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23553,'files','26973','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23554,'files','26974','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23555,'files','26975','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23556,'files','26976','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23557,'files','26977','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23558,'files','26978','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23559,'files','26979','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23560,'files','26980','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23561,'files','26981','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23562,'files','26982','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23563,'files','26983','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23564,'files','26984','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23565,'files','26985','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23566,'files','26986','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23567,'files','26987','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23568,'files','26988','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23569,'files','26989','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23570,'files','26990','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23571,'files','26991','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23572,'files','26992','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23573,'files','26993','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23574,'files','26994','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23575,'files','26995','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23576,'files','26996','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23577,'files','26997','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23578,'files','26998','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23579,'files','26999','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23580,'files','27000','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23581,'files','27001','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23582,'files','27002','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23583,'files','27003','error','Deal not found: 508',NULL,'2025-11-14 00:17:03'),
(23584,'files','27004','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23585,'files','27005','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23586,'files','27006','error','Deal not found: 196',NULL,'2025-11-14 00:17:03'),
(23587,'files','27007','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23588,'files','27008','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23589,'files','27009','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23590,'files','27010','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23591,'files','27011','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23592,'files','27012','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23593,'files','27013','error','Deal not found: 508',NULL,'2025-11-14 00:17:03'),
(23594,'files','27014','error','Deal not found: 212',NULL,'2025-11-14 00:17:03'),
(23595,'files','27015','error','Deal not found: 508',NULL,'2025-11-14 00:17:03'),
(23596,'files','27016','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23597,'files','27017','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23598,'files','27018','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23599,'files','27019','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23600,'files','27020','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23601,'files','27021','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23602,'files','27022','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23603,'files','27023','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23604,'files','27024','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23605,'files','27025','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23606,'files','27026','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23607,'files','27027','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23608,'files','27028','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23609,'files','27029','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23610,'files','27030','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23611,'files','27031','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23612,'files','27032','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23613,'files','27033','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23614,'files','27034','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23615,'files','27035','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23616,'files','27036','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23617,'files','27037','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23618,'files','27038','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23619,'files','27039','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23620,'files','27040','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23621,'files','27041','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23622,'files','27042','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23623,'files','27043','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23624,'files','27044','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23625,'files','27045','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23626,'files','27046','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23627,'files','27048','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23628,'files','27050','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23629,'files','27051','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23630,'files','27053','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23631,'files','27055','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23632,'files','27058','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23633,'files','27062','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23634,'files','27063','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23635,'files','27064','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23636,'files','27065','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23637,'files','27066','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23638,'files','27067','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23639,'files','27068','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23640,'files','27069','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23641,'files','27070','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23642,'files','27071','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23643,'files','27072','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23644,'files','27073','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23645,'files','27074','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23646,'files','27075','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23647,'files','27076','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23648,'files','27077','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23649,'files','27078','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23650,'files','27079','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23651,'files','27080','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23652,'files','27081','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23653,'files','27082','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23654,'files','27083','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23655,'files','27084','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23656,'files','27085','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23657,'files','27086','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23658,'files','27087','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23659,'files','27088','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23660,'files','27089','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23661,'files','27090','error','Deal not found: 256',NULL,'2025-11-14 00:17:03'),
(23662,'files','27091','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23663,'files','27092','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23664,'files','27093','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23665,'files','27094','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23666,'files','27095','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23667,'files','27096','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23668,'files','27097','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23669,'files','27098','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23670,'files','27099','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23671,'files','27100','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23672,'files','27101','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23673,'files','27102','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23674,'files','27103','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23675,'files','27104','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23676,'files','27106','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23677,'files','27108','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23678,'files','27109','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23679,'files','27110','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23680,'files','27111','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23681,'files','27112','error','Deal not found: 717',NULL,'2025-11-14 00:17:03'),
(23682,'files','27113','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23683,'files','27114','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23684,'files','27115','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23685,'files','27116','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23686,'files','27117','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23687,'files','27118','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23688,'files','27119','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23689,'files','27120','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23690,'files','27121','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23691,'files','27122','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23692,'files','27123','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23693,'files','27124','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23694,'files','27125','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23695,'files','27126','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23696,'files','27127','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23697,'files','27128','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23698,'files','27129','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23699,'files','27130','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23700,'files','27131','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23701,'files','27132','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23702,'files','27133','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23703,'files','27134','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23704,'files','27135','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23705,'files','27136','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23706,'files','27137','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23707,'files','27138','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23708,'files','27139','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23709,'files','27140','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23710,'files','27141','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23711,'files','27142','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23712,'files','27143','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23713,'files','27144','error','Deal not found: 192',NULL,'2025-11-14 00:17:03'),
(23714,'files','27145','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23715,'files','27146','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23716,'files','27147','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23717,'files','27148','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23718,'files','27149','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23719,'files','27150','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23720,'files','27151','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23721,'files','27152','error','Deal not found: 256',NULL,'2025-11-14 00:17:03'),
(23722,'files','27153','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23723,'files','27154','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23724,'files','27155','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23725,'files','27156','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23726,'files','27157','error','Deal not found: 508',NULL,'2025-11-14 00:17:03'),
(23727,'files','27158','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23728,'files','27159','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23729,'files','27160','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23730,'files','27161','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23731,'files','27162','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23732,'files','27163','error','Deal not found: 223',NULL,'2025-11-14 00:17:03'),
(23733,'files','27164','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23734,'files','27165','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23735,'files','27166','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23736,'files','27167','error','Deal not found: 223',NULL,'2025-11-14 00:17:03'),
(23737,'files','27168','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23738,'files','27169','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23739,'files','27170','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23740,'files','27171','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23741,'files','27172','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23742,'files','27173','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23743,'files','27174','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23744,'files','27175','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23745,'files','27176','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23746,'files','27177','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23747,'files','27178','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23748,'files','27179','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23749,'files','27180','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23750,'files','27181','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23751,'files','27182','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23752,'files','27183','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23753,'files','27184','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23754,'files','27185','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23755,'files','27186','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23756,'files','27187','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23757,'files','27188','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23758,'files','27189','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23759,'files','27190','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23760,'files','27191','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23761,'files','27192','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23762,'files','27193','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23763,'files','27194','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23764,'files','27195','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23765,'files','27196','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23766,'files','27197','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23767,'files','27198','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23768,'files','27199','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23769,'files','27200','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23770,'files','27201','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23771,'files','27202','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23772,'files','27203','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23773,'files','27204','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23774,'files','27205','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23775,'files','27208','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23776,'files','27209','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23777,'files','27210','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23778,'files','27211','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23779,'files','27212','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23780,'files','27213','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23781,'files','27214','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23782,'files','27215','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23783,'files','27216','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23784,'files','27217','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23785,'files','27218','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23786,'files','27219','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23787,'files','27220','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23788,'files','27221','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23789,'files','27222','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23790,'files','27223','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23791,'files','27224','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23792,'files','27225','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23793,'files','27226','error','Deal not found: 313',NULL,'2025-11-14 00:17:03'),
(23794,'files','27227','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23795,'files','27228','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23796,'files','27229','error','Deal not found: 313',NULL,'2025-11-14 00:17:03'),
(23797,'files','27230','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23798,'files','27231','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23799,'files','27232','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23800,'files','27233','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23801,'files','27234','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23802,'files','27235','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23803,'files','27236','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23804,'files','27237','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23805,'files','27238','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23806,'files','27239','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23807,'files','27240','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23808,'files','27241','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23809,'files','27242','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23810,'files','27243','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23811,'files','27244','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23812,'files','27245','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23813,'files','27246','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23814,'files','27247','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23815,'files','27248','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23816,'files','27249','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23817,'files','27250','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23818,'files','27251','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23819,'files','27252','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23820,'files','27253','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23821,'files','27254','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23822,'files','27255','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23823,'files','27256','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23824,'files','27257','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23825,'files','27258','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23826,'files','27259','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23827,'files','27260','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23828,'files','27261','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23829,'files','27262','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23830,'files','27263','error','Deal not found: 323',NULL,'2025-11-14 00:17:03'),
(23831,'files','27264','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23832,'files','27265','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23833,'files','27266','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23834,'files','27267','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23835,'files','27268','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23836,'files','27269','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23837,'files','27270','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23838,'files','27271','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23839,'files','27272','error','Deal not found: 323',NULL,'2025-11-14 00:17:03'),
(23840,'files','27273','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23841,'files','27274','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23842,'files','27275','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23843,'files','27276','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23844,'files','27278','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23845,'files','27280','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23846,'files','27285','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23847,'files','27286','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23848,'files','27289','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23849,'files','27290','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23850,'files','27291','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23851,'files','27292','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23852,'files','27293','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23853,'files','27294','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23854,'files','27295','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23855,'files','27296','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23856,'files','27297','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23857,'files','27298','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23858,'files','27299','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23859,'files','27300','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23860,'files','27301','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23861,'files','27302','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23862,'files','27303','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23863,'files','27304','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23864,'files','27305','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23865,'files','27306','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23866,'files','27307','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23867,'files','27308','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23868,'files','27309','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23869,'files','27310','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23870,'files','27311','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23871,'files','27312','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23872,'files','27313','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23873,'files','27314','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23874,'files','27315','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23875,'files','27316','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23876,'files','27317','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23877,'files','27318','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23878,'files','27319','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23879,'files','27320','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23880,'files','27322','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23881,'files','27323','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23882,'files','27324','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23883,'files','27325','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23884,'files','27326','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23885,'files','27327','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23886,'files','27328','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23887,'files','27329','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23888,'files','27332','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23889,'files','27333','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23890,'files','27334','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23891,'files','27335','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23892,'files','27336','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23893,'files','27337','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23894,'files','27338','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23895,'files','27339','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23896,'files','27340','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23897,'files','27341','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23898,'files','27342','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23899,'files','27343','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23900,'files','27344','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23901,'files','27345','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23902,'files','27346','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23903,'files','27347','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23904,'files','27348','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23905,'files','27349','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23906,'files','27350','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23907,'files','27351','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23908,'files','27352','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23909,'files','27353','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23910,'files','27354','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23911,'files','27355','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23912,'files','27356','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23913,'files','27357','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23914,'files','27358','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23915,'files','27359','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23916,'files','27360','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23917,'files','27361','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23918,'files','27362','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23919,'files','27363','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23920,'files','27364','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23921,'files','27365','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23922,'files','27366','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23923,'files','27367','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23924,'files','27368','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23925,'files','27369','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23926,'files','27370','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23927,'files','27371','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23928,'files','27372','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23929,'files','27373','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23930,'files','27374','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23931,'files','27375','error','Deal not found: 362',NULL,'2025-11-14 00:17:03'),
(23932,'files','27376','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23933,'files','27377','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23934,'files','27378','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23935,'files','27379','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23936,'files','27380','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23937,'files','27381','error','Deal not found: 257',NULL,'2025-11-14 00:17:03'),
(23938,'files','27382','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23939,'files','27383','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23940,'files','27384','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23941,'files','27385','error','Deal not found: 186',NULL,'2025-11-14 00:17:03'),
(23942,'files','27386','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23943,'files','27387','error','Deal not found: 528',NULL,'2025-11-14 00:17:03'),
(23944,'files','27388','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23945,'files','27389','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23946,'files','27390','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23947,'files','27391','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23948,'files','27392','error','Deal not found: 440',NULL,'2025-11-14 00:17:03'),
(23949,'files','27393','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23950,'files','27394','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23951,'files','27395','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23952,'files','27396','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23953,'files','27397','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23954,'files','27398','error','Deal not found: 486',NULL,'2025-11-14 00:17:03'),
(23955,'files','27399','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23956,'files','27400','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23957,'files','27401','error','Deal not found: 186',NULL,'2025-11-14 00:17:03'),
(23958,'files','27402','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23959,'files','27403','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23960,'files','27404','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23961,'files','27405','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23962,'files','27406','error','Deal not found: 518',NULL,'2025-11-14 00:17:03'),
(23963,'files','27407','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23964,'files','27408','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23965,'files','27409','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23966,'files','27410','error','Deal not found: 486',NULL,'2025-11-14 00:17:03'),
(23967,'files','27411','error','Deal not found: 462',NULL,'2025-11-14 00:17:03'),
(23968,'files','27412','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23969,'files','27413','error','Deal not found: 495',NULL,'2025-11-14 00:17:03'),
(23970,'files','27414','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23971,'files','27415','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23972,'files','27416','error','Deal not found: 466',NULL,'2025-11-14 00:17:03'),
(23973,'files','27417','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23974,'files','27418','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23975,'files','27419','error','Deal not found: 420',NULL,'2025-11-14 00:17:03'),
(23976,'files','27420','error','Deal not found: 548',NULL,'2025-11-14 00:17:03'),
(23977,'files','27421','error','Deal not found: 291',NULL,'2025-11-14 00:17:03'),
(23978,'files','27422','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23979,'files','27423','error','Deal not found: 339',NULL,'2025-11-14 00:17:03'),
(23980,'files','27424','error','Deal not found: 495',NULL,'2025-11-14 00:17:03'),
(23981,'files','27425','error','Deal not found: 495',NULL,'2025-11-14 00:17:03'),
(23982,'files','27426','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23983,'files','27427','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23984,'files','27428','error','Deal not found: 615',NULL,'2025-11-14 00:17:03'),
(23985,'files','27429','error','Deal not found: 623',NULL,'2025-11-14 00:17:03'),
(23986,'files','27430','error','Deal not found: 527',NULL,'2025-11-14 00:17:03'),
(23987,'files','27431','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23988,'files','27432','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23989,'files','27433','error','Deal not found: 213',NULL,'2025-11-14 00:17:03'),
(23990,'files','27434','error','Deal not found: 462',NULL,'2025-11-14 00:17:03'),
(23991,'files','27435','error','Deal not found: 390',NULL,'2025-11-14 00:17:03'),
(23992,'files','27436','error','Deal not found: 213',NULL,'2025-11-14 00:17:03'),
(23993,'files','27437','error','Deal not found: 462',NULL,'2025-11-14 00:17:03'),
(23994,'files','27438','error','Deal not found: 213',NULL,'2025-11-14 00:17:03'),
(23995,'files','27439','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23996,'files','27440','error','Deal not found: 410',NULL,'2025-11-14 00:17:03'),
(23997,'files','27441','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23998,'files','27442','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(23999,'files','27443','error','Deal not found: 426',NULL,'2025-11-14 00:17:03'),
(24000,'files','27444','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24001,'files','27445','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24002,'files','27446','error','Deal not found: 483',NULL,'2025-11-14 00:17:03'),
(24003,'files','27447','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24004,'files','27448','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24005,'files','27449','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24006,'files','27450','error','Deal not found: 586',NULL,'2025-11-14 00:17:03'),
(24007,'files','27451','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24008,'files','27452','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24009,'files','27453','error','Deal not found: 472',NULL,'2025-11-14 00:17:03'),
(24010,'files','27454','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24011,'files','27455','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24012,'files','27456','error','Deal not found: 481',NULL,'2025-11-14 00:17:03'),
(24013,'files','27457','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24014,'files','27458','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24015,'files','27459','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24016,'files','27460','error','Deal not found: 291',NULL,'2025-11-14 00:17:03'),
(24017,'files','27461','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24018,'files','27462','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24019,'files','27463','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24020,'files','27464','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24021,'files','27465','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24022,'files','27467','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24023,'files','27468','error','Deal not found: 595',NULL,'2025-11-14 00:17:03'),
(24024,'files','27469','error','Deal not found: 619',NULL,'2025-11-14 00:17:03'),
(24025,'files','27470','error','Deal not found: 588',NULL,'2025-11-14 00:17:03'),
(24026,'files','27471','error','Deal not found: 606',NULL,'2025-11-14 00:17:03'),
(24027,'files','27472','error','Deal not found: 604',NULL,'2025-11-14 00:17:03'),
(24028,'files','27473','error','Deal not found: 582',NULL,'2025-11-14 00:17:03'),
(24029,'files','27474','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24030,'files','27475','error','Deal not found: 586',NULL,'2025-11-14 00:17:03'),
(24031,'files','27476','error','Deal not found: 257',NULL,'2025-11-14 00:17:03'),
(24032,'files','27477','error','Deal not found: 257',NULL,'2025-11-14 00:17:03'),
(24033,'files','27478','error','Deal not found: 599',NULL,'2025-11-14 00:17:03'),
(24034,'files','27479','error','Deal not found: 257',NULL,'2025-11-14 00:17:03'),
(24035,'files','27480','error','Deal not found: 508',NULL,'2025-11-14 00:17:03'),
(24036,'files','27481','error','Deal not found: 508',NULL,'2025-11-14 00:17:03'),
(24037,'files','27482','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24038,'files','27483','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24039,'files','27484','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24040,'files','27485','error','Deal not found: 604',NULL,'2025-11-14 00:17:03'),
(24041,'files','27486','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24042,'files','27487','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24043,'files','27488','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24044,'files','27489','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24045,'files','27490','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24046,'files','27491','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24047,'files','27492','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24048,'files','27493','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24049,'files','27494','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24050,'files','27495','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24051,'files','27496','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24052,'files','27497','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24053,'files','27498','error','Deal not found: 315',NULL,'2025-11-14 00:17:03'),
(24054,'files','27499','error','Deal not found: 315',NULL,'2025-11-14 00:17:03'),
(24055,'files','27500','error','Deal not found: 315',NULL,'2025-11-14 00:17:03'),
(24056,'files','27501','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24057,'files','27502','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24058,'files','27503','error','Deal not found: 508',NULL,'2025-11-14 00:17:03'),
(24059,'files','27504','error','Deal not found: 540',NULL,'2025-11-14 00:17:03'),
(24060,'files','27505','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24061,'files','27506','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24062,'files','27507','error','Deal not found: 540',NULL,'2025-11-14 00:17:03'),
(24063,'files','27508','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24064,'files','27509','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24065,'files','27510','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24066,'files','27511','error','Deal not found: 540',NULL,'2025-11-14 00:17:03'),
(24067,'files','27512','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24068,'files','27514','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24069,'files','27515','error','Deal not found: 460',NULL,'2025-11-14 00:17:03'),
(24070,'files','27516','error','Deal not found: 460',NULL,'2025-11-14 00:17:03'),
(24071,'files','27517','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24072,'files','27518','error','Deal not found: 315',NULL,'2025-11-14 00:17:03'),
(24073,'files','27519','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24074,'files','27520','error','Deal not found: 315',NULL,'2025-11-14 00:17:03'),
(24075,'files','27521','error','Deal not found: 315',NULL,'2025-11-14 00:17:03'),
(24076,'files','27522','error','Deal not found: 265',NULL,'2025-11-14 00:17:03'),
(24077,'files','27523','error','Deal not found: 265',NULL,'2025-11-14 00:17:03'),
(24078,'files','27524','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24079,'files','27525','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24080,'files','27526','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24081,'files','27527','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24082,'files','27528','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24083,'files','27529','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24084,'files','27530','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24085,'files','27531','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24086,'files','27532','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24087,'files','27533','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24088,'files','27534','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24089,'files','27535','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24090,'files','27536','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24091,'files','27537','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24092,'files','27538','error','Deal not found: 497',NULL,'2025-11-14 00:17:03'),
(24093,'files','27539','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24094,'files','27540','error','Deal not found: 497',NULL,'2025-11-14 00:17:03'),
(24095,'files','27541','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24096,'files','27542','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24097,'files','27543','error','Deal not found: 460',NULL,'2025-11-14 00:17:03'),
(24098,'files','27544','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24099,'files','27545','error','Deal not found: 460',NULL,'2025-11-14 00:17:03'),
(24100,'files','27546','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24101,'files','27547','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24102,'files','27548','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24103,'files','27549','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24104,'files','27550','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24105,'files','27551','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24106,'files','27552','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24107,'files','27553','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24108,'files','27554','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24109,'files','27555','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24110,'files','27556','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24111,'files','27557','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24112,'files','27558','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24113,'files','27559','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24114,'files','27560','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24115,'files','27561','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24116,'files','27562','error','Deal not found: 251',NULL,'2025-11-14 00:17:03'),
(24117,'files','27563','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24118,'files','27564','error','Deal not found: 677',NULL,'2025-11-14 00:17:03'),
(24119,'files','27565','error','Deal not found: 251',NULL,'2025-11-14 00:17:03'),
(24120,'files','27566','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24121,'files','27567','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24122,'files','27568','error','Deal not found: 249',NULL,'2025-11-14 00:17:03'),
(24123,'files','27569','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24124,'files','27570','error','Deal not found: 313',NULL,'2025-11-14 00:17:03'),
(24125,'files','27571','error','Deal not found: 313',NULL,'2025-11-14 00:17:03'),
(24126,'files','27572','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24127,'files','27573','error','Deal not found: 223',NULL,'2025-11-14 00:17:03'),
(24128,'files','27574','error','Deal not found: 223',NULL,'2025-11-14 00:17:03'),
(24129,'files','27575','error','Deal not found: 223',NULL,'2025-11-14 00:17:03'),
(24130,'files','27576','error','Deal not found: 604',NULL,'2025-11-14 00:17:03'),
(24131,'files','27577','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24132,'files','27578','error','Deal not found: 466',NULL,'2025-11-14 00:17:03'),
(24133,'files','27579','error','Deal not found: 466',NULL,'2025-11-14 00:17:03'),
(24134,'files','27580','error','Deal not found: 466',NULL,'2025-11-14 00:17:03'),
(24135,'files','27581','error','Deal not found: 466',NULL,'2025-11-14 00:17:03'),
(24136,'files','27582','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24137,'files','27583','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24138,'files','27584','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24139,'files','27585','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24140,'files','27586','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24141,'files','27587','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24142,'files','27588','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24143,'files','27589','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24144,'files','27590','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24145,'files','27591','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24146,'files','27592','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24147,'files','27593','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24148,'files','27594','error','Deal not found: 150',NULL,'2025-11-14 00:17:03'),
(24149,'files','27595','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24150,'files','27596','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24151,'files','27597','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24152,'files','27598','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24153,'files','27599','error','Deal not found: 150',NULL,'2025-11-14 00:17:03'),
(24154,'files','27600','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24155,'files','27601','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24156,'files','27602','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24157,'files','27603','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24158,'files','27604','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24159,'files','27605','error','Deal not found: 249',NULL,'2025-11-14 00:17:03'),
(24160,'files','27606','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24161,'files','27607','error','Deal not found: 700',NULL,'2025-11-14 00:17:03'),
(24162,'files','27608','error','Deal not found: 636',NULL,'2025-11-14 00:17:03'),
(24163,'files','27609','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24164,'files','27610','error','Deal not found: 700',NULL,'2025-11-14 00:17:03'),
(24165,'files','27611','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24166,'files','27612','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24167,'files','27613','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24168,'files','27614','error','Deal not found: 249',NULL,'2025-11-14 00:17:03'),
(24169,'files','27615','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24170,'files','27616','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24171,'files','27617','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24172,'files','27618','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24173,'files','27619','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24174,'files','27620','error','Deal not found: 708',NULL,'2025-11-14 00:17:03'),
(24175,'files','27621','error','Deal not found: 627',NULL,'2025-11-14 00:17:03'),
(24176,'files','27622','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24177,'files','27623','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24178,'files','27624','error','Deal not found: 708',NULL,'2025-11-14 00:17:03'),
(24179,'files','27625','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24180,'files','27626','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24181,'files','27627','error','Deal not found: 627',NULL,'2025-11-14 00:17:03'),
(24182,'files','27628','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24183,'files','27629','error','Deal not found: 636',NULL,'2025-11-14 00:17:03'),
(24184,'files','27630','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24185,'files','27631','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24186,'files','27632','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24187,'files','27633','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24188,'files','27634','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24189,'files','27635','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24190,'files','27636','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24191,'files','27637','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24192,'files','27638','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24193,'files','27639','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24194,'files','27640','error','Deal not found: 442',NULL,'2025-11-14 00:17:03'),
(24195,'files','27641','error','Deal not found: 442',NULL,'2025-11-14 00:17:03'),
(24196,'files','27642','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24197,'files','27643','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24198,'files','27644','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24199,'files','27645','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24200,'files','27646','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24201,'files','27647','error','Deal not found: 636',NULL,'2025-11-14 00:17:03'),
(24202,'files','27648','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24203,'files','27649','error','Deal not found: 249',NULL,'2025-11-14 00:17:03'),
(24204,'files','27650','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24205,'files','27651','error','Deal not found: 249',NULL,'2025-11-14 00:17:03'),
(24206,'files','27652','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24207,'files','27653','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24208,'files','27654','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24209,'files','27655','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24210,'files','27657','error','Deal not found: 443',NULL,'2025-11-14 00:17:03'),
(24211,'files','27658','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24212,'files','27659','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24213,'files','27660','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24214,'files','27661','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24215,'files','27662','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24216,'files','27663','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24217,'files','27664','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24218,'files','27665','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24219,'files','27666','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24220,'files','27667','error','Deal not found: 249',NULL,'2025-11-14 00:17:03'),
(24221,'files','27668','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24222,'files','27669','error','Deal not found: 204',NULL,'2025-11-14 00:17:03'),
(24223,'files','27670','error','Deal not found: 249',NULL,'2025-11-14 00:17:03'),
(24224,'files','27671','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24225,'files','27672','error','Deal not found: 204',NULL,'2025-11-14 00:17:03'),
(24226,'files','27673','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24227,'files','27674','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24228,'files','27675','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24229,'files','27676','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24230,'files','27677','error','Deal not found: 717',NULL,'2025-11-14 00:17:03'),
(24231,'files','27678','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24232,'files','27679','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24233,'files','27680','error','Deal not found: 717',NULL,'2025-11-14 00:17:03'),
(24234,'files','27681','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24235,'files','27682','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24236,'files','27683','error','Deal not found: 730',NULL,'2025-11-14 00:17:03'),
(24237,'files','27684','error','Deal not found: 730',NULL,'2025-11-14 00:17:03'),
(24238,'files','27685','error','Deal not found: 61',NULL,'2025-11-14 00:17:03'),
(24239,'files','27686','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24240,'files','27687','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24241,'files','27688','error','Deal not found: 61',NULL,'2025-11-14 00:17:03'),
(24242,'files','27689','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24243,'files','27690','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24244,'files','27691','error','Deal not found: 733',NULL,'2025-11-14 00:17:03'),
(24245,'files','27692','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24246,'files','27693','error','Deal not found: 733',NULL,'2025-11-14 00:17:03'),
(24247,'files','27694','error','Deal not found: 287',NULL,'2025-11-14 00:17:03'),
(24248,'files','27695','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24249,'files','27696','error','Deal not found: 249',NULL,'2025-11-14 00:17:03'),
(24250,'files','27697','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24251,'files','27698','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24252,'files','27699','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24253,'files','27700','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24254,'files','27701','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24255,'files','27702','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24256,'files','27703','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24257,'files','27704','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24258,'files','27705','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24259,'files','27706','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24260,'files','27707','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24261,'files','27708','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24262,'files','27709','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24263,'files','27710','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24264,'files','27711','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24265,'files','27712','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24266,'files','27713','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24267,'files','27714','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24268,'files','27715','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24269,'files','27716','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24270,'files','27717','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24271,'files','27718','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24272,'files','27719','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24273,'files','27720','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24274,'files','27721','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24275,'files','27722','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24276,'files','27723','error','Deal not found: 323',NULL,'2025-11-14 00:17:03'),
(24277,'files','27724','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24278,'files','27725','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24279,'files','27726','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24280,'files','27727','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24281,'files','27728','error','Deal not found: 323',NULL,'2025-11-14 00:17:03'),
(24282,'files','27729','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24283,'files','27730','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24284,'files','27731','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24285,'files','27732','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24286,'files','27733','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24287,'files','27734','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24288,'files','27735','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24289,'files','27736','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24290,'files','27737','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24291,'files','27738','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24292,'files','27739','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24293,'files','27740','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24294,'files','27741','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24295,'files','27742','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24296,'files','27743','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24297,'files','27744','error','Deal not found: 759',NULL,'2025-11-14 00:17:03'),
(24298,'files','27745','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24299,'files','27746','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24300,'files','27747','error','Deal not found: 265',NULL,'2025-11-14 00:17:03'),
(24301,'files','27748','error','Deal not found: 265',NULL,'2025-11-14 00:17:03'),
(24302,'files','27749','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24303,'files','27750','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24304,'files','27751','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24305,'files','27752','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24306,'files','27753','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24307,'files','27754','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24308,'files','27755','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24309,'files','27756','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24310,'files','27757','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24311,'files','27758','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24312,'files','27759','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24313,'files','27760','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24314,'files','27761','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24315,'files','27762','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24316,'files','27763','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24317,'files','27764','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24318,'files','27765','error','Deal not found: 466',NULL,'2025-11-14 00:17:03'),
(24319,'files','27766','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24320,'files','27767','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24321,'files','27768','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24322,'files','27769','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24323,'files','27770','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24324,'files','27771','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24325,'files','27772','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24326,'files','27773','error','Deal not found: 466',NULL,'2025-11-14 00:17:03'),
(24327,'files','27774','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24328,'files','27775','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24329,'files','27776','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24330,'files','27777','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24331,'files','27778','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24332,'files','27779','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24333,'files','27780','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24334,'files','27781','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24335,'files','27782','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24336,'files','27783','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24337,'files','27784','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24338,'files','27785','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24339,'files','27786','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24340,'files','27787','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24341,'files','27788','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24342,'files','27789','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24343,'files','27790','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24344,'files','27791','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24345,'files','27792','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24346,'files','27793','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24347,'files','27794','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24348,'files','27795','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24349,'files','27796','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24350,'files','27797','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24351,'files','27798','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24352,'files','27799','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24353,'files','27800','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24354,'files','27801','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24355,'files','27802','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24356,'files','27803','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24357,'files','27804','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24358,'files','27805','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24359,'files','27807','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24360,'files','27808','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24361,'files','27810','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24362,'files','27812','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24363,'files','27813','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24364,'files','27814','error','Deal not found: 278',NULL,'2025-11-14 00:17:03'),
(24365,'files','27815','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24366,'files','27816','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24367,'files','27817','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24368,'files','27818','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24369,'files','27819','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24370,'files','27820','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24371,'files','27821','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24372,'files','27822','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24373,'files','27823','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24374,'files','27824','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24375,'files','27825','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24376,'files','27826','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24377,'files','27827','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24378,'files','27828','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24379,'files','27829','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24380,'files','27830','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24381,'files','27831','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24382,'files','27832','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24383,'files','27833','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24384,'files','27834','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24385,'files','27835','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24386,'files','27836','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24387,'files','27837','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24388,'files','27838','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24389,'files','27839','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24390,'files','27840','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24391,'files','27841','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24392,'files','27842','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24393,'files','27843','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24394,'files','27844','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24395,'files','27845','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24396,'files','27846','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24397,'files','27847','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24398,'files','27848','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24399,'files','27849','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24400,'files','27850','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24401,'files','27851','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24402,'files','27852','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24403,'files','27853','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24404,'files','27854','error','Deal not found: 708',NULL,'2025-11-14 00:17:03'),
(24405,'files','27855','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24406,'files','27856','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24407,'files','27857','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24408,'files','27858','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24409,'files','27859','error','Deal not found: 708',NULL,'2025-11-14 00:17:03'),
(24410,'files','27860','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24411,'files','27861','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24412,'files','27862','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24413,'files','27863','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24414,'files','27864','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24415,'files','27865','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24416,'files','27866','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24417,'files','27867','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24418,'files','27868','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24419,'files','27869','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24420,'files','27870','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24421,'files','27871','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24422,'files','27872','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24423,'files','27873','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24424,'files','27874','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24425,'files','27875','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24426,'files','27876','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24427,'files','27877','error','Deal not found: 542',NULL,'2025-11-14 00:17:03'),
(24428,'files','27878','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24429,'files','27879','error','Deal not found: 542',NULL,'2025-11-14 00:17:03'),
(24430,'files','27880','error','Deal not found: 542',NULL,'2025-11-14 00:17:03'),
(24431,'files','27881','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24432,'files','27882','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24433,'files','27883','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24434,'files','27884','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24435,'files','27885','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24436,'files','27886','error','Deal not found: 256',NULL,'2025-11-14 00:17:03'),
(24437,'files','27887','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24438,'files','27888','error','Deal not found: 256',NULL,'2025-11-14 00:17:03'),
(24439,'files','27889','error','Deal not found: 362',NULL,'2025-11-14 00:17:03'),
(24440,'files','27890','error','Deal not found: 362',NULL,'2025-11-14 00:17:03'),
(24441,'files','27891','error','Deal not found: 251',NULL,'2025-11-14 00:17:03'),
(24442,'files','27892','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24443,'files','27893','error','Deal not found: 251',NULL,'2025-11-14 00:17:03'),
(24444,'files','27895','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24445,'files','27897','error','Deal not found: 192',NULL,'2025-11-14 00:17:03'),
(24446,'files','27898','error','Deal not found: 717',NULL,'2025-11-14 00:17:03'),
(24447,'files','27899','error','Deal not found: 192',NULL,'2025-11-14 00:17:03'),
(24448,'files','27900','error','Deal not found: 717',NULL,'2025-11-14 00:17:03'),
(24449,'files','27901','error','Deal not found: 192',NULL,'2025-11-14 00:17:03'),
(24450,'files','27902','error','Deal not found: 717',NULL,'2025-11-14 00:17:03'),
(24451,'files','27903','error','Deal not found: 223',NULL,'2025-11-14 00:17:03'),
(24452,'files','27904','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24453,'files','27905','error','Deal not found: 223',NULL,'2025-11-14 00:17:03'),
(24454,'files','27906','error','Deal not found: 223',NULL,'2025-11-14 00:17:03'),
(24455,'files','27907','error','Deal not found: 627',NULL,'2025-11-14 00:17:03'),
(24456,'files','27908','error','Deal not found: 627',NULL,'2025-11-14 00:17:03'),
(24457,'files','27909','error','Deal not found: 627',NULL,'2025-11-14 00:17:03'),
(24458,'files','27910','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24459,'files','27911','error','Deal not found: 710',NULL,'2025-11-14 00:17:03'),
(24460,'files','27912','error','Deal not found: 710',NULL,'2025-11-14 00:17:03'),
(24461,'files','27913','error','Deal not found: 710',NULL,'2025-11-14 00:17:03'),
(24462,'files','27914','error','Deal not found: 939',NULL,'2025-11-14 00:17:03'),
(24463,'files','27915','error','Deal not found: 939',NULL,'2025-11-14 00:17:03'),
(24464,'files','27916','error','Deal not found: 939',NULL,'2025-11-14 00:17:03'),
(24465,'files','27917','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24466,'files','27918','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24467,'files','27919','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24468,'files','27920','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24469,'files','27921','error','Deal not found: 990',NULL,'2025-11-14 00:17:03'),
(24470,'files','27922','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24471,'files','27923','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24472,'files','27924','error','Deal not found: 990',NULL,'2025-11-14 00:17:03'),
(24473,'files','27925','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24474,'files','27926','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24475,'files','27927','error','Deal not found: 990',NULL,'2025-11-14 00:17:03'),
(24476,'files','27928','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24477,'files','27929','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24478,'files','27930','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24479,'files','27931','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24480,'files','27932','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24481,'files','27933','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24482,'files','27934','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24483,'files','27935','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24484,'files','27936','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24485,'files','27937','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24486,'files','27938','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24487,'files','27939','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24488,'files','27940','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24489,'files','27941','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24490,'files','27942','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24491,'files','27943','error','Deal not found: 323',NULL,'2025-11-14 00:17:03'),
(24492,'files','27944','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24493,'files','27945','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24494,'files','27946','error','Deal not found: 998',NULL,'2025-11-14 00:17:03'),
(24495,'files','27947','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24496,'files','27948','error','Deal not found: 998',NULL,'2025-11-14 00:17:03'),
(24497,'files','27949','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24498,'files','27950','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24499,'files','27951','error','Deal not found: 998',NULL,'2025-11-14 00:17:03'),
(24500,'files','27952','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24501,'files','27953','error','Deal not found: 1009',NULL,'2025-11-14 00:17:03'),
(24502,'files','27954','error','Deal not found: 1009',NULL,'2025-11-14 00:17:03'),
(24503,'files','27955','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24504,'files','27956','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24505,'files','27957','error','Deal not found: 1009',NULL,'2025-11-14 00:17:03'),
(24506,'files','27958','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24507,'files','27959','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24508,'files','27960','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24509,'files','27961','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24510,'files','27962','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24511,'files','27963','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24512,'files','27964','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24513,'files','27965','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24514,'files','27966','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24515,'files','27967','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24516,'files','27968','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24517,'files','27969','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24518,'files','27970','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24519,'files','27971','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24520,'files','27972','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24521,'files','27973','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24522,'files','27974','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24523,'files','27976','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24524,'files','27977','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24525,'files','27978','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24526,'files','27979','error','Deal not found: 1013',NULL,'2025-11-14 00:17:03'),
(24527,'files','27980','error','Deal not found: 1724',NULL,'2025-11-14 00:17:03'),
(24528,'files','27981','error','Deal not found: 1013',NULL,'2025-11-14 00:17:03'),
(24529,'files','27982','error','Deal not found: 1724',NULL,'2025-11-14 00:17:03'),
(24530,'files','27983','error','Deal not found: 1013',NULL,'2025-11-14 00:17:03'),
(24531,'files','27984','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24532,'files','27985','error','Deal not found: 1724',NULL,'2025-11-14 00:17:03'),
(24533,'files','27986','error','Deal not found: 1724',NULL,'2025-11-14 00:17:03'),
(24534,'files','27987','error','Deal not found: 1006',NULL,'2025-11-14 00:17:03'),
(24535,'files','27988','error','Deal not found: 1006',NULL,'2025-11-14 00:17:03'),
(24536,'files','27989','error','Deal not found: 1006',NULL,'2025-11-14 00:17:03'),
(24537,'files','27990','error','Deal not found: 986',NULL,'2025-11-14 00:17:03'),
(24538,'files','27991','error','Deal not found: 986',NULL,'2025-11-14 00:17:03'),
(24539,'files','27992','error','Deal not found: 986',NULL,'2025-11-14 00:17:03'),
(24540,'files','27993','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24541,'files','27994','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24542,'files','27995','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24543,'files','27996','error','Deal not found: 714',NULL,'2025-11-14 00:17:03'),
(24544,'files','27997','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24545,'files','27998','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24546,'files','27999','error','Deal not found: 714',NULL,'2025-11-14 00:17:03'),
(24547,'files','28000','error','Deal not found: 714',NULL,'2025-11-14 00:17:03'),
(24548,'files','28001','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24549,'files','28002','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24550,'files','28003','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24551,'files','28005','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24552,'files','28006','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24553,'files','28007','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24554,'files','28008','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24555,'files','28009','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24556,'files','28010','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24557,'files','28011','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24558,'files','28012','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24559,'files','28013','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24560,'files','28014','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24561,'files','28015','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24562,'files','28016','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24563,'files','28017','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24564,'files','28018','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24565,'files','28019','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24566,'files','28020','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24567,'files','28021','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24568,'files','28022','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24569,'files','28023','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24570,'files','28024','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24571,'files','28025','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24572,'files','28026','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24573,'files','28027','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24574,'files','28028','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24575,'files','28029','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24576,'files','28030','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24577,'files','28031','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24578,'files','28032','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24579,'files','28033','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24580,'files','28034','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24581,'files','28035','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24582,'files','28036','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24583,'files','28037','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24584,'files','28038','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24585,'files','28039','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24586,'files','28040','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24587,'files','28041','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24588,'files','28042','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24589,'files','28043','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24590,'files','28044','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24591,'files','28045','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24592,'files','28046','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24593,'files','28047','error','Deal not found: 1724',NULL,'2025-11-14 00:17:03'),
(24594,'files','28048','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24595,'files','28049','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24596,'files','28050','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24597,'files','28051','error','Deal not found: 1724',NULL,'2025-11-14 00:17:03'),
(24598,'files','28052','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24599,'files','28053','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24600,'files','28054','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24601,'files','28055','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24602,'files','28056','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24603,'files','28057','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24604,'files','28058','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24605,'files','28059','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24606,'files','28060','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24607,'files','28061','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24608,'files','28062','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24609,'files','28063','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24610,'files','28064','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24611,'files','28065','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24612,'files','28066','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24613,'files','28067','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24614,'files','28068','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24615,'files','28070','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24616,'files','28071','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24617,'files','28072','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24618,'files','28073','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24619,'files','28074','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24620,'files','28075','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24621,'files','28077','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24622,'files','28078','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24623,'files','28079','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24624,'files','28080','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24625,'files','28081','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24626,'files','28082','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24627,'files','28083','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24628,'files','28085','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24629,'files','28086','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24630,'files','28087','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24631,'files','28089','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24632,'files','28091','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24633,'files','28092','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24634,'files','28093','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24635,'files','28094','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24636,'files','28095','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24637,'files','28096','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24638,'files','28097','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24639,'files','28098','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24640,'files','28099','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24641,'files','28100','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24642,'files','28101','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24643,'files','28102','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24644,'files','28103','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24645,'files','28104','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24646,'files','28105','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24647,'files','28106','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24648,'files','28107','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24649,'files','28108','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24650,'files','28109','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24651,'files','28110','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24652,'files','28111','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24653,'files','28112','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24654,'files','28113','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24655,'files','28114','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24656,'files','28115','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24657,'files','28116','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24658,'files','28117','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24659,'files','28118','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24660,'files','28119','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24661,'files','28120','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24662,'files','28121','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24663,'files','28122','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24664,'files','28123','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24665,'files','28124','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24666,'files','28125','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24667,'files','28126','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24668,'files','28127','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24669,'files','28128','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24670,'files','28129','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24671,'files','28130','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24672,'files','28131','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24673,'files','28132','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24674,'files','28133','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24675,'files','28134','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24676,'files','28135','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24677,'files','28136','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24678,'files','28137','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24679,'files','28138','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24680,'files','28139','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24681,'files','28140','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24682,'files','28141','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24683,'files','28142','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24684,'files','28143','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24685,'files','28144','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24686,'files','28145','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24687,'files','28146','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24688,'files','28147','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24689,'files','28148','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24690,'files','28149','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24691,'files','28150','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24692,'files','28151','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24693,'files','28152','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24694,'files','28153','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24695,'files','28154','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24696,'files','28155','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24697,'files','28156','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24698,'files','28157','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24699,'files','28158','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24700,'files','28159','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24701,'files','28160','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24702,'files','28161','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24703,'files','28162','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24704,'files','28163','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24705,'files','28164','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24706,'files','28165','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24707,'files','28166','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24708,'files','28167','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24709,'files','28168','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24710,'files','28169','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24711,'files','28170','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24712,'files','28171','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24713,'files','28172','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24714,'files','28173','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24715,'files','28174','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24716,'files','28175','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24717,'files','28176','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24718,'files','28177','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24719,'files','28178','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24720,'files','28179','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24721,'files','28180','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24722,'files','28181','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24723,'files','28182','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24724,'files','28183','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24725,'files','28184','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24726,'files','28185','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24727,'files','28186','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24728,'files','28187','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24729,'files','28188','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24730,'files','28189','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24731,'files','28190','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24732,'files','28191','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24733,'files','28192','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24734,'files','28193','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24735,'files','28194','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24736,'files','28195','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24737,'files','28196','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24738,'files','28197','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24739,'files','28198','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24740,'files','28199','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24741,'files','28200','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24742,'files','28201','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24743,'files','28202','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24744,'files','28203','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24745,'files','28204','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24746,'files','28205','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24747,'files','28206','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24748,'files','28209','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24749,'files','28211','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24750,'files','28212','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24751,'files','28214','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24752,'files','28215','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24753,'files','28216','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24754,'files','28217','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24755,'files','28219','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24756,'files','28221','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24757,'files','28222','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24758,'files','28223','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24759,'files','28224','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24760,'files','28225','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24761,'files','28226','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24762,'files','28228','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24763,'files','28229','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24764,'files','28231','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24765,'files','28232','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24766,'files','28233','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24767,'files','28234','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24768,'files','28235','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24769,'files','28236','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24770,'files','28237','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24771,'files','28238','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24772,'files','28239','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24773,'files','28240','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24774,'files','28241','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24775,'files','28242','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24776,'files','28243','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24777,'files','28244','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24778,'files','28245','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24779,'files','28246','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24780,'files','28247','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24781,'files','28248','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24782,'files','28249','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24783,'files','28250','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24784,'files','28251','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24785,'files','28252','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24786,'files','28253','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24787,'files','28254','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24788,'files','28255','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24789,'files','28256','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24790,'files','28257','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24791,'files','28258','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24792,'files','28259','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24793,'files','28260','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24794,'files','28261','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24795,'files','28262','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24796,'files','28263','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24797,'files','28264','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24798,'files','28265','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24799,'files','28267','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24800,'files','28268','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24801,'files','28269','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24802,'files','28270','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24803,'files','28271','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24804,'files','28272','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24805,'files','28273','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24806,'files','28274','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24807,'files','28275','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24808,'files','28276','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24809,'files','28277','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24810,'files','28278','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24811,'files','28279','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24812,'files','28280','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24813,'files','28281','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24814,'files','28282','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24815,'files','28283','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24816,'files','28284','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24817,'files','28285','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24818,'files','28286','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24819,'files','28287','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24820,'files','28288','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24821,'files','28289','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24822,'files','28290','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24823,'files','28291','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24824,'files','28292','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24825,'files','28293','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24826,'files','28294','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24827,'files','28295','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24828,'files','28296','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24829,'files','28297','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24830,'files','28298','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24831,'files','28300','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24832,'files','28301','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24833,'files','28302','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24834,'files','28303','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24835,'files','28304','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24836,'files','28305','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24837,'files','28306','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24838,'files','28307','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24839,'files','28308','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24840,'files','28309','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24841,'files','28310','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24842,'files','28311','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24843,'files','28312','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24844,'files','28313','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24845,'files','28314','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24846,'files','28315','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24847,'files','28316','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24848,'files','28317','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24849,'files','28318','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24850,'files','28319','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24851,'files','28320','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24852,'files','28321','skipped','No deal associated',NULL,'2025-11-14 00:17:03');
INSERT INTO `temp_pipedrive_import_log` VALUES
(24853,'files','28322','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24854,'files','28323','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(24855,'files','28324','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(24856,'files','28325','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24857,'files','28326','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24858,'files','28327','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24859,'files','28328','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24860,'files','28329','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24861,'files','28330','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24862,'files','28331','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24863,'files','28332','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24864,'files','28333','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24865,'files','28334','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(24866,'files','28335','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24867,'files','28336','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24868,'files','28337','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24869,'files','28338','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24870,'files','28339','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(24871,'files','28340','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(24872,'files','28341','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24873,'files','28342','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24874,'files','28343','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24875,'files','28344','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24876,'files','28345','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24877,'files','28346','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24878,'files','28347','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24879,'files','28348','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24880,'files','28349','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24881,'files','28350','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24882,'files','28351','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24883,'files','28352','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24884,'files','28353','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24885,'files','28354','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24886,'files','28355','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24887,'files','28356','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24888,'files','28357','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24889,'files','28358','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24890,'files','28359','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24891,'files','28360','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24892,'files','28361','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24893,'files','28362','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24894,'files','28363','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24895,'files','28364','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24896,'files','28365','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24897,'files','28366','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24898,'files','28367','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24899,'files','28368','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24900,'files','28369','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24901,'files','28370','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24902,'files','28371','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24903,'files','28372','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24904,'files','28373','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24905,'files','28374','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24906,'files','28375','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24907,'files','28376','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24908,'files','28377','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24909,'files','28378','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24910,'files','28379','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24911,'files','28380','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24912,'files','28381','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24913,'files','28382','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24914,'files','28383','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24915,'files','28384','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24916,'files','28385','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24917,'files','28386','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24918,'files','28387','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24919,'files','28388','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24920,'files','28389','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24921,'files','28390','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24922,'files','28391','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24923,'files','28392','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24924,'files','28393','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24925,'files','28394','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24926,'files','28395','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24927,'files','28396','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24928,'files','28397','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24929,'files','28398','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24930,'files','28399','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24931,'files','28400','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24932,'files','28401','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24933,'files','28402','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24934,'files','28403','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24935,'files','28404','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24936,'files','28405','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24937,'files','28406','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24938,'files','28407','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24939,'files','28408','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24940,'files','28409','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24941,'files','28410','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24942,'files','28411','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24943,'files','28412','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24944,'files','28413','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24945,'files','28414','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24946,'files','28415','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24947,'files','28416','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24948,'files','28417','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24949,'files','28418','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24950,'files','28419','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24951,'files','28420','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24952,'files','28421','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24953,'files','28422','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24954,'files','28423','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24955,'files','28424','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24956,'files','28425','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24957,'files','28426','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24958,'files','28427','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24959,'files','28428','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24960,'files','28429','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24961,'files','28430','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24962,'files','28431','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24963,'files','28432','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24964,'files','28433','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24965,'files','28434','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24966,'files','28435','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24967,'files','28436','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24968,'files','28437','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24969,'files','28438','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24970,'files','28439','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24971,'files','28440','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24972,'files','28441','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24973,'files','28442','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24974,'files','28443','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24975,'files','28444','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24976,'files','28445','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24977,'files','28446','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24978,'files','28447','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24979,'files','28448','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24980,'files','28449','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24981,'files','28450','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24982,'files','28451','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24983,'files','28452','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24984,'files','28453','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24985,'files','28454','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24986,'files','28455','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24987,'files','28456','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24988,'files','28457','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24989,'files','28458','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24990,'files','28459','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24991,'files','28460','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24992,'files','28461','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24993,'files','28462','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24994,'files','28463','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24995,'files','28464','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24996,'files','28465','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24997,'files','28466','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24998,'files','28467','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(24999,'files','28468','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25000,'files','28469','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25001,'files','28470','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25002,'files','28471','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25003,'files','28472','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25004,'files','28473','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25005,'files','28474','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25006,'files','28475','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25007,'files','28476','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25008,'files','28477','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25009,'files','28478','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25010,'files','28479','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25011,'files','28480','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25012,'files','28481','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25013,'files','28482','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25014,'files','28483','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25015,'files','28484','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25016,'files','28485','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25017,'files','28486','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25018,'files','28487','error','Deal not found: 1210',NULL,'2025-11-14 00:17:03'),
(25019,'files','28488','error','Deal not found: 1210',NULL,'2025-11-14 00:17:03'),
(25020,'files','28489','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25021,'files','28490','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25022,'files','28491','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25023,'files','28492','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25024,'files','28493','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25025,'files','28494','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25026,'files','28495','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25027,'files','28496','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25028,'files','28497','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25029,'files','28498','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25030,'files','28499','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25031,'files','28500','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25032,'files','28501','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25033,'files','28502','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25034,'files','28503','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25035,'files','28504','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25036,'files','28505','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25037,'files','28506','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25038,'files','28507','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25039,'files','28508','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25040,'files','28509','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25041,'files','28510','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25042,'files','28511','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25043,'files','28512','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25044,'files','28513','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25045,'files','28514','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25046,'files','28515','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25047,'files','28516','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25048,'files','28517','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25049,'files','28518','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25050,'files','28519','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25051,'files','28520','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25052,'files','28521','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25053,'files','28522','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25054,'files','28523','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25055,'files','28524','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25056,'files','28525','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25057,'files','28526','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25058,'files','28527','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25059,'files','28529','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25060,'files','28530','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25061,'files','28531','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25062,'files','28532','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25063,'files','28533','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25064,'files','28534','error','Deal not found: 1724',NULL,'2025-11-14 00:17:03'),
(25065,'files','28535','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25066,'files','28536','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25067,'files','28537','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25068,'files','28538','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25069,'files','28539','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25070,'files','28540','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25071,'files','28541','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25072,'files','28542','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25073,'files','28543','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25074,'files','28544','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25075,'files','28545','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25076,'files','28546','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25077,'files','28547','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25078,'files','28548','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25079,'files','28549','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25080,'files','28550','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25081,'files','28551','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25082,'files','28552','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25083,'files','28553','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25084,'files','28554','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25085,'files','28555','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25086,'files','28556','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25087,'files','28557','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25088,'files','28558','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25089,'files','28559','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25090,'files','28560','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25091,'files','28561','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25092,'files','28562','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25093,'files','28563','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25094,'files','28564','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25095,'files','28565','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25096,'files','28566','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25097,'files','28567','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25098,'files','28568','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25099,'files','28569','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25100,'files','28570','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25101,'files','28571','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25102,'files','28572','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25103,'files','28573','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25104,'files','28574','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25105,'files','28575','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25106,'files','28576','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25107,'files','28577','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25108,'files','28578','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25109,'files','28579','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25110,'files','28580','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25111,'files','28581','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25112,'files','28582','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25113,'files','28583','error','Deal not found: 1198',NULL,'2025-11-14 00:17:03'),
(25114,'files','28584','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25115,'files','28585','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25116,'files','28586','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25117,'files','28587','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25118,'files','28588','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25119,'files','28589','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25120,'files','28590','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25121,'files','28591','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25122,'files','28592','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25123,'files','28593','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25124,'files','28594','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25125,'files','28595','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25126,'files','28596','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25127,'files','28597','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25128,'files','28598','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25129,'files','28599','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25130,'files','28600','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25131,'files','28601','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25132,'files','28602','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25133,'files','28603','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25134,'files','28604','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25135,'files','28605','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25136,'files','28606','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25137,'files','28607','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25138,'files','28608','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25139,'files','28609','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25140,'files','28610','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25141,'files','28611','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25142,'files','28612','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25143,'files','28613','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25144,'files','28614','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25145,'files','28615','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25146,'files','28616','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25147,'files','28617','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25148,'files','28618','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25149,'files','28619','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25150,'files','28620','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25151,'files','28621','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25152,'files','28622','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25153,'files','28623','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25154,'files','28624','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25155,'files','28625','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25156,'files','28626','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25157,'files','28627','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25158,'files','28628','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25159,'files','28629','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25160,'files','28630','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25161,'files','28631','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25162,'files','28632','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25163,'files','28633','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25164,'files','28634','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25165,'files','28635','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25166,'files','28636','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25167,'files','28637','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25168,'files','28638','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25169,'files','28639','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25170,'files','28640','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25171,'files','28641','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25172,'files','28642','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25173,'files','28643','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25174,'files','28644','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25175,'files','28645','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25176,'files','28646','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25177,'files','28647','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25178,'files','28648','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25179,'files','28649','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25180,'files','28650','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25181,'files','28651','error','Deal not found: 1198',NULL,'2025-11-14 00:17:03'),
(25182,'files','28652','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25183,'files','28653','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25184,'files','28654','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25185,'files','28655','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25186,'files','28656','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25187,'files','28657','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25188,'files','28658','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25189,'files','28659','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25190,'files','28660','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25191,'files','28661','error','Deal not found: 1198',NULL,'2025-11-14 00:17:03'),
(25192,'files','28662','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25193,'files','28663','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25194,'files','28664','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25195,'files','28665','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25196,'files','28666','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25197,'files','28667','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25198,'files','28668','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25199,'files','28669','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25200,'files','28670','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25201,'files','28671','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25202,'files','28672','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25203,'files','28673','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25204,'files','28674','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25205,'files','28675','error','Deal not found: 1293',NULL,'2025-11-14 00:17:03'),
(25206,'files','28676','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25207,'files','28677','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25208,'files','28678','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25209,'files','28679','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25210,'files','28680','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25211,'files','28681','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25212,'files','28682','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25213,'files','28683','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25214,'files','28684','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25215,'files','28685','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25216,'files','28686','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25217,'files','28687','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25218,'files','28688','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25219,'files','28689','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25220,'files','28690','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25221,'files','28691','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25222,'files','28692','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25223,'files','28693','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25224,'files','28694','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25225,'files','28695','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25226,'files','28696','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25227,'files','28697','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25228,'files','28698','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25229,'files','28699','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25230,'files','28700','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25231,'files','28701','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25232,'files','28702','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25233,'files','28703','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25234,'files','28704','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25235,'files','28705','error','Deal not found: 1198',NULL,'2025-11-14 00:17:03'),
(25236,'files','28706','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25237,'files','28707','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25238,'files','28708','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25239,'files','28709','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25240,'files','28710','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25241,'files','28711','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25242,'files','28712','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25243,'files','28713','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25244,'files','28714','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25245,'files','28715','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25246,'files','28716','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25247,'files','28717','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25248,'files','28718','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25249,'files','28719','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25250,'files','28720','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25251,'files','28721','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25252,'files','28722','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25253,'files','28723','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25254,'files','28724','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25255,'files','28725','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25256,'files','28726','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25257,'files','28727','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25258,'files','28728','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25259,'files','28729','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25260,'files','28730','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25261,'files','28731','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25262,'files','28732','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25263,'files','28733','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25264,'files','28734','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25265,'files','28735','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25266,'files','28736','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25267,'files','28737','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25268,'files','28738','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25269,'files','28739','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25270,'files','28740','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25271,'files','28741','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25272,'files','28742','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25273,'files','28743','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25274,'files','28744','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25275,'files','28745','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25276,'files','28746','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25277,'files','28747','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25278,'files','28748','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25279,'files','28749','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25280,'files','28750','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25281,'files','28751','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25282,'files','28752','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25283,'files','28753','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25284,'files','28754','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25285,'files','28755','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25286,'files','28756','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25287,'files','28757','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25288,'files','28758','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25289,'files','28759','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25290,'files','28760','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25291,'files','28761','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25292,'files','28762','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25293,'files','28763','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25294,'files','28764','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25295,'files','28765','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25296,'files','28766','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25297,'files','28767','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25298,'files','28768','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25299,'files','28769','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25300,'files','28770','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25301,'files','28771','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25302,'files','28772','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25303,'files','28773','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25304,'files','28774','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25305,'files','28775','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25306,'files','28776','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25307,'files','28777','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25308,'files','28778','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25309,'files','28779','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25310,'files','28780','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25311,'files','28781','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25312,'files','28782','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25313,'files','28783','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25314,'files','28784','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25315,'files','28785','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25316,'files','28786','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25317,'files','28787','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25318,'files','28788','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25319,'files','28789','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25320,'files','28790','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25321,'files','28791','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25322,'files','28792','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25323,'files','28793','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25324,'files','28794','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25325,'files','28795','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25326,'files','28796','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25327,'files','28797','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25328,'files','28798','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25329,'files','28799','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25330,'files','28800','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25331,'files','28801','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25332,'files','28802','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25333,'files','28803','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25334,'files','28804','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25335,'files','28806','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25336,'files','28807','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25337,'files','28808','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25338,'files','28809','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25339,'files','28810','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25340,'files','28811','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25341,'files','28812','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25342,'files','28813','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25343,'files','28814','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25344,'files','28815','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25345,'files','28816','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25346,'files','28817','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25347,'files','28818','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25348,'files','28819','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25349,'files','28820','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25350,'files','28821','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25351,'files','28822','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25352,'files','28823','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25353,'files','28824','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25354,'files','28825','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25355,'files','28826','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25356,'files','28827','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25357,'files','28828','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25358,'files','28829','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25359,'files','28830','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25360,'files','28831','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25361,'files','28832','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25362,'files','28833','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25363,'files','28834','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25364,'files','28835','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25365,'files','28836','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25366,'files','28837','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25367,'files','28838','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25368,'files','28839','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25369,'files','28840','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25370,'files','28841','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25371,'files','28842','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25372,'files','28843','error','Deal not found: 1293',NULL,'2025-11-14 00:17:03'),
(25373,'files','28844','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25374,'files','28845','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25375,'files','28846','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25376,'files','28847','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25377,'files','28848','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25378,'files','28849','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25379,'files','28850','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25380,'files','28851','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25381,'files','28852','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25382,'files','28853','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25383,'files','28854','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25384,'files','28855','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25385,'files','28856','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25386,'files','28857','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25387,'files','28858','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25388,'files','28859','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25389,'files','28860','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25390,'files','28861','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25391,'files','28862','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25392,'files','28863','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25393,'files','28864','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25394,'files','28865','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25395,'files','28866','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25396,'files','28867','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25397,'files','28868','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25398,'files','28869','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25399,'files','28870','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25400,'files','28871','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25401,'files','28872','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25402,'files','28873','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25403,'files','28874','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25404,'files','28875','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25405,'files','28876','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25406,'files','28877','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25407,'files','28878','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25408,'files','28879','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25409,'files','28880','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25410,'files','28881','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25411,'files','28882','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25412,'files','28883','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25413,'files','28884','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25414,'files','28885','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25415,'files','28886','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25416,'files','28887','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25417,'files','28888','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25418,'files','28889','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25419,'files','28890','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25420,'files','28891','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25421,'files','28892','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25422,'files','28893','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25423,'files','28894','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25424,'files','28895','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25425,'files','28896','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25426,'files','28897','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25427,'files','28898','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25428,'files','28899','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25429,'files','28900','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25430,'files','28901','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25431,'files','28902','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25432,'files','28903','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25433,'files','28904','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25434,'files','28905','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25435,'files','28906','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25436,'files','28907','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25437,'files','28908','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25438,'files','28909','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25439,'files','28910','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25440,'files','28911','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25441,'files','28912','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25442,'files','28913','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25443,'files','28914','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25444,'files','28915','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25445,'files','28916','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25446,'files','28917','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25447,'files','28918','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25448,'files','28919','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25449,'files','28920','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25450,'files','28921','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25451,'files','28922','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25452,'files','28923','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25453,'files','28924','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25454,'files','28925','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25455,'files','28926','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25456,'files','28927','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25457,'files','28928','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25458,'files','28929','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25459,'files','28930','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25460,'files','28931','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25461,'files','28932','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25462,'files','28933','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25463,'files','28934','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25464,'files','28935','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25465,'files','28936','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25466,'files','28937','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25467,'files','28938','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25468,'files','28939','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25469,'files','28940','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25470,'files','28941','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25471,'files','28942','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25472,'files','28943','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25473,'files','28944','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25474,'files','28945','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25475,'files','28946','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25476,'files','28947','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25477,'files','28948','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25478,'files','28949','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25479,'files','28950','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25480,'files','28951','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25481,'files','28952','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25482,'files','28953','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25483,'files','28954','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25484,'files','28955','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25485,'files','28956','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25486,'files','28957','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25487,'files','28958','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25488,'files','28959','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25489,'files','28960','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25490,'files','28961','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25491,'files','28962','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25492,'files','28963','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25493,'files','28964','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25494,'files','28965','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25495,'files','28966','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25496,'files','28967','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25497,'files','28968','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25498,'files','28969','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25499,'files','28970','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25500,'files','28971','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25501,'files','28972','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25502,'files','28973','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25503,'files','28974','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25504,'files','28975','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25505,'files','28976','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25506,'files','28977','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25507,'files','28978','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25508,'files','28979','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25509,'files','28980','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25510,'files','28981','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25511,'files','28982','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25512,'files','28983','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25513,'files','28984','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25514,'files','28985','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25515,'files','28986','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25516,'files','28987','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25517,'files','28988','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25518,'files','28989','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25519,'files','28990','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25520,'files','28991','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25521,'files','28992','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25522,'files','28993','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25523,'files','28994','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25524,'files','28995','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25525,'files','28996','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25526,'files','28997','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25527,'files','28998','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25528,'files','28999','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25529,'files','29000','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25530,'files','29001','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25531,'files','29002','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25532,'files','29003','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25533,'files','29004','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25534,'files','29005','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25535,'files','29006','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25536,'files','29007','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25537,'files','29008','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25538,'files','29009','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25539,'files','29010','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25540,'files','29011','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25541,'files','29012','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25542,'files','29013','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25543,'files','29014','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25544,'files','29015','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25545,'files','29016','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25546,'files','29017','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25547,'files','29018','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25548,'files','29019','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25549,'files','29020','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25550,'files','29021','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25551,'files','29022','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25552,'files','29023','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25553,'files','29024','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25554,'files','29025','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25555,'files','29026','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25556,'files','29027','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25557,'files','29028','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25558,'files','29029','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25559,'files','29030','error','Deal not found: 1427',NULL,'2025-11-14 00:17:03'),
(25560,'files','29031','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25561,'files','29032','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25562,'files','29033','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25563,'files','29034','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25564,'files','29035','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25565,'files','29036','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25566,'files','29037','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25567,'files','29038','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25568,'files','29039','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25569,'files','29040','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25570,'files','29041','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25571,'files','29042','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25572,'files','29043','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25573,'files','29044','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25574,'files','29045','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25575,'files','29046','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25576,'files','29047','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25577,'files','29048','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25578,'files','29049','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25579,'files','29050','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25580,'files','29051','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25581,'files','29052','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25582,'files','29053','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25583,'files','29054','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25584,'files','29055','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25585,'files','29056','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25586,'files','29057','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25587,'files','29058','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25588,'files','29059','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25589,'files','29060','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25590,'files','29061','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25591,'files','29062','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25592,'files','29063','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25593,'files','29064','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25594,'files','29065','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25595,'files','29066','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25596,'files','29067','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25597,'files','29068','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25598,'files','29069','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25599,'files','29070','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25600,'files','29071','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25601,'files','29072','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25602,'files','29073','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25603,'files','29074','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25604,'files','29075','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25605,'files','29076','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25606,'files','29077','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25607,'files','29078','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25608,'files','29079','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25609,'files','29080','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25610,'files','29081','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25611,'files','29082','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25612,'files','29083','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25613,'files','29084','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25614,'files','29085','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25615,'files','29086','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25616,'files','29087','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25617,'files','29088','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25618,'files','29089','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25619,'files','29090','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25620,'files','29091','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25621,'files','29092','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25622,'files','29093','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25623,'files','29094','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25624,'files','29095','error','Deal not found: 1339',NULL,'2025-11-14 00:17:03'),
(25625,'files','29096','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25626,'files','29097','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25627,'files','29098','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25628,'files','29099','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25629,'files','29100','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25630,'files','29101','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25631,'files','29102','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25632,'files','29103','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25633,'files','29104','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25634,'files','29105','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25635,'files','29106','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25636,'files','29107','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25637,'files','29108','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25638,'files','29109','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25639,'files','29110','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25640,'files','29111','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25641,'files','29112','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25642,'files','29113','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25643,'files','29114','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25644,'files','29115','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25645,'files','29116','error','Deal not found: 1427',NULL,'2025-11-14 00:17:03'),
(25646,'files','29117','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25647,'files','29118','error','Deal not found: 1427',NULL,'2025-11-14 00:17:03'),
(25648,'files','29119','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25649,'files','29120','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25650,'files','29121','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25651,'files','29122','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25652,'files','29123','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25653,'files','29124','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25654,'files','29125','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25655,'files','29126','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25656,'files','29127','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25657,'files','29128','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25658,'files','29129','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25659,'files','29130','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25660,'files','29131','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25661,'files','29132','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25662,'files','29133','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25663,'files','29134','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25664,'files','29135','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25665,'files','29136','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25666,'files','29137','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25667,'files','29138','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25668,'files','29139','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25669,'files','29140','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25670,'files','29141','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25671,'files','29142','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25672,'files','29143','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25673,'files','29144','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25674,'files','29145','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25675,'files','29146','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25676,'files','29147','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25677,'files','29148','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25678,'files','29149','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25679,'files','29150','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25680,'files','29151','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25681,'files','29152','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25682,'files','29153','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25683,'files','29154','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25684,'files','29155','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25685,'files','29156','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25686,'files','29157','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25687,'files','29158','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25688,'files','29159','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25689,'files','29160','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25690,'files','29161','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25691,'files','29162','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25692,'files','29163','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25693,'files','29164','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25694,'files','29165','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25695,'files','29166','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25696,'files','29167','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25697,'files','29168','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25698,'files','29169','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25699,'files','29170','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25700,'files','29171','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25701,'files','29172','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25702,'files','29173','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25703,'files','29174','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25704,'files','29175','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25705,'files','29176','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25706,'files','29177','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25707,'files','29178','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25708,'files','29179','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25709,'files','29180','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25710,'files','29181','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25711,'files','29182','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25712,'files','29183','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25713,'files','29184','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25714,'files','29185','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25715,'files','29186','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25716,'files','29187','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25717,'files','29188','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25718,'files','29189','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25719,'files','29190','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25720,'files','29191','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25721,'files','29192','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25722,'files','29193','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25723,'files','29194','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25724,'files','29195','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25725,'files','29196','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25726,'files','29197','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25727,'files','29198','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25728,'files','29199','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25729,'files','29200','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25730,'files','29201','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25731,'files','29202','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25732,'files','29203','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25733,'files','29204','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25734,'files','29205','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25735,'files','29206','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25736,'files','29207','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25737,'files','29208','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25738,'files','29209','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25739,'files','29210','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25740,'files','29211','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25741,'files','29212','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25742,'files','29213','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25743,'files','29214','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25744,'files','29215','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25745,'files','29216','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25746,'files','29217','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25747,'files','29218','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25748,'files','29219','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25749,'files','29220','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25750,'files','29221','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25751,'files','29222','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25752,'files','29223','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25753,'files','29224','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25754,'files','29225','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25755,'files','29226','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25756,'files','29227','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25757,'files','29228','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25758,'files','29229','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25759,'files','29230','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25760,'files','29231','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25761,'files','29232','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25762,'files','29233','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25763,'files','29234','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25764,'files','29235','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25765,'files','29236','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25766,'files','29237','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25767,'files','29238','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25768,'files','29239','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25769,'files','29240','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25770,'files','29241','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25771,'files','29242','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25772,'files','29243','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25773,'files','29244','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25774,'files','29245','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25775,'files','29246','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25776,'files','29247','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25777,'files','29248','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25778,'files','29249','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25779,'files','29250','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25780,'files','29251','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25781,'files','29252','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25782,'files','29253','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25783,'files','29254','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25784,'files','29255','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25785,'files','29256','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25786,'files','29257','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25787,'files','29258','error','Deal not found: 1293',NULL,'2025-11-14 00:17:03'),
(25788,'files','29259','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25789,'files','29260','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25790,'files','29261','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25791,'files','29262','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25792,'files','29263','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25793,'files','29264','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25794,'files','29265','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25795,'files','29266','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25796,'files','29267','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25797,'files','29268','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25798,'files','29269','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25799,'files','29270','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25800,'files','29271','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25801,'files','29272','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25802,'files','29273','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25803,'files','29274','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25804,'files','29275','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25805,'files','29276','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25806,'files','29277','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25807,'files','29278','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25808,'files','29279','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25809,'files','29280','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25810,'files','29281','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25811,'files','29282','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25812,'files','29283','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25813,'files','29284','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25814,'files','29285','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25815,'files','29286','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25816,'files','29287','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25817,'files','29288','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25818,'files','29289','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25819,'files','29290','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25820,'files','29291','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25821,'files','29292','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25822,'files','29293','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25823,'files','29294','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25824,'files','29295','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25825,'files','29296','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25826,'files','29297','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25827,'files','29298','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25828,'files','29299','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25829,'files','29300','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25830,'files','29301','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25831,'files','29302','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25832,'files','29303','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25833,'files','29304','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25834,'files','29305','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25835,'files','29306','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25836,'files','29307','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25837,'files','29308','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25838,'files','29309','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25839,'files','29310','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25840,'files','29311','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25841,'files','29312','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25842,'files','29313','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25843,'files','29314','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25844,'files','29315','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25845,'files','29316','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25846,'files','29317','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25847,'files','29318','error','Deal not found: 1198',NULL,'2025-11-14 00:17:03'),
(25848,'files','29319','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25849,'files','29320','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25850,'files','29321','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25851,'files','29322','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25852,'files','29323','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25853,'files','29324','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25854,'files','29325','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25855,'files','29326','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25856,'files','29327','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25857,'files','29328','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25858,'files','29329','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25859,'files','29330','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25860,'files','29331','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25861,'files','29332','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25862,'files','29333','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25863,'files','29334','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25864,'files','29335','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25865,'files','29336','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25866,'files','29337','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25867,'files','29338','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25868,'files','29339','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25869,'files','29340','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25870,'files','29341','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25871,'files','29342','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25872,'files','29343','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25873,'files','29344','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25874,'files','29345','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25875,'files','29346','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25876,'files','29347','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25877,'files','29348','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25878,'files','29349','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25879,'files','29350','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25880,'files','29351','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25881,'files','29352','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25882,'files','29353','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25883,'files','29354','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25884,'files','29355','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25885,'files','29356','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25886,'files','29357','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25887,'files','29358','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25888,'files','29359','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25889,'files','29360','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25890,'files','29361','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(25891,'files','29362','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25892,'files','29363','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25893,'files','29364','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25894,'files','29365','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25895,'files','29366','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25896,'files','29367','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25897,'files','29368','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25898,'files','29369','error','Deal not found: 1427',NULL,'2025-11-14 00:17:03'),
(25899,'files','29370','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25900,'files','29371','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25901,'files','29372','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25902,'files','29373','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25903,'files','29374','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25904,'files','29375','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25905,'files','29376','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25906,'files','29377','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25907,'files','29378','error','Deal not found: 1267',NULL,'2025-11-14 00:17:03'),
(25908,'files','29379','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25909,'files','29380','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25910,'files','29381','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25911,'files','29382','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25912,'files','29383','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25913,'files','29384','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25914,'files','29385','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25915,'files','29386','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25916,'files','29387','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25917,'files','29388','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25918,'files','29389','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25919,'files','29390','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25920,'files','29391','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25921,'files','29392','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25922,'files','29393','error','Deal not found: 1427',NULL,'2025-11-14 00:17:03'),
(25923,'files','29394','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25924,'files','29395','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25925,'files','29396','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25926,'files','29397','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25927,'files','29398','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25928,'files','29399','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25929,'files','29400','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25930,'files','29401','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25931,'files','29402','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25932,'files','29403','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25933,'files','29404','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25934,'files','29405','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25935,'files','29406','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25936,'files','29407','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25937,'files','29408','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25938,'files','29409','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25939,'files','29410','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25940,'files','29411','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25941,'files','29412','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25942,'files','29413','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25943,'files','29414','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25944,'files','29415','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25945,'files','29416','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25946,'files','29417','error','Deal not found: 1198',NULL,'2025-11-14 00:17:03'),
(25947,'files','29418','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25948,'files','29419','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25949,'files','29420','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25950,'files','29421','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25951,'files','29422','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25952,'files','29423','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25953,'files','29424','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25954,'files','29425','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25955,'files','29426','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25956,'files','29427','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25957,'files','29428','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25958,'files','29429','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25959,'files','29430','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25960,'files','29431','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25961,'files','29432','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25962,'files','29433','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25963,'files','29434','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25964,'files','29435','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25965,'files','29436','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25966,'files','29437','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25967,'files','29438','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25968,'files','29439','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25969,'files','29440','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25970,'files','29441','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25971,'files','29442','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25972,'files','29443','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25973,'files','29444','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25974,'files','29445','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25975,'files','29446','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25976,'files','29447','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25977,'files','29448','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25978,'files','29449','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25979,'files','29450','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25980,'files','29451','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25981,'files','29452','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25982,'files','29453','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25983,'files','29454','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25984,'files','29455','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25985,'files','29456','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25986,'files','29457','error','Deal not found: 1492',NULL,'2025-11-14 00:17:03'),
(25987,'files','29458','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25988,'files','29459','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25989,'files','29460','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25990,'files','29461','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25991,'files','29462','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25992,'files','29463','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(25993,'files','29464','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25994,'files','29465','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25995,'files','29466','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25996,'files','29467','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25997,'files','29468','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25998,'files','29469','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(25999,'files','29470','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26000,'files','29471','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26001,'files','29472','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26002,'files','29473','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26003,'files','29474','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26004,'files','29475','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26005,'files','29476','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26006,'files','29477','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26007,'files','29478','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26008,'files','29479','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26009,'files','29480','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26010,'files','29481','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26011,'files','29482','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26012,'files','29483','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26013,'files','29484','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26014,'files','29485','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26015,'files','29486','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26016,'files','29487','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26017,'files','29488','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26018,'files','29489','error','Deal not found: 1427',NULL,'2025-11-14 00:17:03'),
(26019,'files','29490','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26020,'files','29491','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26021,'files','29492','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26022,'files','29493','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26023,'files','29494','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26024,'files','29495','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26025,'files','29496','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26026,'files','29497','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26027,'files','29498','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26028,'files','29499','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26029,'files','29500','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26030,'files','29501','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26031,'files','29502','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26032,'files','29503','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26033,'files','29504','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26034,'files','29505','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26035,'files','29506','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26036,'files','29507','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26037,'files','29508','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26038,'files','29509','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26039,'files','29510','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(26040,'files','29511','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26041,'files','29512','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26042,'files','29513','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26043,'files','29514','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26044,'files','29515','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26045,'files','29516','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(26046,'files','29517','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26047,'files','29518','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26048,'files','29519','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(26049,'files','29520','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26050,'files','29521','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(26051,'files','29522','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26052,'files','29523','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(26053,'files','29524','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26054,'files','29525','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(26055,'files','29526','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26056,'files','29527','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26057,'files','29528','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26058,'files','29529','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26059,'files','29530','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26060,'files','29531','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26061,'files','29532','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26062,'files','29533','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26063,'files','29534','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26064,'files','29535','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26065,'files','29536','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26066,'files','29537','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(26067,'files','29538','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26068,'files','29539','error','Deal not found: 1273',NULL,'2025-11-14 00:17:03'),
(26069,'files','29540','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26070,'files','29541','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26071,'files','29542','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26072,'files','29543','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26073,'files','29544','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26074,'files','29545','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26075,'files','29546','error','Deal not found: 1497',NULL,'2025-11-14 00:17:03'),
(26076,'files','29547','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26077,'files','29548','error','Deal not found: 1497',NULL,'2025-11-14 00:17:03'),
(26078,'files','29549','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26079,'files','29550','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26080,'files','29551','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26081,'files','29552','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26082,'files','29553','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26083,'files','29554','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26084,'files','29555','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26085,'files','29556','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26086,'files','29557','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26087,'files','29558','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26088,'files','29559','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26089,'files','29560','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26090,'files','29561','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26091,'files','29562','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26092,'files','29563','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26093,'files','29564','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26094,'files','29565','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26095,'files','29566','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26096,'files','29567','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26097,'files','29568','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26098,'files','29569','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26099,'files','29570','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26100,'files','29571','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26101,'files','29572','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26102,'files','29573','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26103,'files','29574','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26104,'files','29575','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26105,'files','29576','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26106,'files','29577','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26107,'files','29578','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26108,'files','29579','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26109,'files','29580','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26110,'files','29581','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26111,'files','29582','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26112,'files','29583','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26113,'files','29584','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26114,'files','29585','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26115,'files','29586','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26116,'files','29587','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26117,'files','29588','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26118,'files','29589','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26119,'files','29590','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26120,'files','29591','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26121,'files','29592','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26122,'files','29593','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26123,'files','29594','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26124,'files','29595','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26125,'files','29596','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26126,'files','29597','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26127,'files','29598','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26128,'files','29599','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26129,'files','29600','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26130,'files','29601','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26131,'files','29602','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26132,'files','29603','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26133,'files','29604','error','Deal not found: 1429',NULL,'2025-11-14 00:17:03'),
(26134,'files','29605','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26135,'files','29606','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26136,'files','29607','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26137,'files','29608','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26138,'files','29609','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26139,'files','29610','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26140,'files','29611','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26141,'files','29612','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26142,'files','29613','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26143,'files','29614','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26144,'files','29615','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26145,'files','29616','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26146,'files','29617','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26147,'files','29618','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26148,'files','29619','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26149,'files','29620','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26150,'files','29621','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26151,'files','29622','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26152,'files','29623','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26153,'files','29624','error','Deal not found: 1293',NULL,'2025-11-14 00:17:03'),
(26154,'files','29625','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26155,'files','29626','error','Deal not found: 1724',NULL,'2025-11-14 00:17:03'),
(26156,'files','29627','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26157,'files','29628','error','Deal not found: 1724',NULL,'2025-11-14 00:17:03'),
(26158,'files','29629','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26159,'files','29630','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26160,'files','29631','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26161,'files','29632','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26162,'files','29633','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26163,'files','29634','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26164,'files','29635','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26165,'files','29636','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26166,'files','29637','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26167,'files','29638','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26168,'files','29639','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26169,'files','29640','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26170,'files','29641','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26171,'files','29642','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26172,'files','29643','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26173,'files','29644','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26174,'files','29645','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26175,'files','29646','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26176,'files','29647','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26177,'files','29648','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26178,'files','29649','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26179,'files','29650','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26180,'files','29651','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26181,'files','29652','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26182,'files','29653','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26183,'files','29654','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26184,'files','29655','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26185,'files','29656','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26186,'files','29657','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26187,'files','29658','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26188,'files','29659','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26189,'files','29660','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26190,'files','29661','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26191,'files','29662','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26192,'files','29663','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26193,'files','29664','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26194,'files','29665','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26195,'files','29666','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26196,'files','29667','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26197,'files','29668','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26198,'files','29669','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26199,'files','29670','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26200,'files','29671','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26201,'files','29672','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26202,'files','29673','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26203,'files','29674','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26204,'files','29675','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26205,'files','29676','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26206,'files','29677','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26207,'files','29678','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26208,'files','29679','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26209,'files','29680','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26210,'files','29681','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26211,'files','29682','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26212,'files','29683','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26213,'files','29684','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26214,'files','29685','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26215,'files','29686','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26216,'files','29687','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26217,'files','29688','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26218,'files','29689','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26219,'files','29690','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26220,'files','29691','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26221,'files','29692','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26222,'files','29693','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26223,'files','29694','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26224,'files','29695','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26225,'files','29696','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26226,'files','29697','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26227,'files','29698','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26228,'files','29699','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26229,'files','29700','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26230,'files','29701','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26231,'files','29702','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26232,'files','29703','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26233,'files','29704','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26234,'files','29705','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26235,'files','29706','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26236,'files','29707','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26237,'files','29708','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26238,'files','29709','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26239,'files','29710','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26240,'files','29711','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26241,'files','29712','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26242,'files','29713','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26243,'files','29714','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26244,'files','29715','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26245,'files','29716','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26246,'files','29717','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26247,'files','29718','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26248,'files','29719','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26249,'files','29720','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26250,'files','29721','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26251,'files','29722','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26252,'files','29723','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26253,'files','29724','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26254,'files','29725','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26255,'files','29726','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26256,'files','29727','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26257,'files','29728','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26258,'files','29729','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26259,'files','29730','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26260,'files','29731','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26261,'files','29732','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26262,'files','29733','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26263,'files','29734','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26264,'files','29735','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26265,'files','29736','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26266,'files','29737','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26267,'files','29738','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26268,'files','29739','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26269,'files','29740','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26270,'files','29741','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26271,'files','29742','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26272,'files','29743','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26273,'files','29744','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26274,'files','29745','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26275,'files','29746','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26276,'files','29747','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26277,'files','29748','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26278,'files','29749','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26279,'files','29750','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26280,'files','29751','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26281,'files','29752','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26282,'files','29753','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26283,'files','29754','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26284,'files','29755','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26285,'files','29756','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26286,'files','29757','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26287,'files','29758','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26288,'files','29759','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26289,'files','29760','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26290,'files','29761','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26291,'files','29762','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26292,'files','29763','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26293,'files','29764','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26294,'files','29765','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26295,'files','29766','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26296,'files','29767','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26297,'files','29768','error','Deal not found: 1435',NULL,'2025-11-14 00:17:03'),
(26298,'files','29769','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26299,'files','29770','error','Deal not found: 1435',NULL,'2025-11-14 00:17:03'),
(26300,'files','29771','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26301,'files','29772','error','Deal not found: 1435',NULL,'2025-11-14 00:17:03'),
(26302,'files','29773','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26303,'files','29774','error','Deal not found: 1435',NULL,'2025-11-14 00:17:03'),
(26304,'files','29775','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26305,'files','29776','error','Deal not found: 1435',NULL,'2025-11-14 00:17:03'),
(26306,'files','29777','error','Deal not found: 1435',NULL,'2025-11-14 00:17:03'),
(26307,'files','29778','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26308,'files','29779','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26309,'files','29780','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26310,'files','29781','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26311,'files','29782','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26312,'files','29783','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26313,'files','29784','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26314,'files','29785','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26315,'files','29786','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26316,'files','29787','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26317,'files','29788','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26318,'files','29789','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26319,'files','29790','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26320,'files','29791','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26321,'files','29792','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26322,'files','29793','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26323,'files','29794','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26324,'files','29795','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26325,'files','29796','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26326,'files','29797','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26327,'files','29798','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26328,'files','29799','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26329,'files','29800','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26330,'files','29801','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26331,'files','29802','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26332,'files','29803','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26333,'files','29804','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26334,'files','29805','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26335,'files','29806','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26336,'files','29807','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26337,'files','29808','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26338,'files','29809','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26339,'files','29810','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26340,'files','29811','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26341,'files','29812','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26342,'files','29813','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26343,'files','29814','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26344,'files','29815','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26345,'files','29816','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26346,'files','29817','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26347,'files','29818','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26348,'files','29819','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26349,'files','29820','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26350,'files','29821','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26351,'files','29822','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26352,'files','29823','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26353,'files','29824','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26354,'files','29825','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26355,'files','29826','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26356,'files','29827','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26357,'files','29828','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26358,'files','29829','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26359,'files','29830','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26360,'files','29831','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26361,'files','29832','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26362,'files','29833','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26363,'files','29834','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26364,'files','29835','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26365,'files','29836','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26366,'files','29837','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26367,'files','29838','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26368,'files','29839','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26369,'files','29840','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26370,'files','29841','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26371,'files','29842','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26372,'files','29843','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26373,'files','29844','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26374,'files','29845','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26375,'files','29846','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26376,'files','29847','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26377,'files','29848','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26378,'files','29849','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26379,'files','29850','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26380,'files','29851','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26381,'files','29852','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26382,'files','29853','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26383,'files','29854','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26384,'files','29855','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26385,'files','29856','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26386,'files','29857','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26387,'files','29858','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26388,'files','29859','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26389,'files','29860','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26390,'files','29861','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26391,'files','29862','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26392,'files','29863','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26393,'files','29864','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26394,'files','29865','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26395,'files','29866','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26396,'files','29867','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26397,'files','29868','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26398,'files','29869','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26399,'files','29870','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26400,'files','29871','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26401,'files','29872','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26402,'files','29873','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26403,'files','29874','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26404,'files','29875','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26405,'files','29876','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26406,'files','29877','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26407,'files','29878','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26408,'files','29879','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26409,'files','29880','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26410,'files','29881','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26411,'files','29882','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26412,'files','29883','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26413,'files','29884','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26414,'files','29885','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26415,'files','29886','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26416,'files','29887','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26417,'files','29888','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26418,'files','29889','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26419,'files','29890','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26420,'files','29891','error','Deal not found: 1718',NULL,'2025-11-14 00:17:03'),
(26421,'files','29892','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26422,'files','29893','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26423,'files','29894','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26424,'files','29895','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26425,'files','29896','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26426,'files','29897','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26427,'files','29898','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26428,'files','29899','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26429,'files','29900','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26430,'files','29901','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26431,'files','29902','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26432,'files','29903','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26433,'files','29904','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26434,'files','29905','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26435,'files','29906','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26436,'files','29907','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26437,'files','29908','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26438,'files','29909','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26439,'files','29910','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26440,'files','29911','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26441,'files','29912','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26442,'files','29913','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26443,'files','29914','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26444,'files','29915','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26445,'files','29916','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26446,'files','29917','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26447,'files','29918','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26448,'files','29919','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26449,'files','29920','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26450,'files','29921','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26451,'files','29922','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26452,'files','29923','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26453,'files','29924','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26454,'files','29925','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26455,'files','29926','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26456,'files','29927','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26457,'files','29928','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26458,'files','29929','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26459,'files','29930','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26460,'files','29931','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26461,'files','29932','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26462,'files','29933','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26463,'files','29934','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26464,'files','29935','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26465,'files','29936','error','Deal not found: 1293',NULL,'2025-11-14 00:17:03'),
(26466,'files','29937','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26467,'files','29938','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26468,'files','29939','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26469,'files','29940','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26470,'files','29941','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26471,'files','29942','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26472,'files','29943','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26473,'files','29944','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26474,'files','29945','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26475,'files','29946','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26476,'files','29947','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26477,'files','29948','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26478,'files','29949','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26479,'files','29950','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26480,'files','29951','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26481,'files','29952','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26482,'files','29953','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26483,'files','29954','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26484,'files','29955','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26485,'files','29956','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26486,'files','29957','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26487,'files','29958','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26488,'files','29959','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26489,'files','29960','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26490,'files','29961','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26491,'files','29962','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26492,'files','29963','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26493,'files','29964','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26494,'files','29965','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26495,'files','29966','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26496,'files','29967','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26497,'files','29968','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26498,'files','29969','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26499,'files','29970','error','Deal not found: 1014',NULL,'2025-11-14 00:17:03'),
(26500,'files','29971','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26501,'files','29972','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26502,'files','29973','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26503,'files','29974','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26504,'files','29975','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26505,'files','29976','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26506,'files','29977','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26507,'files','29978','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26508,'files','29979','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26509,'files','29980','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26510,'files','29981','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26511,'files','29982','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26512,'files','29983','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26513,'files','29984','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26514,'files','29985','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26515,'files','29986','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26516,'files','29987','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26517,'files','29988','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26518,'files','29989','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26519,'files','29990','error','Deal not found: 566',NULL,'2025-11-14 00:17:03'),
(26520,'files','29991','error','Deal not found: 566',NULL,'2025-11-14 00:17:03'),
(26521,'files','29992','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26522,'files','29993','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26523,'files','29994','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26524,'files','29995','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26525,'files','29996','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26526,'files','29997','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26527,'files','29998','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26528,'files','29999','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26529,'files','30000','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26530,'files','30001','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26531,'files','30002','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26532,'files','30003','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26533,'files','30004','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26534,'files','30005','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26535,'files','30006','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26536,'files','30007','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26537,'files','30008','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26538,'files','30009','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26539,'files','30010','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26540,'files','30011','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26541,'files','30012','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26542,'files','30013','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26543,'files','30014','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26544,'files','30015','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26545,'files','30016','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26546,'files','30017','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26547,'files','30018','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26548,'files','30019','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26549,'files','30020','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26550,'files','30021','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26551,'files','30022','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26552,'files','30023','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26553,'files','30024','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26554,'files','30025','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26555,'files','30026','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26556,'files','30027','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26557,'files','30028','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26558,'files','30029','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26559,'files','30030','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26560,'files','30031','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26561,'files','30032','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26562,'files','30033','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26563,'files','30034','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26564,'files','30035','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26565,'files','30036','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26566,'files','30037','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26567,'files','30038','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26568,'files','30039','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26569,'files','30040','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26570,'files','30041','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26571,'files','30042','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26572,'files','30043','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26573,'files','30044','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26574,'files','30045','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26575,'files','30046','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26576,'files','30047','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26577,'files','30048','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26578,'files','30049','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26579,'files','30050','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26580,'files','30051','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26581,'files','30052','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26582,'files','30053','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26583,'files','30054','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26584,'files','30055','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26585,'files','30056','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26586,'files','30057','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26587,'files','30058','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26588,'files','30059','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26589,'files','30060','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26590,'files','30061','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26591,'files','30062','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26592,'files','30063','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26593,'files','30064','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26594,'files','30065','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26595,'files','30066','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26596,'files','30067','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26597,'files','30068','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26598,'files','30069','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26599,'files','30070','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26600,'files','30071','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26601,'files','30072','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26602,'files','30073','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26603,'files','30074','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26604,'files','30075','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26605,'files','30076','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26606,'files','30077','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26607,'files','30078','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26608,'files','30079','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26609,'files','30080','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26610,'files','30081','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26611,'files','30082','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26612,'files','30083','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26613,'files','30086','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26614,'files','30089','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26615,'files','30091','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26616,'files','30094','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26617,'files','30095','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26618,'files','30097','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26619,'files','30100','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26620,'files','30102','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26621,'files','30103','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26622,'files','30104','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26623,'files','30105','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26624,'files','30106','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26625,'files','30107','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26626,'files','30108','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26627,'files','30109','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26628,'files','30110','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26629,'files','30111','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26630,'files','30112','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26631,'files','30113','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26632,'files','30114','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26633,'files','30115','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26634,'files','30116','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26635,'files','30117','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26636,'files','30118','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26637,'files','30119','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26638,'files','30120','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26639,'files','30121','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26640,'files','30122','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26641,'files','30123','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26642,'files','30124','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26643,'files','30125','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26644,'files','30126','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26645,'files','30127','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26646,'files','30128','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26647,'files','30129','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26648,'files','30130','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26649,'files','30131','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26650,'files','30132','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26651,'files','30133','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26652,'files','30134','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26653,'files','30135','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26654,'files','30136','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26655,'files','30137','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26656,'files','30138','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26657,'files','30139','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26658,'files','30140','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26659,'files','30141','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26660,'files','30142','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26661,'files','30143','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26662,'files','30144','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26663,'files','30145','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26664,'files','30146','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26665,'files','30147','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26666,'files','30148','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26667,'files','30149','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26668,'files','30150','error','Deal not found: 566',NULL,'2025-11-14 00:17:03'),
(26669,'files','30151','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26670,'files','30152','error','Deal not found: 566',NULL,'2025-11-14 00:17:03'),
(26671,'files','30153','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26672,'files','30154','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26673,'files','30155','error','Deal not found: 566',NULL,'2025-11-14 00:17:03'),
(26674,'files','30156','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26675,'files','30157','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26676,'files','30158','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26677,'files','30159','error','Deal not found: 566',NULL,'2025-11-14 00:17:03'),
(26678,'files','30160','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26679,'files','30161','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26680,'files','30162','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26681,'files','30163','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26682,'files','30164','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26683,'files','30165','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26684,'files','30166','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26685,'files','30167','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26686,'files','30168','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26687,'files','30169','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26688,'files','30170','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26689,'files','30171','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26690,'files','30172','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26691,'files','30173','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26692,'files','30174','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26693,'files','30175','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26694,'files','30176','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26695,'files','30177','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26696,'files','30178','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26697,'files','30179','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26698,'files','30180','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26699,'files','30181','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26700,'files','30182','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26701,'files','30183','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26702,'files','30184','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26703,'files','30185','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26704,'files','30186','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26705,'files','30187','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26706,'files','30188','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26707,'files','30189','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26708,'files','30190','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26709,'files','30191','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26710,'files','30192','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26711,'files','30193','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26712,'files','30194','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26713,'files','30195','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26714,'files','30196','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26715,'files','30197','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26716,'files','30198','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26717,'files','30199','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26718,'files','30200','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26719,'files','30201','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26720,'files','30202','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26721,'files','30203','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26722,'files','30204','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26723,'files','30205','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26724,'files','30206','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26725,'files','30207','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26726,'files','30208','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26727,'files','30209','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26728,'files','30210','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26729,'files','30211','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26730,'files','30212','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26731,'files','30213','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26732,'files','30214','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26733,'files','30215','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26734,'files','30216','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26735,'files','30217','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26736,'files','30218','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26737,'files','30219','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26738,'files','30220','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26739,'files','30221','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26740,'files','30222','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26741,'files','30223','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26742,'files','30224','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26743,'files','30225','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26744,'files','30226','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26745,'files','30227','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26746,'files','30228','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26747,'files','30229','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26748,'files','30230','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26749,'files','30231','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26750,'files','30232','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26751,'files','30233','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26752,'files','30234','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26753,'files','30235','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26754,'files','30236','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26755,'files','30237','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26756,'files','30238','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26757,'files','30239','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26758,'files','30240','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26759,'files','30241','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26760,'files','30242','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26761,'files','30243','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26762,'files','30244','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26763,'files','30245','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26764,'files','30246','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26765,'files','30247','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26766,'files','30248','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26767,'files','30249','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26768,'files','30250','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26769,'files','30251','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26770,'files','30252','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26771,'files','30253','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26772,'files','30254','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26773,'files','30255','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26774,'files','30256','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26775,'files','30257','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26776,'files','30258','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26777,'files','30259','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26778,'files','30260','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26779,'files','30261','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26780,'files','30262','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26781,'files','30263','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26782,'files','30264','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26783,'files','30265','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26784,'files','30266','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26785,'files','30267','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26786,'files','30268','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26787,'files','30269','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26788,'files','30270','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26789,'files','30271','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26790,'files','30272','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26791,'files','30273','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26792,'files','30274','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26793,'files','30275','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26794,'files','30276','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26795,'files','30277','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26796,'files','30279','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26797,'files','30280','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26798,'files','30281','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26799,'files','30282','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26800,'files','30283','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26801,'files','30284','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26802,'files','30285','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26803,'files','30286','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26804,'files','30287','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26805,'files','30288','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26806,'files','30289','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26807,'files','30290','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26808,'files','30291','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26809,'files','30292','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26810,'files','30293','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26811,'files','30294','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26812,'files','30295','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26813,'files','30296','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26814,'files','30297','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26815,'files','30298','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26816,'files','30299','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26817,'files','30300','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26818,'files','30301','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26819,'files','30302','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26820,'files','30303','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26821,'files','30304','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26822,'files','30305','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26823,'files','30306','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26824,'files','30307','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26825,'files','30308','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26826,'files','30309','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26827,'files','30310','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26828,'files','30311','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26829,'files','30312','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26830,'files','30313','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26831,'files','30314','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26832,'files','30315','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26833,'files','30316','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26834,'files','30317','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26835,'files','30318','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26836,'files','30319','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26837,'files','30320','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26838,'files','30321','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26839,'files','30322','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26840,'files','30323','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26841,'files','30324','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26842,'files','30325','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26843,'files','30326','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26844,'files','30327','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26845,'files','30328','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26846,'files','30329','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26847,'files','30330','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26848,'files','30331','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26849,'files','30332','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26850,'files','30333','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26851,'files','30334','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26852,'files','30335','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26853,'files','30336','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26854,'files','30337','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26855,'files','30338','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26856,'files','30339','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26857,'files','30340','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26858,'files','30341','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26859,'files','30342','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26860,'files','30343','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26861,'files','30344','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26862,'files','30345','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26863,'files','30346','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26864,'files','30347','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26865,'files','30348','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26866,'files','30349','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26867,'files','30350','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26868,'files','30351','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26869,'files','30352','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26870,'files','30353','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26871,'files','30354','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26872,'files','30355','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26873,'files','30356','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26874,'files','30357','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26875,'files','30358','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26876,'files','30359','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26877,'files','30360','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26878,'files','30361','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26879,'files','30362','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26880,'files','30363','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26881,'files','30364','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26882,'files','30365','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26883,'files','30366','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26884,'files','30367','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26885,'files','30368','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26886,'files','30369','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26887,'files','30370','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26888,'files','30371','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26889,'files','30372','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26890,'files','30373','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26891,'files','30374','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26892,'files','30375','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26893,'files','30376','error','Deal not found: 1527',NULL,'2025-11-14 00:17:03'),
(26894,'files','30787','error','Deal not found: 4',NULL,'2025-11-14 00:17:03'),
(26895,'files','30839','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26896,'files','30840','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26897,'files','33211','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26898,'files','35340','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26899,'files','35415','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26900,'files','37367','error','Deal not found: 58',NULL,'2025-11-14 00:17:03'),
(26901,'files','37368','error','Deal not found: 58',NULL,'2025-11-14 00:17:03'),
(26902,'files','38011','error','Deal not found: 1596',NULL,'2025-11-14 00:17:03'),
(26903,'files','38012','error','Deal not found: 1596',NULL,'2025-11-14 00:17:03'),
(26904,'files','38013','error','Deal not found: 1596',NULL,'2025-11-14 00:17:03'),
(26905,'files','38014','error','Deal not found: 1596',NULL,'2025-11-14 00:17:03'),
(26906,'files','38404','error','Deal not found: 1597',NULL,'2025-11-14 00:17:03'),
(26907,'files','38405','error','Deal not found: 1597',NULL,'2025-11-14 00:17:03'),
(26908,'files','38634','error','Deal not found: 1604',NULL,'2025-11-14 00:17:03'),
(26909,'files','39390','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26910,'files','39393','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26911,'files','40097','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26912,'files','40098','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26913,'files','40240','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26914,'files','40241','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26915,'files','41182','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26916,'files','41374','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26917,'files','41629','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26918,'files','41632','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26919,'files','42056','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26920,'files','42808','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26921,'files','43324','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26922,'files','43325','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26923,'files','43356','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26924,'files','43433','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26925,'files','43555','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26926,'files','43697','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26927,'files','43698','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26928,'files','43699','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26929,'files','43754','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26930,'files','43758','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26931,'files','43791','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26932,'files','43821','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26933,'files','43822','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26934,'files','43823','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26935,'files','43824','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26936,'files','43825','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26937,'files','43826','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26938,'files','43827','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26939,'files','43828','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26940,'files','43829','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26941,'files','43830','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26942,'files','43831','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26943,'files','43832','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26944,'files','43833','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26945,'files','43923','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26946,'files','43924','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26947,'files','43925','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26948,'files','43981','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26949,'files','44005','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26950,'files','44006','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26951,'files','44007','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26952,'files','44122','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26953,'files','44123','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26954,'files','44124','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26955,'files','44244','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26956,'files','44245','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26957,'files','44257','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26958,'files','44267','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26959,'files','44268','error','Deal not found: 1641',NULL,'2025-11-14 00:17:03'),
(26960,'files','44269','error','Deal not found: 1641',NULL,'2025-11-14 00:17:03'),
(26961,'files','44279','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26962,'files','44280','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26963,'files','44281','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26964,'files','44282','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26965,'files','44293','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26966,'files','44309','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26967,'files','44310','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26968,'files','44311','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26969,'files','44394','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26970,'files','44438','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26971,'files','44439','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26972,'files','44445','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26973,'files','44472','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26974,'files','44484','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26975,'files','44486','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26976,'files','44487','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26977,'files','44513','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26978,'files','44637','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26979,'files','44779','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26980,'files','44783','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26981,'files','44784','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26982,'files','44875','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26983,'files','44876','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26984,'files','44877','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26985,'files','44978','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26986,'files','44981','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26987,'files','44982','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26988,'files','44983','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26989,'files','44987','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26990,'files','44989','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26991,'files','44990','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26992,'files','44991','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26993,'files','44992','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26994,'files','45031','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26995,'files','45032','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26996,'files','45033','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26997,'files','45034','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26998,'files','45053','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(26999,'files','45054','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27000,'files','45094','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27001,'files','45283','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27002,'files','45357','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27003,'files','45358','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27004,'files','45362','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27005,'files','45378','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27006,'files','45379','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27007,'files','45386','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27008,'files','45387','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27009,'files','45388','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27010,'files','45389','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27011,'files','45390','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27012,'files','45391','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27013,'files','45423','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27014,'files','45576','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27015,'files','45651','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27016,'files','45652','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27017,'files','45653','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27018,'files','45774','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27019,'files','45778','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27020,'files','45853','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27021,'files','45865','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27022,'files','46029','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27023,'files','46030','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27024,'files','46031','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27025,'files','46032','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27026,'files','46033','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27027,'files','46041','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27028,'files','46042','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27029,'files','46084','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27030,'files','46086','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27031,'files','46087','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27032,'files','46092','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27033,'files','46140','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27034,'files','46141','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27035,'files','46142','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27036,'files','46143','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27037,'files','46184','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27038,'files','46196','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27039,'files','46219','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27040,'files','46221','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27041,'files','46222','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27042,'files','46229','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27043,'files','46230','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27044,'files','46236','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27045,'files','46289','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27046,'files','46360','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27047,'files','46361','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27048,'files','46385','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27049,'files','46386','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27050,'files','46422','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27051,'files','46423','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27052,'files','46424','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27053,'files','61401','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27054,'files','61402','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27055,'files','61404','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27056,'files','61405','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27057,'files','61454','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27058,'files','61458','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27059,'files','61459','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27060,'files','61460','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27061,'files','61461','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27062,'files','61462','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27063,'files','61470','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27064,'files','61471','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27065,'files','61547','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27066,'files','61548','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27067,'files','61582','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27068,'files','61583','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27069,'files','61584','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27070,'files','61585','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27071,'files','61586','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27072,'files','61587','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27073,'files','61643','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27074,'files','61644','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27075,'files','61682','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27076,'files','61683','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27077,'files','61926','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27078,'files','61927','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27079,'files','61931','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27080,'files','61932','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27081,'files','61933','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27082,'files','61951','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27083,'files','61952','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27084,'files','61953','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27085,'files','61954','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27086,'files','62216','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27087,'files','62279','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27088,'files','62742','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27089,'files','62743','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27090,'files','62744','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27091,'files','62801','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27092,'files','62862','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27093,'files','62863','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27094,'files','62886','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27095,'files','62887','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27096,'files','62888','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27097,'files','62889','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27098,'files','62890','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27099,'files','62891','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27100,'files','62892','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27101,'files','63048','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27102,'files','63132','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27103,'files','63137','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27104,'files','63181','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27105,'files','63185','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27106,'files','63188','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27107,'files','63189','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27108,'files','63312','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27109,'files','63348','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27110,'files','63394','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27111,'files','63395','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27112,'files','63396','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27113,'files','63397','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27114,'files','63398','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27115,'files','63399','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27116,'files','63400','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27117,'files','63420','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27118,'files','63421','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27119,'files','63629','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27120,'files','63630','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27121,'files','63631','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27122,'files','63632','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27123,'files','63633','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27124,'files','63634','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27125,'files','63635','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27126,'files','63636','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27127,'files','63642','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27128,'files','63758','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27129,'files','63759','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27130,'files','63955','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27131,'files','64053','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27132,'files','64210','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27133,'files','64501','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27134,'files','64502','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27135,'files','64503','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27136,'files','64504','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27137,'files','64505','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27138,'files','64515','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27139,'files','64538','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27140,'files','64851','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27141,'files','64950','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27142,'files','65255','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27143,'files','65256','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27144,'files','65291','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27145,'files','65292','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27146,'files','65318','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27147,'files','65356','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27148,'files','65441','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27149,'files','65442','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27150,'files','65443','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27151,'files','65444','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27152,'files','65445','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27153,'files','65446','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27154,'files','65447','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27155,'files','65448','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27156,'files','65449','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27157,'files','65450','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27158,'files','65451','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27159,'files','65452','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27160,'files','65491','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27161,'files','65542','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27162,'files','65594','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27163,'files','65595','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27164,'files','65596','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27165,'files','65597','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27166,'files','65598','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27167,'files','65602','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27168,'files','65603','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27169,'files','65604','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27170,'files','65605','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27171,'files','65606','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27172,'files','65607','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27173,'files','65693','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27174,'files','65694','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27175,'files','65823','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27176,'files','65824','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27177,'files','65825','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27178,'files','65826','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27179,'files','65827','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27180,'files','65828','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27181,'files','65829','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27182,'files','65830','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27183,'files','65836','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27184,'files','65837','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27185,'files','65838','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27186,'files','65839','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27187,'files','65840','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27188,'files','65842','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27189,'files','65844','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27190,'files','65845','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27191,'files','65846','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27192,'files','65847','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27193,'files','65848','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27194,'files','65849','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27195,'files','65851','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27196,'files','65852','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27197,'files','66057','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27198,'files','66058','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27199,'files','66059','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27200,'files','66060','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27201,'files','66061','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27202,'files','66065','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27203,'files','66066','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27204,'files','66083','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27205,'files','66122','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27206,'files','66190','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27207,'files','66382','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27208,'files','66384','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27209,'files','66385','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27210,'files','66402','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27211,'files','66555','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27212,'files','66556','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27213,'files','66557','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27214,'files','66558','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27215,'files','66559','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27216,'files','66795','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27217,'files','66815','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27218,'files','66928','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27219,'files','66942','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27220,'files','66943','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27221,'files','66944','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27222,'files','66945','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27223,'files','67015','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27224,'files','67036','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27225,'files','67091','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27226,'files','67092','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27227,'files','67094','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27228,'files','67095','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27229,'files','67096','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27230,'files','67099','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27231,'files','67118','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27232,'files','67124','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27233,'files','67272','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27234,'files','67367','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27235,'files','67378','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27236,'files','67431','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27237,'files','67511','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27238,'files','67512','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27239,'files','67514','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27240,'files','67515','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27241,'files','67542','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27242,'files','67543','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27243,'files','67544','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27244,'files','67545','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27245,'files','67546','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27246,'files','67547','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27247,'files','67566','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27248,'files','67622','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27249,'files','67623','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27250,'files','67670','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27251,'files','67671','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27252,'files','67675','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27253,'files','67676','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27254,'files','67677','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27255,'files','67678','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27256,'files','67680','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27257,'files','67681','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27258,'files','67745','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27259,'files','67968','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27260,'files','68084','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27261,'files','68085','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27262,'files','68086','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27263,'files','68087','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27264,'files','68088','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27265,'files','68104','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27266,'files','68137','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27267,'files','68138','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27268,'files','68139','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27269,'files','68140','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27270,'files','68201','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27271,'files','68278','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27272,'files','68363','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27273,'files','68364','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27274,'files','68365','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27275,'files','68366','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27276,'files','68367','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27277,'files','68368','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27278,'files','68382','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27279,'files','68480','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27280,'files','68481','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27281,'files','68482','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27282,'files','68483','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27283,'files','68484','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27284,'files','68489','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27285,'files','68490','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27286,'files','68491','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27287,'files','68521','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27288,'files','68522','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27289,'files','68548','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27290,'files','68549','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27291,'files','68564','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27292,'files','68565','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27293,'files','68566','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27294,'files','68567','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27295,'files','68680','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27296,'files','68705','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27297,'files','68706','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27298,'files','68707','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27299,'files','68708','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27300,'files','68709','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27301,'files','68788','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27302,'files','68960','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27303,'files','68961','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27304,'files','68962','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27305,'files','68963','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27306,'files','68984','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27307,'files','69055','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27308,'files','69066','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27309,'files','69098','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27310,'files','69130','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27311,'files','69236','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27312,'files','69237','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27313,'files','69266','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27314,'files','69269','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27315,'files','69370','error','Deal not found: 1767',NULL,'2025-11-14 00:17:03'),
(27316,'files','69382','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27317,'files','69383','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27318,'files','69384','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27319,'files','69385','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27320,'files','69435','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27321,'files','69486','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27322,'files','69487','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27323,'files','69528','error','Deal not found: 1766',NULL,'2025-11-14 00:17:03'),
(27324,'files','69532','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27325,'files','69579','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27326,'files','69580','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27327,'files','69595','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27328,'files','69612','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27329,'files','69791','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27330,'files','69929','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27331,'files','69969','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27332,'files','69970','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27333,'files','69991','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27334,'files','69999','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27335,'files','70008','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27336,'files','70073','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27337,'files','70074','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27338,'files','70075','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27339,'files','70081','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27340,'files','70082','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27341,'files','70083','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27342,'files','70084','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27343,'files','70085','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27344,'files','70086','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27345,'files','70193','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27346,'files','70227','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27347,'files','70228','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27348,'files','70234','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27349,'files','70235','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27350,'files','70319','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27351,'files','70320','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27352,'files','70323','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27353,'files','70326','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27354,'files','70327','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27355,'files','70328','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27356,'files','70475','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27357,'files','70478','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27358,'files','70717','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27359,'files','70718','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27360,'files','70719','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27361,'files','70839','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27362,'files','70840','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27363,'files','70841','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27364,'files','70842','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27365,'files','70864','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27366,'files','70865','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27367,'files','70866','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27368,'files','70905','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27369,'files','70915','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27370,'files','70916','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27371,'files','70917','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27372,'files','70932','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27373,'files','71005','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27374,'files','71013','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27375,'files','71107','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27376,'files','71108','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27377,'files','71113','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27378,'files','71114','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27379,'files','71115','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27380,'files','71116','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27381,'files','71141','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27382,'files','71204','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27383,'files','71205','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27384,'files','71207','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27385,'files','71208','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27386,'files','71209','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27387,'files','71214','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27388,'files','71215','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27389,'files','71216','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27390,'files','71392','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27391,'files','71394','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27392,'files','71395','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27393,'files','71396','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27394,'files','71397','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27395,'files','71398','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27396,'files','71414','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27397,'files','71415','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27398,'files','71416','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27399,'files','71417','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27400,'files','71430','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27401,'files','71487','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27402,'files','71532','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27403,'files','71536','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27404,'files','71538','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27405,'files','71539','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27406,'files','71560','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27407,'files','71720','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27408,'files','71721','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27409,'files','71836','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27410,'files','71846','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27411,'files','71847','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27412,'files','71850','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27413,'files','71854','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27414,'files','71855','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27415,'files','71856','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27416,'files','71936','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27417,'files','72048','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27418,'files','72167','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27419,'files','72231','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27420,'files','72262','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27421,'files','72323','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27422,'files','72606','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27423,'files','72899','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27424,'files','72931','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27425,'files','72941','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27426,'files','72946','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27427,'files','72947','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27428,'files','73088','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27429,'files','73089','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27430,'files','73090','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27431,'files','73091','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27432,'files','73092','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27433,'files','73120','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27434,'files','73121','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27435,'files','73122','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27436,'files','73123','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27437,'files','73248','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27438,'files','73351','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27439,'files','73352','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27440,'files','73359','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27441,'files','73360','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27442,'files','73361','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27443,'files','73362','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27444,'files','73507','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27445,'files','73594','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27446,'files','73595','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27447,'files','73596','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27448,'files','73597','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27449,'files','73608','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27450,'files','73614','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27451,'files','73873','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27452,'files','73874','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27453,'files','73875','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27454,'files','73876','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27455,'files','73877','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27456,'files','73878','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27457,'files','73934','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27458,'files','74074','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27459,'files','74133','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27460,'files','74168','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27461,'files','74169','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27462,'files','74215','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27463,'files','74361','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27464,'files','74362','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27465,'files','74446','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27466,'files','74531','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27467,'files','74532','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27468,'files','74533','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27469,'files','74534','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27470,'files','74535','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27471,'files','74536','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27472,'files','74965','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27473,'files','74979','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27474,'files','75013','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27475,'files','75014','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27476,'files','75017','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27477,'files','75024','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27478,'files','75025','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27479,'files','75026','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27480,'files','75027','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27481,'files','75028','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27482,'files','75030','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27483,'files','75031','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27484,'files','75033','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27485,'files','75036','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27486,'files','75334','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27487,'files','75471','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27488,'files','75472','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27489,'files','75515','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27490,'files','75516','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27491,'files','75519','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27492,'files','75520','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27493,'files','75521','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27494,'files','75522','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27495,'files','75639','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27496,'files','75688','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27497,'files','75689','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27498,'files','75691','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27499,'files','75723','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27500,'files','75724','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27501,'files','75797','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27502,'files','75911','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27503,'files','76005','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27504,'files','76006','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27505,'files','76190','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27506,'files','76238','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27507,'files','76951','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27508,'files','77005','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27509,'files','77037','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27510,'files','77163','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27511,'files','77164','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27512,'files','77327','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27513,'files','77634','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27514,'files','77635','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27515,'files','77776','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27516,'files','77777','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27517,'files','77778','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27518,'files','77779','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27519,'files','77780','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27520,'files','77881','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27521,'files','77882','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27522,'files','77883','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27523,'files','77884','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27524,'files','77890','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27525,'files','77891','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27526,'files','77892','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27527,'files','77893','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27528,'files','78006','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27529,'files','78008','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27530,'files','78011','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27531,'files','78012','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27532,'files','78013','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27533,'files','78242','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27534,'files','78243','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27535,'files','78244','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27536,'files','78256','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27537,'files','78258','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27538,'files','78259','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27539,'files','78260','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27540,'files','78344','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27541,'files','78345','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27542,'files','78360','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27543,'files','78361','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27544,'files','78364','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27545,'files','78365','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27546,'files','78367','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27547,'files','78372','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27548,'files','78373','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27549,'files','78374','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27550,'files','78375','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27551,'files','78429','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27552,'files','78430','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27553,'files','78431','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27554,'files','78432','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27555,'files','78433','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27556,'files','78434','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27557,'files','78438','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27558,'files','78444','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27559,'files','78457','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27560,'files','78458','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27561,'files','78459','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27562,'files','78460','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27563,'files','78462','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27564,'files','78532','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27565,'files','78548','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27566,'files','78552','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27567,'files','78880','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27568,'files','78900','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27569,'files','78901','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27570,'files','78902','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27571,'files','78948','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27572,'files','78992','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27573,'files','79018','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27574,'files','79168','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27575,'files','79190','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27576,'files','79191','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27577,'files','79192','error','Deal not found: 1566',NULL,'2025-11-14 00:17:03'),
(27578,'files','79193','error','Deal not found: 4',NULL,'2025-11-14 00:17:03'),
(27579,'files','79202','error','Deal not found: 1707',NULL,'2025-11-14 00:17:03'),
(27580,'files','79203','error','Deal not found: 1572',NULL,'2025-11-14 00:17:03'),
(27581,'files','79234','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27582,'files','79235','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27583,'files','79272','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27584,'files','79278','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27585,'files','79311','error','Deal not found: 1638',NULL,'2025-11-14 00:17:03'),
(27586,'files','79312','error','Deal not found: 1638',NULL,'2025-11-14 00:17:03'),
(27587,'files','79313','error','Deal not found: 1638',NULL,'2025-11-14 00:17:03'),
(27588,'files','79492','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27589,'files','79493','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27590,'files','79582','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27591,'files','79583','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27592,'files','79584','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27593,'files','79906','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27594,'files','79931','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27595,'files','79932','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27596,'files','80111','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27597,'files','80112','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27598,'files','80113','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27599,'files','80167','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27600,'files','80205','error','Deal not found: 1827',NULL,'2025-11-14 00:17:03'),
(27601,'files','80301','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27602,'files','80336','error','Deal not found: 1802',NULL,'2025-11-14 00:17:03'),
(27603,'files','80501','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27604,'files','80502','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27605,'files','80503','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27606,'files','80504','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27607,'files','81097','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27608,'files','81126','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27609,'files','81593','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27610,'files','81610','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27611,'files','81611','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27612,'files','81612','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27613,'files','81613','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27614,'files','81624','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27615,'files','81625','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27616,'files','81851','error','Deal not found: 1812',NULL,'2025-11-14 00:17:03'),
(27617,'files','81852','error','Deal not found: 1812',NULL,'2025-11-14 00:17:03'),
(27618,'files','81853','error','Deal not found: 1812',NULL,'2025-11-14 00:17:03'),
(27619,'files','81854','error','Deal not found: 1812',NULL,'2025-11-14 00:17:03'),
(27620,'files','81915','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27621,'files','81916','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27622,'files','81917','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27623,'files','81918','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27624,'files','81919','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27625,'files','82664','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27626,'files','82715','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27627,'files','82716','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27628,'files','82717','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27629,'files','82732','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27630,'files','82733','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27631,'files','82762','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27632,'files','82763','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27633,'files','82783','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27634,'files','82904','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27635,'files','83031','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27636,'files','83032','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27637,'files','83033','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27638,'files','83034','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27639,'files','83061','error','Deal not found: 1852',NULL,'2025-11-14 00:17:03'),
(27640,'files','83229','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27641,'files','83237','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27642,'files','83350','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27643,'files','83503','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27644,'files','83524','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27645,'files','83525','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27646,'files','83642','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27647,'files','83643','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27648,'files','84258','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27649,'files','85285','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27650,'files','85286','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27651,'files','85287','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27652,'files','85288','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27653,'files','85289','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27654,'files','85439','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27655,'files','86284','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27656,'files','86608','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27657,'files','86609','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27658,'files','86957','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27659,'files','87009','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27660,'files','87010','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27661,'files','87011','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27662,'files','87012','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27663,'files','87050','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27664,'files','87055','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27665,'files','87677','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27666,'files','87678','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27667,'files','88027','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27668,'files','88028','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27669,'files','88029','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27670,'files','88038','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27671,'files','88263','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27672,'files','88505','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27673,'files','88868','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27674,'files','88874','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27675,'files','88875','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27676,'files','88876','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27677,'files','88877','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27678,'files','88910','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27679,'files','88911','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27680,'files','88912','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27681,'files','88925','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27682,'files','89258','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27683,'files','89261','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27684,'files','89262','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27685,'files','89263','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27686,'files','89288','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27687,'files','89297','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27688,'files','89338','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27689,'files','89340','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27690,'files','89447','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27691,'files','89448','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27692,'files','90082','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27693,'files','90083','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27694,'files','90084','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27695,'files','90085','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27696,'files','90086','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27697,'files','90087','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27698,'files','90158','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27699,'files','90159','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27700,'files','90160','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27701,'files','90161','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27702,'files','90162','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27703,'files','90163','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27704,'files','90753','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27705,'files','90754','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27706,'files','90755','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27707,'files','90756','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27708,'files','90757','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27709,'files','90758','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27710,'files','90766','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27711,'files','90767','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27712,'files','90768','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27713,'files','90913','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27714,'files','90914','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27715,'files','90915','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27716,'files','90916','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27717,'files','90917','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27718,'files','90918','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27719,'files','96562','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27720,'files','96563','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27721,'files','96779','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27722,'files','96780','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27723,'files','97793','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27724,'files','97794','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27725,'files','100036','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27726,'files','100177','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27727,'files','100919','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27728,'files','102829','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27729,'files','103159','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27730,'files','104050','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27731,'files','104998','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27732,'files','104999','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27733,'files','105000','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27734,'files','105001','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27735,'files','105002','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27736,'files','105003','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27737,'files','105004','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27738,'files','105005','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27739,'files','105540','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27740,'files','106018','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27741,'files','106019','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27742,'files','106020','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27743,'files','108115','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27744,'files','108279','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27745,'files','108426','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27746,'files','108427','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27747,'files','108650','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27748,'files','108997','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27749,'files','109201','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27750,'files','109222','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27751,'files','109223','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27752,'files','109443','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27753,'files','110516','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27754,'files','110550','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27755,'files','110576','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27756,'files','112970','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27757,'files','113672','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27758,'files','113817','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27759,'files','114588','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27760,'files','114589','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27761,'files','114590','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27762,'files','115016','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27763,'files','115140','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27764,'files','115565','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27765,'files','116486','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27766,'files','116756','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27767,'files','116757','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27768,'files','116758','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27769,'files','116759','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27770,'files','116760','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27771,'files','116897','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27772,'files','116898','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27773,'files','116913','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27774,'files','117081','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27775,'files','117150','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27776,'files','117151','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27777,'files','117352','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27778,'files','117444','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27779,'files','117445','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27780,'files','117446','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27781,'files','117562','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27782,'files','117563','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27783,'files','117564','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27784,'files','117565','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27785,'files','117567','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27786,'files','117713','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27787,'files','117714','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27788,'files','118327','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27789,'files','118387','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27790,'files','118405','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27791,'files','118442','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27792,'files','118460','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27793,'files','118485','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27794,'files','118548','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27795,'files','118553','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27796,'files','118836','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27797,'files','118966','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27798,'files','119017','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27799,'files','119045','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27800,'files','119090','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27801,'files','119351','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27802,'files','119358','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27803,'files','119359','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27804,'files','119509','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27805,'files','119534','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27806,'files','119732','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27807,'files','119733','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27808,'files','119744','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27809,'files','119745','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27810,'files','119746','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27811,'files','119929','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27812,'files','119930','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27813,'files','119931','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27814,'files','120156','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27815,'files','120157','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27816,'files','120347','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27817,'files','120348','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27818,'files','120349','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27819,'files','120350','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27820,'files','120351','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27821,'files','120352','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27822,'files','120569','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27823,'files','120570','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27824,'files','120571','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27825,'files','120572','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27826,'files','120573','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27827,'files','120574','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27828,'files','120831','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27829,'files','120832','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27830,'files','120867','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27831,'files','120868','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27832,'files','120869','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27833,'files','120870','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27834,'files','120902','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27835,'files','120903','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27836,'files','120904','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27837,'files','121022','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27838,'files','121271','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27839,'files','121272','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27840,'files','121273','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27841,'files','121274','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27842,'files','121275','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27843,'files','121710','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27844,'files','122218','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27845,'files','123189','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27846,'files','123190','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27847,'files','123278','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27848,'files','123820','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27849,'files','123821','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27850,'files','124136','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27851,'files','124137','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27852,'files','124138','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27853,'files','125140','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27854,'files','125727','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27855,'files','125728','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27856,'files','125805','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27857,'files','126002','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27858,'files','126021','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27859,'files','126022','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27860,'files','126023','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27861,'files','127828','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27862,'files','127832','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27863,'files','127833','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27864,'files','127834','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27865,'files','127835','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27866,'files','127836','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27867,'files','128218','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27868,'files','128254','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27869,'files','129007','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27870,'files','129054','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27871,'files','129151','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27872,'files','129938','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27873,'files','131161','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27874,'files','131654','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27875,'files','133367','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27876,'files','133864','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27877,'files','133865','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27878,'files','133866','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27879,'files','134151','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27880,'files','134152','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27881,'files','134153','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27882,'files','134305','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27883,'files','134306','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27884,'files','134307','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27885,'files','135998','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27886,'files','136124','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27887,'files','136380','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27888,'files','136381','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27889,'files','136742','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27890,'files','136743','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27891,'files','136744','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27892,'files','136745','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27893,'files','136746','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27894,'files','137029','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27895,'files','137030','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27896,'files','137031','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27897,'files','137032','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27898,'files','137343','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27899,'files','137344','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27900,'files','137345','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27901,'files','137519','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27902,'files','137614','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27903,'files','137615','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27904,'files','137616','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27905,'files','137620','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27906,'files','137633','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27907,'files','137724','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27908,'files','138237','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27909,'files','139016','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27910,'files','139626','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27911,'files','139627','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27912,'files','139798','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27913,'files','139799','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27914,'files','139800','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27915,'files','140264','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27916,'files','140422','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27917,'files','140758','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27918,'files','140819','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27919,'files','141905','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27920,'files','142203','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27921,'files','142380','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27922,'files','142381','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27923,'files','142382','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27924,'files','142383','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27925,'files','143284','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27926,'files','143285','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27927,'files','143286','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27928,'files','143738','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27929,'files','143910','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27930,'files','144696','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27931,'files','144697','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27932,'files','144698','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27933,'files','144699','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27934,'files','144700','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27935,'files','144701','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27936,'files','147546','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27937,'files','147825','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27938,'files','147985','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27939,'files','148389','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27940,'files','148556','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27941,'files','148557','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27942,'files','148558','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27943,'files','148892','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27944,'files','148991','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27945,'files','149739','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27946,'files','150065','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27947,'files','150322','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27948,'files','151541','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27949,'files','153015','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27950,'files','153336','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27951,'files','153337','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27952,'files','153338','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27953,'files','155695','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27954,'files','155696','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27955,'files','156110','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27956,'files','156111','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27957,'files','156112','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27958,'files','156113','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27959,'files','156115','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27960,'files','156116','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27961,'files','156117','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27962,'files','156118','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27963,'files','156119','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27964,'files','156880','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27965,'files','156881','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27966,'files','156882','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27967,'files','156883','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27968,'files','156884','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27969,'files','156885','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27970,'files','156886','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27971,'files','156887','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27972,'files','157558','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27973,'files','157559','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27974,'files','157560','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27975,'files','157561','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27976,'files','157847','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27977,'files','157848','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27978,'files','158239','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27979,'files','158240','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27980,'files','158241','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27981,'files','158242','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27982,'files','158243','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27983,'files','158244','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27984,'files','158549','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27985,'files','158550','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27986,'files','158551','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27987,'files','158552','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27988,'files','158553','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27989,'files','158554','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27990,'files','158555','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27991,'files','158556','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27992,'files','158557','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27993,'files','158558','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27994,'files','158559','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27995,'files','159086','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27996,'files','159087','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27997,'files','159088','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27998,'files','159255','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(27999,'files','159256','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(28000,'files','159257','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(28001,'files','159845','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(28002,'files','159848','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(28003,'files','159849','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(28004,'files','159851','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(28005,'files','159852','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(28006,'files','159853','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(28007,'files','159854','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(28008,'files','160344','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(28009,'files','171710','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(28010,'files','171711','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(28011,'files','171815','skipped','No deal associated',NULL,'2025-11-14 00:17:03'),
(28012,'files','171969','skipped','No deal associated',NULL,'2025-11-14 00:17:03');
/*!40000 ALTER TABLE `temp_pipedrive_import_log` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `temp_pipedrive_org_map`
--

DROP TABLE IF EXISTS `temp_pipedrive_org_map`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `temp_pipedrive_org_map` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `pipedrive_org_id` varchar(100) NOT NULL COMMENT 'Original Pipedrive Organization ID',
  `pipedrive_org_name` varchar(255) NOT NULL COMMENT 'Organization name from Pipedrive',
  `customer_id` int(10) unsigned NOT NULL COMMENT 'Local customer table ID',
  `import_status` enum('pending','imported','skipped','error') DEFAULT 'imported',
  `import_note` text DEFAULT NULL COMMENT 'Deduplication or error notes',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_pipedrive_org` (`pipedrive_org_id`),
  KEY `idx_customer_id` (`customer_id`),
  KEY `idx_org_name` (`pipedrive_org_name`)
) ENGINE=InnoDB AUTO_INCREMENT=29 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci COMMENT='Maps Pipedrive organization IDs to customer IDs';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `temp_pipedrive_org_map`
--

LOCK TABLES `temp_pipedrive_org_map` WRITE;
/*!40000 ALTER TABLE `temp_pipedrive_org_map` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `temp_pipedrive_org_map` VALUES
(1,'Bottom Feeder','Bottom Feeder',109,'imported',NULL,'2025-11-13 22:13:38'),
(2,'LBC','LBC',110,'imported',NULL,'2025-11-13 22:13:38'),
(3,'Toca Football','Toca Football',111,'imported',NULL,'2025-11-13 22:13:38'),
(4,'Hyde Park Partners','Hyde Park Partners',112,'imported',NULL,'2025-11-13 22:13:38'),
(5,'VIU Global','VIU Global',113,'imported',NULL,'2025-11-13 22:13:38'),
(6,'Acme (Sample)','Acme (Sample)',114,'imported',NULL,'2025-11-13 22:13:38'),
(7,'General Dynamics Land Systems','General Dynamics Land Systems',115,'imported',NULL,'2025-11-13 22:13:38'),
(8,'HawkTV','HawkTV',116,'imported',NULL,'2025-11-13 22:13:38'),
(9,'Power Pole Geoff Contact','Power Pole Geoff Contact',117,'imported',NULL,'2025-11-13 22:13:38'),
(10,'Cirnapro','Cirnapro',118,'imported',NULL,'2025-11-13 22:13:38'),
(11,'Ontario Drive & Gear Limited','Ontario Drive & Gear Limited',119,'imported',NULL,'2025-11-13 22:13:38'),
(12,'Retired','Retired',120,'imported',NULL,'2025-11-13 22:13:38'),
(13,'YRC Freight— Urbandale, Iowa','YRC Freight— Urbandale, Iowa',121,'imported',NULL,'2025-11-13 22:13:38'),
(14,'LG Electronics','LG Electronics',65,'skipped','Duplicate - customer already exists','2025-11-13 22:13:38'),
(15,'Night Fishing Buoy','Night Fishing Buoy',122,'imported',NULL,'2025-11-13 22:13:38'),
(16,'Immigration and Customs Enforcment','Immigration and Customs Enforcment',123,'imported',NULL,'2025-11-13 22:13:38'),
(17,'Tough Signal','Tough Signal',124,'imported',NULL,'2025-11-13 22:13:38'),
(18,'Booz Allen Hamilton Inc.','Booz Allen Hamilton Inc.',125,'imported',NULL,'2025-11-13 22:13:38'),
(19,'Peppermint Robotics','Peppermint Robotics',77,'skipped','Duplicate - customer already exists','2025-11-13 22:13:38'),
(20,'HV Diagnostics','HV Diagnostics',126,'imported',NULL,'2025-11-13 22:13:38'),
(21,'Obsidian Intergration','Obsidian Intergration',127,'imported',NULL,'2025-11-13 22:13:38'),
(22,'Andretti Autosports','Andretti Autosports',128,'imported',NULL,'2025-11-13 22:13:38'),
(23,'GCC','GCC',129,'imported',NULL,'2025-11-13 22:13:38'),
(24,'AGV America','AGV America',130,'imported',NULL,'2025-11-13 22:13:38'),
(25,'Toronto Coach Terminal Inc.','Toronto Coach Terminal Inc.',131,'imported',NULL,'2025-11-13 22:13:38');
/*!40000 ALTER TABLE `temp_pipedrive_org_map` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `template_checkpoints`
--

DROP TABLE IF EXISTS `template_checkpoints`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `template_checkpoints` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `template_id` int(10) unsigned NOT NULL,
  `checkpoint_name` varchar(255) NOT NULL,
  `specification` text DEFAULT NULL,
  `measurement_type` enum('pass_fail','numeric','visual','dimensional') DEFAULT 'pass_fail',
  `target_value` decimal(10,3) DEFAULT NULL,
  `tolerance_min` decimal(10,3) DEFAULT NULL,
  `tolerance_max` decimal(10,3) DEFAULT NULL,
  `sequence_order` int(11) DEFAULT 0,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_template` (`template_id`),
  CONSTRAINT `template_checkpoints_ibfk_1` FOREIGN KEY (`template_id`) REFERENCES `inspection_templates` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `template_checkpoints`
--

LOCK TABLES `template_checkpoints` WRITE;
/*!40000 ALTER TABLE `template_checkpoints` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `template_checkpoints` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `terms_conditions`
--

DROP TABLE IF EXISTS `terms_conditions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `terms_conditions` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `content` text NOT NULL,
  `type` enum('quote','invoice','sales_order','promotion','general') NOT NULL DEFAULT 'general',
  `is_default` tinyint(1) DEFAULT 0,
  `status` enum('active','inactive') DEFAULT 'active',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_type` (`type`),
  KEY `idx_status` (`status`),
  KEY `idx_is_default` (`is_default`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `terms_conditions`
--

LOCK TABLES `terms_conditions` WRITE;
/*!40000 ALTER TABLE `terms_conditions` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `terms_conditions` VALUES
(1,'Standard Quote Terms','This quote is valid for 30 days from the date of issue. All prices are subject to change without notice. Payment terms are net 30 days from invoice date. A deposit may be required before work commences.','quote',1,'active','2025-10-31 14:20:39','2025-10-31 14:20:39'),
(2,'Standard Invoice Terms','Payment is due within 30 days of invoice date. Late payments may incur interest charges at a rate of 1.5% per month. All sales are final unless otherwise stated in writing.','invoice',1,'active','2025-10-31 14:20:39','2025-10-31 14:20:39'),
(3,'Standard Promotion Terms','This promotion cannot be combined with other offers unless explicitly stated. Valid while supplies last. Management reserves the right to modify or cancel this promotion at any time. Terms and conditions apply.','promotion',1,'active','2025-10-31 14:20:39','2025-10-31 14:20:39'),
(4,'General Terms','All transactions are subject to our standard terms and conditions. Please contact us if you have any questions.','general',1,'active','2025-10-31 14:20:39','2025-10-31 14:20:39');
/*!40000 ALTER TABLE `terms_conditions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `tickler_alerts`
--

DROP TABLE IF EXISTS `tickler_alerts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `tickler_alerts` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `config_id` int(10) unsigned NOT NULL,
  `entity_type` enum('opportunity','customer','contact','activity') NOT NULL,
  `entity_id` int(10) unsigned NOT NULL,
  `entity_name` varchar(255) NOT NULL,
  `created_by` int(10) unsigned NOT NULL,
  `alert_date` datetime NOT NULL,
  `status` enum('pending','sent','cancelled') NOT NULL DEFAULT 'pending',
  `announcement_id` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `processed_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_status_alert_date` (`status`,`alert_date`),
  KEY `idx_entity` (`entity_type`,`entity_id`),
  KEY `idx_created_by` (`created_by`),
  KEY `fk_tickler_config` (`config_id`),
  KEY `fk_tickler_announcement` (`announcement_id`),
  CONSTRAINT `fk_tickler_announcement` FOREIGN KEY (`announcement_id`) REFERENCES `announcements` (`id`) ON DELETE SET NULL,
  CONSTRAINT `fk_tickler_config` FOREIGN KEY (`config_id`) REFERENCES `tickler_configs` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_tickler_user` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tickler_alerts`
--

LOCK TABLES `tickler_alerts` WRITE;
/*!40000 ALTER TABLE `tickler_alerts` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `tickler_alerts` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `tickler_configs`
--

DROP TABLE IF EXISTS `tickler_configs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `tickler_configs` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entity_type` enum('opportunity','customer','contact','activity') NOT NULL,
  `days_until_alert` int(11) NOT NULL DEFAULT 15,
  `alert_title_template` varchar(255) NOT NULL DEFAULT 'Follow-up Reminder: {entity_name}',
  `alert_message_template` text NOT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT 1,
  `notify_creator` tinyint(1) NOT NULL DEFAULT 1,
  `notify_manager` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `entity_type` (`entity_type`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tickler_configs`
--

LOCK TABLES `tickler_configs` WRITE;
/*!40000 ALTER TABLE `tickler_configs` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `tickler_configs` VALUES
(1,'opportunity',15,'Follow-up Reminder: {entity_name}','This is a reminder to follow up on the opportunity \"{entity_name}\" created {days} days ago. Please review and update the status.',1,1,1,'2025-12-04 12:11:43','2025-12-04 12:11:43'),
(2,'customer',15,'New Customer Follow-up: {entity_name}','Please follow up with customer \"{entity_name}\" who was added {days} days ago. Ensure onboarding is proceeding smoothly.',1,1,1,'2025-12-04 12:11:43','2025-12-04 12:11:43'),
(3,'contact',15,'Contact Follow-up: {entity_name}','Follow up with contact \"{entity_name}\" added {days} days ago. Verify contact information and engagement.',1,1,1,'2025-12-04 12:11:43','2025-12-04 12:11:43'),
(4,'activity',15,'Activity Follow-up: {entity_name}','This is a reminder about the activity \"{entity_name}\" from {days} days ago. Please review and complete if needed.',1,1,1,'2025-12-04 12:11:43','2025-12-04 12:11:43');
/*!40000 ALTER TABLE `tickler_configs` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `tickler_settings`
--

DROP TABLE IF EXISTS `tickler_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `tickler_settings` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entity_type` enum('opportunity','customer','contact','activity') NOT NULL,
  `days_option` int(11) NOT NULL,
  `is_default` tinyint(1) NOT NULL DEFAULT 0,
  `display_order` int(11) NOT NULL DEFAULT 0,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_entity_type` (`entity_type`)
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tickler_settings`
--

LOCK TABLES `tickler_settings` WRITE;
/*!40000 ALTER TABLE `tickler_settings` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `tickler_settings` VALUES
(1,'opportunity',7,0,1,'2025-12-04 12:11:43'),
(2,'opportunity',15,1,2,'2025-12-04 12:11:43'),
(3,'opportunity',30,0,3,'2025-12-04 12:11:43'),
(4,'opportunity',60,0,4,'2025-12-04 12:11:43'),
(5,'customer',7,0,1,'2025-12-04 12:11:43'),
(6,'customer',15,1,2,'2025-12-04 12:11:43'),
(7,'customer',30,0,3,'2025-12-04 12:11:43'),
(8,'customer',60,0,4,'2025-12-04 12:11:43'),
(9,'contact',7,0,1,'2025-12-04 12:11:43'),
(10,'contact',15,1,2,'2025-12-04 12:11:43'),
(11,'contact',30,0,3,'2025-12-04 12:11:43'),
(12,'activity',7,1,1,'2025-12-04 12:11:43'),
(13,'activity',15,0,2,'2025-12-04 12:11:43'),
(14,'activity',30,0,3,'2025-12-04 12:11:43');
/*!40000 ALTER TABLE `tickler_settings` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `training_programs`
--

DROP TABLE IF EXISTS `training_programs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `training_programs` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `category` enum('onboarding','technical','soft-skills','compliance','leadership','safety','product','other') DEFAULT 'other',
  `type` enum('in-person','online','hybrid','self-paced') DEFAULT 'in-person',
  `duration_hours` decimal(5,2) DEFAULT NULL,
  `cost` decimal(10,2) DEFAULT NULL,
  `provider` varchar(255) DEFAULT NULL,
  `materials_path` varchar(500) DEFAULT NULL,
  `certification` tinyint(1) DEFAULT 0,
  `status` enum('draft','active','inactive','archived') DEFAULT 'active',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_category` (`category`),
  KEY `idx_status` (`status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `training_programs`
--

LOCK TABLES `training_programs` WRITE;
/*!40000 ALTER TABLE `training_programs` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `training_programs` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `transaction_taxes`
--

DROP TABLE IF EXISTS `transaction_taxes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `transaction_taxes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `transaction_type` enum('invoice','sales_order','quote','credit_note') NOT NULL,
  `transaction_id` int(10) unsigned NOT NULL,
  `transaction_line_id` int(10) unsigned DEFAULT NULL COMMENT 'Specific line item if applicable',
  `jurisdiction_id` int(10) unsigned NOT NULL,
  `tax_rate` decimal(8,5) NOT NULL COMMENT 'Rate at time of transaction',
  `taxable_amount` decimal(15,2) NOT NULL COMMENT 'Amount subject to this tax',
  `tax_amount` decimal(15,2) NOT NULL COMMENT 'Calculated tax amount',
  `is_collected` tinyint(1) DEFAULT 0,
  `collection_date` date DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_transaction` (`transaction_type`,`transaction_id`),
  KEY `idx_jurisdiction` (`jurisdiction_id`),
  KEY `idx_collection` (`is_collected`,`collection_date`),
  CONSTRAINT `transaction_taxes_ibfk_1` FOREIGN KEY (`jurisdiction_id`) REFERENCES `tax_jurisdictions` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `transaction_taxes`
--

LOCK TABLES `transaction_taxes` WRITE;
/*!40000 ALTER TABLE `transaction_taxes` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `transaction_taxes` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Temporary table structure for view `unlinked_financial_transactions`
--

DROP TABLE IF EXISTS `unlinked_financial_transactions`;
/*!50001 DROP VIEW IF EXISTS `unlinked_financial_transactions`*/;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8mb4;
/*!50001 CREATE VIEW `unlinked_financial_transactions` AS SELECT
 1 AS `id`,
  1 AS `project_id`,
  1 AS `transaction_date`,
  1 AS `description`,
  1 AS `category`,
  1 AS `amount`,
  1 AS `transaction_type`,
  1 AS `status`,
  1 AS `journal_entry_id`,
  1 AS `account_id`,
  1 AS `document_id`,
  1 AS `reference_type`,
  1 AS `reference_id`,
  1 AS `assigned_to`,
  1 AS `due_date`,
  1 AS `notes`,
  1 AS `created_by`,
  1 AS `created_at`,
  1 AS `updated_at`,
  1 AS `project_name`,
  1 AS `project_code`,
  1 AS `assigned_to_name` */;
SET character_set_client = @saved_cs_client;

--
-- Table structure for table `user_banner_widgets`
--

DROP TABLE IF EXISTS `user_banner_widgets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_banner_widgets` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `widget_type` varchar(50) NOT NULL,
  `is_enabled` tinyint(1) DEFAULT 1,
  `display_order` int(11) DEFAULT 0,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_user_widget` (`user_id`,`widget_type`),
  CONSTRAINT `user_banner_widgets_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=53 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_banner_widgets`
--

LOCK TABLES `user_banner_widgets` WRITE;
/*!40000 ALTER TABLE `user_banner_widgets` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `user_banner_widgets` VALUES
(1,1,'messages',1,1,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(2,2,'messages',1,1,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(3,3,'messages',1,1,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(4,4,'messages',1,1,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(5,5,'messages',1,1,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(6,6,'messages',1,1,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(7,7,'messages',1,1,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(8,8,'messages',1,1,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(9,21,'messages',1,1,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(16,1,'calendar',1,2,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(17,2,'calendar',1,2,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(18,3,'calendar',1,2,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(19,4,'calendar',1,2,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(20,5,'calendar',1,2,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(21,6,'calendar',1,2,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(22,7,'calendar',1,2,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(23,8,'calendar',1,2,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(24,21,'calendar',1,2,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(31,1,'todos',1,3,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(32,2,'todos',1,3,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(33,3,'todos',1,3,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(34,4,'todos',1,3,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(35,5,'todos',1,3,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(36,6,'todos',1,3,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(37,7,'todos',1,3,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(38,8,'todos',1,3,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(39,21,'todos',1,3,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(47,1,'hot_leads',1,5,'2025-12-03 02:49:59','2025-12-03 02:49:59');
/*!40000 ALTER TABLE `user_banner_widgets` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `user_calendar_events`
--

DROP TABLE IF EXISTS `user_calendar_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_calendar_events` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `title` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `event_date` date NOT NULL,
  `start_time` time DEFAULT NULL,
  `end_time` time DEFAULT NULL,
  `location` varchar(255) DEFAULT NULL,
  `event_type` enum('meeting','reminder','task','deadline','other') DEFAULT 'meeting',
  `is_all_day` tinyint(1) DEFAULT 0,
  `reminder_minutes` int(11) DEFAULT 15,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_user_date` (`user_id`,`event_date`),
  KEY `idx_date_range` (`event_date`,`start_time`),
  CONSTRAINT `user_calendar_events_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_calendar_events`
--

LOCK TABLES `user_calendar_events` WRITE;
/*!40000 ALTER TABLE `user_calendar_events` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `user_calendar_events` VALUES
(1,1,'Team Standup',NULL,'2025-12-02','09:30:00','10:00:00',NULL,'meeting',0,15,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(2,1,'Client Call - Acme Corp',NULL,'2025-12-02','11:00:00','12:00:00',NULL,'meeting',0,15,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(3,1,'Budget Review',NULL,'2025-12-02','14:00:00','15:00:00',NULL,'meeting',0,15,'2025-12-03 02:04:30','2025-12-03 02:04:30');
/*!40000 ALTER TABLE `user_calendar_events` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `user_custom_menus`
--

DROP TABLE IF EXISTS `user_custom_menus`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_custom_menus` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `menu_name` varchar(100) NOT NULL,
  `menu_icon` varchar(50) DEFAULT 'bi-star',
  `menu_url` varchar(255) NOT NULL,
  `sort_order` int(11) DEFAULT 0,
  `is_active` tinyint(1) DEFAULT 1,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_user_id` (`user_id`),
  CONSTRAINT `fk_user_custom_menus_user` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_custom_menus`
--

LOCK TABLES `user_custom_menus` WRITE;
/*!40000 ALTER TABLE `user_custom_menus` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `user_custom_menus` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `user_dashboard_widgets`
--

DROP TABLE IF EXISTS `user_dashboard_widgets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_dashboard_widgets` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `widget_type` varchar(50) NOT NULL,
  `position` int(11) DEFAULT 0,
  `size` varchar(20) DEFAULT 'medium',
  `refresh_interval` int(11) DEFAULT NULL COMMENT 'Auto-refresh interval in seconds',
  `is_visible` tinyint(4) DEFAULT 1,
  `settings` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`settings`)),
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_user_widgets` (`user_id`,`is_visible`),
  KEY `idx_position` (`user_id`,`position`),
  KEY `idx_user_position` (`user_id`,`position`),
  CONSTRAINT `user_dashboard_widgets_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=93 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_dashboard_widgets`
--

LOCK TABLES `user_dashboard_widgets` WRITE;
/*!40000 ALTER TABLE `user_dashboard_widgets` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `user_dashboard_widgets` VALUES
(20,15,'revenue_month',1,'medium',NULL,1,NULL,'2025-10-28 16:25:40','2025-10-28 16:25:40'),
(21,15,'sales_today',2,'small',NULL,1,NULL,'2025-10-28 16:25:40','2025-10-28 16:25:40'),
(22,15,'outstanding_invoices',3,'medium',NULL,1,NULL,'2025-10-28 16:25:40','2025-10-28 16:25:40'),
(23,15,'low_stock',4,'medium',NULL,1,NULL,'2025-10-28 16:25:40','2025-10-28 16:25:40'),
(24,15,'component_shortages',5,'medium',NULL,1,NULL,'2025-10-28 16:25:40','2025-10-28 16:25:40'),
(25,15,'recent_orders',6,'large',NULL,1,NULL,'2025-10-28 16:25:40','2025-10-28 16:25:40'),
(26,13,'revenue_month',1,'medium',NULL,1,NULL,'2025-10-28 16:46:14','2025-10-28 16:46:14'),
(27,13,'sales_today',2,'small',NULL,1,NULL,'2025-10-28 16:46:14','2025-10-28 16:46:14'),
(28,13,'outstanding_invoices',3,'medium',NULL,1,NULL,'2025-10-28 16:46:14','2025-10-28 16:46:14'),
(29,13,'low_stock',4,'medium',NULL,1,NULL,'2025-10-28 16:46:14','2025-10-28 16:46:14'),
(30,13,'component_shortages',5,'medium',NULL,1,NULL,'2025-10-28 16:46:14','2025-10-28 16:46:14'),
(31,13,'recent_orders',6,'large',NULL,1,NULL,'2025-10-28 16:46:14','2025-10-28 16:46:14'),
(32,16,'revenue_month',1,'medium',NULL,1,NULL,'2025-10-29 01:53:15','2025-10-29 01:53:15'),
(33,16,'sales_today',2,'small',NULL,1,NULL,'2025-10-29 01:53:15','2025-10-29 01:53:15'),
(34,16,'outstanding_invoices',3,'medium',NULL,1,NULL,'2025-10-29 01:53:15','2025-10-29 01:53:15'),
(35,16,'low_stock',4,'medium',NULL,1,NULL,'2025-10-29 01:53:15','2025-10-29 01:53:15'),
(36,16,'component_shortages',5,'medium',NULL,1,NULL,'2025-10-29 01:53:15','2025-10-29 01:53:15'),
(37,16,'recent_orders',6,'large',NULL,1,NULL,'2025-10-29 01:53:15','2025-10-29 01:53:15'),
(38,17,'revenue_month',1,'medium',NULL,1,NULL,'2025-10-30 19:26:46','2025-10-30 19:26:46'),
(39,17,'sales_today',2,'small',NULL,1,NULL,'2025-10-30 19:26:46','2025-10-30 19:26:46'),
(40,17,'outstanding_invoices',3,'medium',NULL,1,NULL,'2025-10-30 19:26:46','2025-10-30 19:26:46'),
(41,17,'low_stock',4,'medium',NULL,1,NULL,'2025-10-30 19:26:46','2025-10-30 19:26:46'),
(42,17,'component_shortages',5,'medium',NULL,1,NULL,'2025-10-30 19:26:46','2025-10-30 19:26:46'),
(43,17,'recent_orders',6,'large',NULL,1,NULL,'2025-10-30 19:26:46','2025-10-30 19:26:46'),
(56,1,'revenue_month',1,'medium',NULL,1,NULL,'2025-11-03 15:33:16','2025-11-03 15:33:16'),
(57,1,'outstanding_invoices',2,'medium',NULL,1,NULL,'2025-11-03 15:33:16','2025-11-03 15:33:16'),
(58,1,'sales_today',3,'small',NULL,1,NULL,'2025-11-03 15:33:17','2025-11-03 15:33:17'),
(60,1,'top_customers',5,'large',NULL,1,NULL,'2025-11-03 15:33:19','2025-11-03 15:33:19'),
(62,1,'sales_trend',7,'large',NULL,1,NULL,'2025-11-03 15:33:20','2025-11-03 15:33:20'),
(63,1,'low_stock',8,'medium',NULL,1,NULL,'2025-11-03 15:33:22','2025-11-03 15:33:22'),
(64,1,'inventory_value',9,'small',NULL,1,NULL,'2025-11-03 15:33:25','2025-11-03 15:33:25'),
(65,1,'quality_metrics',10,'medium',NULL,1,NULL,'2025-11-03 15:33:28','2025-11-03 15:33:28'),
(66,1,'equipment_status',11,'medium',NULL,1,NULL,'2025-11-03 15:33:30','2025-11-03 15:33:30'),
(67,1,'component_shortages',12,'medium',NULL,1,NULL,'2025-11-03 15:33:31','2025-11-03 15:33:31'),
(68,1,'work_orders_status',13,'medium',NULL,1,NULL,'2025-11-03 15:33:33','2025-11-03 15:33:33'),
(69,1,'production_efficiency',14,'medium',NULL,1,NULL,'2025-11-03 15:33:36','2025-11-03 15:33:36'),
(70,1,'employee_count',15,'small',NULL,1,NULL,'2025-11-03 15:33:40','2025-11-03 15:33:40'),
(71,1,'employee_birthdays',16,'medium',NULL,1,NULL,'2025-11-03 15:33:42','2025-11-03 15:33:42'),
(72,1,'upcoming_payroll',17,'medium',NULL,1,NULL,'2025-11-03 15:33:44','2025-11-03 15:33:44'),
(73,1,'attendance_today',18,'medium',NULL,1,NULL,'2025-11-03 15:33:46','2025-11-03 15:33:46'),
(74,1,'pending_orders',19,'small',NULL,1,NULL,'2025-11-03 15:33:48','2025-11-03 15:33:48'),
(75,1,'pending_leave_requests',20,'small',NULL,1,NULL,'2025-11-03 15:33:52','2025-11-03 15:33:52'),
(86,1,'top_products',21,'large',NULL,1,NULL,'2025-11-12 15:23:43','2025-11-12 15:23:43'),
(87,8,'upcoming_events',1,'large',NULL,1,NULL,'2025-11-15 15:57:24','2025-11-15 15:57:24'),
(88,1,'open_opportunities',22,'medium',NULL,1,NULL,'2025-11-24 13:37:25','2025-11-24 13:37:25'),
(89,1,'recent_crm_activities',23,'large',NULL,1,NULL,'2025-11-24 13:37:27','2025-11-24 13:37:27'),
(90,1,'customer_pipeline',24,'large',NULL,1,NULL,'2025-11-24 13:37:29','2025-11-24 13:37:29'),
(91,1,'new_customers_month',25,'small',NULL,1,NULL,'2025-11-24 13:37:31','2025-11-24 13:37:31'),
(92,1,'customer_satisfaction',26,'medium',NULL,1,NULL,'2025-11-24 13:37:33','2025-11-24 13:37:33');
/*!40000 ALTER TABLE `user_dashboard_widgets` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `user_group_members`
--

DROP TABLE IF EXISTS `user_group_members`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_group_members` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `group_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `role` enum('manager','leader','member','observer') DEFAULT 'member',
  `added_by` int(10) unsigned NOT NULL,
  `added_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_group_user` (`group_id`,`user_id`),
  KEY `added_by` (`added_by`),
  KEY `idx_group` (`group_id`),
  KEY `idx_user` (`user_id`),
  KEY `idx_role` (`role`),
  KEY `idx_group_role` (`group_id`,`role`),
  CONSTRAINT `user_group_members_ibfk_1` FOREIGN KEY (`group_id`) REFERENCES `user_groups` (`id`) ON DELETE CASCADE,
  CONSTRAINT `user_group_members_ibfk_2` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE,
  CONSTRAINT `user_group_members_ibfk_3` FOREIGN KEY (`added_by`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_group_members`
--

LOCK TABLES `user_group_members` WRITE;
/*!40000 ALTER TABLE `user_group_members` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `user_group_members` VALUES
(3,1,1,'member',1,'2025-11-14 19:11:35'),
(4,1,3,'member',1,'2025-11-14 19:11:41'),
(5,1,2,'member',1,'2025-11-14 19:13:53'),
(6,1,4,'member',1,'2025-11-14 19:13:53'),
(7,1,6,'member',1,'2025-11-14 19:13:53'),
(8,1,5,'member',1,'2025-11-14 19:13:53'),
(9,23,2,'member',1,'2025-12-04 10:49:05'),
(10,23,4,'member',1,'2025-12-04 10:49:05');
/*!40000 ALTER TABLE `user_group_members` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `user_groups`
--

DROP TABLE IF EXISTS `user_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_groups` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `parent_id` int(11) DEFAULT NULL,
  `name` varchar(100) NOT NULL,
  `slug` varchar(100) NOT NULL,
  `description` text DEFAULT NULL,
  `type` enum('system','department','project','location','custom','division','team','squad') DEFAULT 'custom',
  `is_active` tinyint(1) DEFAULT 1,
  `display_order` int(11) DEFAULT 0,
  `created_by` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `name` (`name`),
  UNIQUE KEY `slug` (`slug`),
  KEY `created_by` (`created_by`),
  KEY `idx_slug` (`slug`),
  KEY `idx_type` (`type`),
  KEY `idx_active` (`is_active`),
  KEY `idx_parent_id` (`parent_id`),
  KEY `idx_display_order` (`display_order`),
  CONSTRAINT `user_groups_ibfk_1` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_groups`
--

LOCK TABLES `user_groups` WRITE;
/*!40000 ALTER TABLE `user_groups` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `user_groups` VALUES
(1,NULL,'All Staff','all-staff','All active users in the system','system',1,0,1,'2025-11-14 12:52:54','2025-11-14 12:52:54'),
(2,NULL,'Management','management','All managers and executives','system',1,0,1,'2025-11-14 12:52:54','2025-11-14 12:52:54'),
(8,NULL,'All Company','all-company','Entire organization','system',1,1,1,'2025-12-04 10:35:17','2025-12-04 10:35:17'),
(9,8,'Sales Division','sales-division','Sales and marketing teams','division',1,1,1,'2025-12-04 10:35:17','2025-12-04 10:35:17'),
(10,8,'Operations Division','operations-division-1','Operations and delivery','division',1,2,1,'2025-12-04 10:35:17','2025-12-04 11:36:33'),
(11,8,'Technology Division','technology-division','Engineering and IT','division',1,3,1,'2025-12-04 10:35:17','2025-12-04 10:35:17'),
(12,9,'Sales Department','sales-department','Direct sales team','department',1,1,1,'2025-12-04 10:35:17','2025-12-04 10:35:17'),
(13,9,'Marketing Department','marketing-department','Marketing and campaigns','department',1,2,1,'2025-12-04 10:35:17','2025-12-04 10:35:17'),
(14,10,'Manufacturing Department','manufacturing-department','Production teams','department',1,1,1,'2025-12-04 10:35:17','2025-12-04 10:35:17'),
(15,10,'Logistics Department','logistics-department','Supply chain and delivery','department',1,2,1,'2025-12-04 10:35:17','2025-12-04 10:35:17'),
(16,11,'Engineering Department','engineering-department','Software development','department',1,1,1,'2025-12-04 10:35:17','2025-12-04 10:35:17'),
(17,11,'IT Department','it-department','IT support and infrastructure','department',1,2,1,'2025-12-04 10:35:17','2025-12-04 10:35:17'),
(18,12,'Enterprise Sales Team','enterprise-sales-team','Enterprise account executives','team',1,1,1,'2025-12-04 10:35:17','2025-12-04 10:35:17'),
(19,12,'SMB Sales Team','smb-sales-team','Small business sales','team',1,2,1,'2025-12-04 10:35:17','2025-12-04 10:35:17'),
(20,16,'Backend Team','backend-team','Backend developers','team',1,1,1,'2025-12-04 10:35:17','2025-12-04 10:35:17'),
(21,16,'Frontend Team','frontend-team','Frontend developers','team',1,2,1,'2025-12-04 10:35:17','2025-12-04 10:35:17'),
(22,16,'DevOps Squad','devops-squad','Infrastructure and deployment','squad',1,3,1,'2025-12-04 10:35:17','2025-12-04 10:35:17'),
(23,8,'Executive Team / C-Suite','executive-team-c-suite','','custom',1,0,1,'2025-12-04 10:45:42','2025-12-04 11:26:31'),
(24,8,'Manufacturing Division','manufacturing-division','','custom',1,0,1,'2025-12-04 11:29:19','2025-12-04 11:29:19');
/*!40000 ALTER TABLE `user_groups` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `user_mfa_backup_codes`
--

DROP TABLE IF EXISTS `user_mfa_backup_codes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_mfa_backup_codes` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `code_hash` varchar(255) NOT NULL COMMENT 'Hashed backup code',
  `used_at` datetime DEFAULT NULL COMMENT 'When the code was used',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_user_id` (`user_id`),
  KEY `idx_used` (`used_at`),
  CONSTRAINT `user_mfa_backup_codes_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_mfa_backup_codes`
--

LOCK TABLES `user_mfa_backup_codes` WRITE;
/*!40000 ALTER TABLE `user_mfa_backup_codes` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `user_mfa_backup_codes` VALUES
(11,1,'$2y$12$1I/2e64hT5gKiKS0cvgYC.CgJJYOcV2E0vO7vAx3tD2HpMmiqMJyK',NULL,'2025-11-15 18:36:01'),
(12,1,'$2y$12$7r03XTsVjUIsMREvGqFzGOFwIRgGWi6g9dNGro7gjE.Kr1rVjVgra',NULL,'2025-11-15 18:36:02'),
(13,1,'$2y$12$2Z3bKItUJlDLwTgvlvgWe.rBU1xstyqr53jD7bHWncYFDbHqRqeki',NULL,'2025-11-15 18:36:02'),
(14,1,'$2y$12$ALIe4cyfaJzsB.QBpc5OHOamdS0gFauNKm6HmHZlEzq1o7Vp9Xx.q',NULL,'2025-11-15 18:36:02'),
(15,1,'$2y$12$pxIVvMszf5V/d9n2er5BguWtct5NlpAh87a/ltHrL1Lljxga/RS5S',NULL,'2025-11-15 18:36:02'),
(16,1,'$2y$12$IQ5XDRg.8pj4VgI16pwdJ.Rl7XCWaLpE5RRONJCjdN1mlHelVY.ym',NULL,'2025-11-15 18:36:02'),
(17,1,'$2y$12$WiR3PLndDadWoGT9Zs.Z5uM1Q1rScM8UlqyZT6HcBMTbZbFaTyMda',NULL,'2025-11-15 18:36:02'),
(18,1,'$2y$12$qFrvp9sIBEZ6mrGZ6E9pCOt5MJWy//wKIRiUVv3.PPkdWbmGcvvD2',NULL,'2025-11-15 18:36:03'),
(19,1,'$2y$12$CZRw9AbWpEkQ1sHITAeZfuw5ddLk5RZkkpi25BGSed1yGboKBSIeW',NULL,'2025-11-15 18:36:03'),
(20,1,'$2y$12$Glo9jS9PuG.nw6QiOsjkEezamHNdHbIWsOyPRQhs.I9mpxidqcgMG',NULL,'2025-11-15 18:36:03');
/*!40000 ALTER TABLE `user_mfa_backup_codes` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `user_otp_codes`
--

DROP TABLE IF EXISTS `user_otp_codes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_otp_codes` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `otp_code` varchar(10) NOT NULL COMMENT '6-digit OTP code',
  `otp_type` varchar(20) NOT NULL COMMENT 'Type: login, setup, reset',
  `otp_method` varchar(20) NOT NULL COMMENT 'Method: email, sms',
  `expires_at` datetime NOT NULL,
  `verified_at` datetime DEFAULT NULL,
  `ip_address` varchar(45) DEFAULT NULL,
  `user_agent` text DEFAULT NULL,
  `attempts` int(11) DEFAULT 0 COMMENT 'Number of verification attempts',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_user_id` (`user_id`),
  KEY `idx_otp_code` (`otp_code`),
  KEY `idx_expires` (`expires_at`),
  CONSTRAINT `user_otp_codes_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_otp_codes`
--

LOCK TABLES `user_otp_codes` WRITE;
/*!40000 ALTER TABLE `user_otp_codes` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `user_otp_codes` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `user_roles`
--

DROP TABLE IF EXISTS `user_roles`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_roles` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL,
  `role_id` int(11) NOT NULL,
  `assigned_by` int(11) DEFAULT NULL,
  `assigned_at` timestamp NULL DEFAULT current_timestamp(),
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_user_role` (`user_id`,`role_id`),
  KEY `idx_user` (`user_id`),
  KEY `idx_role` (`role_id`)
) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_roles`
--

LOCK TABLES `user_roles` WRITE;
/*!40000 ALTER TABLE `user_roles` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `user_roles` VALUES
(1,1,1,NULL,'2025-11-01 15:44:07','2025-11-11 00:36:43','2025-11-11 00:36:43'),
(13,21,78,1,'2025-11-08 19:29:30','2025-11-11 00:36:43','2025-11-11 00:36:43'),
(19,7,92,1,'2025-11-14 21:00:43','2025-11-14 21:00:43','2025-11-14 21:00:43'),
(20,8,81,1,'2025-11-14 21:01:16','2025-11-14 21:01:16','2025-11-14 21:01:16'),
(21,2,108,NULL,'2025-11-15 11:47:23','2025-11-15 11:47:23','2025-11-15 11:47:23'),
(22,4,111,NULL,'2025-11-15 11:47:23','2025-11-15 11:47:23','2025-11-15 11:52:00'),
(23,21,116,NULL,'2025-11-15 23:53:17','2025-11-15 23:53:17','2025-11-15 23:53:17');
/*!40000 ALTER TABLE `user_roles` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Temporary table structure for view `user_search_activity`
--

DROP TABLE IF EXISTS `user_search_activity`;
/*!50001 DROP VIEW IF EXISTS `user_search_activity`*/;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8mb4;
/*!50001 CREATE VIEW `user_search_activity` AS SELECT
 1 AS `user_id`,
  1 AS `user_name`,
  1 AS `total_searches`,
  1 AS `unique_queries`,
  1 AS `avg_results`,
  1 AS `last_search_at` */;
SET character_set_client = @saved_cs_client;

--
-- Table structure for table `user_settings`
--

DROP TABLE IF EXISTS `user_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_settings` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `theme` varchar(50) DEFAULT 'dark',
  `wallpaper` varchar(255) DEFAULT 'tech-grid-blue',
  `sidebar_collapsed` tinyint(1) DEFAULT 0,
  `language` varchar(10) DEFAULT 'en',
  `date_format` varchar(20) DEFAULT 'm/d/y',
  `time_format` varchar(10) DEFAULT '24h',
  `timezone` varchar(50) DEFAULT 'UTC',
  `items_per_page` int(11) DEFAULT 25,
  `email_notifications` tinyint(1) DEFAULT 1,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_user_settings` (`user_id`),
  KEY `idx_user_id` (`user_id`),
  CONSTRAINT `fk_user_settings_user` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_settings`
--

LOCK TABLES `user_settings` WRITE;
/*!40000 ALTER TABLE `user_settings` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `user_settings` VALUES
(1,1,'dark','tech-grid-blue',0,'en','Y-m-d','24h','UTC',25,1,'2025-10-26 17:06:50','2025-12-04 23:23:22'),
(3,15,'dark','tech-grid-blue',0,'en','m/d/y','24h','UTC',25,1,'2025-10-28 16:25:40','2025-11-12 14:09:16'),
(4,13,'dark','tech-grid-blue',0,'en','m/d/y','24h','UTC',25,1,'2025-10-28 16:46:14','2025-11-12 14:09:16'),
(5,16,'dark','tech-grid-blue',0,'en','m/d/y','24h','UTC',25,1,'2025-10-29 01:53:15','2025-11-12 14:09:16'),
(6,17,'dark','tech-grid-blue',0,'en','m/d/y','24h','UTC',25,1,'2025-10-30 19:26:46','2025-11-12 14:09:16'),
(7,18,'dark','tech-grid-blue',0,'en','m/d/y','24h','UTC',25,1,'2025-11-01 15:15:37','2025-11-12 14:09:16'),
(8,21,'dark','tech-grid-blue',0,'en','m/d/y','24h','UTC',25,1,'2025-11-08 19:43:06','2025-11-12 14:09:16'),
(9,2,'dark','tech-grid-blue',0,'en','m/d/y','24h','UTC',25,1,'2025-11-11 13:30:12','2025-11-12 14:09:16'),
(10,8,'dark','tech-grid-blue',0,'en','Y-m-d','24h','UTC',25,1,'2025-11-14 21:03:28','2025-11-14 21:03:28'),
(11,7,'dark','tech-grid-blue',0,'en','Y-m-d','24h','UTC',25,1,'2025-11-15 16:55:15','2025-11-15 16:55:15'),
(12,4,'dark','tech-grid-blue',0,'en','Y-m-d','24h','UTC',25,1,'2025-11-27 23:20:13','2025-11-27 23:20:13'),
(13,5,'dark','tech-grid-blue',0,'en','Y-m-d','24h','UTC',25,1,'2025-11-30 14:55:20','2025-11-30 14:55:20');
/*!40000 ALTER TABLE `user_settings` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `user_signature_assignments`
--

DROP TABLE IF EXISTS `user_signature_assignments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_signature_assignments` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(11) unsigned NOT NULL,
  `template_id` int(11) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_user_assignment` (`user_id`),
  KEY `idx_template_id` (`template_id`),
  CONSTRAINT `user_signature_assignments_ibfk_1` FOREIGN KEY (`template_id`) REFERENCES `email_signature_templates` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_signature_assignments`
--

LOCK TABLES `user_signature_assignments` WRITE;
/*!40000 ALTER TABLE `user_signature_assignments` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `user_signature_assignments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `user_status`
--

DROP TABLE IF EXISTS `user_status`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_status` (
  `user_id` int(10) unsigned NOT NULL,
  `status` enum('online','away','offline') DEFAULT 'offline',
  `status_message` varchar(255) DEFAULT NULL,
  `last_activity` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`user_id`),
  CONSTRAINT `user_status_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_status`
--

LOCK TABLES `user_status` WRITE;
/*!40000 ALTER TABLE `user_status` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `user_status` VALUES
(1,'online',NULL,'2025-10-26 20:20:23','2025-11-11 00:36:44','2025-11-11 00:36:44'),
(4,'online',NULL,'2025-11-28 13:25:56','2025-11-28 13:25:56','2025-11-28 13:25:56'),
(7,'online',NULL,'2025-11-24 18:21:48','2025-11-24 18:21:48','2025-11-24 18:21:48'),
(8,'online',NULL,'2025-11-14 22:16:08','2025-11-14 22:16:08','2025-11-14 22:16:08'),
(15,'online',NULL,'2025-10-28 16:27:17','2025-11-11 00:36:44','2025-11-11 00:36:44'),
(16,'online',NULL,'2025-10-29 01:54:44','2025-11-11 00:36:44','2025-11-11 00:36:44'),
(17,'online',NULL,'2025-10-30 19:31:21','2025-11-11 00:36:44','2025-11-11 00:36:44'),
(18,'online',NULL,'2025-11-11 11:57:19','2025-11-11 11:57:19','2025-11-11 11:57:19'),
(21,'online',NULL,'2025-11-29 13:37:53','2025-11-29 13:37:53','2025-11-29 13:37:53');
/*!40000 ALTER TABLE `user_status` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `user_todos`
--

DROP TABLE IF EXISTS `user_todos`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_todos` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `title` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `is_completed` tinyint(1) DEFAULT 0,
  `priority` enum('low','medium','high','urgent') DEFAULT 'medium',
  `due_date` date DEFAULT NULL,
  `completed_at` timestamp NULL DEFAULT NULL,
  `display_order` int(11) DEFAULT 0,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_user_completed` (`user_id`,`is_completed`),
  KEY `idx_user_due_date` (`user_id`,`due_date`),
  CONSTRAINT `user_todos_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_todos`
--

LOCK TABLES `user_todos` WRITE;
/*!40000 ALTER TABLE `user_todos` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `user_todos` VALUES
(1,1,'Review Q4 forecast numbers',NULL,1,'high','2025-12-04','2025-12-04 18:40:53',0,'2025-12-03 02:04:30','2025-12-04 18:40:53'),
(2,1,'Approve pending purchase orders',NULL,0,'medium','2025-12-02',NULL,0,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(3,1,'Update CRM opportunities',NULL,0,'medium',NULL,NULL,0,'2025-12-03 02:04:30','2025-12-03 02:04:30'),
(4,1,'Build Contract Mfg Agreement Automation',NULL,0,'medium',NULL,NULL,0,'2025-12-04 18:40:50','2025-12-04 18:41:05');
/*!40000 ALTER TABLE `user_todos` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Temporary table structure for view `user_widget_preferences`
--

DROP TABLE IF EXISTS `user_widget_preferences`;
/*!50001 DROP VIEW IF EXISTS `user_widget_preferences`*/;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8mb4;
/*!50001 CREATE VIEW `user_widget_preferences` AS SELECT
 1 AS `user_id`,
  1 AS `user_name`,
  1 AS `widget_count`,
  1 AS `widgets` */;
SET character_set_client = @saved_cs_client;

--
-- Table structure for table `users`
--

DROP TABLE IF EXISTS `users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `users` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `role_id` int(10) unsigned NOT NULL,
  `position_id` int(11) DEFAULT NULL,
  `email` varchar(255) NOT NULL,
  `secondary_email` varchar(255) DEFAULT NULL,
  `email_signature` text DEFAULT NULL,
  `email_imap_host` varchar(255) DEFAULT NULL,
  `email_imap_port` int(11) DEFAULT 993,
  `email_imap_encryption` enum('ssl','tls','none') DEFAULT 'ssl',
  `email_imap_username` varchar(255) DEFAULT NULL,
  `email_imap_password` varchar(255) DEFAULT NULL,
  `email_smtp_host` varchar(255) DEFAULT NULL,
  `email_smtp_port` int(11) DEFAULT 587,
  `email_smtp_encryption` enum('ssl','tls','none') DEFAULT 'tls',
  `email_smtp_username` varchar(255) DEFAULT NULL,
  `email_smtp_password` varchar(255) DEFAULT NULL,
  `email_use_system_default` tinyint(1) DEFAULT 1,
  `username` varchar(50) DEFAULT NULL,
  `password` varchar(255) NOT NULL,
  `first_name` varchar(100) NOT NULL,
  `middle_name` varchar(100) DEFAULT NULL,
  `last_name` varchar(100) NOT NULL,
  `phone` varchar(20) DEFAULT NULL,
  `date_of_birth` date DEFAULT NULL,
  `gender` enum('male','female','other') DEFAULT NULL,
  `address` varchar(255) DEFAULT NULL,
  `city` varchar(100) DEFAULT NULL,
  `state` varchar(100) DEFAULT NULL,
  `zip_code` varchar(20) DEFAULT NULL,
  `emergency_contact_name` varchar(200) DEFAULT NULL,
  `emergency_contact_phone` varchar(50) DEFAULT NULL,
  `emergency_contact_relationship` varchar(100) DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `bio` text DEFAULT NULL COMMENT 'Short bio or about me',
  `hobbies` text DEFAULT NULL COMMENT 'Personal hobbies and interests',
  `skills` text DEFAULT NULL COMMENT 'Professional skills (comma-separated)',
  `interests` text DEFAULT NULL COMMENT 'Professional interests',
  `linkedin_url` varchar(255) DEFAULT NULL,
  `personal_website` varchar(255) DEFAULT NULL,
  `fun_fact` text DEFAULT NULL COMMENT 'Fun fact about yourself',
  `favorite_quote` text DEFAULT NULL,
  `years_of_experience` int(11) DEFAULT NULL,
  `education` text DEFAULT NULL COMMENT 'Educational background',
  `certifications` text DEFAULT NULL COMMENT 'Professional certifications',
  `languages` varchar(255) DEFAULT NULL COMMENT 'Languages spoken',
  `timezone` varchar(50) DEFAULT 'America/New_York',
  `show_in_directory` tinyint(1) NOT NULL DEFAULT 1 COMMENT 'Show profile in employee directory',
  `avatar` varchar(255) DEFAULT NULL,
  `status` enum('active','inactive','suspended') DEFAULT 'active',
  `last_login` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  `mfa_enabled` tinyint(1) DEFAULT 0 COMMENT 'Is MFA enabled for this user',
  `mfa_method` varchar(20) DEFAULT 'email' COMMENT 'MFA method: email, sms, totp',
  `mfa_secret` varchar(255) DEFAULT NULL COMMENT 'TOTP secret for authenticator apps',
  `mfa_phone` varchar(20) DEFAULT NULL COMMENT 'Phone number for SMS OTP',
  `mfa_setup_at` datetime DEFAULT NULL COMMENT 'When MFA was first setup',
  `mfa_last_verified` datetime DEFAULT NULL COMMENT 'Last successful MFA verification',
  `password_reset_token` varchar(255) DEFAULT NULL COMMENT 'Token for password reset',
  `password_reset_expires` datetime DEFAULT NULL COMMENT 'When password reset token expires',
  `must_setup_mfa` tinyint(1) DEFAULT 1 COMMENT 'User must setup MFA on next login',
  `failed_login_attempts` int(11) DEFAULT 0 COMMENT 'Failed login attempt counter',
  `locked_until` datetime DEFAULT NULL COMMENT 'Account locked until this time',
  `email_last_sync` datetime DEFAULT NULL COMMENT 'Last time emails were synced from IMAP server',
  PRIMARY KEY (`id`),
  UNIQUE KEY `email` (`email`),
  UNIQUE KEY `username` (`username`),
  KEY `role_id` (`role_id`),
  KEY `idx_secondary_email` (`secondary_email`),
  KEY `idx_password_reset_token` (`password_reset_token`),
  KEY `idx_locked_until` (`locked_until`),
  KEY `idx_show_in_directory` (`show_in_directory`),
  KEY `idx_users_deleted_at` (`deleted_at`),
  KEY `idx_users_email_last_sync` (`email_last_sync`),
  CONSTRAINT `users_ibfk_1` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `users`
--

LOCK TABLES `users` WRITE;
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `users` VALUES
(1,1,112,'admin@mavrix.one',NULL,'','ipv6.nwpro5.fcomet.com',993,'ssl','erp_system@mavrix.one','xyz8468RPMerkuri123!','',587,'tls','',NULL,0,'admin','$2y$12$9OKyqhylbzpM6I0dzGQFOuMWiybOGfP1iWY2TVk.HocmpbJ6jfmDy','Admin',NULL,'User','906-123-4567',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'America/New_York',1,'/uploads/avatars/avatar_1_1763218250.JPG','active','2025-12-07 13:03:11','2025-11-11 17:51:24','2025-12-07 13:03:11',NULL,0,'totp','EBOKG7YSXNL5IGMHEDIRMU7ZJDB7R6HK',NULL,'2025-11-15 13:36:01',NULL,NULL,NULL,0,0,NULL,'2025-12-05 12:47:38'),
(2,108,1,'brian@mavrix.one',NULL,NULL,NULL,993,'ssl',NULL,NULL,NULL,587,'tls',NULL,NULL,1,'ceo','$2y$12$oGRFYb5c5huwOXdNSinIc.oTZKUDQOK6mmfsk8SAt/lExlvveDW7K','Brian',NULL,'S','',NULL,'male',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'America/New_York',1,NULL,'active','2025-12-02 18:42:43','2025-11-11 17:51:24','2025-12-02 18:42:43',NULL,0,'email',NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL),
(3,110,2,'cfo@mavrix.one',NULL,NULL,NULL,993,'ssl',NULL,NULL,NULL,587,'tls',NULL,NULL,1,'cfo','$2y$12$3Liw1jdi9IqlTK7P7lPLNe.S0C/fWvLyeNGv4Puh0pSOZ/BeJa5xW','C',NULL,'FO','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'America/New_York',1,NULL,'active',NULL,'2025-11-11 17:51:24','2025-11-15 18:28:16',NULL,0,'email',NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL),
(4,111,4,'rick@mavrix.one',NULL,NULL,'ipv6.nwpro5.fcomet.com',993,'ssl','rick@mavrix.one','z8468RPMerkuri123!',NULL,587,'tls',NULL,NULL,1,'cto','$2y$12$QK7QTQmaUfvh63mSehi5teLXSBag23BW53VoQZhfwK2uBU/5NXhtG','Rick',NULL,'M','5857979473',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'America/New_York',1,'/uploads/avatars/avatar_4_1764856960.jpeg','active','2025-12-04 23:41:48','2025-11-11 17:51:24','2025-12-04 23:41:48',NULL,0,'email',NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL),
(5,134,75,'test@mavrix.one',NULL,NULL,NULL,993,'ssl',NULL,NULL,NULL,587,'tls',NULL,NULL,1,'manager','$2y$12$1Q98Y1jJUUjgPpxi3uSKuuVOHXSAMuWZpfIXaljGgldgUfhC0x2Qy','Test',NULL,'Manager','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'America/New_York',1,NULL,'active','2025-12-02 22:03:17','2025-11-11 17:51:24','2025-12-02 22:03:17',NULL,0,'email',NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL),
(6,121,NULL,'accountant@mavrix.one',NULL,NULL,NULL,993,'ssl',NULL,NULL,NULL,587,'tls',NULL,NULL,1,'accountant','$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi','Staff',NULL,'Accountant',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'America/New_York',1,NULL,'active',NULL,'2025-11-11 17:51:24','2025-11-15 18:02:52',NULL,0,'email',NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL),
(7,92,110,'nathan@mavrix.one',NULL,NULL,NULL,993,'ssl',NULL,NULL,NULL,587,'tls',NULL,NULL,1,NULL,'$2y$12$WeQvhHu564z55w7U8cZZd.lE4Dz9mxQXCLojLtDbHMYHdE9riEoG2','Nathan',NULL,'S','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'America/New_York',1,NULL,'active','2025-11-24 18:21:37','2025-11-14 21:00:43','2025-11-24 18:21:37',NULL,0,'email',NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL),
(8,81,114,'tony@mavrix.one',NULL,NULL,NULL,993,'ssl',NULL,NULL,NULL,587,'tls',NULL,NULL,1,NULL,'$2y$12$Qjoa.iGtc2gDzZb5.rG/wukTgLtH7uE6QbJBvqTFRuGC6ODBd9S/e','Tony',NULL,'A',NULL,NULL,'male',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'America/New_York',1,NULL,'active','2025-11-15 16:01:16','2025-11-14 21:01:16','2025-11-15 18:24:56',NULL,0,'email',NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL),
(21,116,16,'leslie@mavrix.one',NULL,NULL,NULL,993,'ssl',NULL,NULL,NULL,587,'tls',NULL,NULL,1,NULL,'$2y$12$d0GslpnxQ/zZTF.uyUnyzOUelFQgHV4B8AeC0mlTW7zcZGoztVCIa','Leslie',NULL,'S',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'America/New_York',1,NULL,'active','2025-11-30 01:27:40','2025-11-15 23:53:17','2025-11-30 01:27:40',NULL,0,'email',NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL);
/*!40000 ALTER TABLE `users` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `vendor_credit_applications`
--

DROP TABLE IF EXISTS `vendor_credit_applications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `vendor_credit_applications` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `credit_id` int(10) unsigned NOT NULL,
  `bill_id` int(11) DEFAULT NULL,
  `payment_id` int(10) unsigned DEFAULT NULL,
  `amount_applied` decimal(15,2) NOT NULL,
  `applied_at` timestamp NULL DEFAULT current_timestamp(),
  `notes` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_credit` (`credit_id`),
  KEY `idx_bill` (`bill_id`),
  KEY `idx_payment` (`payment_id`),
  CONSTRAINT `vendor_credit_applications_ibfk_1` FOREIGN KEY (`credit_id`) REFERENCES `vendor_credits` (`id`) ON DELETE CASCADE,
  CONSTRAINT `vendor_credit_applications_ibfk_2` FOREIGN KEY (`bill_id`) REFERENCES `purchase_bills` (`id`),
  CONSTRAINT `vendor_credit_applications_ibfk_3` FOREIGN KEY (`payment_id`) REFERENCES `vendor_payments` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `vendor_credit_applications`
--

LOCK TABLES `vendor_credit_applications` WRITE;
/*!40000 ALTER TABLE `vendor_credit_applications` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `vendor_credit_applications` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `vendor_credits`
--

DROP TABLE IF EXISTS `vendor_credits`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `vendor_credits` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `credit_number` varchar(50) NOT NULL,
  `vendor_id` int(10) unsigned NOT NULL,
  `credit_date` date NOT NULL,
  `credit_amount` decimal(15,2) NOT NULL,
  `amount_used` decimal(15,2) DEFAULT 0.00,
  `balance` decimal(15,2) GENERATED ALWAYS AS (`credit_amount` - `amount_used`) STORED,
  `reason` text DEFAULT NULL,
  `reference` varchar(100) DEFAULT NULL,
  `status` enum('active','fully_applied','expired','voided') DEFAULT 'active',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `created_by` int(10) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `credit_number` (`credit_number`),
  KEY `created_by` (`created_by`),
  KEY `idx_vendor` (`vendor_id`),
  KEY `idx_status` (`status`),
  KEY `idx_balance` (`balance`),
  CONSTRAINT `vendor_credits_ibfk_1` FOREIGN KEY (`vendor_id`) REFERENCES `suppliers` (`id`),
  CONSTRAINT `vendor_credits_ibfk_2` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `vendor_credits`
--

LOCK TABLES `vendor_credits` WRITE;
/*!40000 ALTER TABLE `vendor_credits` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `vendor_credits` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `vendor_payment_applications`
--

DROP TABLE IF EXISTS `vendor_payment_applications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `vendor_payment_applications` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `payment_id` int(10) unsigned NOT NULL,
  `bill_id` int(11) NOT NULL,
  `amount_applied` decimal(15,2) NOT NULL,
  `discount_taken` decimal(15,2) DEFAULT 0.00,
  `applied_at` timestamp NULL DEFAULT current_timestamp(),
  `notes` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_payment_bill` (`payment_id`,`bill_id`),
  KEY `idx_payment` (`payment_id`),
  KEY `idx_bill` (`bill_id`),
  CONSTRAINT `vendor_payment_applications_ibfk_1` FOREIGN KEY (`payment_id`) REFERENCES `vendor_payments` (`id`) ON DELETE CASCADE,
  CONSTRAINT `vendor_payment_applications_ibfk_2` FOREIGN KEY (`bill_id`) REFERENCES `purchase_bills` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `vendor_payment_applications`
--

LOCK TABLES `vendor_payment_applications` WRITE;
/*!40000 ALTER TABLE `vendor_payment_applications` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `vendor_payment_applications` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `vendor_payments`
--

DROP TABLE IF EXISTS `vendor_payments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `vendor_payments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `payment_number` varchar(50) NOT NULL,
  `vendor_id` int(10) unsigned NOT NULL,
  `payment_date` date NOT NULL,
  `payment_method` enum('check','ach','wire','credit_card','cash','other') DEFAULT 'check',
  `check_number` varchar(50) DEFAULT NULL,
  `bank_account_id` int(10) unsigned DEFAULT NULL,
  `batch_id` int(10) unsigned DEFAULT NULL,
  `total_amount` decimal(15,2) NOT NULL DEFAULT 0.00,
  `currency` varchar(3) DEFAULT 'USD',
  `exchange_rate` decimal(15,6) DEFAULT 1.000000,
  `memo` text DEFAULT NULL,
  `reference` varchar(100) DEFAULT NULL,
  `status` enum('draft','printed','sent','cleared','voided','reconciled') DEFAULT 'draft',
  `journal_entry_id` int(10) unsigned DEFAULT NULL,
  `void_date` date DEFAULT NULL,
  `void_reason` text DEFAULT NULL,
  `printed_at` timestamp NULL DEFAULT NULL,
  `printed_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `created_by` int(10) unsigned DEFAULT NULL,
  `updated_by` int(10) unsigned DEFAULT NULL,
  `location_id` int(10) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `payment_number` (`payment_number`),
  KEY `bank_account_id` (`bank_account_id`),
  KEY `created_by` (`created_by`),
  KEY `updated_by` (`updated_by`),
  KEY `printed_by` (`printed_by`),
  KEY `idx_vendor` (`vendor_id`),
  KEY `idx_payment_date` (`payment_date`),
  KEY `idx_status` (`status`),
  KEY `idx_check_number` (`check_number`),
  KEY `idx_payment_method` (`payment_method`),
  KEY `fk_payment_batch` (`batch_id`),
  KEY `fk_payment_journal` (`journal_entry_id`),
  CONSTRAINT `fk_payment_batch` FOREIGN KEY (`batch_id`) REFERENCES `payment_batches` (`id`) ON DELETE SET NULL,
  CONSTRAINT `fk_payment_journal` FOREIGN KEY (`journal_entry_id`) REFERENCES `journal_entries` (`id`) ON DELETE SET NULL,
  CONSTRAINT `vendor_payments_ibfk_1` FOREIGN KEY (`vendor_id`) REFERENCES `suppliers` (`id`),
  CONSTRAINT `vendor_payments_ibfk_2` FOREIGN KEY (`bank_account_id`) REFERENCES `bank_accounts` (`id`),
  CONSTRAINT `vendor_payments_ibfk_3` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `vendor_payments_ibfk_4` FOREIGN KEY (`updated_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `vendor_payments_ibfk_5` FOREIGN KEY (`printed_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `vendor_payments`
--

LOCK TABLES `vendor_payments` WRITE;
/*!40000 ALTER TABLE `vendor_payments` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `vendor_payments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Temporary table structure for view `vw_permission_groups_hierarchy`
--

DROP TABLE IF EXISTS `vw_permission_groups_hierarchy`;
/*!50001 DROP VIEW IF EXISTS `vw_permission_groups_hierarchy`*/;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8mb4;
/*!50001 CREATE VIEW `vw_permission_groups_hierarchy` AS SELECT
 1 AS `id`,
  1 AS `name`,
  1 AS `parent_id`,
  1 AS `display_order`,
  1 AS `icon`,
  1 AS `color`,
  1 AS `description`,
  1 AS `is_system`,
  1 AS `path`,
  1 AS `level`,
  1 AS `permission_count` */;
SET character_set_client = @saved_cs_client;

--
-- Table structure for table `warehouses`
--

DROP TABLE IF EXISTS `warehouses`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `warehouses` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL,
  `code` varchar(50) NOT NULL,
  `address` text DEFAULT NULL,
  `city` varchar(100) DEFAULT NULL,
  `state` varchar(100) DEFAULT NULL,
  `zip` varchar(20) DEFAULT NULL,
  `country` varchar(100) DEFAULT NULL,
  `manager_id` int(10) unsigned DEFAULT NULL,
  `status` enum('active','inactive') DEFAULT 'active',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `code` (`code`),
  KEY `manager_id` (`manager_id`),
  KEY `idx_deleted_at` (`deleted_at`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `warehouses`
--

LOCK TABLES `warehouses` WRITE;
/*!40000 ALTER TABLE `warehouses` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `warehouses` VALUES
(1,'Main Warehouse','WH-MAIN','1000 Warehouse Blvd','Dallas','TX','75201','USA',NULL,'active','2025-11-04 19:46:54','2025-11-11 00:36:47',NULL),
(2,'West Coast Facility','WH-WEST','2000 Pacific Ave','San Diego','CA','92101','USA',NULL,'active','2025-11-04 19:46:54','2025-11-11 00:36:47',NULL);
/*!40000 ALTER TABLE `warehouses` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `widget_cache`
--

DROP TABLE IF EXISTS `widget_cache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `widget_cache` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `widget_type` varchar(50) NOT NULL,
  `user_id` int(10) unsigned DEFAULT NULL COMMENT 'NULL for global cache',
  `cache_key` varchar(255) NOT NULL COMMENT 'Unique cache identifier',
  `data` longtext NOT NULL COMMENT 'Cached widget data (JSON)',
  `expires_at` timestamp NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_cache_key` (`cache_key`),
  KEY `idx_widget_user` (`widget_type`,`user_id`),
  KEY `idx_expires` (`expires_at`),
  KEY `user_id` (`user_id`),
  CONSTRAINT `widget_cache_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Cache for widget data to improve performance';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `widget_cache`
--

LOCK TABLES `widget_cache` WRITE;
/*!40000 ALTER TABLE `widget_cache` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `widget_cache` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Table structure for table `widget_templates`
--

DROP TABLE IF EXISTS `widget_templates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `widget_templates` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL COMMENT 'Template name',
  `description` text DEFAULT NULL,
  `widget_types` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL COMMENT 'Array of widget types in this template' CHECK (json_valid(`widget_types`)),
  `is_public` tinyint(1) DEFAULT 0 COMMENT 'Available to all users',
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `idx_public` (`is_public`),
  KEY `idx_created_by` (`created_by`),
  CONSTRAINT `widget_templates_ibfk_1` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Dashboard widget layout templates';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `widget_templates`
--

LOCK TABLES `widget_templates` WRITE;
/*!40000 ALTER TABLE `widget_templates` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `widget_templates` VALUES
(1,'Executive Dashboard','High-level overview for executives','[\"revenue_chart\", \"kpi_summary\", \"sales_trend\", \"outstanding_invoices\"]',1,NULL,'2025-11-26 14:37:48','2025-11-26 14:37:48'),
(2,'Sales Dashboard','Sales team focused dashboard','[\"sales_trend\", \"recent_orders\", \"top_customers\", \"sales_pipeline\"]',1,NULL,'2025-11-26 14:37:48','2025-11-26 14:37:48'),
(3,'Operations Dashboard','Operations and inventory focused','[\"work_orders_status\", \"inventory_alerts\", \"production_schedule\", \"recent_shipments\"]',1,NULL,'2025-11-26 14:37:48','2025-11-26 14:37:48'),
(4,'Finance Dashboard','Financial metrics and reports','[\"revenue_chart\", \"outstanding_invoices\", \"cash_flow\", \"expense_summary\"]',1,NULL,'2025-11-26 14:37:48','2025-11-26 14:37:48');
/*!40000 ALTER TABLE `widget_templates` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Temporary table structure for view `widget_usage_stats`
--

DROP TABLE IF EXISTS `widget_usage_stats`;
/*!50001 DROP VIEW IF EXISTS `widget_usage_stats`*/;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8mb4;
/*!50001 CREATE VIEW `widget_usage_stats` AS SELECT
 1 AS `widget_type`,
  1 AS `user_count`,
  1 AS `visibility_percentage`,
  1 AS `total_instances` */;
SET character_set_client = @saved_cs_client;

--
-- Table structure for table `work_order_equipment`
--

DROP TABLE IF EXISTS `work_order_equipment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `work_order_equipment` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `work_order_id` int(10) unsigned NOT NULL,
  `equipment_id` int(10) unsigned NOT NULL,
  `scheduled_start` datetime NOT NULL,
  `scheduled_end` datetime NOT NULL,
  `actual_start` datetime DEFAULT NULL,
  `actual_end` datetime DEFAULT NULL,
  `status` enum('scheduled','in_progress','completed','cancelled') DEFAULT 'scheduled',
  `units_assigned` int(11) NOT NULL COMMENT 'Units to produce on this equipment',
  `units_completed` int(11) DEFAULT 0,
  `setup_time_hours` decimal(5,2) DEFAULT 0.00,
  `run_time_hours` decimal(8,2) DEFAULT 0.00,
  `notes` text DEFAULT NULL,
  `assigned_at` timestamp NULL DEFAULT current_timestamp(),
  `assigned_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_wo_equipment_schedule` (`work_order_id`,`equipment_id`,`scheduled_start`),
  KEY `work_order_id` (`work_order_id`),
  KEY `equipment_id` (`equipment_id`),
  KEY `status` (`status`),
  KEY `scheduled_start` (`scheduled_start`),
  KEY `assigned_by` (`assigned_by`),
  KEY `idx_equipment_schedule` (`equipment_id`,`scheduled_start`,`scheduled_end`,`status`),
  CONSTRAINT `work_order_equipment_ibfk_1` FOREIGN KEY (`work_order_id`) REFERENCES `work_orders` (`id`) ON DELETE CASCADE,
  CONSTRAINT `work_order_equipment_ibfk_2` FOREIGN KEY (`equipment_id`) REFERENCES `equipment` (`id`) ON DELETE CASCADE,
  CONSTRAINT `work_order_equipment_ibfk_3` FOREIGN KEY (`assigned_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Tracks which equipment is assigned to which work orders';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `work_order_equipment`
--

LOCK TABLES `work_order_equipment` WRITE;
/*!40000 ALTER TABLE `work_order_equipment` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `work_order_equipment` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Temporary table structure for view `work_order_equipment_view`
--

DROP TABLE IF EXISTS `work_order_equipment_view`;
/*!50001 DROP VIEW IF EXISTS `work_order_equipment_view`*/;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8mb4;
/*!50001 CREATE VIEW `work_order_equipment_view` AS SELECT
 1 AS `assignment_id`,
  1 AS `work_order_id`,
  1 AS `wo_number`,
  1 AS `wo_status`,
  1 AS `priority`,
  1 AS `wo_quantity`,
  1 AS `wo_completed`,
  1 AS `product_name`,
  1 AS `product_sku`,
  1 AS `equipment_id`,
  1 AS `equipment_name`,
  1 AS `asset_tag`,
  1 AS `equipment_status`,
  1 AS `utilization_rate`,
  1 AS `equipment_line_name`,
  1 AS `business_line_name`,
  1 AS `scheduled_start`,
  1 AS `scheduled_end`,
  1 AS `actual_start`,
  1 AS `actual_end`,
  1 AS `assignment_status`,
  1 AS `units_assigned`,
  1 AS `units_completed`,
  1 AS `setup_time_hours`,
  1 AS `run_time_hours`,
  1 AS `scheduled_hours`,
  1 AS `actual_hours`,
  1 AS `completion_percentage`,
  1 AS `assigned_at`,
  1 AS `updated_at` */;
SET character_set_client = @saved_cs_client;

--
-- Table structure for table `work_orders`
--

DROP TABLE IF EXISTS `work_orders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `work_orders` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `wo_number` varchar(50) NOT NULL,
  `product_id` int(10) unsigned NOT NULL,
  `bom_id` int(10) unsigned DEFAULT NULL,
  `business_line_id` int(10) unsigned DEFAULT NULL,
  `equipment_line_id` int(10) unsigned DEFAULT NULL,
  `quantity` int(11) NOT NULL,
  `quantity_completed` int(11) DEFAULT 0,
  `start_date` date DEFAULT NULL,
  `actual_start_date` datetime DEFAULT NULL,
  `end_date` date DEFAULT NULL,
  `actual_end_date` datetime DEFAULT NULL,
  `status` enum('planned','in_progress','completed','cancelled') DEFAULT 'planned',
  `priority` enum('low','medium','high','urgent') DEFAULT 'medium',
  `notes` text DEFAULT NULL,
  `created_by` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  `last_notified_at` datetime DEFAULT NULL COMMENT 'Last due date reminder sent',
  `notification_level` varchar(20) DEFAULT NULL COMMENT 'Current notification level: 1day, due, overdue',
  PRIMARY KEY (`id`),
  UNIQUE KEY `wo_number` (`wo_number`),
  KEY `product_id` (`product_id`),
  KEY `bom_id` (`bom_id`),
  KEY `created_by` (`created_by`),
  KEY `business_line_id` (`business_line_id`),
  KEY `equipment_line_id` (`equipment_line_id`),
  KEY `status_priority` (`status`,`priority`),
  KEY `idx_wo_status_dates` (`status`,`start_date`,`end_date`),
  KEY `idx_workorders_due_notification` (`end_date`,`status`,`last_notified_at`),
  KEY `idx_deleted_at` (`deleted_at`),
  CONSTRAINT `fk_wo_business_line` FOREIGN KEY (`business_line_id`) REFERENCES `business_lines` (`id`) ON DELETE SET NULL,
  CONSTRAINT `fk_wo_equipment_line` FOREIGN KEY (`equipment_line_id`) REFERENCES `equipment_lines` (`id`) ON DELETE SET NULL,
  CONSTRAINT `work_orders_ibfk_1` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`),
  CONSTRAINT `work_orders_ibfk_2` FOREIGN KEY (`bom_id`) REFERENCES `bill_of_materials` (`id`) ON DELETE SET NULL,
  CONSTRAINT `work_orders_ibfk_3` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `work_orders`
--

LOCK TABLES `work_orders` WRITE;
/*!40000 ALTER TABLE `work_orders` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `work_orders` VALUES
(1,'WO-TEST-1D-10',3,NULL,NULL,NULL,100,0,'2025-11-14',NULL,'2025-11-15',NULL,'planned','medium',NULL,1,'2025-11-14 20:01:18','2025-11-14 20:02:03',NULL,'2025-11-14 15:02:03','1day'),
(2,'WO-TEST-DUE-219',3,NULL,NULL,NULL,150,0,'2025-11-11',NULL,'2025-11-14',NULL,'planned','medium',NULL,1,'2025-11-14 20:01:18','2025-11-14 20:02:03',NULL,'2025-11-14 15:02:03','due'),
(3,'WO-TEST-OVER-64',3,NULL,NULL,NULL,200,0,'2025-11-04',NULL,'2025-11-11',NULL,'planned','medium',NULL,1,'2025-11-14 20:01:18','2025-11-14 20:02:03',NULL,'2025-11-14 15:02:03','overdue');
/*!40000 ALTER TABLE `work_orders` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Final view structure for view `audit_log_stats`
--

/*!50001 DROP VIEW IF EXISTS `audit_log_stats`*/;
/*!50001 SET @saved_cs_client          = @@character_set_client */;
/*!50001 SET @saved_cs_results         = @@character_set_results */;
/*!50001 SET @saved_col_connection     = @@collation_connection */;
/*!50001 SET character_set_client      = utf8mb4 */;
/*!50001 SET character_set_results     = utf8mb4 */;
/*!50001 SET collation_connection      = utf8mb4_uca1400_ai_ci */;
/*!50001 CREATE ALGORITHM=UNDEFINED */
/*!50013 DEFINER=`rpmbbu`@`localhost` SQL SECURITY DEFINER */
/*!50001 VIEW `audit_log_stats` AS select cast(`audit_logs`.`created_at` as date) AS `date`,`audit_logs`.`entity_type` AS `model`,`audit_logs`.`action` AS `action`,count(0) AS `count`,count(distinct `audit_logs`.`user_id`) AS `unique_users` from `audit_logs` where `audit_logs`.`created_at` >= current_timestamp() - interval 30 day group by cast(`audit_logs`.`created_at` as date),`audit_logs`.`entity_type`,`audit_logs`.`action` order by cast(`audit_logs`.`created_at` as date) desc,count(0) desc */;
/*!50001 SET character_set_client      = @saved_cs_client */;
/*!50001 SET character_set_results     = @saved_cs_results */;
/*!50001 SET collation_connection      = @saved_col_connection */;

--
-- Final view structure for view `business_line_capacity_summary`
--

/*!50001 DROP VIEW IF EXISTS `business_line_capacity_summary`*/;
/*!50001 SET @saved_cs_client          = @@character_set_client */;
/*!50001 SET @saved_cs_results         = @@character_set_results */;
/*!50001 SET @saved_col_connection     = @@collation_connection */;
/*!50001 SET character_set_client      = utf8mb4 */;
/*!50001 SET character_set_results     = utf8mb4 */;
/*!50001 SET collation_connection      = utf8mb4_uca1400_ai_ci */;
/*!50001 CREATE ALGORITHM=UNDEFINED */
/*!50013 DEFINER=`brickwal`@`localhost` SQL SECURITY DEFINER */
/*!50001 VIEW `business_line_capacity_summary` AS select `bl`.`id` AS `business_line_id`,`bl`.`name` AS `business_line_name`,`bl`.`code` AS `business_line_code`,count(distinct `el`.`id`) AS `total_equipment_lines`,count(`e`.`id`) AS `total_equipment`,sum(case when `e`.`status` = 'operational' then 1 else 0 end) AS `operational_equipment`,round(avg(`e`.`utilization_rate`),2) AS `avg_utilization_rate`,round(sum(coalesce(`e`.`capacity_per_hour`,`el`.`capacity_per_hour`,`e`.`rated_capacity_per_hour`) * `e`.`available_hours_per_day` * coalesce(`e`.`efficiency_factor`,`el`.`efficiency_factor`,0.85)),2) AS `total_daily_capacity`,round(sum(coalesce(`e`.`capacity_per_hour`,`el`.`capacity_per_hour`,`e`.`rated_capacity_per_hour`) * `e`.`available_hours_per_day` * coalesce(`e`.`efficiency_factor`,`el`.`efficiency_factor`,0.85) * (1 - `e`.`utilization_rate` / 100)),2) AS `available_daily_capacity` from ((`business_lines` `bl` left join `equipment` `e` on(`e`.`business_line_id` = `bl`.`id` and `e`.`status` <> 'retired')) left join `equipment_lines` `el` on(`e`.`equipment_line_id` = `el`.`id`)) where `bl`.`status` = 'active' group by `bl`.`id`,`bl`.`name`,`bl`.`code` */;
/*!50001 SET character_set_client      = @saved_cs_client */;
/*!50001 SET character_set_results     = @saved_cs_results */;
/*!50001 SET collation_connection      = @saved_col_connection */;

--
-- Final view structure for view `equipment_benchmarking_view`
--

/*!50001 DROP VIEW IF EXISTS `equipment_benchmarking_view`*/;
/*!50001 SET @saved_cs_client          = @@character_set_client */;
/*!50001 SET @saved_cs_results         = @@character_set_results */;
/*!50001 SET @saved_col_connection     = @@collation_connection */;
/*!50001 SET character_set_client      = utf8mb4 */;
/*!50001 SET character_set_results     = utf8mb4 */;
/*!50001 SET collation_connection      = utf8mb4_uca1400_ai_ci */;
/*!50001 CREATE ALGORITHM=UNDEFINED */
/*!50013 DEFINER=`rpmbbu`@`localhost` SQL SECURITY DEFINER */
/*!50001 VIEW `equipment_benchmarking_view` AS select `e`.`id` AS `current_equipment_id`,`e`.`name` AS `current_equipment_name`,`e`.`asset_tag` AS `asset_tag`,`el`.`name` AS `equipment_line`,`e`.`rated_capacity_per_hour` AS `current_capacity`,`e`.`efficiency_factor` AS `current_efficiency`,`e`.`scrap_rate_percent` AS `current_scrap_rate`,`e`.`avg_unplanned_downtime_hours_per_year` AS `current_downtime`,`emr`.`id` AS `market_research_id`,`emr`.`equipment_name` AS `market_equipment_name`,`emr`.`rated_capacity_per_hour` AS `market_capacity`,`emr`.`efficiency_rating` AS `market_efficiency`,`emr`.`typical_scrap_rate_percent` AS `market_scrap_rate`,(`emr`.`rated_capacity_per_hour` - `e`.`rated_capacity_per_hour`) / `e`.`rated_capacity_per_hour` * 100 AS `capacity_gap_percent`,(`emr`.`efficiency_rating` - `e`.`efficiency_factor`) / `e`.`efficiency_factor` * 100 AS `efficiency_gap_percent`,`e`.`scrap_rate_percent` - `emr`.`typical_scrap_rate_percent` AS `scrap_rate_gap`,`ev`.`vendor_name` AS `vendor_name`,`emr`.`purchase_price` AS `upgrade_cost` from (((`equipment` `e` left join `equipment_lines` `el` on(`e`.`equipment_line_id` = `el`.`id`)) join `equipment_market_research` `emr`) left join `equipment_vendors` `ev` on(`emr`.`vendor_id` = `ev`.`id`)) where `e`.`status` = 'operational' and `emr`.`equipment_type` = `el`.`name` order by (`emr`.`rated_capacity_per_hour` - `e`.`rated_capacity_per_hour`) / `e`.`rated_capacity_per_hour` * 100 desc */;
/*!50001 SET character_set_client      = @saved_cs_client */;
/*!50001 SET character_set_results     = @saved_cs_results */;
/*!50001 SET collation_connection      = @saved_col_connection */;

--
-- Final view structure for view `equipment_capacity_view`
--

/*!50001 DROP VIEW IF EXISTS `equipment_capacity_view`*/;
/*!50001 SET @saved_cs_client          = @@character_set_client */;
/*!50001 SET @saved_cs_results         = @@character_set_results */;
/*!50001 SET @saved_col_connection     = @@collation_connection */;
/*!50001 SET character_set_client      = utf8mb4 */;
/*!50001 SET character_set_results     = utf8mb4 */;
/*!50001 SET collation_connection      = utf8mb4_uca1400_ai_ci */;
/*!50001 CREATE ALGORITHM=UNDEFINED */
/*!50013 DEFINER=`rpmbbu`@`localhost` SQL SECURITY DEFINER */
/*!50001 VIEW `equipment_capacity_view` AS select `e`.`id` AS `equipment_id`,`e`.`asset_tag` AS `asset_tag`,`e`.`name` AS `equipment_name`,`e`.`status` AS `status`,`e`.`serial_number` AS `serial_number`,`e`.`manufacturer` AS `manufacturer`,`e`.`model` AS `model`,`e`.`business_line_id` AS `business_line_id`,`bl`.`name` AS `business_line_name`,`e`.`equipment_line_id` AS `equipment_line_id`,`el`.`name` AS `equipment_line_name`,`el`.`code` AS `equipment_line_code`,`l`.`id` AS `location_id`,`l`.`name` AS `location_name`,`e`.`rated_capacity_per_hour` AS `rated_capacity_per_hour`,`e`.`actual_output_per_hour` AS `actual_output_per_hour`,coalesce(`e`.`efficiency_factor`,0.85) AS `efficiency_factor`,`e`.`available_hours_per_day` AS `available_hours_per_day`,`e`.`operating_days_per_year` AS `operating_days_per_year`,`e`.`operating_hours_per_day` AS `operating_hours_per_day`,`e`.`shift_configuration` AS `shift_configuration`,`e`.`setup_time_hours` AS `setup_time_hours`,`e`.`operators_per_machine` AS `operators_per_machine`,`e`.`skill_level_required` AS `skill_level_required`,`e`.`setup_operators_required` AS `setup_operators_required`,`e`.`supervisor_ratio` AS `supervisor_ratio`,`e`.`planned_maintenance_hours_per_year` AS `planned_maintenance_hours_per_year`,`e`.`avg_unplanned_downtime_hours_per_year` AS `avg_unplanned_downtime_hours_per_year`,`e`.`ramp_up_time_hours` AS `ramp_up_time_hours`,`e`.`ramp_down_time_hours` AS `ramp_down_time_hours`,`e`.`quality_control_time_percent` AS `quality_control_time_percent`,`e`.`scrap_rate_percent` AS `scrap_rate_percent`,`e`.`demand_spike_buffer_percent` AS `demand_spike_buffer_percent`,`e`.`overall_equipment_effectiveness` AS `overall_equipment_effectiveness`,`e`.`changeover_time_hours` AS `changeover_time_hours`,`e`.`min_batch_size` AS `min_batch_size`,`e`.`max_batch_size` AS `max_batch_size`,`e`.`power_consumption_kw` AS `power_consumption_kw`,`e`.`energy_cost_per_hour` AS `energy_cost_per_hour`,`e`.`operating_cost_per_hour` AS `operating_cost_per_hour`,`e`.`annual_demand_units` AS `annual_demand_units`,round(`e`.`rated_capacity_per_hour` * coalesce(`e`.`efficiency_factor`,0.85) * (1 - `e`.`scrap_rate_percent` / 100),2) AS `adjusted_production_rate`,round(`e`.`operating_hours_per_day` - (`e`.`planned_maintenance_hours_per_year` + `e`.`avg_unplanned_downtime_hours_per_year`) / `e`.`operating_days_per_year` - `e`.`operating_hours_per_day` * `e`.`quality_control_time_percent` / 100 - (`e`.`ramp_up_time_hours` + `e`.`ramp_down_time_hours`),2) AS `effective_hours_available_per_day`,round((`e`.`operating_hours_per_day` - (`e`.`planned_maintenance_hours_per_year` + `e`.`avg_unplanned_downtime_hours_per_year`) / `e`.`operating_days_per_year` - `e`.`operating_hours_per_day` * `e`.`quality_control_time_percent` / 100 - (`e`.`ramp_up_time_hours` + `e`.`ramp_down_time_hours`)) * `e`.`operating_days_per_year`,2) AS `effective_hours_available_per_year`,round(`e`.`rated_capacity_per_hour` * coalesce(`e`.`efficiency_factor`,0.85) * (1 - `e`.`scrap_rate_percent` / 100) * (`e`.`operating_hours_per_day` - (`e`.`planned_maintenance_hours_per_year` + `e`.`avg_unplanned_downtime_hours_per_year`) / `e`.`operating_days_per_year` - `e`.`operating_hours_per_day` * `e`.`quality_control_time_percent` / 100 - (`e`.`ramp_up_time_hours` + `e`.`ramp_down_time_hours`)),2) AS `daily_capacity_units`,round(`e`.`rated_capacity_per_hour` * coalesce(`e`.`efficiency_factor`,0.85) * (1 - `e`.`scrap_rate_percent` / 100) * ((`e`.`operating_hours_per_day` - (`e`.`planned_maintenance_hours_per_year` + `e`.`avg_unplanned_downtime_hours_per_year`) / `e`.`operating_days_per_year` - `e`.`operating_hours_per_day` * `e`.`quality_control_time_percent` / 100 - (`e`.`ramp_up_time_hours` + `e`.`ramp_down_time_hours`)) * `e`.`operating_days_per_year`),2) AS `annual_capacity_units`,`e`.`utilization_rate` AS `utilization_rate`,round(`e`.`rated_capacity_per_hour` * coalesce(`e`.`efficiency_factor`,0.85) * (1 - `e`.`scrap_rate_percent` / 100) * (`e`.`operating_hours_per_day` - (`e`.`planned_maintenance_hours_per_year` + `e`.`avg_unplanned_downtime_hours_per_year`) / `e`.`operating_days_per_year` - `e`.`operating_hours_per_day` * `e`.`quality_control_time_percent` / 100 - (`e`.`ramp_up_time_hours` + `e`.`ramp_down_time_hours`)) * (1 - `e`.`utilization_rate` / 100),2) AS `available_daily_capacity`,round(case when `e`.`operating_days_per_year` > 0 then `e`.`annual_demand_units` / `e`.`operating_days_per_year` else 0 end,2) AS `daily_demand_units`,round(case when `e`.`rated_capacity_per_hour` * coalesce(`e`.`efficiency_factor`,0.85) * (1 - `e`.`scrap_rate_percent` / 100) > 0 then `e`.`annual_demand_units` / `e`.`operating_days_per_year` / (`e`.`rated_capacity_per_hour` * coalesce(`e`.`efficiency_factor`,0.85) * (1 - `e`.`scrap_rate_percent` / 100)) else 0 end,2) AS `hours_required_per_day`,ceiling(case when `e`.`operating_hours_per_day` - (`e`.`planned_maintenance_hours_per_year` + `e`.`avg_unplanned_downtime_hours_per_year`) / `e`.`operating_days_per_year` - `e`.`operating_hours_per_day` * `e`.`quality_control_time_percent` / 100 - (`e`.`ramp_up_time_hours` + `e`.`ramp_down_time_hours`) > 0 then `e`.`annual_demand_units` / `e`.`operating_days_per_year` / (`e`.`rated_capacity_per_hour` * coalesce(`e`.`efficiency_factor`,0.85) * (1 - `e`.`scrap_rate_percent` / 100)) / (`e`.`operating_hours_per_day` - (`e`.`planned_maintenance_hours_per_year` + `e`.`avg_unplanned_downtime_hours_per_year`) / `e`.`operating_days_per_year` - `e`.`operating_hours_per_day` * `e`.`quality_control_time_percent` / 100 - (`e`.`ramp_up_time_hours` + `e`.`ramp_down_time_hours`)) else 0 end) AS `machines_required`,round(ceiling(case when `e`.`operating_hours_per_day` - (`e`.`planned_maintenance_hours_per_year` + `e`.`avg_unplanned_downtime_hours_per_year`) / `e`.`operating_days_per_year` - `e`.`operating_hours_per_day` * `e`.`quality_control_time_percent` / 100 - (`e`.`ramp_up_time_hours` + `e`.`ramp_down_time_hours`) > 0 then `e`.`annual_demand_units` / `e`.`operating_days_per_year` / (`e`.`rated_capacity_per_hour` * coalesce(`e`.`efficiency_factor`,0.85) * (1 - `e`.`scrap_rate_percent` / 100)) / (`e`.`operating_hours_per_day` - (`e`.`planned_maintenance_hours_per_year` + `e`.`avg_unplanned_downtime_hours_per_year`) / `e`.`operating_days_per_year` - `e`.`operating_hours_per_day` * `e`.`quality_control_time_percent` / 100 - (`e`.`ramp_up_time_hours` + `e`.`ramp_down_time_hours`)) else 0 end) * `e`.`operators_per_machine`,2) AS `operators_required`,case when `e`.`status` <> 'operational' then 'Unavailable' when `e`.`utilization_rate` >= 95 then 'At Capacity' when `e`.`utilization_rate` >= 80 then 'Limited' else 'Available' end AS `availability_status`,`e`.`created_at` AS `created_at`,`e`.`updated_at` AS `updated_at` from (((`equipment` `e` left join `business_lines` `bl` on(`e`.`business_line_id` = `bl`.`id`)) left join `equipment_lines` `el` on(`e`.`equipment_line_id` = `el`.`id`)) left join `locations` `l` on(`bl`.`location_id` = `l`.`id`)) where `e`.`status` <> 'retired' */;
/*!50001 SET character_set_client      = @saved_cs_client */;
/*!50001 SET character_set_results     = @saved_cs_results */;
/*!50001 SET collation_connection      = @saved_col_connection */;

--
-- Final view structure for view `equipment_line_capacity_summary`
--

/*!50001 DROP VIEW IF EXISTS `equipment_line_capacity_summary`*/;
/*!50001 SET @saved_cs_client          = @@character_set_client */;
/*!50001 SET @saved_cs_results         = @@character_set_results */;
/*!50001 SET @saved_col_connection     = @@collation_connection */;
/*!50001 SET character_set_client      = utf8mb4 */;
/*!50001 SET character_set_results     = utf8mb4 */;
/*!50001 SET collation_connection      = utf8mb4_uca1400_ai_ci */;
/*!50001 CREATE ALGORITHM=UNDEFINED */
/*!50013 DEFINER=`brickwal`@`localhost` SQL SECURITY DEFINER */
/*!50001 VIEW `equipment_line_capacity_summary` AS select `el`.`id` AS `equipment_line_id`,`el`.`name` AS `equipment_line_name`,`el`.`code` AS `equipment_line_code`,`el`.`asset_number` AS `equipment_line_asset_number`,`el`.`capacity_per_hour` AS `line_capacity_per_hour`,`el`.`efficiency_factor` AS `line_efficiency_factor`,`bl`.`id` AS `business_line_id`,`bl`.`name` AS `business_line_name`,count(`e`.`id`) AS `total_equipment`,sum(case when `e`.`status` = 'operational' then 1 else 0 end) AS `operational_equipment`,round(avg(`e`.`utilization_rate`),2) AS `avg_utilization_rate`,round(sum(coalesce(`e`.`capacity_per_hour`,`el`.`capacity_per_hour`,`e`.`rated_capacity_per_hour`) * `e`.`available_hours_per_day` * coalesce(`e`.`efficiency_factor`,`el`.`efficiency_factor`,0.85)),2) AS `total_daily_capacity`,round(sum(coalesce(`e`.`capacity_per_hour`,`el`.`capacity_per_hour`,`e`.`rated_capacity_per_hour`) * `e`.`available_hours_per_day` * coalesce(`e`.`efficiency_factor`,`el`.`efficiency_factor`,0.85) * (1 - `e`.`utilization_rate` / 100)),2) AS `available_daily_capacity` from ((`equipment_lines` `el` left join `equipment` `e` on(`e`.`equipment_line_id` = `el`.`id` and `e`.`status` <> 'retired')) left join `business_lines` `bl` on(`el`.`business_line_id` = `bl`.`id`)) where `el`.`status` = 'active' group by `el`.`id`,`el`.`name`,`el`.`code`,`el`.`asset_number`,`el`.`capacity_per_hour`,`el`.`efficiency_factor`,`bl`.`id`,`bl`.`name` */;
/*!50001 SET character_set_client      = @saved_cs_client */;
/*!50001 SET character_set_results     = @saved_cs_results */;
/*!50001 SET collation_connection      = @saved_col_connection */;

--
-- Final view structure for view `forecast_equipment_capacity_view`
--

/*!50001 DROP VIEW IF EXISTS `forecast_equipment_capacity_view`*/;
/*!50001 SET @saved_cs_client          = @@character_set_client */;
/*!50001 SET @saved_cs_results         = @@character_set_results */;
/*!50001 SET @saved_col_connection     = @@collation_connection */;
/*!50001 SET character_set_client      = utf8mb4 */;
/*!50001 SET character_set_results     = utf8mb4 */;
/*!50001 SET collation_connection      = utf8mb4_uca1400_ai_ci */;
/*!50001 CREATE ALGORITHM=UNDEFINED */
/*!50013 DEFINER=`rpmbbu`@`localhost` SQL SECURITY DEFINER */
/*!50001 VIEW `forecast_equipment_capacity_view` AS select `pfc`.`id` AS `config_id`,`pfc`.`assumption_set_id` AS `assumption_set_id`,`pfc`.`product_id` AS `product_id`,`p`.`name` AS `product_name`,`p`.`sku` AS `sku`,`pfc`.`primary_equipment_id` AS `primary_equipment_id`,`e`.`name` AS `equipment_name`,`e`.`asset_tag` AS `asset_tag`,`el`.`name` AS `equipment_line_name`,`pfc`.`production_rate_per_hour` AS `production_rate_per_hour`,`pfc`.`production_hours_per_unit` AS `production_hours_per_unit`,`pfc`.`machines_required` AS `machines_required`,`e`.`annual_demand_units` AS `equipment_annual_demand`,`e`.`operating_days_per_year` AS `operating_days_per_year`,`e`.`operating_hours_per_day` AS `operating_hours_per_day`,coalesce(`e`.`efficiency_factor`,0.85) AS `efficiency_factor`,`e`.`scrap_rate_percent` AS `scrap_rate_percent`,`e`.`utilization_rate` AS `current_utilization_pct`,`pfc`.`equipment_labor_cost_per_unit` AS `equipment_labor_cost_per_unit`,`pfc`.`equipment_energy_cost_per_unit` AS `equipment_energy_cost_per_unit`,`pfc`.`equipment_operating_cost_per_unit` AS `equipment_operating_cost_per_unit`,`pfc`.`equipment_labor_cost_per_unit` + `pfc`.`equipment_energy_cost_per_unit` + `pfc`.`equipment_operating_cost_per_unit` AS `total_equipment_cost_per_unit`,`pfc`.`capacity_constraint_flag` AS `capacity_constraint_flag`,`pfc`.`capital_investment_required` AS `capital_investment_required`,round(`e`.`rated_capacity_per_hour` * coalesce(`e`.`efficiency_factor`,0.85) * (1 - `e`.`scrap_rate_percent` / 100),2) AS `adjusted_production_rate`,round(`e`.`operating_hours_per_day` - (`e`.`planned_maintenance_hours_per_year` + `e`.`avg_unplanned_downtime_hours_per_year`) / `e`.`operating_days_per_year` - `e`.`operating_hours_per_day` * `e`.`quality_control_time_percent` / 100 - (`e`.`ramp_up_time_hours` + `e`.`ramp_down_time_hours`),2) AS `effective_hours_per_day`,`pfc`.`gross_margin_pct` AS `gross_margin_pct`,`pfc`.`revenue_growth_rate` AS `revenue_growth_rate`,`pfc`.`volume_growth_pct` AS `volume_growth_pct`,`pfc`.`created_at` AS `created_at`,`pfc`.`updated_at` AS `updated_at` from (((`product_forecast_config` `pfc` join `products` `p` on(`pfc`.`product_id` = `p`.`id`)) left join `equipment` `e` on(`pfc`.`primary_equipment_id` = `e`.`id`)) left join `equipment_lines` `el` on(`pfc`.`primary_equipment_line_id` = `el`.`id`)) where `pfc`.`is_active` = 1 */;
/*!50001 SET character_set_client      = @saved_cs_client */;
/*!50001 SET character_set_results     = @saved_cs_results */;
/*!50001 SET collation_connection      = @saved_col_connection */;

--
-- Final view structure for view `mention_stats`
--

/*!50001 DROP VIEW IF EXISTS `mention_stats`*/;
/*!50001 SET @saved_cs_client          = @@character_set_client */;
/*!50001 SET @saved_cs_results         = @@character_set_results */;
/*!50001 SET @saved_col_connection     = @@collation_connection */;
/*!50001 SET character_set_client      = utf8mb4 */;
/*!50001 SET character_set_results     = utf8mb4 */;
/*!50001 SET collation_connection      = utf8mb4_uca1400_ai_ci */;
/*!50001 CREATE ALGORITHM=UNDEFINED */
/*!50013 DEFINER=`rpmbbu`@`localhost` SQL SECURITY DEFINER */
/*!50001 VIEW `mention_stats` AS select `u`.`id` AS `user_id`,concat(`u`.`first_name`,' ',`u`.`last_name`) AS `user_name`,count(`m`.`id`) AS `total_mentions`,sum(case when `m`.`is_read` = 0 then 1 else 0 end) AS `unread_mentions`,max(`m`.`created_at`) AS `last_mention_at` from (`users` `u` left join `mentions` `m` on(`u`.`id` = `m`.`user_id`)) where `u`.`status` = 'active' group by `u`.`id`,`u`.`first_name`,`u`.`last_name` */;
/*!50001 SET character_set_client      = @saved_cs_client */;
/*!50001 SET character_set_results     = @saved_cs_results */;
/*!50001 SET collation_connection      = @saved_col_connection */;

--
-- Final view structure for view `notification_stats_by_user`
--

/*!50001 DROP VIEW IF EXISTS `notification_stats_by_user`*/;
/*!50001 SET @saved_cs_client          = @@character_set_client */;
/*!50001 SET @saved_cs_results         = @@character_set_results */;
/*!50001 SET @saved_col_connection     = @@collation_connection */;
/*!50001 SET character_set_client      = utf8mb4 */;
/*!50001 SET character_set_results     = utf8mb4 */;
/*!50001 SET collation_connection      = utf8mb4_uca1400_ai_ci */;
/*!50001 CREATE ALGORITHM=UNDEFINED */
/*!50013 DEFINER=`rpmbbu`@`localhost` SQL SECURITY DEFINER */
/*!50001 VIEW `notification_stats_by_user` AS select `u`.`id` AS `user_id`,concat(`u`.`first_name`,' ',`u`.`last_name`) AS `user_name`,count(`n`.`id`) AS `total_notifications`,sum(case when `n`.`is_read` = 0 then 1 else 0 end) AS `unread_count`,sum(case when `n`.`email_sent` = 1 then 1 else 0 end) AS `emails_sent`,max(`n`.`created_at`) AS `last_notification_at` from (`users` `u` left join `notifications` `n` on(`u`.`id` = `n`.`user_id`)) where `u`.`status` = 'active' group by `u`.`id`,`u`.`first_name`,`u`.`last_name` */;
/*!50001 SET character_set_client      = @saved_cs_client */;
/*!50001 SET character_set_results     = @saved_cs_results */;
/*!50001 SET collation_connection      = @saved_col_connection */;

--
-- Final view structure for view `popular_searches_30d`
--

/*!50001 DROP VIEW IF EXISTS `popular_searches_30d`*/;
/*!50001 SET @saved_cs_client          = @@character_set_client */;
/*!50001 SET @saved_cs_results         = @@character_set_results */;
/*!50001 SET @saved_col_connection     = @@collation_connection */;
/*!50001 SET character_set_client      = utf8mb4 */;
/*!50001 SET character_set_results     = utf8mb4 */;
/*!50001 SET collation_connection      = utf8mb4_uca1400_ai_ci */;
/*!50001 CREATE ALGORITHM=UNDEFINED */
/*!50013 DEFINER=`rpmbbu`@`localhost` SQL SECURITY DEFINER */
/*!50001 VIEW `popular_searches_30d` AS select `search_history`.`query` AS `query`,`search_history`.`category` AS `category`,count(0) AS `search_count`,avg(`search_history`.`results_count`) AS `avg_results`,avg(`search_history`.`execution_time_ms`) AS `avg_execution_time_ms`,max(`search_history`.`created_at`) AS `last_searched_at` from `search_history` where `search_history`.`created_at` >= current_timestamp() - interval 30 day group by `search_history`.`query`,`search_history`.`category` order by count(0) desc limit 100 */;
/*!50001 SET character_set_client      = @saved_cs_client */;
/*!50001 SET character_set_results     = @saved_cs_results */;
/*!50001 SET collation_connection      = @saved_col_connection */;

--
-- Final view structure for view `project_task_financials`
--

/*!50001 DROP VIEW IF EXISTS `project_task_financials`*/;
/*!50001 SET @saved_cs_client          = @@character_set_client */;
/*!50001 SET @saved_cs_results         = @@character_set_results */;
/*!50001 SET @saved_col_connection     = @@collation_connection */;
/*!50001 SET character_set_client      = utf8mb4 */;
/*!50001 SET character_set_results     = utf8mb4 */;
/*!50001 SET collation_connection      = utf8mb4_uca1400_ai_ci */;
/*!50001 CREATE ALGORITHM=UNDEFINED */
/*!50013 DEFINER=`rpmbbu`@`localhost` SQL SECURITY DEFINER */
/*!50001 VIEW `project_task_financials` AS select `pt`.`id` AS `task_id`,`pt`.`project_id` AS `project_id`,`pt`.`title` AS `task_title`,`pt`.`estimated_cost` AS `estimated_cost`,`pt`.`actual_cost` AS `actual_cost`,`pt`.`estimated_hours` AS `estimated_hours`,`pt`.`actual_hours` AS `actual_hours`,`pft`.`id` AS `transaction_id`,`pft`.`transaction_date` AS `transaction_date`,`pft`.`description` AS `transaction_description`,`pft`.`amount` AS `transaction_amount`,`pft`.`transaction_type` AS `transaction_type`,`pft`.`status` AS `transaction_status`,`pft`.`category` AS `category`,concat(`u`.`first_name`,' ',`u`.`last_name`) AS `assigned_to_name` from ((`project_tasks` `pt` left join `project_financial_transactions` `pft` on(`pft`.`reference_type` = 'task' and `pft`.`reference_id` = `pt`.`id`)) left join `users` `u` on(`pft`.`assigned_to` = `u`.`id`)) */;
/*!50001 SET character_set_client      = @saved_cs_client */;
/*!50001 SET character_set_results     = @saved_cs_results */;
/*!50001 SET collation_connection      = @saved_col_connection */;

--
-- Final view structure for view `search_performance_stats`
--

/*!50001 DROP VIEW IF EXISTS `search_performance_stats`*/;
/*!50001 SET @saved_cs_client          = @@character_set_client */;
/*!50001 SET @saved_cs_results         = @@character_set_results */;
/*!50001 SET @saved_col_connection     = @@collation_connection */;
/*!50001 SET character_set_client      = utf8mb4 */;
/*!50001 SET character_set_results     = utf8mb4 */;
/*!50001 SET collation_connection      = utf8mb4_uca1400_ai_ci */;
/*!50001 CREATE ALGORITHM=UNDEFINED */
/*!50013 DEFINER=`rpmbbu`@`localhost` SQL SECURITY DEFINER */
/*!50001 VIEW `search_performance_stats` AS select `search_history`.`category` AS `category`,count(0) AS `total_searches`,avg(`search_history`.`results_count`) AS `avg_results`,avg(`search_history`.`execution_time_ms`) AS `avg_execution_time_ms`,max(`search_history`.`execution_time_ms`) AS `max_execution_time_ms`,sum(case when `search_history`.`results_count` = 0 then 1 else 0 end) AS `zero_result_searches`,cast(`search_history`.`created_at` as date) AS `search_date` from `search_history` where `search_history`.`created_at` >= current_timestamp() - interval 30 day group by `search_history`.`category`,cast(`search_history`.`created_at` as date) order by cast(`search_history`.`created_at` as date) desc,`search_history`.`category` */;
/*!50001 SET character_set_client      = @saved_cs_client */;
/*!50001 SET character_set_results     = @saved_cs_results */;
/*!50001 SET collation_connection      = @saved_col_connection */;

--
-- Final view structure for view `unlinked_financial_transactions`
--

/*!50001 DROP VIEW IF EXISTS `unlinked_financial_transactions`*/;
/*!50001 SET @saved_cs_client          = @@character_set_client */;
/*!50001 SET @saved_cs_results         = @@character_set_results */;
/*!50001 SET @saved_col_connection     = @@collation_connection */;
/*!50001 SET character_set_client      = utf8mb4 */;
/*!50001 SET character_set_results     = utf8mb4 */;
/*!50001 SET collation_connection      = utf8mb4_uca1400_ai_ci */;
/*!50001 CREATE ALGORITHM=UNDEFINED */
/*!50013 DEFINER=`rpmbbu`@`localhost` SQL SECURITY DEFINER */
/*!50001 VIEW `unlinked_financial_transactions` AS select `pft`.`id` AS `id`,`pft`.`project_id` AS `project_id`,`pft`.`transaction_date` AS `transaction_date`,`pft`.`description` AS `description`,`pft`.`category` AS `category`,`pft`.`amount` AS `amount`,`pft`.`transaction_type` AS `transaction_type`,`pft`.`status` AS `status`,`pft`.`journal_entry_id` AS `journal_entry_id`,`pft`.`account_id` AS `account_id`,`pft`.`document_id` AS `document_id`,`pft`.`reference_type` AS `reference_type`,`pft`.`reference_id` AS `reference_id`,`pft`.`assigned_to` AS `assigned_to`,`pft`.`due_date` AS `due_date`,`pft`.`notes` AS `notes`,`pft`.`created_by` AS `created_by`,`pft`.`created_at` AS `created_at`,`pft`.`updated_at` AS `updated_at`,`p`.`name` AS `project_name`,`p`.`code` AS `project_code`,concat(`u`.`first_name`,' ',`u`.`last_name`) AS `assigned_to_name` from ((`project_financial_transactions` `pft` join `projects` `p` on(`pft`.`project_id` = `p`.`id`)) left join `users` `u` on(`pft`.`assigned_to` = `u`.`id`)) where (`pft`.`reference_type` is null or `pft`.`reference_type` <> 'task') and `pft`.`amount` > 0 order by `pft`.`transaction_date` desc */;
/*!50001 SET character_set_client      = @saved_cs_client */;
/*!50001 SET character_set_results     = @saved_cs_results */;
/*!50001 SET collation_connection      = @saved_col_connection */;

--
-- Final view structure for view `user_search_activity`
--

/*!50001 DROP VIEW IF EXISTS `user_search_activity`*/;
/*!50001 SET @saved_cs_client          = @@character_set_client */;
/*!50001 SET @saved_cs_results         = @@character_set_results */;
/*!50001 SET @saved_col_connection     = @@collation_connection */;
/*!50001 SET character_set_client      = utf8mb4 */;
/*!50001 SET character_set_results     = utf8mb4 */;
/*!50001 SET collation_connection      = utf8mb4_uca1400_ai_ci */;
/*!50001 CREATE ALGORITHM=UNDEFINED */
/*!50013 DEFINER=`rpmbbu`@`localhost` SQL SECURITY DEFINER */
/*!50001 VIEW `user_search_activity` AS select `u`.`id` AS `user_id`,concat(`u`.`first_name`,' ',`u`.`last_name`) AS `user_name`,count(`sh`.`id`) AS `total_searches`,count(distinct `sh`.`query`) AS `unique_queries`,avg(`sh`.`results_count`) AS `avg_results`,max(`sh`.`created_at`) AS `last_search_at` from (`users` `u` left join `search_history` `sh` on(`u`.`id` = `sh`.`user_id`)) where `u`.`status` = 'active' and (`sh`.`created_at` is null or `sh`.`created_at` >= current_timestamp() - interval 30 day) group by `u`.`id`,`u`.`first_name`,`u`.`last_name` */;
/*!50001 SET character_set_client      = @saved_cs_client */;
/*!50001 SET character_set_results     = @saved_cs_results */;
/*!50001 SET collation_connection      = @saved_col_connection */;

--
-- Final view structure for view `user_widget_preferences`
--

/*!50001 DROP VIEW IF EXISTS `user_widget_preferences`*/;
/*!50001 SET @saved_cs_client          = @@character_set_client */;
/*!50001 SET @saved_cs_results         = @@character_set_results */;
/*!50001 SET @saved_col_connection     = @@collation_connection */;
/*!50001 SET character_set_client      = utf8mb4 */;
/*!50001 SET character_set_results     = utf8mb4 */;
/*!50001 SET collation_connection      = utf8mb4_uca1400_ai_ci */;
/*!50001 CREATE ALGORITHM=UNDEFINED */
/*!50013 DEFINER=`rpmbbu`@`localhost` SQL SECURITY DEFINER */
/*!50001 VIEW `user_widget_preferences` AS select `u`.`id` AS `user_id`,concat(`u`.`first_name`,' ',`u`.`last_name`) AS `user_name`,count(`uw`.`id`) AS `widget_count`,group_concat(`uw`.`widget_type` order by `uw`.`position` ASC separator ',') AS `widgets` from (`users` `u` left join `user_dashboard_widgets` `uw` on(`u`.`id` = `uw`.`user_id` and `uw`.`is_visible` = 1)) where `u`.`status` = 'active' group by `u`.`id`,`u`.`first_name`,`u`.`last_name` */;
/*!50001 SET character_set_client      = @saved_cs_client */;
/*!50001 SET character_set_results     = @saved_cs_results */;
/*!50001 SET collation_connection      = @saved_col_connection */;

--
-- Final view structure for view `vw_permission_groups_hierarchy`
--

/*!50001 DROP VIEW IF EXISTS `vw_permission_groups_hierarchy`*/;
/*!50001 SET @saved_cs_client          = @@character_set_client */;
/*!50001 SET @saved_cs_results         = @@character_set_results */;
/*!50001 SET @saved_col_connection     = @@collation_connection */;
/*!50001 SET character_set_client      = utf8mb4 */;
/*!50001 SET character_set_results     = utf8mb4 */;
/*!50001 SET collation_connection      = utf8mb4_uca1400_ai_ci */;
/*!50001 CREATE ALGORITHM=UNDEFINED */
/*!50013 DEFINER=`rpmbbu`@`localhost` SQL SECURITY DEFINER */
/*!50001 VIEW `vw_permission_groups_hierarchy` AS with recursive group_tree as (select `permission_groups`.`id` AS `id`,`permission_groups`.`name` AS `name`,`permission_groups`.`parent_id` AS `parent_id`,`permission_groups`.`display_order` AS `display_order`,`permission_groups`.`icon` AS `icon`,`permission_groups`.`color` AS `color`,`permission_groups`.`description` AS `description`,`permission_groups`.`is_system` AS `is_system`,`permission_groups`.`name` AS `path`,0 AS `level` from `permission_groups` where `permission_groups`.`parent_id` is null union all select `pg`.`id` AS `id`,`pg`.`name` AS `name`,`pg`.`parent_id` AS `parent_id`,`pg`.`display_order` AS `display_order`,`pg`.`icon` AS `icon`,`pg`.`color` AS `color`,`pg`.`description` AS `description`,`pg`.`is_system` AS `is_system`,concat(`gt`.`path`,' > ',`pg`.`name`) AS `path`,`gt`.`level` + 1 AS `level` from (`permission_groups` `pg` join `group_tree` `gt` on(`pg`.`parent_id` = `gt`.`id`)))select `gt`.`id` AS `id`,`gt`.`name` AS `name`,`gt`.`parent_id` AS `parent_id`,`gt`.`display_order` AS `display_order`,`gt`.`icon` AS `icon`,`gt`.`color` AS `color`,`gt`.`description` AS `description`,`gt`.`is_system` AS `is_system`,`gt`.`path` AS `path`,`gt`.`level` AS `level`,count(`p`.`id`) AS `permission_count` from (`group_tree` `gt` left join `permissions` `p` on(`gt`.`id` = `p`.`group_id`)) group by `gt`.`id`,`gt`.`name`,`gt`.`parent_id`,`gt`.`display_order`,`gt`.`icon`,`gt`.`color`,`gt`.`description`,`gt`.`is_system`,`gt`.`path`,`gt`.`level` order by `gt`.`level`,`gt`.`display_order`,`gt`.`name` */;
/*!50001 SET character_set_client      = @saved_cs_client */;
/*!50001 SET character_set_results     = @saved_cs_results */;
/*!50001 SET collation_connection      = @saved_col_connection */;

--
-- Final view structure for view `widget_usage_stats`
--

/*!50001 DROP VIEW IF EXISTS `widget_usage_stats`*/;
/*!50001 SET @saved_cs_client          = @@character_set_client */;
/*!50001 SET @saved_cs_results         = @@character_set_results */;
/*!50001 SET @saved_col_connection     = @@collation_connection */;
/*!50001 SET character_set_client      = utf8mb4 */;
/*!50001 SET character_set_results     = utf8mb4 */;
/*!50001 SET collation_connection      = utf8mb4_uca1400_ai_ci */;
/*!50001 CREATE ALGORITHM=UNDEFINED */
/*!50013 DEFINER=`rpmbbu`@`localhost` SQL SECURITY DEFINER */
/*!50001 VIEW `widget_usage_stats` AS select `user_dashboard_widgets`.`widget_type` AS `widget_type`,count(distinct `user_dashboard_widgets`.`user_id`) AS `user_count`,avg(case when `user_dashboard_widgets`.`is_visible` = 1 then 1 else 0 end) * 100 AS `visibility_percentage`,count(0) AS `total_instances` from `user_dashboard_widgets` group by `user_dashboard_widgets`.`widget_type` order by count(distinct `user_dashboard_widgets`.`user_id`) desc */;
/*!50001 SET character_set_client      = @saved_cs_client */;
/*!50001 SET character_set_results     = @saved_cs_results */;
/*!50001 SET collation_connection      = @saved_col_connection */;

--
-- Final view structure for view `work_order_equipment_view`
--

/*!50001 DROP VIEW IF EXISTS `work_order_equipment_view`*/;
/*!50001 SET @saved_cs_client          = @@character_set_client */;
/*!50001 SET @saved_cs_results         = @@character_set_results */;
/*!50001 SET @saved_col_connection     = @@collation_connection */;
/*!50001 SET character_set_client      = utf8mb4 */;
/*!50001 SET character_set_results     = utf8mb4 */;
/*!50001 SET collation_connection      = utf8mb4_uca1400_ai_ci */;
/*!50001 CREATE ALGORITHM=UNDEFINED */
/*!50013 DEFINER=`brickwal`@`localhost` SQL SECURITY DEFINER */
/*!50001 VIEW `work_order_equipment_view` AS select `woe`.`id` AS `assignment_id`,`woe`.`work_order_id` AS `work_order_id`,`wo`.`wo_number` AS `wo_number`,`wo`.`status` AS `wo_status`,`wo`.`priority` AS `priority`,`wo`.`quantity` AS `wo_quantity`,`wo`.`quantity_completed` AS `wo_completed`,`p`.`name` AS `product_name`,`p`.`sku` AS `product_sku`,`woe`.`equipment_id` AS `equipment_id`,`e`.`name` AS `equipment_name`,`e`.`asset_tag` AS `asset_tag`,`e`.`status` AS `equipment_status`,`e`.`utilization_rate` AS `utilization_rate`,`el`.`name` AS `equipment_line_name`,`bl`.`name` AS `business_line_name`,`woe`.`scheduled_start` AS `scheduled_start`,`woe`.`scheduled_end` AS `scheduled_end`,`woe`.`actual_start` AS `actual_start`,`woe`.`actual_end` AS `actual_end`,`woe`.`status` AS `assignment_status`,`woe`.`units_assigned` AS `units_assigned`,`woe`.`units_completed` AS `units_completed`,`woe`.`setup_time_hours` AS `setup_time_hours`,`woe`.`run_time_hours` AS `run_time_hours`,timestampdiff(HOUR,`woe`.`scheduled_start`,`woe`.`scheduled_end`) AS `scheduled_hours`,timestampdiff(HOUR,`woe`.`actual_start`,`woe`.`actual_end`) AS `actual_hours`,case when `woe`.`units_assigned` > 0 then round(`woe`.`units_completed` / `woe`.`units_assigned` * 100,2) else 0 end AS `completion_percentage`,`woe`.`assigned_at` AS `assigned_at`,`woe`.`updated_at` AS `updated_at` from (((((`work_order_equipment` `woe` join `work_orders` `wo` on(`woe`.`work_order_id` = `wo`.`id`)) join `equipment` `e` on(`woe`.`equipment_id` = `e`.`id`)) left join `products` `p` on(`wo`.`product_id` = `p`.`id`)) left join `equipment_lines` `el` on(`e`.`equipment_line_id` = `el`.`id`)) left join `business_lines` `bl` on(`e`.`business_line_id` = `bl`.`id`)) */;
/*!50001 SET character_set_client      = @saved_cs_client */;
/*!50001 SET character_set_results     = @saved_cs_results */;
/*!50001 SET collation_connection      = @saved_col_connection */;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*M!100616 SET NOTE_VERBOSITY=@OLD_NOTE_VERBOSITY */;

-- Dump completed on 2025-12-09  2:00:01
